delete scons

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@1071 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2009-04-18 06:06:36 +00:00
parent 6562ab098c
commit bd707993b8
4 changed files with 0 additions and 103 deletions

View File

@ -1,44 +0,0 @@
# ChangeLog for dev-util/scons
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.65 2008/12/02 23:18:23 ranger Exp $
02 Dec 2008; Brent Baude <ranger@gentoo.org> scons-1.0.0.ebuild:
stable ppc64, bug 242766
27 Oct 2008; Jeroen Roovers <jer@gentoo.org> scons-1.0.0.ebuild:
Stable for HPPA (bug #242766).
25 Oct 2008; nixnut <nixnut@gentoo.org> scons-1.0.0.ebuild:
Stable on ppc wrt bug 242766
21 Oct 2008; Raúl Porcel <armin76@gentoo.org> scons-1.0.0.ebuild:
alpha/ia64/sparc stable wrt #242766
19 Oct 2008; Markus Meier <maekke@gentoo.org> scons-1.0.0.ebuild:
amd64/x86 stable, bug #242766
*scons-1.0.0 (19 Aug 2008)
19 Aug 2008; Jesus Rivero <neurogeek@gentoo.org> scons-0.97.ebuild,
-scons-0.98.3.ebuild, -scons-0.98.4.ebuild, -scons-0.98.5.ebuild,
+scons-1.0.0.ebuild:
Version bump. Removed old versions. Fixed 0.97 ebuild and this closes bug
#107013
*scons-0.98.5 (19 Jul 2008)
19 Jul 2008; Ali Polatel <hawking@gentoo.org> +scons-0.98.5.ebuild:
Version bump.
14 Jun 2008; Zac Medico <zmedico@gentoo.org> scons-0.97.ebuild,
scons-0.98.3.ebuild, scons-0.98.4.ebuild:
Bug #226505 - For compatibity with phase execution order in
>=portage-2.1.5, call has_version inside pkg_preinst instead of
pkg_postinst.
*scons-0.98.4 (29 May 2008)
29 May 2008; Ali Polatel <hawking@gentoo.org> -scons-0.96.1.ebuild,
-scons-0.96.94.ebuild, +scons-0.98.4.ebuild:
Version bump. Drop old.

View File

@ -1,4 +0,0 @@
DIST scons-1.1.0.d20081207.tar.gz 568510 RMD160 86627ed591406aea2d6a205683510a35702a7179 SHA1 7abdade0e409e2234ba8456f8bde6e49896b4b3d SHA256 80788c58b746703f1bd1af13467282d4bb702c924976f299a1f6736463c3a016
EBUILD scons-1.1.0_p20081207.ebuild 1256 RMD160 ac36dd7ea66a5977f6e1737479f83d3e6dcc58e3 SHA1 e0889ad52be268a0998ab0f022d68b6245bc67d2 SHA256 884f07964c89b0f7a6249703fef1c7272f856e5dac27ea28f2d80d61ad1ece93
MISC ChangeLog 1521 RMD160 906f9b808159ea455d1e02250e669e5e72971d77 SHA1 3b2a12314b1f2061d24c3fef4129f551da1cc48a SHA256 c6a34ad3b5239889280cf18869392325738cffdf3dd16d8309087d9eeef4b1cf
MISC metadata.xml 259 RMD160 e07f81006af8091709da130bf7766960545d08b1 SHA1 d68efa412545d069a60b0e13c20b910a5680eeaa SHA256 d20eefe0b0976cc928c0e17b9e5ba6c670f30ebb49086955e6f6b335fbb597ef

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<maintainer>
<email>python@gentoo.org</email>
<name>Python Project Team</name>
</maintainer>
</pkgmetadata>

View File

@ -1,46 +0,0 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/scons-1.0.0.ebuild,v 1.6 2008/12/02 23:18:23 ranger Exp $
NEED_PYTHON="1.5.2"
MY_PV="${PV/_p/.d}"
inherit distutils
DESCRIPTION="Extensible Python-based build utility"
SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.gz"
HOMEPAGE="http://www.scons.org/"
SLOT="0"
LICENSE="MIT"
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
S=${WORKDIR}/${PN}-${MY_PV}
DOCS="RELEASE.txt CHANGES.txt LICENSE.txt"
src_install () {
distutils_src_install
# move man pages from /usr/man to /usr/share/man
dodir /usr/share
mv "${D}"/usr/man "${D}"/usr/share
}
pkg_preinst() {
# clean up stale junk left there by old faulty ebuilds
# see Bug 118022 and Bug 132448 and Bug 107013
einfo "Cleaning up stale orphaned py[co] files..."
einfo "Checking for /usr/lib/${PN}-${MY_PV}/SCons"
[[ -d "${ROOT}/usr/$(get_libdir)/${PN}-${MY_PV}/SCons" ]] \
&& rm -rf "${ROOT}/usr/$(get_libdir)/${PN}-${MY_PV}/SCons"
einfo "Done."
}
pkg_postinst() {
python_mod_optimize /usr/$(get_libdir)/${PN}-${MY_PV}
}
pkg_postrm() {
python_mod_cleanup /usr/$(get_libdir)/${PN}-${MY_PV}
}