Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.0.ebuild ChangeLog
Date: Sun, 21 Jun 2009 16:23:26
Message-Id: E1MIPpD-0003jI-C8@stork.gentoo.org
1 flameeyes 09/06/21 16:23:23
2
3 Modified: pam-1.1.0.ebuild ChangeLog
4 Log:
5 Restore the patch to disable man regeneration, comment it so that there is a bug reference too; also comment the xtests patch. Fix the warning for broken setups, removing pam_timestamp (which is present again).
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 sys-libs/pam/pam-1.1.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/pam-1.1.0.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/pam-1.1.0.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/pam-1.1.0.ebuild?r1=1.3&r2=1.4
14
15 Index: pam-1.1.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.0.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- pam-1.1.0.ebuild 21 Jun 2009 09:31:20 -0000 1.3
22 +++ pam-1.1.0.ebuild 21 Jun 2009 16:23:23 -0000 1.4
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.0.ebuild,v 1.3 2009/06/21 09:31:20 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.0.ebuild,v 1.4 2009/06/21 16:23:23 flameeyes Exp $
28
29 inherit libtool multilib eutils autotools pam toolchain-funcs flag-o-matic
30
31 @@ -55,7 +55,7 @@
32 eerror ""
33 eerror "Your current setup is using one or more of the following modules,"
34 eerror "that are not built or supported anymore:"
35 - eerror "pam_pwdb, pam_timestamp, pam_console"
36 + eerror "pam_pwdb, pam_console"
37 eerror "If you are in real need for these modules, please contact the maintainers"
38 eerror "of PAM through http://bugs.gentoo.org/ providing information about its"
39 eerror "use cases."
40 @@ -78,6 +78,15 @@
41 unpack ${A}
42 cd "${S}"
43
44 + # Avoid regeneration man _and_ documentation. The documentation
45 + # regeneration requires the xsl stylesheets for DocBook as well as
46 + # a browser; if lynx is not found, the buildsystem will also
47 + # default to Firefox, bad choice. — bug #274929
48 + epatch "${FILESDIR}/${MY_PN}-0.99.7.0-disable-regenerate-man.patch"
49 +
50 + # Avoid building xtests during "make all"; note that for what
51 + # we're concerned xtests are not even executed, so we should
52 + # probably use EXTRA_PROGRAMS.
53 epatch "${FILESDIR}/${MY_PN}-0.99.8.1-xtests.patch"
54
55 # Remove NIS dependencies, see bug #235431
56 @@ -118,6 +127,7 @@
57 --disable-db \
58 --disable-dependency-tracking \
59 --disable-prelude \
60 + --disable-regenerate-man \
61 ${myconf} || die "econf failed"
62 emake sepermitlockdir="/var/run/sepermit" || die "emake failed"
63 }
64
65
66
67 1.243 sys-libs/pam/ChangeLog
68
69 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.243&view=markup
70 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.243&content-type=text/plain
71 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.242&r2=1.243
72
73 Index: ChangeLog
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
76 retrieving revision 1.242
77 retrieving revision 1.243
78 diff -u -r1.242 -r1.243
79 --- ChangeLog 21 Jun 2009 09:31:20 -0000 1.242
80 +++ ChangeLog 21 Jun 2009 16:23:23 -0000 1.243
81 @@ -1,6 +1,11 @@
82 # ChangeLog for sys-libs/pam
83 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
84 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.242 2009/06/21 09:31:20 flameeyes Exp $
85 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.243 2009/06/21 16:23:23 flameeyes Exp $
86 +
87 + 21 Jun 2009; Diego E. Pettenò <flameeyes@g.o> pam-1.1.0.ebuild:
88 + Restore the patch to disable man regeneration, comment it so that there is
89 + a bug reference too; also comment the xtests patch. Fix the warning for
90 + broken setups, removing pam_timestamp (which is present again).
91
92 21 Jun 2009; Diego E. Pettenò <flameeyes@g.o> pam-1.1.0.ebuild,
93 +files/Linux-PAM-1.1.0-nonls.patch: