Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/paxctld/
Date: Fri, 04 Sep 2020 16:55:06
Message-Id: 1599238438.23058752eea10ee29d2eba26511af922ba296d6b.blueness@gentoo
1 commit: 23058752eea10ee29d2eba26511af922ba296d6b
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 4 16:53:58 2020 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 4 16:53:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23058752
7
8 sys-apps/paxctld: version bump to 1.2.5
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
12
13 sys-apps/paxctld/Manifest | 1 +
14 sys-apps/paxctld/paxctld-1.2.5.ebuild | 37 +++++++++++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/sys-apps/paxctld/Manifest b/sys-apps/paxctld/Manifest
18 index 191a0d21fd1..f431afd76e0 100644
19 --- a/sys-apps/paxctld/Manifest
20 +++ b/sys-apps/paxctld/Manifest
21 @@ -1 +1,2 @@
22 DIST paxctld_1.2.3.orig.tar.gz 17174 BLAKE2B 6f288b039f719febf2f3370a0d245c07928f441754f0ac43bb3608d2718548d0ab90fbf9244d5b97bdfbc7c6bfab3d7359d435e99a2e19dd80661019ba0b654c SHA512 da3f5739aabbe0f276a194c71c20349b0571472aa6c114fe46ea4eb406fe1b419b167207b8d0b288776574c455f005386303b8ef92b0294e98532b269017ab54
23 +DIST paxctld_1.2.5.orig.tar.gz 18694 BLAKE2B 9d219846bbdfc5d709d9fb3758ec9451bef1545d6bb25263aef1c42f992f4201e2ce9f9cae0a77ed7584ec5c3c6dd0e3d0c58ec251a52f0b855c87b0fcf0e826 SHA512 c38b2cb0bf07d0075fa01f95d82adf6aae6e7bd010fa31b349af7c92b0498bf3225344500ef306bb633caec0b642771f453a8445cadbf342775931495d0ef2c2
24
25 diff --git a/sys-apps/paxctld/paxctld-1.2.5.ebuild b/sys-apps/paxctld/paxctld-1.2.5.ebuild
26 new file mode 100644
27 index 00000000000..c4650263e8b
28 --- /dev/null
29 +++ b/sys-apps/paxctld/paxctld-1.2.5.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="6"
35 +
36 +inherit systemd
37 +
38 +DESCRIPTION="PaX flags maintenance daemon"
39 +HOMEPAGE="https://www.grsecurity.net/"
40 +SRC_URI="https://www.grsecurity.net/${PN}/${PN}_${PV}.orig.tar.gz
41 + https://dev.gentoo.org/~blueness/hardened-sources/${PN}/${PN}_${PV}.orig.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="pam"
47 +
48 +RDEPEND=""
49 +DEPEND=""
50 +
51 +src_prepare() {
52 + # Respect Gentoo flags and don't strip
53 + sed -i \
54 + -e '/^CC/d' \
55 + -e '/^CFLAGS/d' \
56 + -e '/^LDFLAGS/d' \
57 + -e '/STRIP/d' \
58 + Makefile
59 +
60 + eapply_user
61 +}
62 +
63 +src_install() {
64 + default
65 +
66 + systemd_dounit "${S}"/rpm/${PN}.service
67 +}