diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-05 23:31:58 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-05 23:31:58 +0000 |
commit | 1eab50fd7e1a34a21693627af1b53f6f0b6e3abd (patch) | |
tree | ab8f34f225cecca613810213b3786d8ef445a3e7 /app-arch/ipkg-utils | |
parent | Delete older ebuilds. (diff) | |
download | gentoo-2-1eab50fd7e1a34a21693627af1b53f6f0b6e3abd.tar.gz gentoo-2-1eab50fd7e1a34a21693627af1b53f6f0b6e3abd.tar.bz2 gentoo-2-1eab50fd7e1a34a21693627af1b53f6f0b6e3abd.zip |
Delete older ebuild.
(Portage version: 2.2.0_alpha26_p6/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/ipkg-utils')
-rw-r--r-- | app-arch/ipkg-utils/ChangeLog | 8 | ||||
-rw-r--r-- | app-arch/ipkg-utils/ipkg-utils-1.7-r1.ebuild | 44 |
2 files changed, 6 insertions, 46 deletions
diff --git a/app-arch/ipkg-utils/ChangeLog b/app-arch/ipkg-utils/ChangeLog index 6ca987af06e4..8ede45e8a88b 100644 --- a/app-arch/ipkg-utils/ChangeLog +++ b/app-arch/ipkg-utils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-arch/ipkg-utils -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/ipkg-utils/ChangeLog,v 1.14 2009/10/12 16:42:48 halcy0n Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/ipkg-utils/ChangeLog,v 1.15 2011/03/05 23:31:58 arfrever Exp $ + + 05 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -ipkg-utils-1.7-r1.ebuild: + Delete. 12 Oct 2009; Mark Loeser <halcy0n@gentoo.org> ipkg-utils-1.7-r1.ebuild, ipkg-utils-1.7.050831-r1.ebuild: diff --git a/app-arch/ipkg-utils/ipkg-utils-1.7-r1.ebuild b/app-arch/ipkg-utils/ipkg-utils-1.7-r1.ebuild deleted file mode 100644 index 00bdfe461438..000000000000 --- a/app-arch/ipkg-utils/ipkg-utils-1.7-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/ipkg-utils/ipkg-utils-1.7-r1.ebuild,v 1.2 2009/10/12 16:42:48 halcy0n Exp $ - -inherit distutils eutils toolchain-funcs - -DESCRIPTION="Tools for working with the ipkg binary package format" -HOMEPAGE="http://www.openembedded.org/" -SRC_URI="http://handhelds.org/download/packages/ipkg-utils/${P}.tar.gz" -LICENSE="GPL-2" -IUSE="minimal" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86" - -RDEPEND="dev-lang/python - !minimal? ( - app-crypt/gnupg - net-misc/curl - )" - -DEPEND="${RDEPEND}" - -src_unpack() { - unpack ${A}; cd "${S}" - - epatch "${FILESDIR}"/${PN}-tar_call_fixes.patch - - sed '/python setup.py build/d' -i Makefile - - if use minimal; then - elog "ipkg-upload is not installed when the \`minimal' USE flag is set. If you" - elog "need ipkg-upload then rebuild this package without the \`minimal' USE flag." - fi -} - -src_compile() { - distutils_src_compile - emake CC="$(tc-getCC)" || die "emake failed" -} - -src_install() { - distutils_src_install - use minimal && rm "${D}"/usr/bin/ipkg-upload -} |