summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Delaney <idella4@gentoo.org>2014-06-03 10:09:37 +0000
committerIan Delaney <idella4@gentoo.org>2014-06-03 10:09:37 +0000
commit03154079c7ac0da8cf73cf90b0d94d03b52702a0 (patch)
tree792106c9a709c668233eec2c0eb42422cf18657b /dev-python/sqlite3dbm
parentVersion bump. (diff)
downloadgentoo-2-03154079c7ac0da8cf73cf90b0d94d03b52702a0.tar.gz
gentoo-2-03154079c7ac0da8cf73cf90b0d94d03b52702a0.tar.bz2
gentoo-2-03154079c7ac0da8cf73cf90b0d94d03b52702a0.zip
rm old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/sqlite3dbm')
-rw-r--r--dev-python/sqlite3dbm/ChangeLog7
-rw-r--r--dev-python/sqlite3dbm/sqlite3dbm-0.1.4.ebuild48
2 files changed, 5 insertions, 50 deletions
diff --git a/dev-python/sqlite3dbm/ChangeLog b/dev-python/sqlite3dbm/ChangeLog
index b3b546d24741..df87ced60567 100644
--- a/dev-python/sqlite3dbm/ChangeLog
+++ b/dev-python/sqlite3dbm/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sqlite3dbm
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlite3dbm/ChangeLog,v 1.7 2013/07/01 09:40:08 dev-zero Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlite3dbm/ChangeLog,v 1.8 2014/06/03 10:09:37 idella4 Exp $
+
+ 03 Jun 2014; Ian Delaney <idella4@gentoo.org> -sqlite3dbm-0.1.4.ebuild:
+ rm old
*sqlite3dbm-0.1.4-r1 (01 Jul 2013)
diff --git a/dev-python/sqlite3dbm/sqlite3dbm-0.1.4.ebuild b/dev-python/sqlite3dbm/sqlite3dbm-0.1.4.ebuild
deleted file mode 100644
index 0324c6b50d76..000000000000
--- a/dev-python/sqlite3dbm/sqlite3dbm-0.1.4.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlite3dbm/sqlite3dbm-0.1.4.ebuild,v 1.4 2012/09/29 06:54:25 heroxbd Exp $
-
-EAPI=4
-
-SUPPORT_PYTHON_ABIS=1
-RESTRICT_PYTHON_ABIS="3.* 2.5-jython"
-PYTHON_USE_WITH="sqlite"
-
-inherit distutils vcs-snapshot
-
-DESCRIPTION="An sqlite-backed dictionary"
-HOMEPAGE="https://github.com/Yelp/sqlite3dbm http://pypi.python.org/pypi/sqlite3dbm/"
-SRC_URI="https://github.com/Yelp/${PN}/tarball/v${PV} -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND=""
-DEPEND="dev-python/setuptools
- doc? ( dev-python/sphinx )
- test? ( dev-python/testify )"
-
-DOCS="AUTHORS.txt CHANGES.txt README.md"
-
-src_compile() {
- distutils_src_compile
- if use doc ; then
- emake -C docs html
- fi
-}
-
-src_test() {
- testing() {
- PYTHONPATH="build-${PYTHON_ABI}/lib/" testify tests
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
- if use doc; then
- dohtml -r docs/_build/html/
- fi
-}