Gentoo Archives: gentoo-commits

From: "PaweA Hajdan (phajdan.jr)" <phajdan.jr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/hardened-shadow: hardened-shadow-0.9.1.ebuild ChangeLog hardened-shadow-0.9.ebuild
Date: Thu, 31 May 2012 10:53:10
Message-Id: 20120531105255.BDC932004B@flycatcher.gentoo.org
1 phajdan.jr 12/05/31 10:52:55
2
3 Modified: ChangeLog
4 Added: hardened-shadow-0.9.1.ebuild
5 Removed: hardened-shadow-0.9.ebuild
6 Log:
7 Version bump. Remove old.
8
9 (Portage version: 2.1.10.49/cvs/Linux i686)
10
11 Revision Changes Path
12 1.4 sys-apps/hardened-shadow/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hardened-shadow/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hardened-shadow/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hardened-shadow/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/hardened-shadow/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 24 May 2012 04:17:40 -0000 1.3
25 +++ ChangeLog 31 May 2012 10:52:55 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-apps/hardened-shadow
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hardened-shadow/ChangeLog,v 1.3 2012/05/24 04:17:40 vapier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hardened-shadow/ChangeLog,v 1.4 2012/05/31 10:52:55 phajdan.jr Exp $
31 +
32 +*hardened-shadow-0.9.1 (31 May 2012)
33 +
34 + 31 May 2012; Pawel Hajdan jr <phajdan.jr@g.o>
35 + -hardened-shadow-0.9.ebuild, +hardened-shadow-0.9.1.ebuild:
36 + Version bump. Remove old.
37
38 24 May 2012; Mike Frysinger <vapier@g.o> hardened-shadow-0.9-r1.ebuild,
39 hardened-shadow-0.9.ebuild:
40
41
42
43 1.1 sys-apps/hardened-shadow/hardened-shadow-0.9.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hardened-shadow/hardened-shadow-0.9.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hardened-shadow/hardened-shadow-0.9.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: hardened-shadow-0.9.1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/hardened-shadow/hardened-shadow-0.9.1.ebuild,v 1.1 2012/05/31 10:52:55 phajdan.jr Exp $
53
54 EAPI=4
55
56 inherit autotools-utils eutils multilib user
57
58 DESCRIPTION="Hardened implementation of user account utilities"
59 HOMEPAGE="http://code.google.com/p/hardened-shadow/"
60 SRC_URI="http://hardened-shadow.googlecode.com/files/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~x86"
65 IUSE=""
66
67 DEPEND="sys-libs/pam
68 !sys-apps/shadow"
69 RDEPEND="${DEPEND}
70 >=sys-auth/pambase-20120417"
71
72 DOCS=( README )
73
74 pkg_setup() {
75 # The hardened-shadow group is needed at src_install time,
76 # so the only place we can create the group is pkg_setup.
77 enewgroup hardened-shadow
78 }
79
80 src_install() {
81 autotools-utils_src_install
82
83 # Remove pam.d files colliding with pambase.
84 rm -r "${ED}"/etc/pam.d || die
85 }