diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-04-21 06:20:03 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-04-21 06:20:03 +0000 |
commit | a6ac2791b4bfc14027e6284956dd524d02bdfbe4 (patch) | |
tree | 1ef2b5c7d83620758d00dddc04ae4b21d9826ea0 /dev-tcltk/tclpython | |
parent | Version bump: bug fix for config parsing. (diff) | |
download | gentoo-2-a6ac2791b4bfc14027e6284956dd524d02bdfbe4.tar.gz gentoo-2-a6ac2791b4bfc14027e6284956dd524d02bdfbe4.tar.bz2 gentoo-2-a6ac2791b4bfc14027e6284956dd524d02bdfbe4.zip |
Removed version which do not support new python stuff
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk/tclpython')
-rw-r--r-- | dev-tcltk/tclpython/ChangeLog | 6 | ||||
-rw-r--r-- | dev-tcltk/tclpython/tclpython-3.1.ebuild | 31 | ||||
-rw-r--r-- | dev-tcltk/tclpython/tclpython-4.1-r1.ebuild | 35 |
3 files changed, 5 insertions, 67 deletions
diff --git a/dev-tcltk/tclpython/ChangeLog b/dev-tcltk/tclpython/ChangeLog index 99daad6df505..8b5aef2a44c6 100644 --- a/dev-tcltk/tclpython/ChangeLog +++ b/dev-tcltk/tclpython/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-tcltk/tclpython # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/ChangeLog,v 1.12 2010/04/12 13:37:16 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/ChangeLog,v 1.13 2010/04/21 06:20:03 jlec Exp $ + + 21 Apr 2010; Justin Lecher <jlec@gentoo.org> -tclpython-3.1.ebuild, + -tclpython-4.1-r1.ebuild: + Removed version which do not support new python stuff 12 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> tclpython-3.1-r1.ebuild: diff --git a/dev-tcltk/tclpython/tclpython-3.1.ebuild b/dev-tcltk/tclpython/tclpython-3.1.ebuild deleted file mode 100644 index b83a4252c2de..000000000000 --- a/dev-tcltk/tclpython/tclpython-3.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/tclpython-3.1.ebuild,v 1.7 2006/05/03 16:36:57 solar Exp $ - -inherit distutils toolchain-funcs - -DESCRIPTION="a Python package for Tcl" -HOMEPAGE="http://jfontain.free.fr/tclpython.htm" -SRC_URI="http://jfontain.free.fr/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="" - -DEPEND=">=dev-lang/tcl-8.0 - >=virtual/python-2.2" - -src_compile() { - distutils_python_version - $(tc-getCC) -shared -o tclpython.so.${PV} -fPIC ${CFLAGS} -Wall -I/usr/include/python${PYVER} tclpython.c `python-config` -lpthread -lutil || die -} - -src_install() { - exeinto /usr/lib/tclpython - doexe tclpython.so.${PV} || die "lib" - doexe pkgIndex.tcl || die "tcl" - - dodoc CHANGES INSTALL README - dohtml tclpython.htm -} diff --git a/dev-tcltk/tclpython/tclpython-4.1-r1.ebuild b/dev-tcltk/tclpython/tclpython-4.1-r1.ebuild deleted file mode 100644 index bb92b49bda0f..000000000000 --- a/dev-tcltk/tclpython/tclpython-4.1-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/tclpython-4.1-r1.ebuild,v 1.1 2009/04/16 19:13:18 mescalinum Exp $ - -inherit distutils toolchain-funcs - -DESCRIPTION="a Python package for Tcl" -HOMEPAGE="http://jfontain.free.fr/tclpython.htm" -SRC_URI="http://jfontain.free.fr/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND=">=dev-lang/tcl-8.0 - >=virtual/python-2.2" - -src_compile() { - distutils_python_version - $(tc-getCC) -shared -o tclpython.so.${PV} -fPIC ${CFLAGS} -Wall \ - -I/usr/include/python${PYVER} tcl{python,thread}.c \ - `python-config --libs` -lpthread -lutil || die -} - -src_install() { - exeinto /usr/lib/tclpython - doexe tclpython.so.${PV} || die "lib" - doexe pkgIndex.tcl || die "tcl" - - dodoc CHANGES INSTALL README - dohtml tclpython.htm - cd ${D}/usr/lib/tclpython - ln -sf tclpython.so.${PV} tclpython.so -} |