public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/betagarden:master commit in: dev-python/pymongo/
@ 2011-04-15 10:45 Justin Lecher
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher @ 2011-04-15 10:45 UTC (permalink / raw
  To: gentoo-commits

commit:     86b8abe7236f75a8006a88083f4bd92ff5e80b0a
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 15 10:45:23 2011 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Apr 15 10:45:23 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=86b8abe7

Last QA on repoman warnings

(Portage version: 2.2.0_alpha30/git/Linux x86_64, signed Manifest commit with key 70EB7916)

---
 dev-python/pymongo/ChangeLog          |   12 +++++++++++
 dev-python/pymongo/metadata.xml       |    6 +++++
 dev-python/pymongo/pymongo-1.6.ebuild |   34 +++++++++++++++++++++-----------
 dev-python/pymongo/pymongo-1.9.ebuild |   27 +++++++++++++++++--------
 4 files changed, 58 insertions(+), 21 deletions(-)

diff --git a/dev-python/pymongo/ChangeLog b/dev-python/pymongo/ChangeLog
new file mode 100644
index 0000000..cffe8e2
--- /dev/null
+++ b/dev-python/pymongo/ChangeLog
@@ -0,0 +1,12 @@
+# ChangeLog for dev-python/pymongo
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  15 Apr 2011; Justin Lecher <jlec@gentoo.org> pymongo-1.6.ebuild,
+  pymongo-1.9.ebuild, +metadata.xml:
+  Last QA on repoman warnings
+
+  15 Apr 2011; Justin Lecher <jlec@gentoo.org> pymongo-1.6.ebuild,
+  pymongo-1.9.ebuild:
+  Fix distutils deprecation warning on multiple pyABI
+

diff --git a/dev-python/pymongo/metadata.xml b/dev-python/pymongo/metadata.xml
new file mode 100644
index 0000000..e6233b5
--- /dev/null
+++ b/dev-python/pymongo/metadata.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
+</pkgmetadata>

diff --git a/dev-python/pymongo/pymongo-1.6.ebuild b/dev-python/pymongo/pymongo-1.6.ebuild
index 1c2abe6..b2f9cc9 100644
--- a/dev-python/pymongo/pymongo-1.6.ebuild
+++ b/dev-python/pymongo/pymongo-1.6.ebuild
@@ -1,25 +1,40 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
+EAPI="3"
+
+PYTHON_DEPEND="2"
+SUPPORT_PYTHON_ABIS="1"
+#RESTRICT_PYTHON_ABIS="3.*"
+
 inherit distutils
 
 DESCRIPTION="Python driver for MongoDB"
 HOMEPAGE="http://github.com/mongodb/mongo-python-driver"
-SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~x86 ~amd64"
 IUSE="doc test"
 
-RDEPEND=">=dev-lang/python-2.5"
-DEPEND="dev-python/setuptools
+RDEPEND=""
+DEPEND="${RDEPEND}
+	dev-python/setuptools
 	doc? ( dev-python/epydoc )
-	test? ( dev-python/nose
-		dev-db/mongodb )
-	${DEPEND}"
+	test? (
+		dev-python/nose
+		dev-db/mongodb
+	)"
 
+src_test() {
+	einfo "${PN} tests assume that you have a mongodb running on localhost:27017"
+	testing() {
+		PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test.py
+	}
+	python_execute_function testing
+}
 src_install() {
 	distutils_src_install
 
@@ -28,8 +43,3 @@ src_install() {
 		dohtml -r html/* || die "Installing docs failed"
 	fi
 }
-
-src_test() {
-	einfo "${PN} tests assume that you have a mongodb running on localhost:27017"
-	PYTHONPATH=build/lib ${python} setup.py test || die "Tests failed"
-}

diff --git a/dev-python/pymongo/pymongo-1.9.ebuild b/dev-python/pymongo/pymongo-1.9.ebuild
index 070437c..edfbac1 100644
--- a/dev-python/pymongo/pymongo-1.9.ebuild
+++ b/dev-python/pymongo/pymongo-1.9.ebuild
@@ -1,20 +1,26 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
+EAPI="3"
+
+PYTHON_DEPEND="2"
+SUPPORT_PYTHON_ABIS="1"
+#RESTRICT_PYTHON_ABIS="3.*"
+
 inherit distutils
 
 DESCRIPTION="Python driver for MongoDB"
 HOMEPAGE="http://github.com/mongodb/mongo-python-driver"
-SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~x86 ~amd64"
 IUSE="doc test"
 
-RDEPEND=">=dev-lang/python-2.5"
-DEPEND="${DEPEND}
+RDEPEND=""
+DEPEND="${RDEPEND}
 	dev-python/setuptools
 	doc? ( dev-python/epydoc )
 	test? (
@@ -22,6 +28,14 @@ DEPEND="${DEPEND}
 		dev-db/mongodb
 	)"
 
+src_test() {
+	einfo "${PN} tests assume that you have a mongodb running on localhost:27017"
+	testing() {
+		PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test.py
+	}
+	python_execute_function testing
+}
+
 src_install() {
 	distutils_src_install
 
@@ -30,8 +44,3 @@ src_install() {
 		dohtml -r html/* || die "Installing docs failed"
 	fi
 }
-
-src_test() {
-	einfo "${PN} tests assume that you have a mongodb running on localhost:27017"
-	PYTHONPATH=build/lib ${python} setup.py test || die "Tests failed"
-}



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

* [gentoo-commits] proj/betagarden:master commit in: dev-python/pymongo/
@ 2011-04-20 17:25 Justin Lecher
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher @ 2011-04-20 17:25 UTC (permalink / raw
  To: gentoo-commits

commit:     82370a923de0ad7094efb0cad743638dd10c1cc2
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 20 17:24:38 2011 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 17:24:38 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=82370a92

Newer Version is in the tree

---
 dev-python/pymongo/ChangeLog          |   12 --------
 dev-python/pymongo/metadata.xml       |    6 ----
 dev-python/pymongo/pymongo-1.6.ebuild |   45 --------------------------------
 dev-python/pymongo/pymongo-1.9.ebuild |   46 ---------------------------------
 4 files changed, 0 insertions(+), 109 deletions(-)

diff --git a/dev-python/pymongo/ChangeLog b/dev-python/pymongo/ChangeLog
deleted file mode 100644
index cffe8e2..0000000
--- a/dev-python/pymongo/ChangeLog
+++ /dev/null
@@ -1,12 +0,0 @@
-# ChangeLog for dev-python/pymongo
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  15 Apr 2011; Justin Lecher <jlec@gentoo.org> pymongo-1.6.ebuild,
-  pymongo-1.9.ebuild, +metadata.xml:
-  Last QA on repoman warnings
-
-  15 Apr 2011; Justin Lecher <jlec@gentoo.org> pymongo-1.6.ebuild,
-  pymongo-1.9.ebuild:
-  Fix distutils deprecation warning on multiple pyABI
-

diff --git a/dev-python/pymongo/metadata.xml b/dev-python/pymongo/metadata.xml
deleted file mode 100644
index e6233b5..0000000
--- a/dev-python/pymongo/metadata.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>no-herd</herd>
-<maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
-</pkgmetadata>

diff --git a/dev-python/pymongo/pymongo-1.6.ebuild b/dev-python/pymongo/pymongo-1.6.ebuild
deleted file mode 100644
index b2f9cc9..0000000
--- a/dev-python/pymongo/pymongo-1.6.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-#RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-DESCRIPTION="Python driver for MongoDB"
-HOMEPAGE="http://github.com/mongodb/mongo-python-driver"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="doc test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-	dev-python/setuptools
-	doc? ( dev-python/epydoc )
-	test? (
-		dev-python/nose
-		dev-db/mongodb
-	)"
-
-src_test() {
-	einfo "${PN} tests assume that you have a mongodb running on localhost:27017"
-	testing() {
-		PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test.py
-	}
-	python_execute_function testing
-}
-src_install() {
-	distutils_src_install
-
-	if use doc; then
-		epydoc --config=epydoc-config
-		dohtml -r html/* || die "Installing docs failed"
-	fi
-}

diff --git a/dev-python/pymongo/pymongo-1.9.ebuild b/dev-python/pymongo/pymongo-1.9.ebuild
deleted file mode 100644
index edfbac1..0000000
--- a/dev-python/pymongo/pymongo-1.9.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-#RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-DESCRIPTION="Python driver for MongoDB"
-HOMEPAGE="http://github.com/mongodb/mongo-python-driver"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="doc test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-	dev-python/setuptools
-	doc? ( dev-python/epydoc )
-	test? (
-		dev-python/nose
-		dev-db/mongodb
-	)"
-
-src_test() {
-	einfo "${PN} tests assume that you have a mongodb running on localhost:27017"
-	testing() {
-		PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test.py
-	}
-	python_execute_function testing
-}
-
-src_install() {
-	distutils_src_install
-
-	if use doc; then
-		epydoc --config=epydoc-config
-		dohtml -r html/* || die "Installing docs failed"
-	fi
-}



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

end of thread, other threads:[~2011-04-20 17:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-20 17:25 [gentoo-commits] proj/betagarden:master commit in: dev-python/pymongo/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2011-04-15 10:45 Justin Lecher

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