rpms/openafs/devel openafs-1.6.1-int31-partsize.patch, NONE, 1.1 openafs.spec, 1.24, 1.25
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv6758
Modified Files:
openafs.spec
Added Files:
openafs-1.6.1-int31-partsize.patch
Log Message:
* Wed Aug 22 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-3
- Upstream patch for fileserver partitions >2TB
openafs-1.6.1-int31-partsize.patch:
afsfileprocs.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--- NEW FILE openafs-1.6.1-int31-partsize.patch ---
commit a64864529d1fca2b5a3f4d21ec598982be335368
Author: Jeffrey Altman <jaltman(a)your-file-system.com>
Date: Mon Apr 2 22:35:41 2012 -0400
viced: AFSDisk, AFSFetchVolumeStatus Int31 PartSize
The AFSDisk and AFSFetchVolumeStatus structures use signed
32-bit integers for representation partition size and
available blocks. RoundInt64ToInt31() should be used instead
of RoundInt64ToInt32() when assigning their values.
Change-Id: I3834141fce2d54ce8bdfac3dc566074583bb305e
Reviewed-on: http://gerrit.openafs.org/7022
Reviewed-by: Derrick Brashear <shadow(a)dementix.org>
Tested-by: Derrick Brashear <shadow(a)dementix.org>
(cherry picked from commit e8f6dfac59fe042a04a9ac5eb3c37356cb3a22a3)
Reviewed-on: http://gerrit.openafs.org/7023
Reviewed-by: Jeffrey Altman <jaltman(a)secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman(a)secure-endpoints.com>
diff --git a/src/viced/afsfileprocs.c b/src/viced/afsfileprocs.c
index 17224b9..2314976 100644
--- a/src/viced/afsfileprocs.c
+++ b/src/viced/afsfileprocs.c
@@ -2045,8 +2045,8 @@ RXGetVolumeStatus(AFSFetchVolumeStatus * status, char **name, char **offMsg,
status->MinQuota = V_minquota(volptr);
status->MaxQuota = V_maxquota(volptr);
status->BlocksInUse = V_diskused(volptr);
- status->PartBlocksAvail = RoundInt64ToInt32(volptr->partition->free);
- status->PartMaxBlocks = RoundInt64ToInt32(volptr->partition->totalUsable);
+ status->PartBlocksAvail = RoundInt64ToInt31(volptr->partition->free);
+ status->PartMaxBlocks = RoundInt64ToInt31(volptr->partition->totalUsable);
/* now allocate and copy these things; they're freed by the RXGEN stub */
temp = strlen(V_name(volptr)) + 1;
@@ -5741,8 +5741,8 @@ SetVolumeStats(struct AFSStatistics *stats)
for (part = DiskPartitionList; part && i < AFS_MSTATDISKS;
part = part->next) {
- stats->Disks[i].TotalBlocks = RoundInt64ToInt32(part->totalUsable);
- stats->Disks[i].BlocksAvailable = RoundInt64ToInt32(part->free);
+ stats->Disks[i].TotalBlocks = RoundInt64ToInt31(part->totalUsable);
+ stats->Disks[i].BlocksAvailable = RoundInt64ToInt31(part->free);
memset(stats->Disks[i].Name, 0, AFS_DISKNAMESIZE);
strncpy(stats->Disks[i].Name, part->name, AFS_DISKNAMESIZE);
i++;
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/devel/openafs.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- openafs.spec 1 May 2012 22:33:23 -0000 1.24
+++ openafs.spec 22 Aug 2012 20:19:22 -0000 1.25
@@ -13,7 +13,7 @@
Summary: Enterprise Network File System
Name: openafs
Version: 1.6.1
-Release: 2%{?dist}
+Release: 3%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -29,6 +29,8 @@
BuildRequires: automake, autoconf
Patch0: openafs-1.6.0-fPIC.patch
+# Upstream patch to fix fileservers with >2TB partitions
+Patch1: openafs-1.6.1-int31-partsize.patch
%description
The AFS distributed filesystem. AFS is a distributed filesystem
@@ -96,6 +98,9 @@
# This changes osconf.m4 to build with -fPIC on i386 and x86_64
%patch0
+# This allows fileservers to serve data from partition sizes greater than 2TB.
+%patch1 -p1
+
# Convert the licese to UTF-8
mv src/LICENSE src/LICENSE~
iconv -f ISO-8859-1 -t UTF8 src/LICENSE~ > src/LICENSE
@@ -324,6 +329,9 @@
%{_datadir}/openafs/C/afszcm.cat
%changelog
+* Wed Aug 22 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-3
+- Upstream patch for fileserver partitions >2TB
+
* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
- Provide openafs-static (RPM Fusion bug #2310).
12 years, 3 months
rpms/audacity-freeworld/F-17 audacity-2.0.2-desktop.in.patch,1.1,1.2
by David Timms
Author: dtimms
Update of /cvs/free/rpms/audacity-freeworld/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16565
Modified Files:
audacity-2.0.2-desktop.in.patch
Log Message:
use correct version of desktop patch to suit upstream
audacity-2.0.2-desktop.in.patch:
audacity.desktop.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Index: audacity-2.0.2-desktop.in.patch
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-17/audacity-2.0.2-desktop.in.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- audacity-2.0.2-desktop.in.patch 21 Aug 2012 13:11:03 -0000 1.1
+++ audacity-2.0.2-desktop.in.patch 22 Aug 2012 11:29:46 -0000 1.2
@@ -1,6 +1,6 @@
---- src/audacity.desktop.in.orig
-+++ src/audacity.desktop.in
-@@ -5,16 +5,17 @@
+--- src/audacity.desktop.in.orig 2012-08-21 18:48:21.000000000 +1000
++++ src/audacity.desktop.in 2012-08-21 22:34:31.376045927 +1000
+@@ -5,16 +5,16 @@
GenericName=Sound Editor
GenericName[de]=Audio-Editor
GenericName[ru]=Редактор звуковых файлов
@@ -16,8 +16,7 @@
+Categories=AudioVideo;Audio;GTK;GNOME;Sequencer;X-Jack;AudioVideoEditing;
Exec=@AUDACITY_NAME@ %F
--StartupNotify=false
-+StartupNotify=true
-+StartupWMClass=Audacity
+ StartupNotify=false
Terminal=false
- MimeType=application/x-audacity-project;@MIMETYPES@audio/x-aifc;audio/x-mp3;audio/midi;
+-MimeType=application/x-audacity-project;@MIMETYPES@
++MimeType=application/x-audacity-project;@MIMETYPES@audio/x-aifc;audio/x-mp3;audio/midi;
12 years, 3 months
rpms/thunderbird-enigmail/devel .cvsignore, 1.19, 1.20 sources, 1.20, 1.21 thunderbird-enigmail.spec, 1.25, 1.26
by Remi Collet
Author: remi
Update of /cvs/free/rpms/thunderbird-enigmail/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv5545
Modified Files:
.cvsignore sources thunderbird-enigmail.spec
Log Message:
Enigmail 1.4.4 for Thunderbird 14.0
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/thunderbird-enigmail/devel/.cvsignore,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- .cvsignore 21 Jul 2012 17:17:28 -0000 1.19
+++ .cvsignore 22 Aug 2012 07:24:10 -0000 1.20
@@ -1,2 +1,2 @@
-enigmail-1.4.3.tar.gz
+enigmail-1.4.4.tar.gz
thunderbird-14.0.source.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/thunderbird-enigmail/devel/sources,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- sources 21 Jul 2012 17:17:28 -0000 1.20
+++ sources 22 Aug 2012 07:24:11 -0000 1.21
@@ -1,2 +1,2 @@
-4a253db11436a32ef81d5917c4ee6e25 enigmail-1.4.3.tar.gz
+1bc36b5077f6b01b6acf0f75565dddc8 enigmail-1.4.4.tar.gz
64dcfaa0aa47aa5fd8588090503fac9d thunderbird-14.0.source.tar.bz2
Index: thunderbird-enigmail.spec
===================================================================
RCS file: /cvs/free/rpms/thunderbird-enigmail/devel/thunderbird-enigmail.spec,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- thunderbird-enigmail.spec 21 Jul 2012 17:17:28 -0000 1.25
+++ thunderbird-enigmail.spec 22 Aug 2012 07:24:11 -0000 1.26
@@ -35,7 +35,7 @@
Summary: Authentication and encryption extension for Mozilla Thunderbird
Name: thunderbird-enigmail
-Version: 1.4.3
+Version: 1.4.4
%if 0%{?prever:1}
Release: 0.1.%{prever}%{?dist}
%else
@@ -202,7 +202,7 @@
# All tarballs (as well as CVS) will *always* report as 1.4a1pre (or whatever
# the next major version would be). This is because I create builds from trunk
# and simply label the result as 1.3.x.
-sed -i -e '/em:version/s/1.5a1pre/%{version}/' package/install.rdf
+# sed -i -e '/em:version/s/1.5a1pre/%{version}/' package/install.rdf
grep '<em:version>%{version}</em:version>' package/install.rdf || exit 1
# Apply Enigmail patch here
popd
@@ -278,6 +278,9 @@
#===============================================================================
%changelog
+* Wed Aug 21 2012 Remi Collet <remi(a)fedoraproject.org> 1.4.4-1
+- Enigmail 1.4.4 for Thunderbird 14.0
+
* Sat Jul 21 2012 Remi Collet <remi(a)fedoraproject.org> 1.4.3-1
- Enigmail 1.4.3 for Thunderbird 14.0
12 years, 3 months
rpms/audacity-freeworld/F-16 audacity-freeworld.spec,1.24,1.25
by David Timms
Author: dtimms
Update of /cvs/free/rpms/audacity-freeworld/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3339
Modified Files:
audacity-freeworld.spec
Log Message:
commit the correctly updated .spec file.
Index: audacity-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-16/audacity-freeworld.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- audacity-freeworld.spec 13 Aug 2012 09:33:55 -0000 1.24
+++ audacity-freeworld.spec 21 Aug 2012 13:19:37 -0000 1.25
@@ -4,7 +4,7 @@
Name: audacity-freeworld
Version: 2.0.2
-Release: 0.1.rc2%{?dist}
+Release: 0.2.rc4%{?dist}
Summary: Multitrack audio editor
Group: Applications/Multimedia
License: GPLv2
@@ -15,7 +15,7 @@
# use for upstream source releases:
#Source0: http://downloads.sf.net/sourceforge/audacity/audacity-minsrc-%#{version}-...
-Source0: http://audacity.googlecode.com/files/audacity-minsrc-%{version}rc2.tar.bz2
+Source0: http://audacity.googlecode.com/files/audacity-minsrc-%{version}rc4.tar.bz2
%define tartopdir audacity-src-%{version}
Patch1: audacity-2.0.1-libmp3lame-default.patch
@@ -24,7 +24,7 @@
# remove audio/mpeg, audio/x-mp3
# enable startup notification
# add categories Sequencer X-Jack AudioVideoEditing for F-12 Studio feature
-Patch3: audacity-2.0.1-desktop.in.patch
+Patch3: audacity-2.0.2-desktop.in.patch
Provides: audacity-nonfree = %{version}-%{release}
Obsoletes: audacity-nonfree < %{version}-%{release}
@@ -85,7 +85,7 @@
sed -i -e 's!libmp3lame.so\([^.]\)!libmp3lame.so.0\1!g' $i
done
-%patch3 -p1 -b .desktop.old
+%patch3 -b .desktop.old
%build
@@ -156,6 +156,9 @@
%changelog
+* Tue Aug 21 2012 David Timms <iinet.net.au@dtimms> - 2.0.2-0.3.rc4
+- update to 2.0.2 release candidate 4
+
* Mon Aug 13 2012 David Timms <iinet.net.au@dtimms> - 2.0.2-0.1.rc2
- update to 2.0.2 release candidate 2
12 years, 3 months
rpms/audacity-freeworld/F-16 audacity-2.0.2-desktop.in.patch, NONE, 1.1 .cvsignore, 1.14, 1.15 sources, 1.14, 1.15 audacity-2.0.1-desktop.in.patch, 1.1, NONE
by David Timms
Author: dtimms
Update of /cvs/free/rpms/audacity-freeworld/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3203
Modified Files:
.cvsignore sources
Added Files:
audacity-2.0.2-desktop.in.patch
Removed Files:
audacity-2.0.1-desktop.in.patch
Log Message:
update to 2.0.2 release candidate 4
rebase libmp3lame-default.patch
rebase desktop.in.patch
audacity-2.0.2-desktop.in.patch:
audacity.desktop.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- NEW FILE audacity-2.0.2-desktop.in.patch ---
--- src/audacity.desktop.in.orig 2012-08-21 18:48:21.000000000 +1000
+++ src/audacity.desktop.in 2012-08-21 22:34:31.376045927 +1000
@@ -5,16 +5,16 @@
GenericName=Sound Editor
GenericName[de]=Audio-Editor
GenericName[ru]=Редактор звуковых файлов
-Comment=Record and edit audio files
+Comment=Record and edit audio files with multitrack capability
Comment[de]=Audio-Dateien aufnehmen und bearbeiten
Comment[ru]=Запись и редактирование звуковых файлов
Icon=@AUDACITY_NAME@
Type=Application
-Categories=AudioVideo;Audio;AudioVideoEditing;
+Categories=AudioVideo;Audio;GTK;GNOME;Sequencer;X-Jack;AudioVideoEditing;
Exec=@AUDACITY_NAME@ %F
StartupNotify=false
Terminal=false
-MimeType=application/x-audacity-project;@MIMETYPES@
+MimeType=application/x-audacity-project;@MIMETYPES@audio/x-aifc;audio/x-mp3;audio/midi;
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-16/.cvsignore,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- .cvsignore 13 Aug 2012 09:33:55 -0000 1.14
+++ .cvsignore 21 Aug 2012 13:17:45 -0000 1.15
@@ -1 +1 @@
-audacity-minsrc-2.0.2rc2.tar.bz2
+audacity-minsrc-2.0.2rc4.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-16/sources,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- sources 13 Aug 2012 09:33:55 -0000 1.14
+++ sources 21 Aug 2012 13:17:45 -0000 1.15
@@ -1 +1 @@
-469f7d5e938eea2ca4f57f9a739ae0ac audacity-minsrc-2.0.2rc2.tar.bz2
+c838bc4485b0af104a7f6d9c6955a284 audacity-minsrc-2.0.2rc4.tar.bz2
--- audacity-2.0.1-desktop.in.patch DELETED ---
12 years, 3 months
rpms/audacity-freeworld/F-17 audacity-2.0.2-desktop.in.patch, NONE, 1.1 .cvsignore, 1.14, 1.15 audacity-freeworld.spec, 1.26, 1.27 sources, 1.14, 1.15 audacity-2.0.1-desktop.in.patch, 1.1, NONE
by David Timms
Author: dtimms
Update of /cvs/free/rpms/audacity-freeworld/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2715
Modified Files:
.cvsignore audacity-freeworld.spec sources
Added Files:
audacity-2.0.2-desktop.in.patch
Removed Files:
audacity-2.0.1-desktop.in.patch
Log Message:
update to 2.0.2 release candidate 4
rebase libmp3lame-default.patch
rebase desktop.in.patch
audacity-2.0.2-desktop.in.patch:
audacity.desktop.in | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
--- NEW FILE audacity-2.0.2-desktop.in.patch ---
--- src/audacity.desktop.in.orig
+++ src/audacity.desktop.in
@@ -5,16 +5,17 @@
GenericName=Sound Editor
GenericName[de]=Audio-Editor
GenericName[ru]=Редактор звуковых файлов
-Comment=Record and edit audio files
+Comment=Record and edit audio files with multitrack capability
Comment[de]=Audio-Dateien aufnehmen und bearbeiten
Comment[ru]=Запись и редактирование звуковых файлов
Icon=@AUDACITY_NAME@
Type=Application
-Categories=AudioVideo;Audio;AudioVideoEditing;
+Categories=AudioVideo;Audio;GTK;GNOME;Sequencer;X-Jack;AudioVideoEditing;
Exec=@AUDACITY_NAME@ %F
-StartupNotify=false
+StartupNotify=true
+StartupWMClass=Audacity
Terminal=false
MimeType=application/x-audacity-project;@MIMETYPES@audio/x-aifc;audio/x-mp3;audio/midi;
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-17/.cvsignore,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- .cvsignore 13 Aug 2012 09:25:16 -0000 1.14
+++ .cvsignore 21 Aug 2012 13:11:03 -0000 1.15
@@ -1 +1 @@
-audacity-minsrc-2.0.2rc2.tar.bz2
+audacity-minsrc-2.0.2rc4.tar.bz2
Index: audacity-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-17/audacity-freeworld.spec,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- audacity-freeworld.spec 13 Aug 2012 09:25:16 -0000 1.26
+++ audacity-freeworld.spec 21 Aug 2012 13:11:03 -0000 1.27
@@ -4,7 +4,7 @@
Name: audacity-freeworld
Version: 2.0.2
-Release: 0.1.rc2%{?dist}
+Release: 0.2.rc4%{?dist}
Summary: Multitrack audio editor
Group: Applications/Multimedia
License: GPLv2
@@ -15,7 +15,7 @@
# use for upstream source releases:
#Source0: http://downloads.sf.net/sourceforge/audacity/audacity-minsrc-%#{version}-...
-Source0: http://audacity.googlecode.com/files/audacity-minsrc-%{version}rc2.tar.bz2
+Source0: http://audacity.googlecode.com/files/audacity-minsrc-%{version}rc4.tar.bz2
%define tartopdir audacity-src-%{version}
Patch1: audacity-2.0.1-libmp3lame-default.patch
@@ -24,7 +24,7 @@
# remove audio/mpeg, audio/x-mp3
# enable startup notification
# add categories Sequencer X-Jack AudioVideoEditing for F-12 Studio feature
-Patch3: audacity-2.0.1-desktop.in.patch
+Patch3: audacity-2.0.2-desktop.in.patch
Provides: audacity-nonfree = %{version}-%{release}
Obsoletes: audacity-nonfree < %{version}-%{release}
@@ -85,7 +85,7 @@
sed -i -e 's!libmp3lame.so\([^.]\)!libmp3lame.so.0\1!g' $i
done
-%patch3 -p1 -b .desktop.old
+%patch3 -b .desktop.old
%build
@@ -156,6 +156,9 @@
%changelog
+* Tue Aug 21 2012 David Timms <iinet.net.au@dtimms> - 2.0.2-0.3.rc4
+- update to 2.0.2 release candidate 4
+
* Mon Aug 13 2012 David Timms <iinet.net.au@dtimms> - 2.0.2-0.1.rc2
- update to 2.0.2 release candidate 2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-17/sources,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- sources 13 Aug 2012 09:25:16 -0000 1.14
+++ sources 21 Aug 2012 13:11:03 -0000 1.15
@@ -1 +1 @@
-469f7d5e938eea2ca4f57f9a739ae0ac audacity-minsrc-2.0.2rc2.tar.bz2
+c838bc4485b0af104a7f6d9c6955a284 audacity-minsrc-2.0.2rc4.tar.bz2
--- audacity-2.0.1-desktop.in.patch DELETED ---
12 years, 3 months
rpms/phonon-backend-vlc/devel phonon-backend-vlc.spec,1.17,1.18
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/phonon-backend-vlc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3125/devel
Modified Files:
phonon-backend-vlc.spec
Log Message:
Bump (again)
Index: phonon-backend-vlc.spec
===================================================================
RCS file: /cvs/free/rpms/phonon-backend-vlc/devel/phonon-backend-vlc.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- phonon-backend-vlc.spec 20 Aug 2012 21:09:02 -0000 1.17
+++ phonon-backend-vlc.spec 20 Aug 2012 21:25:03 -0000 1.18
@@ -2,7 +2,7 @@
name: phonon-backend-vlc
Summary: VLC phonon backend
Version: 0.6.0
-Release: 2%{?dist}
+Release: 3%{?dist}
Group: Applications/Multimedia
License: LGPLv2+
URL: http://phonon.kde.org/
@@ -74,7 +74,7 @@
%changelog
-* Mon Aug 20 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.0-2
+* Mon Aug 20 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.0-3
- Rebuilt (branching)
* Sat Aug 11 2012 Rex Dieter <rdieter(a)fedoraproject.org> 0.6.0-1
12 years, 3 months
rpms/phonon-backend-vlc/F-18 phonon-backend-vlc.spec,1.17,1.18
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/phonon-backend-vlc/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3125/F-18
Modified Files:
phonon-backend-vlc.spec
Log Message:
Bump (again)
Index: phonon-backend-vlc.spec
===================================================================
RCS file: /cvs/free/rpms/phonon-backend-vlc/F-18/phonon-backend-vlc.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- phonon-backend-vlc.spec 20 Aug 2012 21:09:02 -0000 1.17
+++ phonon-backend-vlc.spec 20 Aug 2012 21:25:04 -0000 1.18
@@ -2,7 +2,7 @@
name: phonon-backend-vlc
Summary: VLC phonon backend
Version: 0.6.0
-Release: 2%{?dist}
+Release: 3%{?dist}
Group: Applications/Multimedia
License: LGPLv2+
URL: http://phonon.kde.org/
@@ -74,7 +74,7 @@
%changelog
-* Mon Aug 20 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.0-2
+* Mon Aug 20 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.0-3
- Rebuilt (branching)
* Sat Aug 11 2012 Rex Dieter <rdieter(a)fedoraproject.org> 0.6.0-1
12 years, 3 months
rpms/phonon-backend-vlc/devel phonon-backend-vlc.spec,1.16,1.17
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/phonon-backend-vlc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv1913/devel
Modified Files:
phonon-backend-vlc.spec
Log Message:
Rebuilt because built when fedora/RPM Fusion was branching
Index: phonon-backend-vlc.spec
===================================================================
RCS file: /cvs/free/rpms/phonon-backend-vlc/devel/phonon-backend-vlc.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- phonon-backend-vlc.spec 11 Aug 2012 22:43:30 -0000 1.16
+++ phonon-backend-vlc.spec 20 Aug 2012 21:09:02 -0000 1.17
@@ -2,7 +2,7 @@
name: phonon-backend-vlc
Summary: VLC phonon backend
Version: 0.6.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Group: Applications/Multimedia
License: LGPLv2+
URL: http://phonon.kde.org/
@@ -74,6 +74,9 @@
%changelog
+* Mon Aug 20 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.0-2
+- Rebuilt (branching)
+
* Sat Aug 11 2012 Rex Dieter <rdieter(a)fedoraproject.org> 0.6.0-1
- 0.6.0
12 years, 3 months
rpms/phonon-backend-vlc/F-18 phonon-backend-vlc.spec,1.16,1.17
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/phonon-backend-vlc/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv1913/F-18
Modified Files:
phonon-backend-vlc.spec
Log Message:
Rebuilt because built when fedora/RPM Fusion was branching
Index: phonon-backend-vlc.spec
===================================================================
RCS file: /cvs/free/rpms/phonon-backend-vlc/F-18/phonon-backend-vlc.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- phonon-backend-vlc.spec 11 Aug 2012 22:43:30 -0000 1.16
+++ phonon-backend-vlc.spec 20 Aug 2012 21:09:02 -0000 1.17
@@ -2,7 +2,7 @@
name: phonon-backend-vlc
Summary: VLC phonon backend
Version: 0.6.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Group: Applications/Multimedia
License: LGPLv2+
URL: http://phonon.kde.org/
@@ -74,6 +74,9 @@
%changelog
+* Mon Aug 20 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.0-2
+- Rebuilt (branching)
+
* Sat Aug 11 2012 Rex Dieter <rdieter(a)fedoraproject.org> 0.6.0-1
- 0.6.0
12 years, 3 months