Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pivy/
Date: Thu, 03 Mar 2022 18:01:17
Message-Id: 1646330461.9ef96488ab4267bd1dfb819baa01698bf325b5e2.fordfrog@gentoo
1 commit: 9ef96488ab4267bd1dfb819baa01698bf325b5e2
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 18:01:01 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 18:01:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ef96488
7
8 dev-python/pivy: removed obsolete 0.6.6
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-python/pivy/pivy-0.6.6.ebuild | 47 ---------------------------------------
14 1 file changed, 47 deletions(-)
15
16 diff --git a/dev-python/pivy/pivy-0.6.6.ebuild b/dev-python/pivy/pivy-0.6.6.ebuild
17 deleted file mode 100644
18 index 8de008d6a5c1..000000000000
19 --- a/dev-python/pivy/pivy-0.6.6.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{7,8,9} )
28 -DISTUTILS_USE_SETUPTOOLS=no
29 -
30 -inherit distutils-r1
31 -
32 -DESCRIPTION="Coin3D bindings for Python"
33 -HOMEPAGE="https://github.com/coin3d/pivy"
34 -
35 -if [[ ${PV} == *9999 ]]; then
36 - inherit git-r3
37 - PIVY_REPO_URI="https://github.com/coin3d/pivy.git"
38 -else
39 - SRC_URI="https://github.com/coin3d/pivy/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 - KEYWORDS="amd64 x86"
41 -fi
42 -
43 -LICENSE="ISC"
44 -SLOT="0"
45 -IUSE="+quarter soqt"
46 -
47 -REQUIRED_USE="
48 - ${PYTHON_REQUIRED_USE}
49 - || ( quarter soqt )
50 -"
51 -
52 -RDEPEND="
53 - >=media-libs/coin-4.0.0
54 - quarter? ( media-libs/quarter )
55 - soqt? ( >=media-libs/SoQt-1.6.0 )
56 -"
57 -DEPEND="${RDEPEND}"
58 -BDEPEND="
59 - dev-lang/swig
60 - dev-util/cmake
61 -"
62 -
63 -PATCHES=(
64 - "${FILESDIR}"/${P}-0001-fix-CMakeLists.txt-for-distutils_cmake.patch
65 - "${FILESDIR}"/${P}-0002-Gentoo-specific-clear-swig-deprecation-warning.patch
66 -)
67 -
68 -DOCS=( AUTHORS HACKING NEWS README.md THANKS )