Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild
Date: Sat, 22 Jan 2011 13:34:56
Message-Id: 20110122133447.29D7B20054@flycatcher.gentoo.org
1 aballier 11/01/22 13:34:47
2
3 Modified: ffmpeg-9999.ebuild
4 Log:
5 no need to set subversion version manually with git...
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.29 media-video/ffmpeg/ffmpeg-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.28&r2=1.29
15
16 Index: ffmpeg-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ffmpeg-9999.ebuild 21 Jan 2011 15:04:55 -0000 1.28
23 +++ ffmpeg-9999.ebuild 22 Jan 2011 13:34:47 -0000 1.29
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.28 2011/01/21 15:04:55 lu_zero Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.29 2011/01/22 13:34:47 aballier Exp $
29
30 EAPI="2"
31
32 @@ -79,11 +79,7 @@
33 "
34
35 src_prepare() {
36 - if [ "${PV#9999}" != "${PV}" ] ; then
37 - # Set SVN version manually
38 - subversion_wc_info
39 - sed -i -e "s/UNKNOWN/SVN-r${ESVN_WC_REVISION}/" "${S}/version.sh" || die
40 - elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
41 + if [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
42 sed -i -e "s/UNKNOWN/SVN-r${FFMPEG_REVISION}/" "${S}/version.sh" || die
43 fi
44 }