diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-01-02 16:04:51 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-01-02 23:13:47 +0100 |
commit | ca1f2c37de3e3f6b4da7f4b5783ed475a266d7dc (patch) | |
tree | 720563b6d120d1b33c0530bd9d5a6b4e00c57c65 /dev-python/apsw | |
parent | sys-libs/gdbm: Fix building with USE flag "exporter" (diff) | |
download | gentoo-ca1f2c37de3e3f6b4da7f4b5783ed475a266d7dc.tar.gz gentoo-ca1f2c37de3e3f6b4da7f4b5783ed475a266d7dc.tar.bz2 gentoo-ca1f2c37de3e3f6b4da7f4b5783ed475a266d7dc.zip |
dev-python/apsw: Clean old up
Diffstat (limited to 'dev-python/apsw')
-rw-r--r-- | dev-python/apsw/Manifest | 1 | ||||
-rw-r--r-- | dev-python/apsw/apsw-3.20.1_p1.ebuild | 42 |
2 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/apsw/Manifest b/dev-python/apsw/Manifest index aaa63cbf339a..fa3b8d0c25b0 100644 --- a/dev-python/apsw/Manifest +++ b/dev-python/apsw/Manifest @@ -1,3 +1,2 @@ DIST apsw-3.19.3_p1.zip 678966 BLAKE2B 1726a50024369831fe0ee442676adc4415c7b71e5e12beddd4e09f688aad930bb54664435c569ca728c2dd7b24b4eb46655778c7c35249731f3a83194a40fe6b SHA512 9f9e05c865a19e7b6e6b37e6228027c027ba683be2d5ff7a1767bb3bbeb090bf66879a0eead4fc9e34fc4d84c1edc98137b2839f84ffab9bd36330d05435ab4e -DIST apsw-3.20.1_p1.zip 680035 BLAKE2B 9a230e87df6a5afeb86828018ef0a026b43893fa694e85410d85753981b7b9c2846d2f1b12c4ff9b3d272727dace42157998ce30a382cc5b125b2824b6a8cae2 SHA512 12284a99efba13abe417a786939e2ab10d677014feb9393e41cc7b127fb974cb961f371c142904bbe48a96038d49605c885fa43739a14ef8e11fb37ea274ce92 DIST apsw-3.21.0_p1.zip 680827 BLAKE2B 8fceb2d782f3bbaba28f26904ed11281be7e2be351d78c41d39d2941ad45304bd7e62cfbbc9134e21b1ffad4f7b7d1373a2866d6cbb61345c263502b23fb018a SHA512 c2009d243765532e27220478d1164f97201afbd2b1de1e4090b4f35b63c83d0a82d2bdfe14c6625858867633995d3d8eef91f17ecbbd915f99e5a4a4edfa7b61 diff --git a/dev-python/apsw/apsw-3.20.1_p1.ebuild b/dev-python/apsw/apsw-3.20.1_p1.ebuild deleted file mode 100644 index f2bb6b9990b9..000000000000 --- a/dev-python/apsw/apsw-3.20.1_p1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) - -inherit distutils-r1 flag-o-matic - -MY_PV=${PV/_p/-r} -MY_P=${PN}-${MY_PV} - -DESCRIPTION="APSW - Another Python SQLite Wrapper" -HOMEPAGE="https://github.com/rogerbinns/apsw/" -SRC_URI="https://github.com/rogerbinns/apsw/releases/download/${MY_PV}/${MY_P}.zip -> ${P}.zip" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc64 ~x86" -IUSE="doc" - -RDEPEND=">=dev-db/sqlite-${PV%_p*}" -DEPEND="${RDEPEND} - app-arch/unzip" - -S=${WORKDIR}/${MY_P} - -PATCHES=( "${FILESDIR}/${PN}-3.6.20.1-fix_tests.patch" ) - -python_compile() { - python_is_python3 || append-cflags -fno-strict-aliasing - distutils-r1_python_compile --enable=load_extension -} - -python_test() { - "${PYTHON}" setup.py build_test_extension || die "Building of test loadable extension failed" - "${PYTHON}" tests.py -v || die "Tests failed under ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( doc/. ) - distutils-r1_python_install_all -} |