* [gentoo-commits] repo/gentoo:master commit in: profiles/, app-arch/ipkg-utils/files/, app-arch/ipkg-utils/
@ 2020-09-02 8:10 Michał Górny
0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2020-09-02 8:10 UTC (permalink / raw
To: gentoo-commits
commit: 713a629970503c021fa878557f75738cb9ccb127
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 2 08:07:01 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Sep 2 08:07:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713a6299
app-arch/ipkg-utils: Remove last-rited pkg
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-arch/ipkg-utils/Manifest | 1 -
.../files/ipkg-utils-1.7.050831-hashlib-r2.patch | 25 --------
.../ipkg-utils/ipkg-utils-1.7.050831-r3.ebuild | 66 ----------------------
app-arch/ipkg-utils/metadata.xml | 12 ----
profiles/package.mask | 6 --
5 files changed, 110 deletions(-)
diff --git a/app-arch/ipkg-utils/Manifest b/app-arch/ipkg-utils/Manifest
deleted file mode 100644
index 18c1fcd9005..00000000000
--- a/app-arch/ipkg-utils/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ipkg-utils-050831.tar.gz 29175 BLAKE2B 4f1d4b5efb7f808e6987a7b62f830463e28fca998c49b4d6683a58c2d2225e24820e6f2b47642e5cceafa34e0ab3ff8172267ef734bbbf1c8f94b8777172efc8 SHA512 7375c4815225eb755699954d3005dfa88bc0f0e6c2678b7bad565f63204a32735d483dbef23e7b9b75c5f0428ff04c13744b8a10e68bb69fedb96a59c069e1aa
diff --git a/app-arch/ipkg-utils/files/ipkg-utils-1.7.050831-hashlib-r2.patch b/app-arch/ipkg-utils/files/ipkg-utils-1.7.050831-hashlib-r2.patch
deleted file mode 100644
index 3cdd35bd81c..00000000000
--- a/app-arch/ipkg-utils/files/ipkg-utils-1.7.050831-hashlib-r2.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git i/ipkg.py w/ipkg.py
-index 02aab22..145686c 100644
---- i/ipkg.py
-+++ w/ipkg.py
-@@ -36,10 +36,10 @@ import tempfile
- import os
- import sys
- import glob
--import md5
- import re
- import string
- import commands
-+from hashlib import md5
- from stat import ST_SIZE
-
- class Version:
-@@ -136,7 +136,7 @@ class Package:
-
- # compute the MD5.
- f = open(fn, "r")
-- sum = md5.new()
-+ sum = md5()
- while 1:
- data = f.read(1024)
- if not data: break
diff --git a/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r3.ebuild b/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r3.ebuild
deleted file mode 100644
index 649d7001ed2..00000000000
--- a/app-arch/ipkg-utils/ipkg-utils-1.7.050831-r3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 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}"
-
-PATCHES=("${FILESDIR}/${P}-hashlib-r2.patch")
-
-src_prepare() {
- default
-
- 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-r1_src_compile
- emake CC="$(tc-getCC)"
-}
-
-python_install() {
- distutils-r1_python_install
-
- if use minimal; then
- rm "${ED}usr/bin/ipkg-upload" \
- "${D}$(python_get_scriptdir)/ipkg-upload" || die
- fi
-}
-
-src_install() {
- distutils-r1_src_install
-
- dobin ipkg-compare-versions
-}
-
-pkg_postinst() {
- elog "Consider installing sys-apps/fakeroot for use with the ipkg-build "
- elog "command, that makes it possible to build packages as a normal user."
-}
diff --git a/app-arch/ipkg-utils/metadata.xml b/app-arch/ipkg-utils/metadata.xml
deleted file mode 100644
index bc97cc574b1..00000000000
--- a/app-arch/ipkg-utils/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>jnrowe@gmail.com</email>
- <name>James Rowe</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
-</pkgmetadata>
diff --git a/profiles/package.mask b/profiles/package.mask
index 989873395da..f3ca325d461 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -719,12 +719,6 @@ sec-policy/selinux-consolekit
# Removal in 30 days. Bug #718898
dev-python/cloudlib
-# Aaron Bauman <bman@gentoo.org> (2020-08-01)
-# Py2 only. Dead upstream.
-# Removal in 30 days. Bug #722060
-app-arch/cfv
-app-arch/ipkg-utils
-
# Aaron Bauman <bman@gentoo.org> (2020-08-01)
# Py2 only. Last upstream release 2013.
# Removal in 30 days. Last 2 have deps on cddb.
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-09-02 8:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-02 8:10 [gentoo-commits] repo/gentoo:master commit in: profiles/, app-arch/ipkg-utils/files/, app-arch/ipkg-utils/ Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox