Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/time: ChangeLog time-1.7-r2.ebuild
Date: Sun, 01 Feb 2015 11:26:44
Message-Id: 20150201112641.5032C10D1D@oystercatcher.gentoo.org
1 polynomial-c 15/02/01 11:26:41
2
3 Modified: ChangeLog
4 Added: time-1.7-r2.ebuild
5 Log:
6 Fixed incorrect memory usage (bug #332253)
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
9
10 Revision Changes Path
11 1.9 sys-process/time/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/time/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/time/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/time/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-process/time/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 18 Jan 2014 03:51:44 -0000 1.8
24 +++ ChangeLog 1 Feb 2015 11:26:41 -0000 1.9
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-process/time
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-process/time/ChangeLog,v 1.8 2014/01/18 03:51:44 vapier Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-process/time/ChangeLog,v 1.9 2015/02/01 11:26:41 polynomial-c Exp $
31 +
32 +*time-1.7-r2 (01 Feb 2015)
33 +
34 + 01 Feb 2015; Lars Wendler <polynomial-c@g.o> +time-1.7-r2.ebuild,
35 + +files/time-1.7-incorrect_memory_usage.patch:
36 + Fixed incorrect memory usage (bug #332253).
37
38 18 Jan 2014; Mike Frysinger <vapier@g.o> time-1.7-r1.ebuild:
39 Add arm64 love.
40
41
42
43 1.1 sys-process/time/time-1.7-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/time/time-1.7-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/time/time-1.7-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: time-1.7-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-process/time/time-1.7-r2.ebuild,v 1.1 2015/02/01 11:26:41 polynomial-c Exp $
53
54 EAPI="4"
55
56 inherit eutils autotools
57
58 DESCRIPTION="displays info about resources used by a program"
59 HOMEPAGE="http://www.gnu.org/directory/time.html"
60 SRC_URI="mirror://gnu/time/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
65 IUSE=""
66
67 src_prepare() {
68 epatch \
69 "${FILESDIR}"/${P}-build.patch \
70 "${FILESDIR}"/${PV}-info-dir-entry.patch \
71 "${FILESDIR}"/${P}-incorrect_memory_usage.patch
72 eautoreconf
73 }