Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/takcd: ChangeLog takcd-0.10.ebuild
Date: Sat, 07 May 2011 17:17:34
Message-Id: 20110507171723.B176520057@flycatcher.gentoo.org
1 angelos 11/05/07 17:17:23
2
3 Modified: ChangeLog takcd-0.10.ebuild
4 Log:
5 Fix possible overflow (bug #337849)
6
7 (Portage version: 2.2.0_alpha31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 media-sound/takcd/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/takcd/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/takcd/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/takcd/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/takcd/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 3 Dec 2010 00:33:13 -0000 1.16
23 +++ ChangeLog 7 May 2011 17:17:23 -0000 1.17
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-sound/takcd
26 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/ChangeLog,v 1.16 2010/12/03 00:33:13 flameeyes Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/ChangeLog,v 1.17 2011/05/07 17:17:23 angelos Exp $
30 +
31 + 07 May 2011; Christoph Mende <angelos@g.o> takcd-0.10.ebuild,
32 + +files/takcd-0.10-overflow.patch:
33 + Fix possible overflow (bug #337849)
34
35 03 Dec 2010; Diego E. Pettenò <flameeyes@g.o> takcd-0.10.ebuild:
36 Rebuild with modern autotools.
37
38
39
40 1.16 media-sound/takcd/takcd-0.10.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild?rev=1.16&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild?rev=1.16&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild?r1=1.15&r2=1.16
45
46 Index: takcd-0.10.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild,v
49 retrieving revision 1.15
50 retrieving revision 1.16
51 diff -u -r1.15 -r1.16
52 --- takcd-0.10.ebuild 3 Dec 2010 00:33:13 -0000 1.15
53 +++ takcd-0.10.ebuild 7 May 2011 17:17:23 -0000 1.16
54 @@ -1,8 +1,8 @@
55 -# Copyright 1999-2010 Gentoo Foundation
56 +# Copyright 1999-2011 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild,v 1.15 2010/12/03 00:33:13 flameeyes Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild,v 1.16 2011/05/07 17:17:23 angelos Exp $
60
61 -inherit autotools
62 +inherit eutils autotools
63
64 DESCRIPTION="Command line CD player"
65 HOMEPAGE="http://bard.sytes.net/takcd/"
66 @@ -16,6 +16,7 @@
67 src_unpack() {
68 unpack ${A}
69 cd "${S}"
70 + epatch "${FILESDIR}"/${P}-overflow.patch
71 eautoreconf
72 }