SELinux policy core utilities
Go to file
Troy Dawson 981b3c982e RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/policycoreutils#d151b2c053d3957eb9287c20d6202ac242c60766
2020-10-14 16:23:12 -07:00
tests RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
.gitignore RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0001-sandbox-add-reset-to-Xephyr-as-it-works-better-with-.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0002-Fix-STANDARD_FILE_CONTEXT-section-in-man-pages.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0003-If-there-is-no-executable-we-don-t-want-to-print-a-p.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0004-Simplication-of-sepolicy-manpage-web-functionality.-.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0005-We-want-to-remove-the-trailing-newline-for-etc-syste.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0006-Fix-title-in-manpage.py-to-not-contain-online.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0007-Don-t-be-verbose-if-you-are-not-on-a-tty.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0008-sepolicy-Drop-old-interface-file_type_is_executable-.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0009-sepolicy-Another-small-optimization-for-mcs-types.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0010-Move-po-translation-files-into-the-right-sub-directo.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0011-Use-correct-gettext-domains-in-python-gui-sandbox.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0012-Initial-.pot-files-for-gui-python-sandbox.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0013-policycoreutils-setfiles-Improve-description-of-d-sw.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0014-sepolicy-generate-Handle-more-reserved-port-types.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0015-semodule-utils-Fix-RESOURCE_LEAK-coverity-scan-defec.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
0016-sandbox-Use-matchbox-window-manager-instead-of-openb.patch RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
README.translations RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
make-rhat-patches.sh RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
policycoreutils.spec RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
selinux-autorelabel RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
selinux-autorelabel-generator.sh RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
selinux-autorelabel-mark.service RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
selinux-autorelabel.service RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
selinux-autorelabel.target RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
sepolicy-help.tgz RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
sepolicy-icons.tgz RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
sources RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
system-config-selinux.png RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00
zanata.xml RHEL 9.0.0 Alpha bootstrap 2020-10-14 16:23:12 -07:00

README.translations

policycoreutils translations currently live in the following locations:

- https://fedora.zanata.org/project/view/selinux
  - contains translations for both stable (Red Hat Enterprise Linux) and master (Fedora) branches
  - maintains large number of languages (several of which do not actually contain any translated strings)
  - updated by community and partially by RH localization effort

- selinux source repository (https://github.com/fedora-selinux/selinux)
  - is kept up-to-date with fedora.zanata

How to update source files on fedora.zanata:
  $ git clone git@github.com:fedora-selinux/selinux.git
  $ cd selinux

  # generate new potfile
  $ for p in policycoreutils python gui sandbox; do
    cd $p/po
    make $p.pot
    cd -
    done

  # Push potfiles to zanata
  $ zanata-cli push --push-type source

How to pull new translations from zanata
  $ git clone git@github.com:fedora-selinux/selinux.git
  $ cd selinux
  # Make sure "zanata.xml" file pointing to corresponding translations branch is present
  # Optionally update source files on zanata
  # Pull new translations from zanata
  $ zanata-cli -e pull --pull-type trans

How to update translations *-po.tgz files
  $ mkdir zanata
  $ cd zanata
  $ zanata-cli -e pull --project-config ../zanata.xml  --pull-type both
  $ for p in policycoreutils python gui sandbox; do
    cd $p
    tar -c -f ../../$p-po.tgz -z .
    cd -
    done