commit:     64dfd1d77b6eb203494a2bedb0934b4199f881af
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri May 14 22:13:53 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri May 14 22:13:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64dfd1d7

sys-process/time: drop 1.7-r3, 1.7.2

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sys-process/time/Manifest                          |  2 --
 sys-process/time/files/1.7-info-dir-entry.patch    | 12 ---------
 sys-process/time/files/time-1.7-build.patch        | 16 ------------
 .../files/time-1.7-incorrect_memory_usage.patch    | 26 -------------------
 .../files/time-1.7.2-incorrect_memory_usage.patch  | 29 ----------------------
 sys-process/time/time-1.7-r3.ebuild                | 28 ---------------------
 sys-process/time/time-1.7.2.ebuild                 | 28 ---------------------
 7 files changed, 141 deletions(-)

diff --git a/sys-process/time/Manifest b/sys-process/time/Manifest
index a001516358a..fba14304645 100644
--- a/sys-process/time/Manifest
+++ b/sys-process/time/Manifest
@@ -1,3 +1 @@
-DIST time-1.7.2.tar.gz 108371 BLAKE2B 
17d83faa24974fdd5853d83b0524a9f97780db19c42e9633d14acf39653b581a511856ec3be67661796fb1aee1d7b1bdca9fff3f5e88abd9f22c1736a02a04dc
 SHA512 
dfde8f48a9d52bcc9080596feca6c429556e1e510977503138195d390cb52f27dd171f519d78226b0b48adc404062ec1f9234d92ea9707ec16d1be23ced90afc
-DIST time-1.7.tar.gz 103066 BLAKE2B 
900df9031f90fbdab5b778c8ec61b3fe5efb2cb6a21834a31e3eefe845e05977b7c3206579e0bd7959f4dd5a34a909b16cc96f743aaf81cc1edb182a5669c68c
 SHA512 
d759b651e343beddc0b3bd06af85881486b72319c979a2e7f752d5a34edd8b7c1c19391c5c7a2e8f6685746cc7a046bf2c8e082b31458a1dd043ed90a4cebcd1
 DIST time-1.9.tar.gz 596779 BLAKE2B 
b48c2def2f7aaa79ddb8838ed9e103dd7b1b573b6084d1481838cac86eb7930b3a231469936ad23d5096e576ea728e821defb27fc8b3f9187809e3f5c01b7c57
 SHA512 
5c6dabbbe71e9103a47b892b86bb914c1704122d4fe7dff1e2cbd28503297163118d295077d8e062b035d673a1f91c36f8a45c7383f374fd766942b32bde4406

diff --git a/sys-process/time/files/1.7-info-dir-entry.patch 
b/sys-process/time/files/1.7-info-dir-entry.patch
deleted file mode 100644
index eb30029722b..00000000000
--- a/sys-process/time/files/1.7-info-dir-entry.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/time.info
-+++ b/time.info
-@@ -19,6 +19,9 @@
- manual into another language, under the above conditions for modified
- versions, except that this permission notice may be stated in a
- translation approved by the Foundation.
-+START-INFO-DIR-ENTRY
-+* time: (time).            summarize system resources used
-+END-INFO-DIR-ENTRY
- 
- 
- File: time.info,  Node: Top,  Prev: (dir),  Up: (dir)

diff --git a/sys-process/time/files/time-1.7-build.patch 
b/sys-process/time/files/time-1.7-build.patch
deleted file mode 100644
index 504643d768e..00000000000
--- a/sys-process/time/files/time-1.7-build.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -1,11 +1,6 @@
- dnl Process this file with autoconf to produce a configure script.
--AC_INIT(time.c)
--VERSION=1.7
--AC_SUBST(VERSION)
--PACKAGE=time
--AC_SUBST(PACKAGE)
--
--AC_ARG_PROGRAM
-+AC_INIT(time, 1.7)
-+AM_INIT_AUTOMAKE
- 
- dnl Checks for programs.
- AC_PROG_CC

diff --git a/sys-process/time/files/time-1.7-incorrect_memory_usage.patch 
b/sys-process/time/files/time-1.7-incorrect_memory_usage.patch
deleted file mode 100644
index ab1f4ddfbd5..00000000000
--- a/sys-process/time/files/time-1.7-incorrect_memory_usage.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://bugs.launchpad.net/ubuntu/+source/time/+bug/742248
-https://bugs.gentoo.org/332253
-
---- time-1.7/ChangeLog
-+++ time-1.7/ChangeLog
-@@ -1,3 +1,9 @@
-+Fri Oct  1 00:00:00 2010      Bob Proulx      <[email protected]>
-+      The struct rusage reports ru_maxrss in kbytes not pages and 
-+      should not be converted through pages-to-kbytes again. 
-+      Reported by Sven Hartrumpf.
-+      * time.c (summarize): Do not call ptok on ru_maxrss.
-+
- Thu Jul 11 12:37:17 1996  David J MacKenzie  <[email protected]>
- 
-       * Version 1.7.
---- time-1.7/time.c
-+++ time-1.7/time.c
-@@ -398,7 +398,7 @@ summarize (fp, fmt, command, resp)
-                      ptok ((UL) resp->ru.ru_ixrss) / MSEC_TO_TICKS (v));
-             break;
-           case 'M':           /* Maximum resident set size.  */
--            fprintf (fp, "%lu", ptok ((UL) resp->ru.ru_maxrss));
-+            fprintf (fp, "%lu", (UL) resp->ru.ru_maxrss);
-             break;
-           case 'O':           /* Outputs.  */
-             fprintf (fp, "%ld", resp->ru.ru_oublock);

diff --git a/sys-process/time/files/time-1.7.2-incorrect_memory_usage.patch 
b/sys-process/time/files/time-1.7.2-incorrect_memory_usage.patch
deleted file mode 100644
index 6c83f0bb926..00000000000
--- a/sys-process/time/files/time-1.7.2-incorrect_memory_usage.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-https://bugs.launchpad.net/ubuntu/+source/time/+bug/742248
-https://bugs.gentoo.org/332253
-
---- time-1.7.2/ChangeLog
-+++ time-1.7.2/ChangeLog
-@@ -1,6 +1,12 @@
- Fri Dec 21 23:00:00 2012  David C Niemi <[email protected]>
-       * Version 1.7.1.
- 
-+Fri Oct  1 00:00:00 2010  Bob Proulx  <[email protected]>
-+      * time.c (summarize): Do not call ptok on ru_maxrss.
-+        The struct rusage reports ru_maxrss in kbytes not pages and
-+        should not be converted through pages-to-kbytes again.
-+        Reported by Sven Hartrumpf.
-+
- Thu Jul 11 12:37:17 1996  David J MacKenzie  <[email protected]>
- 
-       * Version 1.7.
---- time-1.7.2/time.c
-+++ time-1.7.2/time.c
-@@ -394,7 +394,7 @@
-                      ptok ((UL) resp->ru.ru_ixrss) / MSEC_TO_TICKS (v));
-             break;
-           case 'M':           /* Maximum resident set size.  */
--            fprintf (fp, "%lu", ptok ((UL) resp->ru.ru_maxrss));
-+            fprintf (fp, "%lu", (UL) resp->ru.ru_maxrss);
-             break;
-           case 'O':           /* Outputs.  */
-             fprintf (fp, "%ld", resp->ru.ru_oublock);

diff --git a/sys-process/time/time-1.7-r3.ebuild 
b/sys-process/time/time-1.7-r3.ebuild
deleted file mode 100644
index b5e2efb7a0b..00000000000
--- a/sys-process/time/time-1.7-r3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Displays info about resources used by a program"
-HOMEPAGE="https://www.gnu.org/directory/time.html";
-SRC_URI="mirror://gnu/time/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="sys-apps/texinfo"
-
-PATCHES=(
-       "${FILESDIR}"/${P}-build.patch
-       "${FILESDIR}"/${PV}-info-dir-entry.patch
-       "${FILESDIR}"/${P}-incorrect_memory_usage.patch
-)
-
-src_prepare() {
-       default
-       eautoreconf
-}

diff --git a/sys-process/time/time-1.7.2.ebuild 
b/sys-process/time/time-1.7.2.ebuild
deleted file mode 100644
index 2f2e5d482a0..00000000000
--- a/sys-process/time/time-1.7.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Displays info about resources used by a program"
-HOMEPAGE="https://www.gnu.org/directory/time.html";
-SRC_URI="http://git.savannah.gnu.org/cgit/time.git/snapshot/${P}.tar.gz";
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="sys-apps/texinfo"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-1.7-build.patch
-       "${FILESDIR}"/1.7-info-dir-entry.patch
-       "${FILESDIR}"/${PN}-1.7.2-incorrect_memory_usage.patch
-)
-
-src_prepare() {
-       default
-       eautoreconf
-}

Reply via email to