idella4 14/07/22 02:36:42
Modified: ChangeLog
Added: couchdb-python-0.10.ebuild
Removed: couchdb-python-0.8.ebuild
couchdb-python-0.8-r1.ebuild
Log:
bump; drop py2.6 add py3 pypy support, add IUSE doc, build & install
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key
0xB8072B0D)
Revision Changes Path
1.28 dev-python/couchdb-python/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/couchdb-python/ChangeLog?rev=1.28&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/couchdb-python/ChangeLog?rev=1.28&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/couchdb-python/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 12 Sep 2013 20:59:38 -0000 1.27
+++ ChangeLog 22 Jul 2014 02:36:42 -0000 1.28
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/couchdb-python
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/ChangeLog,v 1.27
2013/09/12 20:59:38 mgorny Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/ChangeLog,v 1.28
2014/07/22 02:36:42 idella4 Exp $
+
+*couchdb-python-0.10 (22 Jul 2014)
+
+ 22 Jul 2014; Ian Delaney <[email protected]> +couchdb-python-0.10.ebuild,
+ -couchdb-python-0.8-r1.ebuild, -couchdb-python-0.8.ebuild:
+ bump; drop py2.6 add py3 pypy support, add IUSE doc, build & install
12 Sep 2013; Michał Górny <[email protected]> couchdb-python-0.8-r1.ebuild,
couchdb-python-0.9.ebuild:
1.1 dev-python/couchdb-python/couchdb-python-0.10.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/couchdb-python/couchdb-python-0.10.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/couchdb-python/couchdb-python-0.10.ebuild?rev=1.1&content-type=text/plain
Index: couchdb-python-0.10.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/dev-python/couchdb-python/couchdb-python-0.10.ebuild,v
1.1 2014/07/22 02:36:42 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
inherit distutils-r1
MY_PN="CouchDB"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python library for working with CouchDB"
HOMEPAGE="http://code.google.com/p/couchdb-python/
http://pypi.python.org/pypi/CouchDB"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
S=${WORKDIR}/${MY_P}
# Tests require connectivity to a couchdb server.
# Re-enable when the ebuild is capable of starting a local couchdb
# instance.
RESTRICT=test
python_compile_all() {
esetup.py build_sphinx
}
python_test() {
esetup.py test
}
python_install_all() {
use doc && local HTML_DOCS=( doc/build/html/. )
distutils-r1_python_install_all
}