diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-03-30 18:46:17 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-03-30 18:46:17 +0200 |
commit | b6282cbe9a579680cb5c844a9f11c5db5ba3d776 (patch) | |
tree | d608996ac001f4a39b279627859c51c4577e26b6 | |
parent | dev-python/mkdocs-material: Remove old (diff) | |
download | gentoo-b6282cbe9a579680cb5c844a9f11c5db5ba3d776.tar.gz gentoo-b6282cbe9a579680cb5c844a9f11c5db5ba3d776.tar.bz2 gentoo-b6282cbe9a579680cb5c844a9f11c5db5ba3d776.zip |
dev-python/peewee: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/peewee/Manifest | 1 | ||||
-rw-r--r-- | dev-python/peewee/peewee-3.15.4-r1.ebuild | 47 |
2 files changed, 0 insertions, 48 deletions
diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest index d9cecd3dc380..8a20a15706cf 100644 --- a/dev-python/peewee/Manifest +++ b/dev-python/peewee/Manifest @@ -1,2 +1 @@ -DIST peewee-3.15.4.gh.tar.gz 908759 BLAKE2B 5bb53598f44c75f4b819d7aa032a2bc812f1e6de415b4cc01e22e521e4881dd409ceaf26435ddfcf08167c5193594917f23b15ae91f037fa4216d78752e77247 SHA512 9042e1c4fffac0c395500597981ab4732383c273e2b7f2b129b2b7702d9762772a219bb848a1f0aff802c468f38327f629df1c49028858451578115cf0811a13 DIST peewee-3.16.0.gh.tar.gz 1085430 BLAKE2B 3acfbbc9d8cce7e4bd1c0027905f4ca44431f376a243adffbfadd4d3f15b4e729c4736076e8ec72c40261ca269c66d811afb6c25b9d075d5913a13869da4f4dd SHA512 f77a040831bd3189135196ede9748c92af9db21127839dfacd7712586273bdd22c688ca22bfa373805fa1b64f770b7cea850cba53e73f324f25ced1305830409 diff --git a/dev-python/peewee/peewee-3.15.4-r1.ebuild b/dev-python/peewee/peewee-3.15.4-r1.ebuild deleted file mode 100644 index 3fb7641cfcd8..000000000000 --- a/dev-python/peewee/peewee-3.15.4-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE="sqlite" - -inherit distutils-r1 - -DESCRIPTION="Small Python ORM" -HOMEPAGE=" - https://github.com/coleifer/peewee/ - https://pypi.org/project/peewee/ -" -SRC_URI=" - https://github.com/coleifer/${PN}/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" -IUSE="examples test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-db/sqlite -" -RDEPEND=" - ${DEPEND} -" -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] -" - -distutils_enable_sphinx docs - -python_test() { - "${EPYTHON}" runtests.py -v 2 || die "tests failed under ${EPYTHON}" -} - -python_install_all() { - use examples && DOCS=( examples/ ) - distutils-r1_python_install_all -} |