2017-04-14 05:37:58 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
2018-06-20 10:56:36 -04:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2022-08-13 07:33:19 -04:00
|
|
|
;;; Copyright © 2019, 2020, 2022 Marius Bakke <marius@gnu.org>
|
2021-04-12 05:08:23 -04:00
|
|
|
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
|
2021-08-29 04:20:18 -04:00
|
|
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
2017-04-14 05:37:58 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages selinux)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
#:use-module (guix git-download)
|
2017-04-14 05:37:58 -04:00
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix build-system gnu)
|
2017-04-14 05:47:32 -04:00
|
|
|
#:use-module (guix build-system python)
|
2017-04-14 05:37:58 -04:00
|
|
|
#:use-module (gnu packages)
|
2017-04-14 07:41:34 -04:00
|
|
|
#:use-module (gnu packages admin)
|
2017-04-14 05:45:15 -04:00
|
|
|
#:use-module (gnu packages bison)
|
2017-04-14 07:44:00 -04:00
|
|
|
#:use-module (gnu packages docbook)
|
2017-04-14 05:47:32 -04:00
|
|
|
#:use-module (gnu packages flex)
|
2017-04-14 07:52:22 -04:00
|
|
|
#:use-module (gnu packages gettext)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages networking)
|
2017-04-14 05:47:32 -04:00
|
|
|
#:use-module (gnu packages pcre)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages python)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 08:21:30 -05:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2017-04-14 07:41:34 -04:00
|
|
|
#:use-module (gnu packages swig)
|
2017-04-14 07:44:00 -04:00
|
|
|
#:use-module (gnu packages xml))
|
2017-04-14 05:37:58 -04:00
|
|
|
|
|
|
|
;; Update the SELinux packages together!
|
|
|
|
|
|
|
|
(define-public libsepol
|
|
|
|
(package
|
|
|
|
(name "libsepol")
|
2022-08-13 07:33:19 -04:00
|
|
|
(version "3.4")
|
2021-04-12 05:08:23 -04:00
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/SELinuxProject/selinux")
|
|
|
|
(commit version)))
|
|
|
|
(file-name (git-file-name "selinux" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2022-08-13 07:33:19 -04:00
|
|
|
"1lcmgmfr0q7g5cwg6b7jm6ncw8cw6c1jblkm93v1g37bfhcgrqc0"))))
|
2017-04-14 05:37:58 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; tests require checkpolicy, which requires libsepol
|
|
|
|
#:test-target "test"
|
|
|
|
#:make-flags
|
2021-04-12 05:09:29 -04:00
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
2017-04-14 05:37:58 -04:00
|
|
|
(list (string-append "PREFIX=" out)
|
2019-12-04 19:21:27 -05:00
|
|
|
(string-append "SHLIBDIR=" out "/lib")
|
2017-04-14 05:37:58 -04:00
|
|
|
(string-append "MAN3DIR=" out "/share/man/man3")
|
|
|
|
(string-append "MAN5DIR=" out "/share/man/man5")
|
|
|
|
(string-append "MAN8DIR=" out "/share/man/man8")
|
2021-08-29 04:20:18 -04:00
|
|
|
(string-append "CFLAGS=-Wno-error")
|
2017-04-14 05:37:58 -04:00
|
|
|
(string-append "LDFLAGS=-Wl,-rpath=" out "/lib")
|
2021-04-12 05:09:29 -04:00
|
|
|
(string-append "CC=" ,(cc-for-target))))
|
2017-04-14 05:37:58 -04:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(add-after 'unpack 'enter-dir
|
2021-04-12 05:08:23 -04:00
|
|
|
(lambda _ (chdir ,name)))
|
2018-01-29 16:13:29 -05:00
|
|
|
(add-after 'enter-dir 'portability
|
|
|
|
(lambda _
|
|
|
|
(substitute* "src/ibpkeys.c"
|
|
|
|
(("#include \"ibpkey_internal.h\"" line)
|
|
|
|
(string-append line "\n#include <inttypes.h>\n"))
|
2021-04-12 05:08:23 -04:00
|
|
|
(("%#lx") "%#\" PRIx64 \"")))))))
|
2017-04-14 05:37:58 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list flex))
|
2017-04-14 05:37:58 -04:00
|
|
|
(home-page "https://selinuxproject.org/")
|
|
|
|
(synopsis "Library for manipulating SELinux policies")
|
|
|
|
(description
|
|
|
|
"The libsepol library provides an API for the manipulation of SELinux
|
|
|
|
binary policies. It is used by @code{checkpolicy} (the policy compiler) and
|
|
|
|
similar tools, and programs such as @code{load_policy}, which must perform
|
|
|
|
specific transformations on binary policies (for example, customizing policy
|
|
|
|
boolean settings).")
|
|
|
|
(license license:lgpl2.1+)))
|
2017-04-14 05:45:15 -04:00
|
|
|
|
|
|
|
(define-public checkpolicy
|
gnu: Use PACKAGE/INHERIT in more places.
* gnu/packages/algebra.scm (fftwf, fftw-openmpi),
gnu/packages/audio.scm (ztoolkit-rsvg),
gnu/packages/bioinformatics.scm (python2-dendropy),
gnu/packages/boost.scm (boost-with-python2),
gnu/packages/check.scm (python2-mock, python2-pytest-mock),
gnu/packages/cups.scm (hplip-minimal),
gnu/packages/freedesktop.scm (libinput-minimal),
gnu/packages/gettext.scm (gnu-gettext),
gnu/packages/glib.scm (python2-pygobject),
gnu/packages/gnome.scm (gdl-minimal, libsoup-minimal, python2-pyatspi),
gnu/packages/groff.scm (groff-minimal),
gnu/packages/jami.scm (ffmpeg-jami),
gnu/packages/libcanberra.scm (libcanberra/gtk+-2),
gnu/packages/lirc.scm (python2-lirc),
gnu/packages/llvm.scm (clang-runtime-3.5),
gnu/packages/mpi.scm (java-openmpi, openmpi-thread-multiple),
gnu/packages/node.scm (libnode),
gnu/packages/onc-rpc.scm (libtirpc/hurd),
gnu/packages/python-compression.scm (bitshuffle-for-snappy),
gnu/packages/python-crypto.scm (python2-pycrypto, python2-cryptography)
(python2-cryptography, python2-m2crypto),
gnu/packages/python-web.scm (python2-html2text, python2-tornado)
(python2-terminado, python2-ndg-httpsclient, python2-websocket-client)
(python2-rauth, python2-url, python2-s3transfer),
gnu/packages/python-xyz.scm (python2-psutil, python2-serpent)
(python2-humanfriendly, python2-empy, python2-parse-type, python2-polib)
(python2-jsonschema, python2-pystache, python2-cython, python2-numpydoc)
(python2-ipyparallel, python2-traitlets, python2-dbus)
(python2-beautifulsoup4, python2-pep517, python2-flake8, python2-llfuse)
(python2-tlsh, python-file, python2-notebook, python-jupyter-console-minimal)
(python2-contextlib2, python2-promise, python2-anyjson, python2-amqp)
(python2-kombu, python2-billiard, python2-celery, python2-whoosh)
(python2-jellyfish, python-rope, ptpython-2, python2-binaryornot)
(python2-setproctitle, python2-argcomplete, python2-xopen, python2-isort)
(python2-radon, python2-rfc6555, python2-activepapers, python2-send2trash)
(python2-cloudpickle, python2-reparser),
gnu/packages/python.scm (python2-called-python),
gnu/packages/qt.scm (python2-sip, python-pyqt-without-qtwebkit, python2-pyqt)
(python-qscintilla, python-pyqt+qscintilla),
gnu/packages/scanner.scm (sane-backends),
gnu/packages/sdl.scm (guile3.0-sdl2),
gnu/packages/selinux.scm (checkpolicy, libselinux, libsemanage, secilc)
(python-sepolgen, policycoreutils),
gnu/packages/serialization.scm (lua5.1-libmpack, lua5.2-libmpack),
gnu/packages/simulation.scm (fenics),
gnu/packages/statistics.scm (python2-statsmodels),
gnu/packages/texinfo.scm (info-reader),
gnu/packages/wxwidgets.scm (wxwidgets-gtk2, wxwidgets-gtk2-3.1),
gnu/packages/xml.scm (xmlsec-nss),
gnu/packages/xorg.scm (uim-gtk, uim-qt),
guix/build-system/python.scm (package-with-explicit-python)
(strip-python2-variant): Use PACKAGE/INHERIT.
2021-03-17 03:42:12 -04:00
|
|
|
(package/inherit libsepol
|
2017-04-14 05:45:15 -04:00
|
|
|
(name "checkpolicy")
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; there is no check target
|
|
|
|
#:make-flags
|
2021-04-12 05:09:29 -04:00
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
2017-04-14 05:45:15 -04:00
|
|
|
(list (string-append "PREFIX=" out)
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
(string-append "LIBSEPOLA="
|
2017-04-14 05:45:15 -04:00
|
|
|
(assoc-ref %build-inputs "libsepol")
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
"/lib/libsepol.a")
|
2021-04-12 05:09:29 -04:00
|
|
|
(string-append "CC=" ,(cc-for-target))))
|
2017-04-14 05:45:15 -04:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
2018-01-29 16:13:29 -05:00
|
|
|
(delete 'portability)
|
2017-04-14 05:45:15 -04:00
|
|
|
(add-after 'unpack 'enter-dir
|
2021-04-12 05:08:23 -04:00
|
|
|
(lambda _ (chdir ,name))))))
|
2017-04-14 05:45:15 -04:00
|
|
|
(inputs
|
|
|
|
`(("libsepol" ,libsepol)))
|
|
|
|
(native-inputs
|
|
|
|
`(("bison" ,bison)
|
|
|
|
("flex" ,flex)))
|
|
|
|
(synopsis "Check SELinux security policy configurations and modules")
|
|
|
|
(description
|
|
|
|
"This package provides the tools \"checkpolicy\" and \"checkmodule\".
|
|
|
|
Checkpolicy is a program that checks and compiles a SELinux security policy
|
|
|
|
configuration into a binary representation that can be loaded into the kernel.
|
|
|
|
Checkmodule is a program that checks and compiles a SELinux security policy
|
|
|
|
module into a binary representation.")
|
|
|
|
;; GPLv2 only
|
|
|
|
(license license:gpl2)))
|
2017-04-14 05:47:32 -04:00
|
|
|
|
|
|
|
(define-public libselinux
|
gnu: Use PACKAGE/INHERIT in more places.
* gnu/packages/algebra.scm (fftwf, fftw-openmpi),
gnu/packages/audio.scm (ztoolkit-rsvg),
gnu/packages/bioinformatics.scm (python2-dendropy),
gnu/packages/boost.scm (boost-with-python2),
gnu/packages/check.scm (python2-mock, python2-pytest-mock),
gnu/packages/cups.scm (hplip-minimal),
gnu/packages/freedesktop.scm (libinput-minimal),
gnu/packages/gettext.scm (gnu-gettext),
gnu/packages/glib.scm (python2-pygobject),
gnu/packages/gnome.scm (gdl-minimal, libsoup-minimal, python2-pyatspi),
gnu/packages/groff.scm (groff-minimal),
gnu/packages/jami.scm (ffmpeg-jami),
gnu/packages/libcanberra.scm (libcanberra/gtk+-2),
gnu/packages/lirc.scm (python2-lirc),
gnu/packages/llvm.scm (clang-runtime-3.5),
gnu/packages/mpi.scm (java-openmpi, openmpi-thread-multiple),
gnu/packages/node.scm (libnode),
gnu/packages/onc-rpc.scm (libtirpc/hurd),
gnu/packages/python-compression.scm (bitshuffle-for-snappy),
gnu/packages/python-crypto.scm (python2-pycrypto, python2-cryptography)
(python2-cryptography, python2-m2crypto),
gnu/packages/python-web.scm (python2-html2text, python2-tornado)
(python2-terminado, python2-ndg-httpsclient, python2-websocket-client)
(python2-rauth, python2-url, python2-s3transfer),
gnu/packages/python-xyz.scm (python2-psutil, python2-serpent)
(python2-humanfriendly, python2-empy, python2-parse-type, python2-polib)
(python2-jsonschema, python2-pystache, python2-cython, python2-numpydoc)
(python2-ipyparallel, python2-traitlets, python2-dbus)
(python2-beautifulsoup4, python2-pep517, python2-flake8, python2-llfuse)
(python2-tlsh, python-file, python2-notebook, python-jupyter-console-minimal)
(python2-contextlib2, python2-promise, python2-anyjson, python2-amqp)
(python2-kombu, python2-billiard, python2-celery, python2-whoosh)
(python2-jellyfish, python-rope, ptpython-2, python2-binaryornot)
(python2-setproctitle, python2-argcomplete, python2-xopen, python2-isort)
(python2-radon, python2-rfc6555, python2-activepapers, python2-send2trash)
(python2-cloudpickle, python2-reparser),
gnu/packages/python.scm (python2-called-python),
gnu/packages/qt.scm (python2-sip, python-pyqt-without-qtwebkit, python2-pyqt)
(python-qscintilla, python-pyqt+qscintilla),
gnu/packages/scanner.scm (sane-backends),
gnu/packages/sdl.scm (guile3.0-sdl2),
gnu/packages/selinux.scm (checkpolicy, libselinux, libsemanage, secilc)
(python-sepolgen, policycoreutils),
gnu/packages/serialization.scm (lua5.1-libmpack, lua5.2-libmpack),
gnu/packages/simulation.scm (fenics),
gnu/packages/statistics.scm (python2-statsmodels),
gnu/packages/texinfo.scm (info-reader),
gnu/packages/wxwidgets.scm (wxwidgets-gtk2, wxwidgets-gtk2-3.1),
gnu/packages/xml.scm (xmlsec-nss),
gnu/packages/xorg.scm (uim-gtk, uim-qt),
guix/build-system/python.scm (package-with-explicit-python)
(strip-python2-variant): Use PACKAGE/INHERIT.
2021-03-17 03:42:12 -04:00
|
|
|
(package/inherit libsepol
|
2017-04-14 05:47:32 -04:00
|
|
|
(name "libselinux")
|
2019-07-11 09:40:20 -04:00
|
|
|
(outputs '("out" "python"))
|
2017-04-14 05:47:32 -04:00
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments libsepol)
|
|
|
|
((#:make-flags flags)
|
|
|
|
`(cons* "PYTHON=python3"
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
(string-append "LIBSEPOLA="
|
|
|
|
(assoc-ref %build-inputs "libsepol")
|
|
|
|
"/lib/libsepol.a")
|
2019-12-04 19:21:27 -05:00
|
|
|
(string-append "PYTHONLIBDIR="
|
2019-07-11 09:40:20 -04:00
|
|
|
(assoc-ref %outputs "python")
|
2017-04-14 05:47:32 -04:00
|
|
|
"/lib/python"
|
|
|
|
,(version-major+minor (package-version python))
|
|
|
|
"/site-packages/")
|
|
|
|
,flags))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
2018-01-29 16:13:29 -05:00
|
|
|
(delete 'portability)
|
2017-04-14 05:47:32 -04:00
|
|
|
(replace 'enter-dir
|
2021-04-12 05:08:23 -04:00
|
|
|
(lambda _ (chdir ,name)))
|
2017-04-14 05:47:32 -04:00
|
|
|
(add-after 'build 'pywrap
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
2018-03-25 04:52:02 -04:00
|
|
|
(apply invoke "make" "pywrap" make-flags)))
|
2017-04-14 05:47:32 -04:00
|
|
|
(add-after 'install 'install-pywrap
|
2019-12-04 19:21:27 -05:00
|
|
|
(lambda* (#:key make-flags outputs #:allow-other-keys)
|
|
|
|
;; The build system uses "python setup.py install" to install
|
|
|
|
;; Python bindings. Instruct it to use the correct output.
|
|
|
|
(substitute* "src/Makefile"
|
|
|
|
(("--prefix=\\$\\(PREFIX\\)")
|
|
|
|
(string-append "--prefix=" (assoc-ref outputs "python"))))
|
2018-03-25 04:52:02 -04:00
|
|
|
(apply invoke "make" "install-pywrap" make-flags)))))))
|
2017-06-15 02:47:00 -04:00
|
|
|
;; These libraries are in "Requires.private" in libselinux.pc.
|
|
|
|
(propagated-inputs
|
2017-04-14 05:47:32 -04:00
|
|
|
`(("libsepol" ,libsepol)
|
2022-08-13 07:33:19 -04:00
|
|
|
("pcre2" ,pcre2)))
|
2017-06-15 02:47:00 -04:00
|
|
|
;; For pywrap phase
|
|
|
|
(inputs
|
|
|
|
`(("python" ,python-wrapper)))
|
2017-04-14 05:47:32 -04:00
|
|
|
;; These inputs are only needed for the pywrap phase.
|
|
|
|
(native-inputs
|
|
|
|
`(("swig" ,swig)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(synopsis "SELinux core libraries and utilities")
|
|
|
|
(description
|
|
|
|
"The libselinux library provides an API for SELinux applications to get
|
|
|
|
and set process and file security contexts, and to obtain security policy
|
|
|
|
decisions. It is required for any applications that use the SELinux API, and
|
|
|
|
used by all applications that are SELinux-aware. This package also includes
|
|
|
|
the core SELinux management utilities.")
|
|
|
|
(license license:public-domain)))
|
2017-04-14 07:41:34 -04:00
|
|
|
|
|
|
|
(define-public libsemanage
|
gnu: Use PACKAGE/INHERIT in more places.
* gnu/packages/algebra.scm (fftwf, fftw-openmpi),
gnu/packages/audio.scm (ztoolkit-rsvg),
gnu/packages/bioinformatics.scm (python2-dendropy),
gnu/packages/boost.scm (boost-with-python2),
gnu/packages/check.scm (python2-mock, python2-pytest-mock),
gnu/packages/cups.scm (hplip-minimal),
gnu/packages/freedesktop.scm (libinput-minimal),
gnu/packages/gettext.scm (gnu-gettext),
gnu/packages/glib.scm (python2-pygobject),
gnu/packages/gnome.scm (gdl-minimal, libsoup-minimal, python2-pyatspi),
gnu/packages/groff.scm (groff-minimal),
gnu/packages/jami.scm (ffmpeg-jami),
gnu/packages/libcanberra.scm (libcanberra/gtk+-2),
gnu/packages/lirc.scm (python2-lirc),
gnu/packages/llvm.scm (clang-runtime-3.5),
gnu/packages/mpi.scm (java-openmpi, openmpi-thread-multiple),
gnu/packages/node.scm (libnode),
gnu/packages/onc-rpc.scm (libtirpc/hurd),
gnu/packages/python-compression.scm (bitshuffle-for-snappy),
gnu/packages/python-crypto.scm (python2-pycrypto, python2-cryptography)
(python2-cryptography, python2-m2crypto),
gnu/packages/python-web.scm (python2-html2text, python2-tornado)
(python2-terminado, python2-ndg-httpsclient, python2-websocket-client)
(python2-rauth, python2-url, python2-s3transfer),
gnu/packages/python-xyz.scm (python2-psutil, python2-serpent)
(python2-humanfriendly, python2-empy, python2-parse-type, python2-polib)
(python2-jsonschema, python2-pystache, python2-cython, python2-numpydoc)
(python2-ipyparallel, python2-traitlets, python2-dbus)
(python2-beautifulsoup4, python2-pep517, python2-flake8, python2-llfuse)
(python2-tlsh, python-file, python2-notebook, python-jupyter-console-minimal)
(python2-contextlib2, python2-promise, python2-anyjson, python2-amqp)
(python2-kombu, python2-billiard, python2-celery, python2-whoosh)
(python2-jellyfish, python-rope, ptpython-2, python2-binaryornot)
(python2-setproctitle, python2-argcomplete, python2-xopen, python2-isort)
(python2-radon, python2-rfc6555, python2-activepapers, python2-send2trash)
(python2-cloudpickle, python2-reparser),
gnu/packages/python.scm (python2-called-python),
gnu/packages/qt.scm (python2-sip, python-pyqt-without-qtwebkit, python2-pyqt)
(python-qscintilla, python-pyqt+qscintilla),
gnu/packages/scanner.scm (sane-backends),
gnu/packages/sdl.scm (guile3.0-sdl2),
gnu/packages/selinux.scm (checkpolicy, libselinux, libsemanage, secilc)
(python-sepolgen, policycoreutils),
gnu/packages/serialization.scm (lua5.1-libmpack, lua5.2-libmpack),
gnu/packages/simulation.scm (fenics),
gnu/packages/statistics.scm (python2-statsmodels),
gnu/packages/texinfo.scm (info-reader),
gnu/packages/wxwidgets.scm (wxwidgets-gtk2, wxwidgets-gtk2-3.1),
gnu/packages/xml.scm (xmlsec-nss),
gnu/packages/xorg.scm (uim-gtk, uim-qt),
guix/build-system/python.scm (package-with-explicit-python)
(strip-python2-variant): Use PACKAGE/INHERIT.
2021-03-17 03:42:12 -04:00
|
|
|
(package/inherit libsepol
|
2017-04-14 07:41:34 -04:00
|
|
|
(name "libsemanage")
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments libsepol)
|
|
|
|
((#:make-flags flags)
|
|
|
|
`(cons* "PYTHON=python3"
|
2019-12-04 19:21:27 -05:00
|
|
|
(string-append "PYTHONLIBDIR="
|
2017-04-14 07:41:34 -04:00
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib/python"
|
|
|
|
,(version-major+minor (package-version python))
|
|
|
|
"/site-packages/")
|
|
|
|
,flags))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
2018-01-29 16:13:29 -05:00
|
|
|
(delete 'portability)
|
2017-04-14 07:41:34 -04:00
|
|
|
(replace 'enter-dir
|
2021-04-12 05:08:23 -04:00
|
|
|
(lambda _ (chdir ,name)))
|
2019-12-04 19:21:27 -05:00
|
|
|
(add-before 'install 'adjust-semanage-conf-location
|
|
|
|
(lambda _
|
|
|
|
(substitute* "src/Makefile"
|
|
|
|
(("DEFAULT_SEMANAGE_CONF_LOCATION=/etc")
|
2021-04-12 05:08:23 -04:00
|
|
|
"DEFAULT_SEMANAGE_CONF_LOCATION=$(PREFIX)/etc"))))
|
2017-04-14 07:41:34 -04:00
|
|
|
(add-after 'build 'pywrap
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
2018-06-20 10:56:36 -04:00
|
|
|
(apply invoke "make" "pywrap" make-flags)))
|
2017-04-14 07:41:34 -04:00
|
|
|
(add-after 'install 'install-pywrap
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
2018-06-20 10:56:36 -04:00
|
|
|
(apply invoke "make" "install-pywrap" make-flags)))))))
|
2017-04-14 07:41:34 -04:00
|
|
|
(inputs
|
|
|
|
`(("libsepol" ,libsepol)
|
|
|
|
("libselinux" ,libselinux)
|
|
|
|
("audit" ,audit)
|
|
|
|
;; For pywrap phase
|
|
|
|
("python" ,python-wrapper)))
|
|
|
|
(native-inputs
|
|
|
|
`(("bison" ,bison)
|
|
|
|
("flex" ,flex)
|
|
|
|
;; For pywrap phase
|
|
|
|
("swig" ,swig)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(synopsis "SELinux policy management libraries")
|
|
|
|
(description
|
|
|
|
"The libsemanage library provides an API for the manipulation of SELinux
|
|
|
|
binary policies.")
|
|
|
|
(license license:lgpl2.1+)))
|
2017-04-14 07:44:00 -04:00
|
|
|
|
|
|
|
(define-public secilc
|
gnu: Use PACKAGE/INHERIT in more places.
* gnu/packages/algebra.scm (fftwf, fftw-openmpi),
gnu/packages/audio.scm (ztoolkit-rsvg),
gnu/packages/bioinformatics.scm (python2-dendropy),
gnu/packages/boost.scm (boost-with-python2),
gnu/packages/check.scm (python2-mock, python2-pytest-mock),
gnu/packages/cups.scm (hplip-minimal),
gnu/packages/freedesktop.scm (libinput-minimal),
gnu/packages/gettext.scm (gnu-gettext),
gnu/packages/glib.scm (python2-pygobject),
gnu/packages/gnome.scm (gdl-minimal, libsoup-minimal, python2-pyatspi),
gnu/packages/groff.scm (groff-minimal),
gnu/packages/jami.scm (ffmpeg-jami),
gnu/packages/libcanberra.scm (libcanberra/gtk+-2),
gnu/packages/lirc.scm (python2-lirc),
gnu/packages/llvm.scm (clang-runtime-3.5),
gnu/packages/mpi.scm (java-openmpi, openmpi-thread-multiple),
gnu/packages/node.scm (libnode),
gnu/packages/onc-rpc.scm (libtirpc/hurd),
gnu/packages/python-compression.scm (bitshuffle-for-snappy),
gnu/packages/python-crypto.scm (python2-pycrypto, python2-cryptography)
(python2-cryptography, python2-m2crypto),
gnu/packages/python-web.scm (python2-html2text, python2-tornado)
(python2-terminado, python2-ndg-httpsclient, python2-websocket-client)
(python2-rauth, python2-url, python2-s3transfer),
gnu/packages/python-xyz.scm (python2-psutil, python2-serpent)
(python2-humanfriendly, python2-empy, python2-parse-type, python2-polib)
(python2-jsonschema, python2-pystache, python2-cython, python2-numpydoc)
(python2-ipyparallel, python2-traitlets, python2-dbus)
(python2-beautifulsoup4, python2-pep517, python2-flake8, python2-llfuse)
(python2-tlsh, python-file, python2-notebook, python-jupyter-console-minimal)
(python2-contextlib2, python2-promise, python2-anyjson, python2-amqp)
(python2-kombu, python2-billiard, python2-celery, python2-whoosh)
(python2-jellyfish, python-rope, ptpython-2, python2-binaryornot)
(python2-setproctitle, python2-argcomplete, python2-xopen, python2-isort)
(python2-radon, python2-rfc6555, python2-activepapers, python2-send2trash)
(python2-cloudpickle, python2-reparser),
gnu/packages/python.scm (python2-called-python),
gnu/packages/qt.scm (python2-sip, python-pyqt-without-qtwebkit, python2-pyqt)
(python-qscintilla, python-pyqt+qscintilla),
gnu/packages/scanner.scm (sane-backends),
gnu/packages/sdl.scm (guile3.0-sdl2),
gnu/packages/selinux.scm (checkpolicy, libselinux, libsemanage, secilc)
(python-sepolgen, policycoreutils),
gnu/packages/serialization.scm (lua5.1-libmpack, lua5.2-libmpack),
gnu/packages/simulation.scm (fenics),
gnu/packages/statistics.scm (python2-statsmodels),
gnu/packages/texinfo.scm (info-reader),
gnu/packages/wxwidgets.scm (wxwidgets-gtk2, wxwidgets-gtk2-3.1),
gnu/packages/xml.scm (xmlsec-nss),
gnu/packages/xorg.scm (uim-gtk, uim-qt),
guix/build-system/python.scm (package-with-explicit-python)
(strip-python2-variant): Use PACKAGE/INHERIT.
2021-03-17 03:42:12 -04:00
|
|
|
(package/inherit libsepol
|
2017-04-14 07:44:00 -04:00
|
|
|
(name "secilc")
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments libsepol)
|
|
|
|
((#:make-flags flags)
|
|
|
|
`(let ((docbook (assoc-ref %build-inputs "docbook-xsl")))
|
|
|
|
(cons (string-append "XMLTO=xmlto --skip-validation -x "
|
|
|
|
docbook "/xml/xsl/docbook-xsl-"
|
|
|
|
,(package-version docbook-xsl)
|
|
|
|
"/manpages/docbook.xsl")
|
|
|
|
,flags)))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
2018-01-29 16:13:29 -05:00
|
|
|
(delete 'portability)
|
2017-04-14 07:44:00 -04:00
|
|
|
(replace 'enter-dir
|
2021-04-12 05:08:23 -04:00
|
|
|
(lambda _ (chdir ,name)))))))
|
2017-04-14 07:44:00 -04:00
|
|
|
(inputs
|
|
|
|
`(("libsepol" ,libsepol)))
|
|
|
|
(native-inputs
|
|
|
|
`(("xmlto" ,xmlto)
|
|
|
|
("docbook-xsl" ,docbook-xsl)))
|
|
|
|
(synopsis "SELinux common intermediate language (CIL) compiler")
|
|
|
|
(description "The SELinux CIL compiler is a compiler that converts the
|
|
|
|
@dfn{common intermediate language} (CIL) into a kernel binary policy file.")
|
|
|
|
(license license:bsd-2)))
|
2017-04-14 07:48:36 -04:00
|
|
|
|
|
|
|
(define-public python-sepolgen
|
gnu: Use PACKAGE/INHERIT in more places.
* gnu/packages/algebra.scm (fftwf, fftw-openmpi),
gnu/packages/audio.scm (ztoolkit-rsvg),
gnu/packages/bioinformatics.scm (python2-dendropy),
gnu/packages/boost.scm (boost-with-python2),
gnu/packages/check.scm (python2-mock, python2-pytest-mock),
gnu/packages/cups.scm (hplip-minimal),
gnu/packages/freedesktop.scm (libinput-minimal),
gnu/packages/gettext.scm (gnu-gettext),
gnu/packages/glib.scm (python2-pygobject),
gnu/packages/gnome.scm (gdl-minimal, libsoup-minimal, python2-pyatspi),
gnu/packages/groff.scm (groff-minimal),
gnu/packages/jami.scm (ffmpeg-jami),
gnu/packages/libcanberra.scm (libcanberra/gtk+-2),
gnu/packages/lirc.scm (python2-lirc),
gnu/packages/llvm.scm (clang-runtime-3.5),
gnu/packages/mpi.scm (java-openmpi, openmpi-thread-multiple),
gnu/packages/node.scm (libnode),
gnu/packages/onc-rpc.scm (libtirpc/hurd),
gnu/packages/python-compression.scm (bitshuffle-for-snappy),
gnu/packages/python-crypto.scm (python2-pycrypto, python2-cryptography)
(python2-cryptography, python2-m2crypto),
gnu/packages/python-web.scm (python2-html2text, python2-tornado)
(python2-terminado, python2-ndg-httpsclient, python2-websocket-client)
(python2-rauth, python2-url, python2-s3transfer),
gnu/packages/python-xyz.scm (python2-psutil, python2-serpent)
(python2-humanfriendly, python2-empy, python2-parse-type, python2-polib)
(python2-jsonschema, python2-pystache, python2-cython, python2-numpydoc)
(python2-ipyparallel, python2-traitlets, python2-dbus)
(python2-beautifulsoup4, python2-pep517, python2-flake8, python2-llfuse)
(python2-tlsh, python-file, python2-notebook, python-jupyter-console-minimal)
(python2-contextlib2, python2-promise, python2-anyjson, python2-amqp)
(python2-kombu, python2-billiard, python2-celery, python2-whoosh)
(python2-jellyfish, python-rope, ptpython-2, python2-binaryornot)
(python2-setproctitle, python2-argcomplete, python2-xopen, python2-isort)
(python2-radon, python2-rfc6555, python2-activepapers, python2-send2trash)
(python2-cloudpickle, python2-reparser),
gnu/packages/python.scm (python2-called-python),
gnu/packages/qt.scm (python2-sip, python-pyqt-without-qtwebkit, python2-pyqt)
(python-qscintilla, python-pyqt+qscintilla),
gnu/packages/scanner.scm (sane-backends),
gnu/packages/sdl.scm (guile3.0-sdl2),
gnu/packages/selinux.scm (checkpolicy, libselinux, libsemanage, secilc)
(python-sepolgen, policycoreutils),
gnu/packages/serialization.scm (lua5.1-libmpack, lua5.2-libmpack),
gnu/packages/simulation.scm (fenics),
gnu/packages/statistics.scm (python2-statsmodels),
gnu/packages/texinfo.scm (info-reader),
gnu/packages/wxwidgets.scm (wxwidgets-gtk2, wxwidgets-gtk2-3.1),
gnu/packages/xml.scm (xmlsec-nss),
gnu/packages/xorg.scm (uim-gtk, uim-qt),
guix/build-system/python.scm (package-with-explicit-python)
(strip-python2-variant): Use PACKAGE/INHERIT.
2021-03-17 03:42:12 -04:00
|
|
|
(package/inherit libsepol
|
2017-04-14 07:48:36 -04:00
|
|
|
(name "python-sepolgen")
|
|
|
|
(arguments
|
|
|
|
`(#:modules ((srfi srfi-1)
|
|
|
|
(guix build gnu-build-system)
|
|
|
|
(guix build utils))
|
|
|
|
,@(substitute-keyword-arguments (package-arguments libsepol)
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
2018-01-29 16:13:29 -05:00
|
|
|
(delete 'portability)
|
2017-04-14 07:48:36 -04:00
|
|
|
(replace 'enter-dir
|
2021-04-12 05:08:23 -04:00
|
|
|
(lambda _ (chdir "python/sepolgen")))
|
2017-04-14 07:48:36 -04:00
|
|
|
;; By default all Python files would be installed to
|
|
|
|
;; $out/gnu/store/...-python-.../, so we override the
|
|
|
|
;; PACKAGEDIR to fix this.
|
|
|
|
(add-after 'enter-dir 'fix-target-path
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let ((get-python-version
|
|
|
|
;; FIXME: copied from python-build-system
|
|
|
|
(lambda (python)
|
|
|
|
(let* ((version (last (string-split python #\-)))
|
|
|
|
(components (string-split version #\.))
|
|
|
|
(major+minor (take components 2)))
|
|
|
|
(string-join major+minor ".")))))
|
|
|
|
(substitute* "src/sepolgen/Makefile"
|
|
|
|
(("^PACKAGEDIR.*")
|
|
|
|
(string-append "PACKAGEDIR="
|
|
|
|
(assoc-ref outputs "out")
|
|
|
|
"/lib/python"
|
|
|
|
(get-python-version
|
|
|
|
(assoc-ref inputs "python"))
|
|
|
|
"/site-packages/sepolgen")))
|
|
|
|
(substitute* "src/share/Makefile"
|
2021-04-12 05:08:23 -04:00
|
|
|
(("\\$\\(DESTDIR\\)") (assoc-ref outputs "out")))))))))))
|
2017-04-14 07:48:36 -04:00
|
|
|
(inputs
|
|
|
|
`(("python" ,python-wrapper)))
|
|
|
|
(native-inputs '())
|
|
|
|
(synopsis "Python module for generating SELinux policies")
|
|
|
|
(description
|
|
|
|
"This package contains a Python module that forms the core of
|
|
|
|
@code{audit2allow}, a part of the package @code{policycoreutils}. The
|
|
|
|
sepolgen library contains: Reference Policy Representation, which are Objects
|
|
|
|
for representing policies and the reference policy interfaces. It has objects
|
|
|
|
and algorithms for representing access and sets of access in an abstract way
|
|
|
|
and searching that access. It also has a parser for reference policy
|
|
|
|
\"headers\". It contains infrastructure for parsing SELinux related messages
|
|
|
|
as produced by the audit system. It has facilities for generating policy
|
|
|
|
based on required access.")
|
|
|
|
;; GPLv2 only
|
|
|
|
(license license:gpl2)))
|
2017-04-19 08:43:19 -04:00
|
|
|
|
|
|
|
(define-public python-setools
|
|
|
|
(package
|
|
|
|
(name "python-setools")
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
(version "4.1.1")
|
2017-04-19 08:43:19 -04:00
|
|
|
(source (origin
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
(url "https://github.com/TresysTechnology/setools")
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
(commit version)))
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
2017-04-19 08:43:19 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
"0459xxly6zzqc5azcwk3rbbcxvj60dq08f8z6xr05y7dsbb16cg6"))))
|
2017-04-19 08:43:19 -04:00
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; the test target causes a rebuild
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-01-29 16:13:29 -05:00
|
|
|
(delete 'portability)
|
2017-04-19 08:43:19 -04:00
|
|
|
(add-after 'unpack 'set-SEPOL-variable
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(setenv "SEPOL"
|
2021-07-16 10:19:35 -04:00
|
|
|
(search-input-file inputs "/lib/libsepol.a"))))
|
2017-04-19 08:43:19 -04:00
|
|
|
(add-after 'unpack 'remove-Werror
|
|
|
|
(lambda _
|
|
|
|
(substitute* "setup.py"
|
|
|
|
(("'-Werror',") ""))
|
|
|
|
#t))
|
|
|
|
(add-after 'unpack 'fix-target-paths
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(substitute* "setup.py"
|
|
|
|
(("join\\(sys.prefix")
|
|
|
|
(string-append "join(\"" (assoc-ref outputs "out") "/\"")))
|
|
|
|
#t)))))
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list python-networkx))
|
2017-04-19 08:43:19 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list libsepol libselinux))
|
2017-04-19 08:43:19 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list bison flex swig))
|
2017-04-19 08:43:19 -04:00
|
|
|
(home-page "https://github.com/TresysTechnology/setools")
|
|
|
|
(synopsis "Tools for SELinux policy analysis")
|
|
|
|
(description "SETools is a collection of graphical tools, command-line
|
|
|
|
tools, and libraries designed to facilitate SELinux policy analysis.")
|
|
|
|
;; Some programs are under GPL, all libraries under LGPL.
|
|
|
|
(license (list license:lgpl2.1+
|
|
|
|
license:gpl2+))))
|
2017-04-14 07:52:22 -04:00
|
|
|
|
|
|
|
(define-public policycoreutils
|
gnu: Use PACKAGE/INHERIT in more places.
* gnu/packages/algebra.scm (fftwf, fftw-openmpi),
gnu/packages/audio.scm (ztoolkit-rsvg),
gnu/packages/bioinformatics.scm (python2-dendropy),
gnu/packages/boost.scm (boost-with-python2),
gnu/packages/check.scm (python2-mock, python2-pytest-mock),
gnu/packages/cups.scm (hplip-minimal),
gnu/packages/freedesktop.scm (libinput-minimal),
gnu/packages/gettext.scm (gnu-gettext),
gnu/packages/glib.scm (python2-pygobject),
gnu/packages/gnome.scm (gdl-minimal, libsoup-minimal, python2-pyatspi),
gnu/packages/groff.scm (groff-minimal),
gnu/packages/jami.scm (ffmpeg-jami),
gnu/packages/libcanberra.scm (libcanberra/gtk+-2),
gnu/packages/lirc.scm (python2-lirc),
gnu/packages/llvm.scm (clang-runtime-3.5),
gnu/packages/mpi.scm (java-openmpi, openmpi-thread-multiple),
gnu/packages/node.scm (libnode),
gnu/packages/onc-rpc.scm (libtirpc/hurd),
gnu/packages/python-compression.scm (bitshuffle-for-snappy),
gnu/packages/python-crypto.scm (python2-pycrypto, python2-cryptography)
(python2-cryptography, python2-m2crypto),
gnu/packages/python-web.scm (python2-html2text, python2-tornado)
(python2-terminado, python2-ndg-httpsclient, python2-websocket-client)
(python2-rauth, python2-url, python2-s3transfer),
gnu/packages/python-xyz.scm (python2-psutil, python2-serpent)
(python2-humanfriendly, python2-empy, python2-parse-type, python2-polib)
(python2-jsonschema, python2-pystache, python2-cython, python2-numpydoc)
(python2-ipyparallel, python2-traitlets, python2-dbus)
(python2-beautifulsoup4, python2-pep517, python2-flake8, python2-llfuse)
(python2-tlsh, python-file, python2-notebook, python-jupyter-console-minimal)
(python2-contextlib2, python2-promise, python2-anyjson, python2-amqp)
(python2-kombu, python2-billiard, python2-celery, python2-whoosh)
(python2-jellyfish, python-rope, ptpython-2, python2-binaryornot)
(python2-setproctitle, python2-argcomplete, python2-xopen, python2-isort)
(python2-radon, python2-rfc6555, python2-activepapers, python2-send2trash)
(python2-cloudpickle, python2-reparser),
gnu/packages/python.scm (python2-called-python),
gnu/packages/qt.scm (python2-sip, python-pyqt-without-qtwebkit, python2-pyqt)
(python-qscintilla, python-pyqt+qscintilla),
gnu/packages/scanner.scm (sane-backends),
gnu/packages/sdl.scm (guile3.0-sdl2),
gnu/packages/selinux.scm (checkpolicy, libselinux, libsemanage, secilc)
(python-sepolgen, policycoreutils),
gnu/packages/serialization.scm (lua5.1-libmpack, lua5.2-libmpack),
gnu/packages/simulation.scm (fenics),
gnu/packages/statistics.scm (python2-statsmodels),
gnu/packages/texinfo.scm (info-reader),
gnu/packages/wxwidgets.scm (wxwidgets-gtk2, wxwidgets-gtk2-3.1),
gnu/packages/xml.scm (xmlsec-nss),
gnu/packages/xorg.scm (uim-gtk, uim-qt),
guix/build-system/python.scm (package-with-explicit-python)
(strip-python2-variant): Use PACKAGE/INHERIT.
2021-03-17 03:42:12 -04:00
|
|
|
(package/inherit libsepol
|
2017-04-14 07:52:22 -04:00
|
|
|
(name "policycoreutils")
|
|
|
|
(arguments
|
|
|
|
`(#:test-target "test"
|
|
|
|
#:make-flags
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
2021-04-12 05:09:29 -04:00
|
|
|
(list (string-append "CC=" ,(cc-for-target))
|
2017-04-14 07:52:22 -04:00
|
|
|
(string-append "PREFIX=" out)
|
|
|
|
(string-append "LOCALEDIR=" out "/share/locale")
|
|
|
|
(string-append "BASHCOMPLETIONDIR=" out
|
|
|
|
"/share/bash-completion/completions")
|
|
|
|
"INSTALL=install -c -p"
|
|
|
|
"INSTALL_DIR=install -d"
|
|
|
|
;; These ones are needed because some Makefiles define the
|
|
|
|
;; directories relative to DESTDIR, not relative to PREFIX.
|
|
|
|
(string-append "SBINDIR=" out "/sbin")
|
|
|
|
(string-append "ETCDIR=" out "/etc")
|
|
|
|
(string-append "SYSCONFDIR=" out "/etc/sysconfig")
|
|
|
|
(string-append "MAN5DIR=" out "/share/man/man5")
|
|
|
|
(string-append "INSTALL_NLS_DIR=" out "/share/locale")
|
|
|
|
(string-append "AUTOSTARTDIR=" out "/etc/xdg/autostart")
|
|
|
|
(string-append "DBUSSERVICEDIR=" out "/share/dbus-1/services")
|
|
|
|
(string-append "SYSTEMDDIR=" out "/lib/systemd")
|
|
|
|
(string-append "INITDIR=" out "/etc/rc.d/init.d")
|
|
|
|
(string-append "SELINUXDIR=" out "/etc/selinux")))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(add-after 'unpack 'enter-dir
|
2021-04-12 05:08:23 -04:00
|
|
|
(lambda _ (chdir ,name)))
|
2017-04-14 07:52:22 -04:00
|
|
|
(add-after 'enter-dir 'ignore-/usr-tests
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; Rewrite lookup paths for header files.
|
|
|
|
(substitute* '("newrole/Makefile"
|
|
|
|
"setfiles/Makefile"
|
|
|
|
"run_init/Makefile")
|
|
|
|
(("/usr(/include/security/pam_appl.h)" _ file)
|
2021-07-16 10:01:49 -04:00
|
|
|
(search-input-file inputs file))
|
2017-04-14 07:52:22 -04:00
|
|
|
(("/usr(/include/libaudit.h)" _ file)
|
2021-07-16 10:01:49 -04:00
|
|
|
(search-input-file inputs file))))))))
|
2017-04-14 07:52:22 -04:00
|
|
|
(inputs
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
`(("audit" ,audit)
|
2017-04-14 07:52:22 -04:00
|
|
|
("pam" ,linux-pam)
|
|
|
|
("libsepol" ,libsepol)
|
|
|
|
("libselinux" ,libselinux)
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-24 18:30:37 -05:00
|
|
|
("libsemanage" ,libsemanage)))
|
2017-04-14 07:52:22 -04:00
|
|
|
(native-inputs
|
|
|
|
`(("gettext" ,gettext-minimal)))
|
|
|
|
(synopsis "SELinux core utilities")
|
|
|
|
(description "The policycoreutils package contains the core utilities that
|
|
|
|
are required for the basic operation of an SELinux-enabled GNU system and its
|
|
|
|
policies. These utilities include @code{load_policy} to load policies,
|
|
|
|
@code{setfiles} to label file systems, @code{newrole} to switch roles, and
|
|
|
|
@code{run_init} to run service scripts in their proper context.")
|
|
|
|
(license license:gpl2+)))
|