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-tcltk/tclpython/
Date: Mon, 31 May 2021 20:42:54
Message-Id: 1622493657.0d14df12e08cebe0ba1b20d3b14d88532916a757.mgorny@gentoo
1 commit: 0d14df12e08cebe0ba1b20d3b14d88532916a757
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:40:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:40:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d14df12
7
8 dev-tcltk/tclpython: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-tcltk/tclpython/tclpython-5.0.ebuild | 43 --------------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/dev-tcltk/tclpython/tclpython-5.0.ebuild b/dev-tcltk/tclpython/tclpython-5.0.ebuild
16 deleted file mode 100644
17 index 52634a962b3..00000000000
18 --- a/dev-tcltk/tclpython/tclpython-5.0.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_7 )
27 -
28 -inherit multilib python-single-r1 toolchain-funcs
29 -
30 -DESCRIPTION="Python package for Tcl"
31 -HOMEPAGE="http://jfontain.free.fr/tclpython.htm"
32 -SRC_URI="https://github.com/amykyta3/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="amd64 ppc x86"
37 -IUSE=""
38 -
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -
41 -DEPEND="${PYTHON_DEPS}
42 - dev-lang/tcl:0="
43 -RDEPEND="${DEPEND}"
44 -
45 -PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
46 -
47 -src_compile() {
48 - emake PKG_NAME=tclpython3 CC=$(tc-getCC) \
49 - MYCFLAGS="${CFLAGS}" MYLDFLAGS="${LDFLAGS}"
50 -}
51 -
52 -src_test() {
53 - emake PKG_NAME=tclpython3 CC=$(tc-getCC) test
54 -}
55 -
56 -src_install() {
57 - insinto /usr/$(get_libdir)
58 - doins -r build/tclpython3/tclpython3
59 - fperms 775 /usr/$(get_libdir)/tclpython3/tclpython3.so.${PV}
60 - dosym tclpython3.so.${PV} /usr/$(get_libdir)/tclpython3/tclpython3.so
61 -
62 - dodoc README.md VERSION.md
63 -}