* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-04-06 5:39 Jonathan Callen (abcd)
0 siblings, 0 replies; 11+ messages in thread
From: Jonathan Callen (abcd) @ 2010-04-06 5:39 UTC (permalink / raw
To: gentoo-commits
abcd 10/04/06 05:39:38
Modified: ChangeLog
Added: pam-1.1.1-r2.ebuild
Log:
Bump to EAPI=3, add prefix keywords in revbump
(Portage version: -svn/cvs/Linux i686)
Revision Changes Path
1.257 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.257&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.257&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.256&r2=1.257
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog 10 Mar 2010 16:04:07 -0000 1.256
+++ ChangeLog 6 Apr 2010 05:39:37 -0000 1.257
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.256 2010/03/10 16:04:07 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.257 2010/04/06 05:39:37 abcd Exp $
+
+*pam-1.1.1-r2 (06 Apr 2010)
+
+ 06 Apr 2010; Jonathan Callen <abcd@gentoo.org> +pam-1.1.1-r2.ebuild:
+ Bump to EAPI=3, add prefix keywords in revbump
*pam-1.1.1-r1 (10 Mar 2010)
1.1 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.1&content-type=text/plain
Index: pam-1.1.1-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.1 2010/04/06 05:39:37 abcd Exp $
EAPI="3"
inherit libtool multilib eutils autotools pam toolchain-funcs flag-o-matic db-use
MY_PN="Linux-PAM"
MY_P="${MY_PN}-${PV}"
HOMEPAGE="http://www.kernel.org/pub/linux/libs/pam/"
DESCRIPTION="Linux-PAM (Pluggable Authentication Modules)"
SRC_URI="mirror://kernel/linux/libs/pam/library/${MY_P}.tar.bz2
mirror://kernel/linux/libs/pam/documentation/${MY_P}-docs.tar.bz2"
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="cracklib nls elibc_FreeBSD selinux vim-syntax audit test elibc_glibc debug berkdb"
RDEPEND="nls? ( virtual/libintl )
cracklib? ( >=sys-libs/cracklib-2.8.3 )
audit? ( sys-process/audit )
selinux? ( >=sys-libs/libselinux-1.28 )
berkdb? ( sys-libs/db )
elibc_glibc? ( >=sys-libs/glibc-2.7 )"
DEPEND="${RDEPEND}
sys-devel/flex
nls? ( sys-devel/gettext )"
PDEPEND="sys-auth/pambase
vim-syntax? ( app-vim/pam-syntax )"
RDEPEND="${RDEPEND}
!sys-auth/pam_userdb"
S="${WORKDIR}/${MY_P}"
PROVIDE="virtual/pam"
check_old_modules() {
local retval="0"
if sed -e 's:#.*::' "${EROOT}"/etc/pam.d/* 2>/dev/null | fgrep -q pam_stack.so; then
eerror ""
eerror "Your current setup is using the pam_stack module."
eerror "This module is deprecated and no longer supported, and since version"
eerror "0.99 is no longer installed, nor provided by any other package."
eerror "The package will be built (to allow binary package builds), but will"
eerror "not be installed."
eerror "Please replace pam_stack usage with proper include directive usage,"
eerror "following the PAM Upgrade guide at the following URL"
eerror " http://www.gentoo.org/proj/en/base/pam/upgrade-0.99.xml"
eerror ""
ebeep 15
retval=1
fi
if sed -e 's:#.*::' "${EROOT}"/etc/pam.d/* 2>/dev/null | egrep -q 'pam_(pwdb|console)'; then
eerror ""
eerror "Your current setup is using one or more of the following modules,"
eerror "that are not built or supported anymore:"
eerror "pam_pwdb, pam_console"
eerror "If you are in real need for these modules, please contact the maintainers"
eerror "of PAM through http://bugs.gentoo.org/ providing information about its"
eerror "use cases."
eerror "Please also make sure to read the PAM Upgrade guide at the following URL:"
eerror " http://www.gentoo.org/proj/en/base/pam/upgrade-0.99.xml"
eerror ""
ebeep 10
retval=1
fi
return $retval
}
pkg_setup() {
check_old_modules
}
src_prepare() {
# Avoid building xtests during "make all"; note that for what
# we're concerned xtests are not even executed, so we should
# probably use EXTRA_PROGRAMS.
epatch "${FILESDIR}/${MY_PN}-0.99.8.1-xtests.patch"
# Fix building on uClibc; it is added since 1.1.1 but applies to
# 1.1.0 as well.
epatch "${FILESDIR}/${MY_PN}-1.1.0-uclibc.patch"
# Fix tests to find Berkeley DB as installed by Gentoo (with a
# library suffix but no suffix on the ELF symbols).
epatch "${FILESDIR}/${MY_PN}-1.1.1-gentoodb.patch"
# Remove libtool-2 libtool macros, see bug 261167
rm m4/libtool.m4 m4/lt*.m4 || die "rm libtool macros failed."
eautoreconf
elibtoolize
}
src_configure() {
local myconf
if use hppa || use elibc_FreeBSD; then
myconf="${myconf} --disable-pie"
fi
econf \
--libdir="${EPREFIX}"/usr/$(get_libdir) \
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
--htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
--enable-securedir="${EPREFIX}"/$(get_libdir)/security \
--enable-isadir="${EPREFIX}"/$(get_libdir)/security \
$(use_enable nls) \
$(use_enable selinux) \
$(use_enable cracklib) \
$(use_enable audit) \
$(use_enable debug) \
$(use_enable berkdb db) \
--with-db-uniquename=-$(db_findver sys-libs/db) \
--disable-dependency-tracking \
--disable-prelude \
${myconf}
}
src_compile() {
emake sepermitlockdir="${EPREFIX}/var/run/sepermit" || die "emake failed"
}
src_install() {
local lib
emake DESTDIR="${D}" install \
sepermitlockdir="${EPREFIX}/var/run/sepermit" || die "make install failed"
# Need to be suid
fperms u+s /sbin/unix_chkpwd
gen_usr_ldscript -a pam pamc pam_misc
# create extra symlinks just in case something depends on them...
for lib in pam pamc pam_misc; do
if ! [[ -f "${ED}"/$(get_libdir)/lib${lib}$(get_libname) ]]; then
dosym lib${lib}$(get_libname 0) /$(get_libdir)/lib${lib}$(get_libname)
fi
done
dodoc CHANGELOG ChangeLog README AUTHORS Copyright NEWS || die
docinto modules
for dir in modules/pam_*; do
newdoc "${dir}"/README README."$(basename "${dir}")"
done
# Get rid of the .la files. We certainly don't need them for PAM
# modules, and libpam is installed as a shared object only, so we
# don't ned them for static linking either.
find "${D}" -name '*.la' -delete
}
pkg_preinst() {
check_old_modules || die "deprecated PAM modules still used"
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-05-18 14:45 Diego Petteno (flameeyes)
0 siblings, 0 replies; 11+ messages in thread
From: Diego Petteno (flameeyes) @ 2010-05-18 14:45 UTC (permalink / raw
To: gentoo-commits
flameeyes 10/05/18 14:45:05
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
Add patch to fix building with Berkeley DB 5.0, closes bug #319831. Thanks to Lars Wendler for reporting.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.3 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.2&r2=1.3
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pam-1.1.1-r2.ebuild 26 Apr 2010 12:04:09 -0000 1.2
+++ pam-1.1.1-r2.ebuild 18 May 2010 14:45:05 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.2 2010/04/26 12:04:09 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.3 2010/05/18 14:45:05 flameeyes Exp $
EAPI="3"
@@ -98,6 +98,10 @@
# found
epatch "${FILESDIR}/${MY_PN}-1.1.1-xcrypt.patch"
+ # fix building with Berkeley DB 5.0 and later; now defining
+ # DB_DBM_HSEARCH is not enough; bug #319831
+ epatch "${FILESDIR}/${MY_PN}-1.1.1+berkdb-5.patch"
+
# Remove libtool-2 libtool macros, see bug 261167
rm m4/libtool.m4 m4/lt*.m4 || die "rm libtool macros failed."
1.259 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.259&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.259&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.258&r2=1.259
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.258
retrieving revision 1.259
diff -u -r1.258 -r1.259
--- ChangeLog 26 Apr 2010 12:04:09 -0000 1.258
+++ ChangeLog 18 May 2010 14:45:05 -0000 1.259
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.258 2010/04/26 12:04:09 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.259 2010/05/18 14:45:05 flameeyes Exp $
+
+ 18 May 2010; Diego E. Pettenò <flameeyes@gentoo.org> pam-1.1.1-r2.ebuild,
+ +files/Linux-PAM-1.1.1+berkdb-5.patch:
+ Add patch to fix building with Berkeley DB 5.0, closes bug #319831. Thanks
+ to Lars Wendler for reporting.
26 Apr 2010; Diego E. Pettenò <flameeyes@gentoo.org>
-files/Linux-PAM-0.99.7.0-disable-regenerate-man.patch, -pam-1.0.4.ebuild,
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-05-22 9:09 Justin Lecher (jlec)
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher (jlec) @ 2010-05-22 9:09 UTC (permalink / raw
To: gentoo-commits
jlec 10/05/22 09:09:08
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
Removed ebeep in EAPI=3 ebuilds
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.4 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.3&r2=1.4
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pam-1.1.1-r2.ebuild 18 May 2010 14:45:05 -0000 1.3
+++ pam-1.1.1-r2.ebuild 22 May 2010 09:09:08 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.3 2010/05/18 14:45:05 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.4 2010/05/22 09:09:08 jlec Exp $
EAPI="3"
@@ -52,7 +52,6 @@
eerror "following the PAM Upgrade guide at the following URL"
eerror " http://www.gentoo.org/proj/en/base/pam/upgrade-0.99.xml"
eerror ""
- ebeep 15
retval=1
fi
@@ -68,7 +67,6 @@
eerror "Please also make sure to read the PAM Upgrade guide at the following URL:"
eerror " http://www.gentoo.org/proj/en/base/pam/upgrade-0.99.xml"
eerror ""
- ebeep 10
retval=1
fi
1.260 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.260&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.260&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.259&r2=1.260
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -r1.259 -r1.260
--- ChangeLog 18 May 2010 14:45:05 -0000 1.259
+++ ChangeLog 22 May 2010 09:09:08 -0000 1.260
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.259 2010/05/18 14:45:05 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.260 2010/05/22 09:09:08 jlec Exp $
+
+ 22 May 2010; Justin Lecher <jlec@gentoo.org> pam-1.1.1-r2.ebuild:
+ Removed ebeep in EAPI=3 ebuilds
18 May 2010; Diego E. Pettenò <flameeyes@gentoo.org> pam-1.1.1-r2.ebuild,
+files/Linux-PAM-1.1.1+berkdb-5.patch:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-07-26 15:42 Diego Petteno (flameeyes)
0 siblings, 0 replies; 11+ messages in thread
From: Diego Petteno (flameeyes) @ 2010-07-26 15:42 UTC (permalink / raw
To: gentoo-commits
flameeyes 10/07/26 15:42:50
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
Add patch per bug #329885 Thanks to Hugo Mildenberger.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.5 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.4&r2=1.5
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pam-1.1.1-r2.ebuild 22 May 2010 09:09:08 -0000 1.4
+++ pam-1.1.1-r2.ebuild 26 Jul 2010 15:42:50 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.4 2010/05/22 09:09:08 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.5 2010/07/26 15:42:50 flameeyes Exp $
EAPI="3"
@@ -100,6 +100,9 @@
# DB_DBM_HSEARCH is not enough; bug #319831
epatch "${FILESDIR}/${MY_PN}-1.1.1+berkdb-5.patch"
+ # fix tally file created executable, see bug #329885
+ epatch "${FILESDIR}/${MY_PN}-1.1.1-pam_tally2-mode.patch"
+
# Remove libtool-2 libtool macros, see bug 261167
rm m4/libtool.m4 m4/lt*.m4 || die "rm libtool macros failed."
1.261 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.261&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.261&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.260&r2=1.261
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -r1.260 -r1.261
--- ChangeLog 22 May 2010 09:09:08 -0000 1.260
+++ ChangeLog 26 Jul 2010 15:42:50 -0000 1.261
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.260 2010/05/22 09:09:08 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.261 2010/07/26 15:42:50 flameeyes Exp $
+
+ 26 Jul 2010; Diego E. Pettenò <flameeyes@gentoo.org> pam-1.1.1-r2.ebuild,
+ +files/Linux-PAM-1.1.1-pam_tally2-mode.patch:
+ Add patch per bug #329885 Thanks to Hugo Mildenberger.
22 May 2010; Justin Lecher <jlec@gentoo.org> pam-1.1.1-r2.ebuild:
Removed ebeep in EAPI=3 ebuilds
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-07-27 14:06 Christian Faulhammer (fauli)
0 siblings, 0 replies; 11+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-07-27 14:06 UTC (permalink / raw
To: gentoo-commits
fauli 10/07/27 14:06:05
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
stable x86, bug 329931
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.6 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.5&r2=1.6
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pam-1.1.1-r2.ebuild 26 Jul 2010 15:42:50 -0000 1.5
+++ pam-1.1.1-r2.ebuild 27 Jul 2010 14:06:05 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.5 2010/07/26 15:42:50 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.6 2010/07/27 14:06:05 fauli Exp $
EAPI="3"
@@ -17,7 +17,7 @@
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="cracklib nls elibc_FreeBSD selinux vim-syntax audit test elibc_glibc debug berkdb"
RDEPEND="nls? ( virtual/libintl )
1.262 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.262&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.262&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.261&r2=1.262
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog 26 Jul 2010 15:42:50 -0000 1.261
+++ ChangeLog 27 Jul 2010 14:06:05 -0000 1.262
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.261 2010/07/26 15:42:50 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.262 2010/07/27 14:06:05 fauli Exp $
+
+ 27 Jul 2010; Christian Faulhammer <fauli@gentoo.org> pam-1.1.1-r2.ebuild:
+ stable x86, bug 329931
26 Jul 2010; Diego E. Pettenò <flameeyes@gentoo.org> pam-1.1.1-r2.ebuild,
+files/Linux-PAM-1.1.1-pam_tally2-mode.patch:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-07-31 21:56 Markos Chandras (hwoarang)
0 siblings, 0 replies; 11+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-07-31 21:56 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/07/31 21:56:09
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
Stable on amd64 wrt bug #329931
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.7 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.6&r2=1.7
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pam-1.1.1-r2.ebuild 27 Jul 2010 14:06:05 -0000 1.6
+++ pam-1.1.1-r2.ebuild 31 Jul 2010 21:56:09 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.6 2010/07/27 14:06:05 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.7 2010/07/31 21:56:09 hwoarang Exp $
EAPI="3"
@@ -17,7 +17,7 @@
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="cracklib nls elibc_FreeBSD selinux vim-syntax audit test elibc_glibc debug berkdb"
RDEPEND="nls? ( virtual/libintl )
1.263 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.263&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.263&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.262&r2=1.263
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog 27 Jul 2010 14:06:05 -0000 1.262
+++ ChangeLog 31 Jul 2010 21:56:09 -0000 1.263
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.262 2010/07/27 14:06:05 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.263 2010/07/31 21:56:09 hwoarang Exp $
+
+ 31 Jul 2010; Markos Chandras <hwoarang@gentoo.org> pam-1.1.1-r2.ebuild:
+ Stable on amd64 wrt bug #329931
27 Jul 2010; Christian Faulhammer <fauli@gentoo.org> pam-1.1.1-r2.ebuild:
stable x86, bug 329931
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-08-01 3:47 Diego Petteno (flameeyes)
0 siblings, 0 replies; 11+ messages in thread
From: Diego Petteno (flameeyes) @ 2010-08-01 3:47 UTC (permalink / raw
To: gentoo-commits
flameeyes 10/08/01 03:47:44
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
Add a 'few' more messages at postinst, one warning against common problems with long-running software, and and the other about the bugged pam_tally2.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.8 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.7&r2=1.8
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pam-1.1.1-r2.ebuild 31 Jul 2010 21:56:09 -0000 1.7
+++ pam-1.1.1-r2.ebuild 1 Aug 2010 03:47:44 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.7 2010/07/31 21:56:09 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.8 2010/08/01 03:47:44 flameeyes Exp $
EAPI="3"
@@ -184,3 +184,20 @@
pkg_preinst() {
check_old_modules || die "deprecated PAM modules still used"
}
+
+pkg_postinst() {
+ ewarn "Some software with pre-loaded PAM libraries might experience"
+ ewarn "warnings or failures related to missing symbols and/or versions"
+ ewarn "after any update. While unfortunate this is a limit of the"
+ ewarn "implementation of PAM and the software, and it requires you to"
+ ewarn "restart the software manually after the update."
+ ewarn ""
+ ewarn "You can get a list of such software running a command like"
+ ewarn " lsof / | egrep 'DEL.*libpam\\.so'"
+ elog ""
+ elog "Because of a bug present up to version 1.1.1-r2, you might have"
+ elog "an executable /var/log/tallylog file. If it is so, you can safely"
+ elog "correct it by running the command"
+ elog " chmod -x /var/log/tallylog"
+ elog ""
+}
1.264 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.264&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.264&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.263&r2=1.264
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.263
retrieving revision 1.264
diff -u -r1.263 -r1.264
--- ChangeLog 31 Jul 2010 21:56:09 -0000 1.263
+++ ChangeLog 1 Aug 2010 03:47:44 -0000 1.264
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.263 2010/07/31 21:56:09 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.264 2010/08/01 03:47:44 flameeyes Exp $
+
+ 01 Aug 2010; Diego E. Pettenò <flameeyes@gentoo.org> pam-1.1.1-r2.ebuild:
+ Add a 'few' more messages at postinst, one warning against common problems
+ with long-running software, and and the other about the bugged pam_tally2.
31 Jul 2010; Markos Chandras <hwoarang@gentoo.org> pam-1.1.1-r2.ebuild:
Stable on amd64 wrt bug #329931
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-08-21 18:58 Markus Meier (maekke)
0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2010-08-21 18:58 UTC (permalink / raw
To: gentoo-commits
maekke 10/08/21 18:58:04
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
arm stable, bug #329931
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.9 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.8&r2=1.9
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pam-1.1.1-r2.ebuild 1 Aug 2010 03:47:44 -0000 1.8
+++ pam-1.1.1-r2.ebuild 21 Aug 2010 18:58:03 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.8 2010/08/01 03:47:44 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.9 2010/08/21 18:58:03 maekke Exp $
EAPI="3"
@@ -17,7 +17,7 @@
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="cracklib nls elibc_FreeBSD selinux vim-syntax audit test elibc_glibc debug berkdb"
RDEPEND="nls? ( virtual/libintl )
1.265 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.265&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.265&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.264&r2=1.265
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -r1.264 -r1.265
--- ChangeLog 1 Aug 2010 03:47:44 -0000 1.264
+++ ChangeLog 21 Aug 2010 18:58:03 -0000 1.265
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.264 2010/08/01 03:47:44 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.265 2010/08/21 18:58:03 maekke Exp $
+
+ 21 Aug 2010; Markus Meier <maekke@gentoo.org> pam-1.1.1-r2.ebuild:
+ arm stable, bug #329931
01 Aug 2010; Diego E. Pettenò <flameeyes@gentoo.org> pam-1.1.1-r2.ebuild:
Add a 'few' more messages at postinst, one warning against common problems
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-09-05 19:02 Raul Porcel (armin76)
0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2010-09-05 19:02 UTC (permalink / raw
To: gentoo-commits
armin76 10/09/05 19:02:22
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
alpha/ia64/m68k/s390/sh/sparc stable wrt #329931
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.10 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.9&r2=1.10
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- pam-1.1.1-r2.ebuild 21 Aug 2010 18:58:03 -0000 1.9
+++ pam-1.1.1-r2.ebuild 5 Sep 2010 19:02:22 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.9 2010/08/21 18:58:03 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.10 2010/09/05 19:02:22 armin76 Exp $
EAPI="3"
@@ -17,7 +17,7 @@
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="cracklib nls elibc_FreeBSD selinux vim-syntax audit test elibc_glibc debug berkdb"
RDEPEND="nls? ( virtual/libintl )
1.267 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.267&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.267&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.266&r2=1.267
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.266
retrieving revision 1.267
diff -u -r1.266 -r1.267
--- ChangeLog 31 Aug 2010 12:32:45 -0000 1.266
+++ ChangeLog 5 Sep 2010 19:02:22 -0000 1.267
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.266 2010/08/31 12:32:45 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.267 2010/09/05 19:02:22 armin76 Exp $
+
+ 05 Sep 2010; Raúl Porcel <armin76@gentoo.org> pam-1.1.1-r2.ebuild:
+ alpha/ia64/m68k/s390/sh/sparc stable wrt #329931
*pam-1.1.2 (31 Aug 2010)
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-09-06 21:22 Brent Baude (ranger)
0 siblings, 0 replies; 11+ messages in thread
From: Brent Baude (ranger) @ 2010-09-06 21:22 UTC (permalink / raw
To: gentoo-commits
ranger 10/09/06 21:22:14
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
Marking pam-1.1.1-r2 ppc64 for bug 329931
(Portage version: 2.1.8.3/cvs/Linux ppc64)
Revision Changes Path
1.11 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.10&r2=1.11
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- pam-1.1.1-r2.ebuild 5 Sep 2010 19:02:22 -0000 1.10
+++ pam-1.1.1-r2.ebuild 6 Sep 2010 21:22:14 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.10 2010/09/05 19:02:22 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.11 2010/09/06 21:22:14 ranger Exp $
EAPI="3"
@@ -17,7 +17,7 @@
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="cracklib nls elibc_FreeBSD selinux vim-syntax audit test elibc_glibc debug berkdb"
RDEPEND="nls? ( virtual/libintl )
1.268 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.268&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.268&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.267&r2=1.268
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.267
retrieving revision 1.268
diff -u -r1.267 -r1.268
--- ChangeLog 5 Sep 2010 19:02:22 -0000 1.267
+++ ChangeLog 6 Sep 2010 21:22:14 -0000 1.268
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.267 2010/09/05 19:02:22 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.268 2010/09/06 21:22:14 ranger Exp $
+
+ 06 Sep 2010; Brent Baude <ranger@gentoo.org> pam-1.1.1-r2.ebuild:
+ Marking pam-1.1.1-r2 ppc64 for bug 329931
05 Sep 2010; Raúl Porcel <armin76@gentoo.org> pam-1.1.1-r2.ebuild:
alpha/ia64/m68k/s390/sh/sparc stable wrt #329931
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog
@ 2010-09-13 14:12 Joseph Jezak (josejx)
0 siblings, 0 replies; 11+ messages in thread
From: Joseph Jezak (josejx) @ 2010-09-13 14:12 UTC (permalink / raw
To: gentoo-commits
josejx 10/09/13 14:12:23
Modified: pam-1.1.1-r2.ebuild ChangeLog
Log:
Marked ppc stable for bug #329931.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.12 sys-libs/pam/pam-1.1.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild?r1=1.11&r2=1.12
Index: pam-1.1.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- pam-1.1.1-r2.ebuild 6 Sep 2010 21:22:14 -0000 1.11
+++ pam-1.1.1-r2.ebuild 13 Sep 2010 14:12:23 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.11 2010/09/06 21:22:14 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.1-r2.ebuild,v 1.12 2010/09/13 14:12:23 josejx Exp $
EAPI="3"
@@ -17,7 +17,7 @@
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="cracklib nls elibc_FreeBSD selinux vim-syntax audit test elibc_glibc debug berkdb"
RDEPEND="nls? ( virtual/libintl )
1.269 sys-libs/pam/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.269&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.269&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.268&r2=1.269
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -r1.268 -r1.269
--- ChangeLog 6 Sep 2010 21:22:14 -0000 1.268
+++ ChangeLog 13 Sep 2010 14:12:23 -0000 1.269
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/pam
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.268 2010/09/06 21:22:14 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.269 2010/09/13 14:12:23 josejx Exp $
+
+ 13 Sep 2010; Joseph Jezak <josejx@gentoo.org> pam-1.1.1-r2.ebuild:
+ Marked ppc stable for bug #329931.
06 Sep 2010; Brent Baude <ranger@gentoo.org> pam-1.1.1-r2.ebuild:
Marking pam-1.1.1-r2 ppc64 for bug 329931
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2010-09-13 14:12 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-21 18:58 [gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.1.1-r2.ebuild ChangeLog Markus Meier (maekke)
-- strict thread matches above, loose matches on Subject: below --
2010-09-13 14:12 Joseph Jezak (josejx)
2010-09-06 21:22 Brent Baude (ranger)
2010-09-05 19:02 Raul Porcel (armin76)
2010-08-01 3:47 Diego Petteno (flameeyes)
2010-07-31 21:56 Markos Chandras (hwoarang)
2010-07-27 14:06 Christian Faulhammer (fauli)
2010-07-26 15:42 Diego Petteno (flameeyes)
2010-05-22 9:09 Justin Lecher (jlec)
2010-05-18 14:45 Diego Petteno (flameeyes)
2010-04-06 5:39 Jonathan Callen (abcd)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox