dev-python/minidb: bump to 2.0.2
authorLouis Sautier <sautier.louis@gmail.com>
Mon, 16 Jan 2017 00:51:09 +0000 (01:51 +0100)
committerDavid Seifert <soap@gentoo.org>
Mon, 16 Jan 2017 09:27:39 +0000 (10:27 +0100)
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3496

dev-python/minidb/Manifest
dev-python/minidb/metadata.xml
dev-python/minidb/minidb-2.0.2.ebuild [new file with mode: 0644]

index 23002d4b569f033e3e125931136f232b8ececaab..e4c0ebe4c82d55dec9f483f6c28421b1ccd670fe 100644 (file)
@@ -1 +1,2 @@
 DIST minidb-2.0.1.tar.gz 13848 SHA256 be894fc4e68e3ce9b84b3992f12fbbea5051d3c2a11019b1da463099f24725f5 SHA512 98be264ba669ef08f180c469ca8375540436244228ee4e0c4e4b0511425b909eb4c64dc812a27d0b490af5972e0897538f905590b7d2dd19f6fdd160280a6b4b WHIRLPOOL a209d44f26add8ebae0ad142c94fdfcd4698b80d4f7e491ad16d36a4704f8fa9f3e8649aead9b268cb80055c6ae9f4691e6428979e048907a79caef8165fb864
+DIST minidb-2.0.2.tar.gz 13928 SHA256 43d59231556e9ed43d88c8c1ffcca30886b4db6436625599eeeb22bb9f74ab2b SHA512 92879d6df61b0f9f72f9fe8f1cf38d559477983c6bba8c88ed02289570daff02f6f8d7010c0a95ffce049ab67be69323c47caefdfe3a8b008038377235ed9a5f WHIRLPOOL 3ec87fc16ca02c817c70917a8bb0b3da5f12aeaf0b54827551b27a1549ad8daad635d88a81a14730c9deea50ca582f201cbef83ca929a14d91b1b722d5865a58
index 91441069f1b919e888eba8362c9f8883ff8a9be5..0d15c314bd980c94ed01b754c5693e18462592ee 100644 (file)
@@ -4,7 +4,6 @@
        <maintainer type="person">
                <email>sautier.louis@gmail.com</email>
                <name>Louis Sautier</name>
-               <description>Proxied maintainer; set to assignee in all bugs</description>
        </maintainer>
        <maintainer type="project">
                <email>proxy-maint@gentoo.org</email>
diff --git a/dev-python/minidb/minidb-2.0.2.ebuild b/dev-python/minidb/minidb-2.0.2.ebuild
new file mode 100644 (file)
index 0000000..48fb218
--- /dev/null
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+python_test() {
+       nosetests test || die "tests failed with ${EPYTHON}"
+}