rpms/miro/F-18 miro-5.0.2-fix_ffmpeg.patch, NONE, 1.1 miro.spec, 1.8, 1.9
by Michel Alexandre Salim
Author: salimma
Update of /cvs/free/rpms/miro/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7807/F-18
Modified Files:
miro.spec
Added Files:
miro-5.0.2-fix_ffmpeg.patch
Log Message:
* Wed Sep 26 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-2
- Avoid shipping pre-built codegen binary
miro-5.0.2-fix_ffmpeg.patch:
miro-segmenter.c | 25 ++++++++++---------------
1 file changed, 10 insertions(+), 15 deletions(-)
--- NEW FILE miro-5.0.2-fix_ffmpeg.patch ---
--- /var/lib/mock/fedora-18-x86_64-miro/root/builddir/build/BUILD/miro-5.0.2/linux/miro-segmenter.c 2012-07-19 00:27:08.000000000 +0700
+++ linux/miro-segmenter.c 2012-09-27 09:09:55.284480879 +0700
@@ -156,7 +156,7 @@
exit(1);
}
- ret = av_open_input_file(&ic, input, ifmt, 0, NULL);
+ ret = avformat_open_input(&ic, input, ifmt, 0);
if (ret != 0) {
fprintf(stderr, "Could not open input file, make sure it is an mpegts file: %d\n", ret);
exit(1);
@@ -167,7 +167,7 @@
exit(1);
}
-#if LIBAVFORMAT_VERSION_MAJOR > 52
+#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52, 45, 0)
ofmt = av_guess_format("mpegts", NULL, NULL);
#else
ofmt = guess_format("mpegts", NULL, NULL);
@@ -215,12 +215,7 @@
}
}
- if (av_set_parameters(oc, NULL) < 0) {
- fprintf(stderr, "Invalid output format parameters\n");
- exit(1);
- }
-
- dump_format(oc, 0, input, 1);
+ av_dump_format(oc, 0, input, 1);
if (video_st) {
codec = avcodec_find_decoder(video_st->codec->codec_id);
@@ -233,12 +228,12 @@
}
}
- if (url_fopen(&oc->pb, output_filename, URL_WRONLY) < 0) {
+ if (avio_open(&oc->pb, output_filename, AVIO_FLAG_WRITE) < 0) {
fprintf(stderr, "Could not open '%s'\n", output_filename);
exit(1);
}
- if (av_write_header(oc)) {
+ if (avformat_write_header(oc, NULL)) {
fprintf(stderr, "Could not write mpegts header to first output file\n");
exit(1);
@@ -274,10 +269,10 @@
}
if (segment_time - prev_segment_time >= segment_duration) {
- put_flush_packet(oc->pb);
- url_fclose(oc->pb);
+ avio_flush(oc->pb);
+ avio_close(oc->pb);
- if (url_fopen(&oc->pb, output_filename, URL_WRONLY) < 0) {
+ if (avio_open(&oc->pb, output_filename, AVIO_FLAG_WRITE) < 0) {
fprintf(stderr, "Could not open '%s'\n", output_filename);
break;
}
@@ -307,13 +302,13 @@
av_freep(&oc->streams[i]);
}
- url_fclose(oc->pb);
+ avio_close(oc->pb);
av_free(oc);
/* End-of-transcode marker. */
{
struct sockaddr_in sockaddr;
- int rc, s;
+ int rc, s;
memset(&sockaddr, 0, sizeof(sockaddr));
sockaddr.sin_family = AF_INET;
Index: miro.spec
===================================================================
RCS file: /cvs/free/rpms/miro/F-18/miro.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- miro.spec 8 Aug 2012 00:02:05 -0000 1.8
+++ miro.spec 27 Sep 2012 06:21:31 -0000 1.9
@@ -5,7 +5,7 @@
Name: miro
Version: 5.0.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Internet TV Player
Group: Applications/Multimedia
@@ -24,6 +24,10 @@
# fix GNOME screensaver not being inhibitable
# submitted: http://bugzilla.pculture.org/show_bug.cgi?id=18018
Patch2: miro-4.0.2.1-fix_screensaver_inhibit.patch
+# Don't install pre-built codegen binaries
+Patch3: miro-5.0.2-no_bundled.patch
+# Backport miro-segmenter changes for building with new FFmpeg
+Patch4: miro-5.0.2-fix_ffmpeg.patch
# Miro is temporarily using pre-built codegen binaries
# available only on these two platforms
@@ -93,6 +97,10 @@
%patch0 -p2
%patch1 -p2
%patch2 -p2
+%patch3 -p1
+%if 0%{?fedora} >= 18
+%patch4 -p0
+%endif
# /Patches
@@ -138,13 +146,6 @@
%files -f linux/miro.lang
%{_bindir}/miro*
-%ifarch x86_64
-%exclude %{_bindir}/codegen.Linux-i686
-%{_bindir}/codegen.Linux-x86_64
-%else
-%{_bindir}/codegen.Linux-i686
-%exclude %{_bindir}/codegen.Linux-x86_64
-%endif
%{_bindir}/echoprint-codegen
%exclude %{_datadir}/miro/resources/testdata
%{_datadir}/miro
@@ -159,6 +160,9 @@
%changelog
+* Wed Sep 26 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-2
+- Avoid shipping pre-built codegen binary
+
* Tue Aug 7 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-1
- Update to 5.0.2
12 years, 2 months
rpms/miro/F-16 miro-5.0.2-fix_ffmpeg.patch, NONE, 1.1 miro.spec, 1.7, 1.8
by Michel Alexandre Salim
Author: salimma
Update of /cvs/free/rpms/miro/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7807/F-16
Modified Files:
miro.spec
Added Files:
miro-5.0.2-fix_ffmpeg.patch
Log Message:
* Wed Sep 26 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-2
- Avoid shipping pre-built codegen binary
miro-5.0.2-fix_ffmpeg.patch:
miro-segmenter.c | 25 ++++++++++---------------
1 file changed, 10 insertions(+), 15 deletions(-)
--- NEW FILE miro-5.0.2-fix_ffmpeg.patch ---
--- /var/lib/mock/fedora-18-x86_64-miro/root/builddir/build/BUILD/miro-5.0.2/linux/miro-segmenter.c 2012-07-19 00:27:08.000000000 +0700
+++ linux/miro-segmenter.c 2012-09-27 09:09:55.284480879 +0700
@@ -156,7 +156,7 @@
exit(1);
}
- ret = av_open_input_file(&ic, input, ifmt, 0, NULL);
+ ret = avformat_open_input(&ic, input, ifmt, 0);
if (ret != 0) {
fprintf(stderr, "Could not open input file, make sure it is an mpegts file: %d\n", ret);
exit(1);
@@ -167,7 +167,7 @@
exit(1);
}
-#if LIBAVFORMAT_VERSION_MAJOR > 52
+#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52, 45, 0)
ofmt = av_guess_format("mpegts", NULL, NULL);
#else
ofmt = guess_format("mpegts", NULL, NULL);
@@ -215,12 +215,7 @@
}
}
- if (av_set_parameters(oc, NULL) < 0) {
- fprintf(stderr, "Invalid output format parameters\n");
- exit(1);
- }
-
- dump_format(oc, 0, input, 1);
+ av_dump_format(oc, 0, input, 1);
if (video_st) {
codec = avcodec_find_decoder(video_st->codec->codec_id);
@@ -233,12 +228,12 @@
}
}
- if (url_fopen(&oc->pb, output_filename, URL_WRONLY) < 0) {
+ if (avio_open(&oc->pb, output_filename, AVIO_FLAG_WRITE) < 0) {
fprintf(stderr, "Could not open '%s'\n", output_filename);
exit(1);
}
- if (av_write_header(oc)) {
+ if (avformat_write_header(oc, NULL)) {
fprintf(stderr, "Could not write mpegts header to first output file\n");
exit(1);
@@ -274,10 +269,10 @@
}
if (segment_time - prev_segment_time >= segment_duration) {
- put_flush_packet(oc->pb);
- url_fclose(oc->pb);
+ avio_flush(oc->pb);
+ avio_close(oc->pb);
- if (url_fopen(&oc->pb, output_filename, URL_WRONLY) < 0) {
+ if (avio_open(&oc->pb, output_filename, AVIO_FLAG_WRITE) < 0) {
fprintf(stderr, "Could not open '%s'\n", output_filename);
break;
}
@@ -307,13 +302,13 @@
av_freep(&oc->streams[i]);
}
- url_fclose(oc->pb);
+ avio_close(oc->pb);
av_free(oc);
/* End-of-transcode marker. */
{
struct sockaddr_in sockaddr;
- int rc, s;
+ int rc, s;
memset(&sockaddr, 0, sizeof(sockaddr));
sockaddr.sin_family = AF_INET;
Index: miro.spec
===================================================================
RCS file: /cvs/free/rpms/miro/F-16/miro.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- miro.spec 8 Aug 2012 00:02:05 -0000 1.7
+++ miro.spec 27 Sep 2012 06:21:31 -0000 1.8
@@ -5,7 +5,7 @@
Name: miro
Version: 5.0.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Internet TV Player
Group: Applications/Multimedia
@@ -24,6 +24,10 @@
# fix GNOME screensaver not being inhibitable
# submitted: http://bugzilla.pculture.org/show_bug.cgi?id=18018
Patch2: miro-4.0.2.1-fix_screensaver_inhibit.patch
+# Don't install pre-built codegen binaries
+Patch3: miro-5.0.2-no_bundled.patch
+# Backport miro-segmenter changes for building with new FFmpeg
+Patch4: miro-5.0.2-fix_ffmpeg.patch
# Miro is temporarily using pre-built codegen binaries
# available only on these two platforms
@@ -93,6 +97,10 @@
%patch0 -p2
%patch1 -p2
%patch2 -p2
+%patch3 -p1
+%if 0%{?fedora} >= 18
+%patch4 -p0
+%endif
# /Patches
@@ -138,13 +146,6 @@
%files -f linux/miro.lang
%{_bindir}/miro*
-%ifarch x86_64
-%exclude %{_bindir}/codegen.Linux-i686
-%{_bindir}/codegen.Linux-x86_64
-%else
-%{_bindir}/codegen.Linux-i686
-%exclude %{_bindir}/codegen.Linux-x86_64
-%endif
%{_bindir}/echoprint-codegen
%exclude %{_datadir}/miro/resources/testdata
%{_datadir}/miro
@@ -159,6 +160,9 @@
%changelog
+* Wed Sep 26 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-2
+- Avoid shipping pre-built codegen binary
+
* Tue Aug 7 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-1
- Update to 5.0.2
12 years, 2 months
rpms/miro/devel miro-5.0.2-fix_ffmpeg.patch, NONE, 1.1 miro.spec, 1.8, 1.9
by Michel Alexandre Salim
Author: salimma
Update of /cvs/free/rpms/miro/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7807/devel
Modified Files:
miro.spec
Added Files:
miro-5.0.2-fix_ffmpeg.patch
Log Message:
* Wed Sep 26 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-2
- Avoid shipping pre-built codegen binary
miro-5.0.2-fix_ffmpeg.patch:
miro-segmenter.c | 25 ++++++++++---------------
1 file changed, 10 insertions(+), 15 deletions(-)
--- NEW FILE miro-5.0.2-fix_ffmpeg.patch ---
--- /var/lib/mock/fedora-18-x86_64-miro/root/builddir/build/BUILD/miro-5.0.2/linux/miro-segmenter.c 2012-07-19 00:27:08.000000000 +0700
+++ linux/miro-segmenter.c 2012-09-27 09:09:55.284480879 +0700
@@ -156,7 +156,7 @@
exit(1);
}
- ret = av_open_input_file(&ic, input, ifmt, 0, NULL);
+ ret = avformat_open_input(&ic, input, ifmt, 0);
if (ret != 0) {
fprintf(stderr, "Could not open input file, make sure it is an mpegts file: %d\n", ret);
exit(1);
@@ -167,7 +167,7 @@
exit(1);
}
-#if LIBAVFORMAT_VERSION_MAJOR > 52
+#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52, 45, 0)
ofmt = av_guess_format("mpegts", NULL, NULL);
#else
ofmt = guess_format("mpegts", NULL, NULL);
@@ -215,12 +215,7 @@
}
}
- if (av_set_parameters(oc, NULL) < 0) {
- fprintf(stderr, "Invalid output format parameters\n");
- exit(1);
- }
-
- dump_format(oc, 0, input, 1);
+ av_dump_format(oc, 0, input, 1);
if (video_st) {
codec = avcodec_find_decoder(video_st->codec->codec_id);
@@ -233,12 +228,12 @@
}
}
- if (url_fopen(&oc->pb, output_filename, URL_WRONLY) < 0) {
+ if (avio_open(&oc->pb, output_filename, AVIO_FLAG_WRITE) < 0) {
fprintf(stderr, "Could not open '%s'\n", output_filename);
exit(1);
}
- if (av_write_header(oc)) {
+ if (avformat_write_header(oc, NULL)) {
fprintf(stderr, "Could not write mpegts header to first output file\n");
exit(1);
@@ -274,10 +269,10 @@
}
if (segment_time - prev_segment_time >= segment_duration) {
- put_flush_packet(oc->pb);
- url_fclose(oc->pb);
+ avio_flush(oc->pb);
+ avio_close(oc->pb);
- if (url_fopen(&oc->pb, output_filename, URL_WRONLY) < 0) {
+ if (avio_open(&oc->pb, output_filename, AVIO_FLAG_WRITE) < 0) {
fprintf(stderr, "Could not open '%s'\n", output_filename);
break;
}
@@ -307,13 +302,13 @@
av_freep(&oc->streams[i]);
}
- url_fclose(oc->pb);
+ avio_close(oc->pb);
av_free(oc);
/* End-of-transcode marker. */
{
struct sockaddr_in sockaddr;
- int rc, s;
+ int rc, s;
memset(&sockaddr, 0, sizeof(sockaddr));
sockaddr.sin_family = AF_INET;
Index: miro.spec
===================================================================
RCS file: /cvs/free/rpms/miro/devel/miro.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- miro.spec 8 Aug 2012 00:02:05 -0000 1.8
+++ miro.spec 27 Sep 2012 06:21:31 -0000 1.9
@@ -5,7 +5,7 @@
Name: miro
Version: 5.0.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Internet TV Player
Group: Applications/Multimedia
@@ -24,6 +24,10 @@
# fix GNOME screensaver not being inhibitable
# submitted: http://bugzilla.pculture.org/show_bug.cgi?id=18018
Patch2: miro-4.0.2.1-fix_screensaver_inhibit.patch
+# Don't install pre-built codegen binaries
+Patch3: miro-5.0.2-no_bundled.patch
+# Backport miro-segmenter changes for building with new FFmpeg
+Patch4: miro-5.0.2-fix_ffmpeg.patch
# Miro is temporarily using pre-built codegen binaries
# available only on these two platforms
@@ -93,6 +97,10 @@
%patch0 -p2
%patch1 -p2
%patch2 -p2
+%patch3 -p1
+%if 0%{?fedora} >= 18
+%patch4 -p0
+%endif
# /Patches
@@ -138,13 +146,6 @@
%files -f linux/miro.lang
%{_bindir}/miro*
-%ifarch x86_64
-%exclude %{_bindir}/codegen.Linux-i686
-%{_bindir}/codegen.Linux-x86_64
-%else
-%{_bindir}/codegen.Linux-i686
-%exclude %{_bindir}/codegen.Linux-x86_64
-%endif
%{_bindir}/echoprint-codegen
%exclude %{_datadir}/miro/resources/testdata
%{_datadir}/miro
@@ -159,6 +160,9 @@
%changelog
+* Wed Sep 26 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-2
+- Avoid shipping pre-built codegen binary
+
* Tue Aug 7 2012 Michel Salim <salimma(a)fedoraproject.org> - 5.0.2-1
- Update to 5.0.2
12 years, 2 months
rpms/vlc/F-18 vlc.spec,1.160,1.161
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3716/F-18
Modified Files:
vlc.spec
Log Message:
Fix typo
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-18/vlc.spec,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- vlc.spec 9 Sep 2012 16:25:07 -0000 1.160
+++ vlc.spec 26 Sep 2012 22:13:56 -0000 1.161
@@ -18,7 +18,7 @@
%global _with_xcb 1
%endif
%if 0%{?fedora}
-%global _with_fluidsyth 1
+%global _with_fluidsynth 1
%global _with_bluray 1
%ifarch x86_64 i686
%global _with_crystalhd 1
@@ -31,7 +31,7 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.0.3
-Release: 2%{?dist}
+Release: 3%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -127,7 +127,7 @@
%{?_with_schroedinger:BuildRequires: schroedinger-devel >= 1.0.10}
BuildRequires: sqlite-devel
BuildRequires: SDL_image-devel
-%{?_with_sidplay:BuildRequires: sidplay-libs-devel}
+%{?_with_sidplay:BuildRequires: pkgconfig(libsidplay2)}
BuildRequires: speex-devel >= 1.1.5
BuildRequires: taglib-devel
%{?_with_twolame:BuildRequires: twolame-devel}
@@ -147,6 +147,7 @@
%{?_with_xcb:
BuildRequires: libxcb-devel
BuildRequires: xcb-util-devel
+BuildRequires: pkgconfig(xcb-keysyms)
}
BuildRequires: xorg-x11-proto-devel
@@ -510,6 +511,9 @@
%changelog
+* Wed Sep 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.3-3
+- Fix --with fluidsynth typo
+
* Wed Sep 05 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.3-2
- Rebuilt for x264 ABI 125
12 years, 2 months
rpms/vlc/devel vlc.spec,1.160,1.161
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3716/devel
Modified Files:
vlc.spec
Log Message:
Fix typo
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/vlc.spec,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- vlc.spec 5 Sep 2012 22:18:54 -0000 1.160
+++ vlc.spec 26 Sep 2012 22:13:56 -0000 1.161
@@ -18,7 +18,7 @@
%global _with_xcb 1
%endif
%if 0%{?fedora}
-%global _with_fluidsyth 1
+%global _with_fluidsynth 1
%global _with_bluray 1
%ifarch x86_64 i686
%global _with_crystalhd 1
@@ -31,7 +31,7 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.0.3
-Release: 2%{?dist}
+Release: 3%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -127,7 +127,7 @@
%{?_with_schroedinger:BuildRequires: schroedinger-devel >= 1.0.10}
BuildRequires: sqlite-devel
BuildRequires: SDL_image-devel
-%{?_with_sidplay:BuildRequires: sidplay-libs-devel}
+%{?_with_sidplay:BuildRequires: pkgconfig(libsidplay2)}
BuildRequires: speex-devel >= 1.1.5
BuildRequires: taglib-devel
%{?_with_twolame:BuildRequires: twolame-devel}
@@ -147,6 +147,7 @@
%{?_with_xcb:
BuildRequires: libxcb-devel
BuildRequires: xcb-util-devel
+BuildRequires: pkgconfig(xcb-keysyms)
}
BuildRequires: xorg-x11-proto-devel
@@ -510,6 +511,9 @@
%changelog
+* Wed Sep 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.3-3
+- Fix --with fluidsynth typo
+
* Wed Sep 05 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.3-2
- Rebuilt for x264 ABI 125
12 years, 2 months
rpms/vlc/F-17 vlc.spec,1.153,1.154
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3716/F-17
Modified Files:
vlc.spec
Log Message:
Fix typo
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-17/vlc.spec,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- vlc.spec 21 Jul 2012 10:51:46 -0000 1.153
+++ vlc.spec 26 Sep 2012 22:13:56 -0000 1.154
@@ -18,7 +18,7 @@
%global _with_xcb 1
%endif
%if 0%{?fedora}
-%global _with_fluidsyth 1
+%global _with_fluidsynth 1
%global _with_bluray 1
%ifarch x86_64 i686
%global _with_crystalhd 1
@@ -31,7 +31,7 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.0.3
-Release: 1%{?dist}
+Release: 3%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -127,7 +127,7 @@
%{?_with_schroedinger:BuildRequires: schroedinger-devel >= 1.0.10}
BuildRequires: sqlite-devel
BuildRequires: SDL_image-devel
-%{?_with_sidplay:BuildRequires: sidplay-libs-devel}
+%{?_with_sidplay:BuildRequires: pkgconfig(libsidplay2)}
BuildRequires: speex-devel >= 1.1.5
BuildRequires: taglib-devel
%{?_with_twolame:BuildRequires: twolame-devel}
@@ -147,6 +147,7 @@
%{?_with_xcb:
BuildRequires: libxcb-devel
BuildRequires: xcb-util-devel
+BuildRequires: pkgconfig(xcb-keysyms)
}
BuildRequires: xorg-x11-proto-devel
@@ -510,6 +511,12 @@
%changelog
+* Wed Sep 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.3-3
+- Fix --with fluidsynth typo
+
+* Wed Sep 05 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.3-2
+- Rebuilt for x264 ABI 125
+
* Fri Jul 20 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.3-1
- Update to 2.0.3
12 years, 2 months
rpms/freecad/devel freecad.spec,1.1,1.2
by Richard Shaw
Author: hobbes1069
Update of /cvs/nonfree/rpms/freecad/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16567
Modified Files:
freecad.spec
Log Message:
* Wed Sep 26 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.12-8
- Rebuild for boost 1.50.
Index: freecad.spec
===================================================================
RCS file: /cvs/nonfree/rpms/freecad/devel/freecad.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- freecad.spec 7 Jul 2012 03:15:42 -0000 1.1
+++ freecad.spec 26 Sep 2012 15:23:39 -0000 1.2
@@ -23,7 +23,7 @@
Name: freecad
Version: 0.12
-Release: 7%{?dist}
+Release: 8%{?dist}
Summary: A general purpose 3D CAD modeler
Group: Applications/Engineering
@@ -170,7 +170,7 @@
-DDOCDIR=%{_docdir}/%{name} \
-DCOIN3D_INCLUDE_DIR=%{_includedir}/Coin2 \
-DCOIN3D_DOC_PATH=%{_datadir}/Coin2/Coin \
- %if %{occ}
+%if %{occ}
-DUSE_OCC=TRUE \
%endif
%if ! %{bundled_smesh}
@@ -282,10 +282,13 @@
%changelog
+* Wed Sep 26 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.12-8
+- Rebuild for boost 1.50.
+
* Thu Jul 05 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.12-7
- Remove BuildRequires: tbb-devel and gts-devel
- Add missing license files to %%doc.
-- Add missing build requirement for hicolor-icon-theme.
+- Add missing requirement for hicolor-icon-theme.
- Fix excessive linking issue.
- Other minor spec updates.
12 years, 2 months
rpms/smesh/F-18 smesh.spec,1.2,1.3
by Richard Shaw
Author: hobbes1069
Update of /cvs/nonfree/rpms/smesh/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12495
Modified Files:
smesh.spec
Log Message:
* Wed Sep 26 2012 Richard Shaw <hobbes1069(a)gmail.com> - 5.1.2.2-4.svn54
- Rebuild due to package not being signed in F-18 repo.
Index: smesh.spec
===================================================================
RCS file: /cvs/nonfree/rpms/smesh/F-18/smesh.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- smesh.spec 7 Mar 2012 23:16:30 -0000 1.2
+++ smesh.spec 26 Sep 2012 13:41:49 -0000 1.3
@@ -1,6 +1,6 @@
Name: smesh
Version: 5.1.2.2
-Release: 3.svn54%{?dist}
+Release: 4.svn54%{?dist}
Summary: OpenCascade based MESH framework
# This library is LGPLv2+ but links against the non-free library OCE.
@@ -92,6 +92,9 @@
%changelog
+* Wed Sep 26 2012 Richard Shaw <hobbes1069(a)gmail.com> - 5.1.2.2-4.svn54
+- Rebuild due to package not being signed in F-18 repo.
+
* Thu Mar 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.1.2.2-3.svn54
- Rebuilt for c++ ABI breakage
12 years, 2 months
rpms/smesh/devel smesh.spec,1.3,1.4
by Richard Shaw
Author: hobbes1069
Update of /cvs/nonfree/rpms/smesh/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12446
Modified Files:
smesh.spec
Log Message:
Rebuild is due to F-18 package not being signed, not due to boost 1.50.
Index: smesh.spec
===================================================================
RCS file: /cvs/nonfree/rpms/smesh/devel/smesh.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- smesh.spec 26 Sep 2012 13:36:16 -0000 1.3
+++ smesh.spec 26 Sep 2012 13:41:28 -0000 1.4
@@ -93,7 +93,7 @@
%changelog
* Wed Sep 26 2012 Richard Shaw <hobbes1069(a)gmail.com> - 5.1.2.2-4.svn54
-- Rebuild for boost-1.50.
+- Rebuild due to package not being signed in F-18 repo.
* Thu Mar 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.1.2.2-3.svn54
- Rebuilt for c++ ABI breakage
12 years, 2 months
rpms/smesh/devel smesh.spec,1.2,1.3
by Richard Shaw
Author: hobbes1069
Update of /cvs/nonfree/rpms/smesh/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12138
Modified Files:
smesh.spec
Log Message:
* Wed Sep 26 2012 Richard Shaw <hobbes1069(a)gmail.com> - 5.1.2.2-4.svn54
- Rebuild for boost-1.50.
Index: smesh.spec
===================================================================
RCS file: /cvs/nonfree/rpms/smesh/devel/smesh.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- smesh.spec 7 Mar 2012 23:16:30 -0000 1.2
+++ smesh.spec 26 Sep 2012 13:36:16 -0000 1.3
@@ -1,6 +1,6 @@
Name: smesh
Version: 5.1.2.2
-Release: 3.svn54%{?dist}
+Release: 4.svn54%{?dist}
Summary: OpenCascade based MESH framework
# This library is LGPLv2+ but links against the non-free library OCE.
@@ -92,6 +92,9 @@
%changelog
+* Wed Sep 26 2012 Richard Shaw <hobbes1069(a)gmail.com> - 5.1.2.2-4.svn54
+- Rebuild for boost-1.50.
+
* Thu Mar 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.1.2.2-3.svn54
- Rebuilt for c++ ABI breakage
12 years, 2 months