public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-libs/cracklib: cracklib-2.8.19.ebuild ChangeLog
@ 2012-05-18 18:24 Mike Frysinger (vapier)
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2012-05-18 18:24 UTC (permalink / raw
  To: gentoo-commits

vapier      12/05/18 18:24:05

  Modified:             ChangeLog
  Added:                cracklib-2.8.19.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha102/cvs/Linux x86_64)

Revision  Changes    Path
1.163                sys-libs/cracklib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.163&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.163&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?r1=1.162&r2=1.163

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- ChangeLog	22 Feb 2012 00:59:51 -0000	1.162
+++ ChangeLog	18 May 2012 18:24:05 -0000	1.163
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/cracklib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.162 2012/02/22 00:59:51 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.163 2012/05/18 18:24:05 vapier Exp $
+
+*cracklib-2.8.19 (18 May 2012)
+
+  18 May 2012; Mike Frysinger <vapier@gentoo.org> +cracklib-2.8.19.ebuild:
+  Version bump.
 
   22 Feb 2012; Patrick Lauer <patrick@gentoo.org> cracklib-2.8.16.ebuild,
   cracklib-2.8.18-r1.ebuild, cracklib-2.8.18.ebuild:



1.1                  sys-libs/cracklib/cracklib-2.8.19.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.1&content-type=text/plain

Index: cracklib-2.8.19.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.1 2012/05/18 18:24:05 vapier Exp $

EAPI="3"
PYTHON_DEPEND="python? 2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"

inherit eutils distutils libtool toolchain-funcs

MY_P=${P/_}
DESCRIPTION="Password Checking Library"
HOMEPAGE="http://sourceforge.net/projects/cracklib"
SRC_URI="mirror://sourceforge/cracklib/${MY_P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="nls python static-libs"

RDEPEND="sys-libs/zlib"
DEPEND="${RDEPEND}
	python? ( dev-python/setuptools )"

S=${WORKDIR}/${MY_P}

PYTHON_MODNAME="cracklib.py"
do_python() {
	pushd python > /dev/null || die
	distutils_src_${EBUILD_PHASE}
	popd > /dev/null
}

pkg_setup() {
	# workaround #195017
	if has unmerge-orphans ${FEATURES} && has_version "<${CATEGORY}/${PN}-2.8.10" ; then
		eerror "Upgrade path is broken with FEATURES=unmerge-orphans"
		eerror "Please run: FEATURES=-unmerge-orphans emerge cracklib"
		die "Please run: FEATURES=-unmerge-orphans emerge cracklib"
	fi

	use python && python_pkg_setup
}

src_prepare() {
	elibtoolize #269003
	use python && do_python
}

src_configure() {
	econf \
		--with-default-dict='$(libdir)/cracklib_dict' \
		--without-python \
		$(use_enable nls) \
		$(use_enable static-libs static)
}

src_compile() {
	default
	use python && do_python
}

src_install() {
	emake DESTDIR="${D}" install || die
	use static-libs || find "${ED}"/usr -name libcrack.la -delete
	rm -r "${ED}"/usr/share/cracklib

	use python && do_python

	# move shared libs to /
	gen_usr_ldscript -a crack

	insinto /usr/share/dict
	doins dicts/cracklib-small || die

	dodoc AUTHORS ChangeLog NEWS README*
}

pkg_postinst() {
	if [[ ${ROOT} == "/" ]] ; then
		ebegin "Regenerating cracklib dictionary"
		create-cracklib-dict /usr/share/dict/* > /dev/null
		eend $?
	fi

	use python && distutils_pkg_postinst
}

pkg_postrm() {
	use python && distutils_pkg_postrm
}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-libs/cracklib: cracklib-2.8.19.ebuild ChangeLog
@ 2012-05-18 20:19 Mike Frysinger (vapier)
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2012-05-18 20:19 UTC (permalink / raw
  To: gentoo-commits

vapier      12/05/18 20:19:49

  Modified:             cracklib-2.8.19.ebuild ChangeLog
  Log:
  Make zlib optional.
  
  (Portage version: 2.2.0_alpha102/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-libs/cracklib/cracklib-2.8.19.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?r1=1.1&r2=1.2

Index: cracklib-2.8.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cracklib-2.8.19.ebuild	18 May 2012 18:24:05 -0000	1.1
+++ cracklib-2.8.19.ebuild	18 May 2012 20:19:49 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.1 2012/05/18 18:24:05 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.2 2012/05/18 20:19:49 vapier Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2"
@@ -17,9 +17,9 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="nls python static-libs"
+IUSE="nls python static-libs zlib"
 
-RDEPEND="sys-libs/zlib"
+RDEPEND="zlib? ( sys-libs/zlib )"
 DEPEND="${RDEPEND}
 	python? ( dev-python/setuptools )"
 
@@ -27,9 +27,17 @@
 
 PYTHON_MODNAME="cracklib.py"
 do_python() {
-	pushd python > /dev/null || die
-	distutils_src_${EBUILD_PHASE}
-	popd > /dev/null
+	use python || return 0
+	case ${EBUILD_PHASE} in
+	prepare|configure|compile|install)
+		pushd python > /dev/null || die
+		distutils_src_${EBUILD_PHASE}
+		popd > /dev/null
+		;;
+	*)
+		distutils_pkg_${EBUILD_PHASE}
+		;;
+	esac
 }
 
 pkg_setup() {
@@ -45,10 +53,12 @@
 
 src_prepare() {
 	elibtoolize #269003
-	use python && do_python
+	do_python
 }
 
 src_configure() {
+	export ac_cv_header_zlib_h=$(usex zlib)
+	export ac_cv_search_gzopen=$(usex zlib -lz no)
 	econf \
 		--with-default-dict='$(libdir)/cracklib_dict' \
 		--without-python \
@@ -58,7 +68,7 @@
 
 src_compile() {
 	default
-	use python && do_python
+	do_python
 }
 
 src_install() {
@@ -66,7 +76,7 @@
 	use static-libs || find "${ED}"/usr -name libcrack.la -delete
 	rm -r "${ED}"/usr/share/cracklib
 
-	use python && do_python
+	do_python
 
 	# move shared libs to /
 	gen_usr_ldscript -a crack
@@ -84,9 +94,9 @@
 		eend $?
 	fi
 
-	use python && distutils_pkg_postinst
+	do_python
 }
 
 pkg_postrm() {
-	use python && distutils_pkg_postrm
+	do_python
 }



1.164                sys-libs/cracklib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.164&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.164&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?r1=1.163&r2=1.164

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog	18 May 2012 18:24:05 -0000	1.163
+++ ChangeLog	18 May 2012 20:19:49 -0000	1.164
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/cracklib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.163 2012/05/18 18:24:05 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.164 2012/05/18 20:19:49 vapier Exp $
+
+  18 May 2012; Mike Frysinger <vapier@gentoo.org> cracklib-2.8.19.ebuild:
+  Make zlib optional.
 
 *cracklib-2.8.19 (18 May 2012)
 






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-libs/cracklib: cracklib-2.8.19.ebuild ChangeLog
@ 2012-08-19 21:03 Christoph Junghans (ottxor)
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Junghans (ottxor) @ 2012-08-19 21:03 UTC (permalink / raw
  To: gentoo-commits

ottxor      12/08/19 21:03:34

  Modified:             cracklib-2.8.19.ebuild ChangeLog
  Log:
  added prefix keywords
  
  (Portage version: 2.2.0_alpha121/cvs/Linux i686)

Revision  Changes    Path
1.9                  sys-libs/cracklib/cracklib-2.8.19.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?r1=1.8&r2=1.9

Index: cracklib-2.8.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- cracklib-2.8.19.ebuild	4 Aug 2012 09:46:14 -0000	1.8
+++ cracklib-2.8.19.ebuild	19 Aug 2012 21:03:34 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.8 2012/08/04 09:46:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.9 2012/08/19 21:03:34 ottxor Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2"
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint"
 IUSE="nls python static-libs zlib"
 
 RDEPEND="zlib? ( sys-libs/zlib )"
@@ -90,7 +90,7 @@
 pkg_postinst() {
 	if [[ ${ROOT} == "/" ]] ; then
 		ebegin "Regenerating cracklib dictionary"
-		create-cracklib-dict /usr/share/dict/* > /dev/null
+		create-cracklib-dict "${EPREFIX}"/usr/share/dict/* > /dev/null
 		eend $?
 	fi
 



1.171                sys-libs/cracklib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?r1=1.170&r2=1.171

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	4 Aug 2012 09:46:14 -0000	1.170
+++ ChangeLog	19 Aug 2012 21:03:34 -0000	1.171
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/cracklib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.170 2012/08/04 09:46:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.171 2012/08/19 21:03:34 ottxor Exp $
+
+  19 Aug 2012; Christoph Junghans <ottxor@gentoo.org> cracklib-2.8.19.ebuild:
+  added prefix keywords
 
   04 Aug 2012; Agostino Sarubbo <ago@gentoo.org> cracklib-2.8.19.ebuild:
   Stable for amd64, wrt bug #427132





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-libs/cracklib: cracklib-2.8.19.ebuild ChangeLog
@ 2012-10-22  1:02 Richard Farina (zerochaos)
  0 siblings, 0 replies; 5+ messages in thread
From: Richard Farina (zerochaos) @ 2012-10-22  1:02 UTC (permalink / raw
  To: gentoo-commits

zerochaos    12/10/22 01:02:28

  Modified:             cracklib-2.8.19.ebuild ChangeLog
  Log:
  catalyst stage1 build with python enabled breaks so we add a build use flag to prevent adding python support too early
  
  (Portage version: 2.1.11.29/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)

Revision  Changes    Path
1.11                 sys-libs/cracklib/cracklib-2.8.19.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?r1=1.10&r2=1.11

Index: cracklib-2.8.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- cracklib-2.8.19.ebuild	26 Aug 2012 17:23:41 -0000	1.10
+++ cracklib-2.8.19.ebuild	22 Oct 2012 01:02:27 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.10 2012/08/26 17:23:41 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.11 2012/10/22 01:02:27 zerochaos Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2"
@@ -17,7 +17,7 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint"
-IUSE="nls python static-libs zlib"
+IUSE="build nls python static-libs zlib"
 
 RDEPEND="zlib? ( sys-libs/zlib )"
 DEPEND="${RDEPEND}
@@ -27,6 +27,7 @@
 
 PYTHON_MODNAME="cracklib.py"
 do_python() {
+	use build && return 0
 	use python || return 0
 	case ${EBUILD_PHASE} in
 	prepare|configure|compile|install)



1.173                sys-libs/cracklib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.173&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.173&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?r1=1.172&r2=1.173

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog	26 Aug 2012 17:23:41 -0000	1.172
+++ ChangeLog	22 Oct 2012 01:02:27 -0000	1.173
@@ -1,6 +1,10 @@
 # ChangeLog for sys-libs/cracklib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.172 2012/08/26 17:23:41 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.173 2012/10/22 01:02:27 zerochaos Exp $
+
+  22 Oct 2012; Rick Farina <zerochaos@gentoo.org> cracklib-2.8.19.ebuild:
+  catalyst stage1 build with python enabled breaks so we add a build use flag to
+  prevent adding python support too early
 
   26 Aug 2012; Raúl Porcel <armin76@gentoo.org> cracklib-2.8.19.ebuild:
   alpha/ia64/m68k/s390/sh/sparc stable wrt #427132





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-libs/cracklib: cracklib-2.8.19.ebuild ChangeLog
@ 2012-10-31 20:49 Richard Farina (zerochaos)
  0 siblings, 0 replies; 5+ messages in thread
From: Richard Farina (zerochaos) @ 2012-10-31 20:49 UTC (permalink / raw
  To: gentoo-commits

zerochaos    12/10/31 20:49:42

  Modified:             cracklib-2.8.19.ebuild ChangeLog
  Log:
  last fix for USE=build bootstrapping, missed a line on the previous commit
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)

Revision  Changes    Path
1.12                 sys-libs/cracklib/cracklib-2.8.19.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild?r1=1.11&r2=1.12

Index: cracklib-2.8.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- cracklib-2.8.19.ebuild	22 Oct 2012 01:02:27 -0000	1.11
+++ cracklib-2.8.19.ebuild	31 Oct 2012 20:49:42 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.11 2012/10/22 01:02:27 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.12 2012/10/31 20:49:42 zerochaos Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2"
@@ -49,7 +49,9 @@
 		die "Please run: FEATURES=-unmerge-orphans emerge cracklib"
 	fi
 
-	use python && python_pkg_setup
+	if use !build; then
+		use python && python_pkg_setup
+	fi
 }
 
 src_prepare() {



1.174                sys-libs/cracklib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/cracklib/ChangeLog?r1=1.173&r2=1.174

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	22 Oct 2012 01:02:27 -0000	1.173
+++ ChangeLog	31 Oct 2012 20:49:42 -0000	1.174
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/cracklib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.173 2012/10/22 01:02:27 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.174 2012/10/31 20:49:42 zerochaos Exp $
+
+  31 Oct 2012; Rick Farina <zerochaos@gentoo.org> cracklib-2.8.19.ebuild:
+  last fix for USE=build bootstrapping, missed a line on the previous commit
 
   22 Oct 2012; Rick Farina <zerochaos@gentoo.org> cracklib-2.8.19.ebuild:
   catalyst stage1 build with python enabled breaks so we add a build use flag to





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-10-31 20:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-18 20:19 [gentoo-commits] gentoo-x86 commit in sys-libs/cracklib: cracklib-2.8.19.ebuild ChangeLog Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2012-10-31 20:49 Richard Farina (zerochaos)
2012-10-22  1:02 Richard Farina (zerochaos)
2012-08-19 21:03 Christoph Junghans (ottxor)
2012-05-18 18:24 Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox