commit:     f2a65ab8cebcc64971a43a22a1feaf64fdf879bd
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  1 09:13:34 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul  1 09:19:57 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2a65ab8

app-admin/checkrestart: Remove last-rited pkg

 app-admin/checkrestart/Manifest                    |  1 -
 app-admin/checkrestart/checkrestart-0.47-r3.ebuild | 37 ---------------------
 app-admin/checkrestart/checkrestart-0.47-r4.ebuild | 38 ----------------------
 .../checkrestart/files/checkrestart-0.47-cwd.patch | 11 -------
 .../checkrestart-0.47-list-comprehension-fix.patch | 11 -------
 app-admin/checkrestart/metadata.xml                |  8 -----
 profiles/package.mask                              |  7 ----
 7 files changed, 113 deletions(-)

diff --git a/app-admin/checkrestart/Manifest b/app-admin/checkrestart/Manifest
deleted file mode 100644
index c1525295c58..00000000000
--- a/app-admin/checkrestart/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST checkrestart-0.47-sep.tar.bz2 5888 SHA256 
e80c89b8e2b082c4e2050a45dbdd375c6ef68dd91bdb000ae701359d0d04558e SHA512 
7fe91a3e4c8a0ff09ff19d3d521739e2e289dc45be0def0000e1036cb964916f84ed2beb902fe0558ae999c5e34ecdc891a168342cc8e3ab967254e65c26dd20
 WHIRLPOOL 
12bcce4e273aeaa2f486d8b225aaf9e1c7eb1336fe77b8b9b6f7cbf6358560c0dc5b9063ef516baca53fe861541fc15553816a5d1d21d9a8f9ccae2276d345c1

diff --git a/app-admin/checkrestart/checkrestart-0.47-r3.ebuild 
b/app-admin/checkrestart/checkrestart-0.47-r3.ebuild
deleted file mode 100644
index d48ce920036..00000000000
--- a/app-admin/checkrestart/checkrestart-0.47-r3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-single-r1
-
-DESCRIPTION="the sysadmin's rolling upgrade tool"
-HOMEPAGE="http://arcdraco.net/checkrestart";
-SRC_URI="http://arcdraco.net/~dragon/${P}-sep.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~x86"
-IUSE=""
-
-RDEPEND="
-       ${PYTHON_DEPS}
-       sys-apps/lsb-release
-       app-portage/portage-utils
-       sys-process/lsof
-"
-
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-S=${WORKDIR}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${P}-list-comprehension-fix.patch
-       python_fix_shebang ${PN}
-}
-
-src_install() {
-       dosbin ${PN}
-}

diff --git a/app-admin/checkrestart/checkrestart-0.47-r4.ebuild 
b/app-admin/checkrestart/checkrestart-0.47-r4.ebuild
deleted file mode 100644
index e50065c8ed1..00000000000
--- a/app-admin/checkrestart/checkrestart-0.47-r4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-single-r1
-
-DESCRIPTION="the sysadmin's rolling upgrade tool"
-HOMEPAGE="http://arcdraco.net/checkrestart";
-SRC_URI="http://arcdraco.net/~dragon/${P}-sep.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~x86"
-IUSE=""
-
-RDEPEND="
-       ${PYTHON_DEPS}
-       sys-apps/lsb-release
-       app-portage/portage-utils
-       sys-process/lsof
-"
-
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-S=${WORKDIR}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${P}-list-comprehension-fix.patch
-       epatch "${FILESDIR}"/${P}-cwd.patch
-       python_fix_shebang ${PN}
-}
-
-src_install() {
-       dosbin ${PN}
-}

diff --git a/app-admin/checkrestart/files/checkrestart-0.47-cwd.patch 
b/app-admin/checkrestart/files/checkrestart-0.47-cwd.patch
deleted file mode 100644
index 6d5fd50aa05..00000000000
--- a/app-admin/checkrestart/files/checkrestart-0.47-cwd.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- /usr/sbin/checkrestart     2016-02-22 08:08:34.000000000 -0800
-+++ /usr/sbin/checkrestarta    2016-02-22 08:19:16.013507231 -0800
-@@ -114,7 +114,7 @@
- def portage_fQuery(programs, packages):
-     
-     dpkgQuery = ["qfile", "-C"] + programs.keys()
--    dpkgProc = subprocess.Popen(dpkgQuery, stdout=subprocess.PIPE)
-+    dpkgProc = subprocess.Popen(dpkgQuery, stdout=subprocess.PIPE, cwd='/')
-     for line in dpkgProc.stdout.readlines():
-         packagename, program = line[:-1].split(' ')
-         program = re.match('\((.*)\)', program).group(1)

diff --git 
a/app-admin/checkrestart/files/checkrestart-0.47-list-comprehension-fix.patch 
b/app-admin/checkrestart/files/checkrestart-0.47-list-comprehension-fix.patch
deleted file mode 100644
index f22f0b9e50c..00000000000
--- 
a/app-admin/checkrestart/files/checkrestart-0.47-list-comprehension-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/checkrestart
-+++ b/checkrestart
-@@ -216,7 +216,7 @@
-                     package.initscripts.append(path)
- 
-             # Remove duplicate inits
--            package.initscripts = [ u for u in package.initscripts if u not 
in locals()['_[1]'] ]
-+            package.initscripts = list(set(package.initscripts))
- 
-     restartable = []
-     nonrestartable = []

diff --git a/app-admin/checkrestart/metadata.xml 
b/app-admin/checkrestart/metadata.xml
deleted file mode 100644
index 9f5eb23dda4..00000000000
--- a/app-admin/checkrestart/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-  <maintainer type="person">
-    <email>[email protected]</email>
-    <name>Amadeusz Żołnowski</name>
-  </maintainer>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index 7221f82bb86..6bf31cf0315 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -561,13 +561,6 @@ www-client/xombrero
 # I will remove it in 30 days.
 app-shells/z
 
-# Amadeusz Żołnowski <[email protected]> (28 May 2017)
-# Masked for removal. Upstream has disappeared. Homepage is not
-# accessible anymore. There are open, long-standing bugs: #553888,
-# #532308, #548920, not worth fixing while there's active alternative.
-# Use app-admin/needrestart instead.
-app-admin/checkrestart
-
 # Michał Górny <[email protected]> (25 May 2017)
 # First GTK+3 version with known regressions:
 # https://mail.xfce.org/pipermail/xfce-announce/2017-May/000517.html

Reply via email to