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

Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2021-05-15 00:13:53 +02:00
parent 2b243c164b
commit 64dfd1d77b
7 changed files with 0 additions and 141 deletions

View File

@@ -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

View File

@@ -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)

View File

@@ -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

View File

@@ -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 <bob@proulx.com>
+ 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 <djm@catapult.va.pubnix.com>
* 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);

View File

@@ -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 <gnutime@dcn.tuxers.net>
* Version 1.7.1.
+Fri Oct 1 00:00:00 2010 Bob Proulx <bob@proulx.com>
+ * 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 <djm@catapult.va.pubnix.com>
* 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);

View File

@@ -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
}

View File

@@ -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
}