Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/ipkg-utils/
Date: Tue, 23 Apr 2019 08:51:45
Message-Id: 1556009480.a730800dcc2a4b7a08e37ccdd5dfe47a43f43705.soap@gentoo
1 commit: a730800dcc2a4b7a08e37ccdd5dfe47a43f43705
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Apr 22 11:44:18 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 23 08:51:20 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a730800d
7
8 app-arch/ipkg-utils: drop old (EAPI5)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 .../ipkg-utils/ipkg-utils-1.7.050831-r2.ebuild | 63 ----------------------
14 1 file changed, 63 deletions(-)
15
16 diff --git a/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r2.ebuild b/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r2.ebuild
17 deleted file mode 100644
18 index 4833a4dc6cf..00000000000
19 --- a/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r2.ebuild
20 +++ /dev/null
21 @@ -1,63 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -PYTHON_COMPAT=( python2_7 )
28 -
29 -inherit distutils-r1 eutils toolchain-funcs versionator
30 -
31 -MY_P="${PN}-$(get_version_component_range 3)"
32 -
33 -DESCRIPTION="Tools for working with the ipkg binary package format"
34 -HOMEPAGE="http://www.openembedded.org/"
35 -SRC_URI="http://handhelds.org/download/packages/ipkg-utils/${MY_P}.tar.gz"
36 -
37 -LICENSE="GPL-2"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86"
40 -IUSE="minimal"
41 -
42 -DEPEND="
43 - !minimal? (
44 - app-crypt/gnupg
45 - net-misc/curl
46 - )"
47 -RDEPEND="${DEPEND}"
48 -
49 -S="${WORKDIR}/${MY_P}"
50 -
51 -src_prepare() {
52 - epatch "${FILESDIR}/${PN}-tar_call_fixes.patch"
53 - epatch "${FILESDIR}/${P}-hashlib.patch"
54 -
55 - sed '/python setup.py build/d' -i Makefile
56 -
57 - if use minimal; then
58 - elog "ipkg-upload is not installed when the \`minimal' USE flag is set. If you"
59 - elog "need ipkg-upload then rebuild this package without the \`minimal' USE flag."
60 - fi
61 -}
62 -
63 -src_compile() {
64 - distutils-r1_src_compile
65 - emake CC="$(tc-getCC)" || die "emake failed"
66 -}
67 -
68 -python_install() {
69 - distutils-r1_python_install
70 -
71 - if use minimal; then
72 - rm "${ED}usr/bin/ipkg-upload" \
73 - "${D}$(python_get_scriptdir)/ipkg-upload" || die
74 - fi
75 -}
76 -
77 -src_install() {
78 - distutils-r1_src_install
79 -}
80 -
81 -pkg_postinst() {
82 - elog "Consider installing sys-apps/fakeroot for use with the ipkg-build command,"
83 - elog "that makes it possible to build packages as a normal user."
84 -}