Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycxx/
Date: Wed, 03 Aug 2022 09:10:58
Message-Id: 1659517345.be3e8d0b5a9b1215836e08b9bf6117a5efcb904d.mgorny@gentoo
1 commit: be3e8d0b5a9b1215836e08b9bf6117a5efcb904d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 3 09:02:25 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 3 09:02:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be3e8d0b
7
8 dev-python/pycxx: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pycxx/pycxx-7.1.5.ebuild | 35 -----------------------------------
13 1 file changed, 35 deletions(-)
14
15 diff --git a/dev-python/pycxx/pycxx-7.1.5.ebuild b/dev-python/pycxx/pycxx-7.1.5.ebuild
16 deleted file mode 100644
17 index 6054ebaa5c9c..000000000000
18 --- a/dev-python/pycxx/pycxx-7.1.5.ebuild
19 +++ /dev/null
20 @@ -1,35 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="7"
25 -
26 -PYTHON_COMPAT=( python3_{7,8,9} )
27 -DISTUTILS_USE_SETUPTOOLS=no
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Set of facilities to extend Python with C++"
31 -HOMEPAGE="http://cxx.sourceforge.net"
32 -SRC_URI="mirror://sourceforge/cxx/${P}.tar.gz"
33 -
34 -LICENSE="BSD"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
37 -IUSE="doc examples"
38 -
39 -python_prepare_all() {
40 - # Without this, pysvn fails.
41 - # Src/Python3/cxxextensions.c: No such file or directory
42 - sed -e "/^#include/s:Src/::" -i Src/*.{c,cxx} || die "sed failed"
43 -
44 - distutils-r1_python_prepare_all
45 -}
46 -
47 -python_install_all() {
48 - use doc && local HTML_DOCS=( Doc/. )
49 - if use examples ; then
50 - docinto examples
51 - dodoc -r Demo/Python{2,3}/.
52 - docompress -x /usr/share/doc/${PF}/examples
53 - fi
54 - distutils-r1_python_install_all
55 -}