summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-05-14 07:26:02 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-05-14 07:26:02 +0000
commite030c4d4547a40e6e389d758bb371794f911bbff (patch)
tree89cd9b9fe4ee2b1c5d315c87ae7c6f7ff7b2d27f /app-arch
parentold (diff)
downloadgentoo-2-e030c4d4547a40e6e389d758bb371794f911bbff.tar.gz
gentoo-2-e030c4d4547a40e6e389d758bb371794f911bbff.tar.bz2
gentoo-2-e030c4d4547a40e6e389d758bb371794f911bbff.zip
old
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/ipkg-utils/ChangeLog8
-rw-r--r--app-arch/ipkg-utils/ipkg-utils-1.7.050831-r1.ebuild60
2 files changed, 6 insertions, 62 deletions
diff --git a/app-arch/ipkg-utils/ChangeLog b/app-arch/ipkg-utils/ChangeLog
index a3bcea20bbd9..3926d0371a55 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-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/ipkg-utils/ChangeLog,v 1.19 2014/12/26 18:13:08 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/ipkg-utils/ChangeLog,v 1.20 2015/05/14 07:26:02 mr_bones_ Exp $
+
+ 14 May 2015; Michael Sterrett <mr_bones_@gentoo.org>
+ -ipkg-utils-1.7.050831-r1.ebuild:
+ old
*ipkg-utils-1.7.050831-r2 (26 Dec 2014)
diff --git a/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r1.ebuild b/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r1.ebuild
deleted file mode 100644
index 192841f4375a..000000000000
--- a/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2011 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.050831-r1.ebuild,v 1.4 2011/03/05 23:46:44 arfrever Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils eutils toolchain-funcs versionator
-
-MY_P="${PN}-$(get_version_component_range 3)"
-
-DESCRIPTION="Tools for working with the ipkg binary package format"
-HOMEPAGE="http://www.openembedded.org/"
-SRC_URI="http://handhelds.org/download/packages/ipkg-utils/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86"
-IUSE="minimal"
-
-DEPEND="!minimal? (
- app-crypt/gnupg
- net-misc/curl
- )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-PYTHON_MODNAME="ipkg.py"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-tar_call_fixes.patch"
- epatch "${FILESDIR}/${P}-hashlib.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 "${ED}usr/bin/ipkg-upload"
-}
-
-pkg_postinst() {
- distutils_pkg_postinst
-
- elog "Consider installing sys-apps/fakeroot for use with the ipkg-build command,"
- elog "that makes it possible to build packages as a normal user."
-}