* [gentoo-commits] gentoo-x86 commit in dev-python/passlib: passlib-1.6.1.ebuild ChangeLog
@ 2013-01-01 6:22 Matt Thode (prometheanfire)
0 siblings, 0 replies; 3+ messages in thread
From: Matt Thode (prometheanfire) @ 2013-01-01 6:22 UTC (permalink / raw
To: gentoo-commits
prometheanfire 13/01/01 06:22:20
Modified: passlib-1.6.1.ebuild ChangeLog
Log:
refactor into distutils-r1 and eapi5
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Revision Changes Path
1.2 dev-python/passlib/passlib-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?r1=1.1&r2=1.2
Index: passlib-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- passlib-1.6.1.ebuild 28 Nov 2012 21:48:39 -0000 1.1
+++ passlib-1.6.1.ebuild 1 Jan 2013 06:22:20 -0000 1.2
@@ -1,10 +1,11 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v 1.1 2012/11/28 21:48:39 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v 1.2 2013/01/01 06:22:20 prometheanfire Exp $
-EAPI=4
+EAPI=5
+PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
-inherit distutils
+inherit distutils-r1
DESCRIPTION="comprehensive password hashing framework supporting over 20
schemes"
@@ -14,17 +15,19 @@
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="test doc"
-DEPEND="dev-python/setuptools
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose )"
RDEPEND=""
-src_install() {
- distutils_src_install
- if use doc; then
- dodoc "${S}"/docs/*
- fi
+python_test() {
+ "${PYTHON}" setup.py nosetests || die
}
-src_test() {
- PYTHONPATH=. "${python}" setup.py nosetests || die "tests failed"
+python_install() {
+ distutils-r1_python_install
+ if use doc; then
+ dodoc "${S}"/docs/*.rst
+ dodoc "${S}"/docs/requirements.txt
+ dodoc "${S}"/docs/lib/*.rst
+ fi
}
1.2 dev-python/passlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?r1=1.1&r2=1.2
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog 28 Nov 2012 21:48:39 -0000 1.1
+++ ChangeLog 1 Jan 2013 06:22:20 -0000 1.2
@@ -1,10 +1,12 @@
# ChangeLog for dev-python/passlib
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.1 2012/11/28 21:48:39 prometheanfire Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.2 2013/01/01 06:22:20 prometheanfire Exp $
+
+ 01 Jan 2013; Matthew Thode <prometheanfire@gentoo.org> passlib-1.6.1.ebuild:
+ refactor into distutils-r1 and eapi5
*passlib-1.6.1 (28 Nov 2012)
28 Nov 2012; Matthew Thode <prometheanfire@gentoo.org> +passlib-1.6.1.ebuild,
+metadata.xml:
adding as it is needed for keystone
-
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/passlib: passlib-1.6.1.ebuild ChangeLog
@ 2013-09-05 18:46 Michal Gorny (mgorny)
0 siblings, 0 replies; 3+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-05 18:46 UTC (permalink / raw
To: gentoo-commits
mgorny 13/09/05 18:46:43
Modified: passlib-1.6.1.ebuild ChangeLog
Log:
Clean up PYTHON_COMPAT from old implementations.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path
1.4 dev-python/passlib/passlib-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?r1=1.3&r2=1.4
Index: passlib-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- passlib-1.6.1.ebuild 12 Feb 2013 13:17:14 -0000 1.3
+++ passlib-1.6.1.ebuild 5 Sep 2013 18:46:43 -0000 1.4
@@ -1,9 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v 1.3 2013/02/12 13:17:14 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v 1.4 2013/09/05 18:46:43 mgorny Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} )
+PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )
inherit distutils-r1
1.4 dev-python/passlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?r1=1.3&r2=1.4
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog 12 Feb 2013 13:17:14 -0000 1.3
+++ ChangeLog 5 Sep 2013 18:46:43 -0000 1.4
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/passlib
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.3 2013/02/12 13:17:14 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.4 2013/09/05 18:46:43 mgorny Exp $
+
+ 05 Sep 2013; Michał Górny <mgorny@gentoo.org> passlib-1.6.1.ebuild:
+ Clean up PYTHON_COMPAT from old implementations.
12 Feb 2013; Michał Górny <mgorny@gentoo.org> metadata.xml,
passlib-1.6.1.ebuild:
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/passlib: passlib-1.6.1.ebuild ChangeLog
@ 2013-11-17 22:02 Matt Thode (prometheanfire)
0 siblings, 0 replies; 3+ messages in thread
From: Matt Thode (prometheanfire) @ 2013-11-17 22:02 UTC (permalink / raw
To: gentoo-commits
prometheanfire 13/11/17 22:02:23
Modified: passlib-1.6.1.ebuild ChangeLog
Log:
adding python 3.2 and 3.3 support for bug 487904
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Revision Changes Path
1.5 dev-python/passlib/passlib-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?r1=1.4&r2=1.5
Index: passlib-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- passlib-1.6.1.ebuild 5 Sep 2013 18:46:43 -0000 1.4
+++ passlib-1.6.1.ebuild 17 Nov 2013 22:02:23 -0000 1.5
@@ -1,9 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v 1.4 2013/09/05 18:46:43 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v 1.5 2013/11/17 22:02:23 prometheanfire Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
inherit distutils-r1
1.5 dev-python/passlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 5 Sep 2013 18:46:43 -0000 1.4
+++ ChangeLog 17 Nov 2013 22:02:23 -0000 1.5
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/passlib
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.4 2013/09/05 18:46:43 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.5 2013/11/17 22:02:23 prometheanfire Exp $
+
+ 17 Nov 2013; Matthew Thode <prometheanfire@gentoo.org> passlib-1.6.1.ebuild:
+ adding python 3.2 and 3.3 support for bug 487904
05 Sep 2013; Michał Górny <mgorny@gentoo.org> passlib-1.6.1.ebuild:
Clean up PYTHON_COMPAT from old implementations.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-11-17 22:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-05 18:46 [gentoo-commits] gentoo-x86 commit in dev-python/passlib: passlib-1.6.1.ebuild ChangeLog Michal Gorny (mgorny)
-- strict thread matches above, loose matches on Subject: below --
2013-11-17 22:02 Matt Thode (prometheanfire)
2013-01-01 6:22 Matt Thode (prometheanfire)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox