rpms/minidlna/devel minidlna-1.0.25-ffmpeg10.patch, NONE, 1.1 minidlna.service, 1.1, 1.2 minidlna.spec, 1.6, 1.7
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/minidlna/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21480
Modified Files:
minidlna.service minidlna.spec
Added Files:
minidlna-1.0.25-ffmpeg10.patch
Log Message:
* Sat Nov 03 2012 Andrea Musuruane <musuruan(a)gmail.com> 1.0.25-2
- Fixed FTBFS caused by ffmpeg 1.0
- Updated minidlna.service I forgot to commit (BZ #2294)
minidlna-1.0.25-ffmpeg10.patch:
Makefile | 12 ++++++++----
metadata.c | 6 +++---
tagutils/tagutils-plist.c | 2 +-
3 files changed, 12 insertions(+), 8 deletions(-)
--- NEW FILE minidlna-1.0.25-ffmpeg10.patch ---
The new ffmpeg-1.0 comes with the headers libavutil/time.h and
libavutil/log.h. These overrule /usr/include/time.h and
minidlna-1.0.25/log.h due to the priority of '-I' set in the
Makefile
CFLAGS = -Wall -g -O3 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 \
-I/usr/include/ffmpeg \
-I/usr/include/libavutil -I/usr/include/libavcodec -I/usr/include/libavformat \
-I/usr/include/ffmpeg/libavutil -I/usr/include/ffmpeg/libavcodec -I/usr/include/ffmpeg/libavformat
Here below is a patch removing the need for these search
directories. Backward compatibility could be guaranteed via
'-I/usr/include/ffmpeg'.
diff -u -p -r minidlna-1.0.25/Makefile minidlna-1.0.25-new/Makefile
--- minidlna-1.0.25/Makefile 2012-01-17 23:49:01.000000000 +0100
+++ minidlna-1.0.25-new/Makefile 2012-10-25 01:53:04.000000000 +0200
@@ -12,10 +12,14 @@
#
#CFLAGS = -Wall -O -D_GNU_SOURCE -g -DDEBUG
#CFLAGS = -Wall -g -Os -D_GNU_SOURCE
-CFLAGS = -Wall -g -O3 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 \
- -I/usr/include/ffmpeg \
- -I/usr/include/libavutil -I/usr/include/libavcodec -I/usr/include/libavformat \
- -I/usr/include/ffmpeg/libavutil -I/usr/include/ffmpeg/libavcodec -I/usr/include/ffmpeg/libavformat
+CFLAGS = -Wall -g -O3 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/ffmpeg
+# -I/usr/include/libavcodec
+# -I/usr/include/libavformat
+# overrules /usr/include/time.h
+# -I/usr/include/libavutil
+# nonexistant
+# -I/usr/include/ffmpeg \
+# -I/usr/include/ffmpeg/libavutil -I/usr/include/ffmpeg/libavcodec -I/usr/include/ffmpeg/libavformat
#STATIC_LINKING: CFLAGS += -DSTATIC
#STATIC_LINKING: LDFLAGS = -static
CC = gcc
diff -u -p -r minidlna-1.0.25/metadata.c minidlna-1.0.25-new/metadata.c
--- minidlna-1.0.25/metadata.c 2012-06-29 23:11:29.000000000 +0200
+++ minidlna-1.0.25-new/metadata.c 2012-10-25 01:53:37.000000000 +0200
@@ -30,9 +30,9 @@
#include "image_utils.h"
#include <jpeglib.h>
#include <setjmp.h>
-#include <avutil.h>
-#include <avcodec.h>
-#include <avformat.h>
+#include <libavutil/avutil.h>
+#include <libavcodec/avcodec.h>
+#include <libavformat/avformat.h>
#include "tagutils/tagutils.h"
#include "upnpglobalvars.h"
diff -u -p -r minidlna-1.0.25/tagutils/tagutils-plist.c minidlna-1.0.25-new/tagutils/tagutils-plist.c
--- minidlna-1.0.25/tagutils/tagutils-plist.c 2012-01-17 23:54:47.000000000 +0100
+++ minidlna-1.0.25-new/tagutils/tagutils-plist.c 2012-10-25 01:49:33.000000000 +0200
@@ -27,7 +27,7 @@
#include "misc.h"
#include "tagutils.h"
#include "textutils.h"
-#include "log.h"
+#include "../log.h"
#define MAX_BUF 4096
Index: minidlna.service
===================================================================
RCS file: /cvs/free/rpms/minidlna/devel/minidlna.service,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- minidlna.service 22 Jan 2012 13:21:32 -0000 1.1
+++ minidlna.service 3 Nov 2012 18:33:06 -0000 1.2
@@ -3,9 +3,11 @@
After=syslog.target local-fs.target network.target
[Service]
+User=minidlna
+Group=minidlna
Type=forking
-PIDFile=/var/run/minidlna.pid
-ExecStart=/usr/sbin/minidlna -f /etc/minidlna.conf
+PIDFile=/var/run/minidlna/minidlna.pid
+ExecStart=/usr/sbin/minidlna -f /etc/minidlna.conf -P /var/run/minidlna/minidlna.pid
[Install]
WantedBy=multi-user.target
Index: minidlna.spec
===================================================================
RCS file: /cvs/free/rpms/minidlna/devel/minidlna.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- minidlna.spec 14 Jul 2012 11:52:08 -0000 1.6
+++ minidlna.spec 3 Nov 2012 18:33:06 -0000 1.7
@@ -1,6 +1,6 @@
Name: minidlna
Version: 1.0.25
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Lightweight DLNA/UPnP-AV server targeted at embedded systems
Group: System Environment/Daemons
@@ -13,6 +13,9 @@
Source2: %{name}-1.0.24-debian-manpages.tar.gz
# tmpfiles.d configuration for the /var/run directory
Source3: %{name}-tmpfiles.conf
+# Fix FTBFS for ffmpeg-1.0
+# http://inmmc.org/ftp/soft/minidlna.diff
+Patch0: %{name}-1.0.25-ffmpeg10.patch
BuildRequires: libuuid-devel
BuildRequires: ffmpeg-devel
@@ -42,6 +45,7 @@
%prep
%setup -q
%setup -D -T -q -a 2
+%patch0 -p1
# Honor RPM_OPT_FLAGS
sed -i 's/CFLAGS = -Wall -g -O3/CFLAGS +=/' Makefile
@@ -152,6 +156,10 @@
%changelog
+* Sat Nov 03 2012 Andrea Musuruane <musuruan(a)gmail.com> 1.0.25-2
+- Fixed FTBFS caused by ffmpeg 1.0
+- Updated minidlna.service I forgot to commit (BZ #2294)
+
* Sat Jul 14 2012 Andrea Musuruane <musuruan(a)gmail.com> 1.0.25-1
- Updated to upstream 1.0.25
12 years
rpms/ffmpeg/devel ffmpeg.spec,1.70,1.71
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/ffmpeg/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv1586
Modified Files:
ffmpeg.spec
Log Message:
* Sat Nov 03 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0-4
- Fixed -O3 -g in host_cflags
- Made the installation verbose too
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/ffmpeg.spec,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ffmpeg.spec 3 Nov 2012 10:36:47 -0000 1.70
+++ ffmpeg.spec 3 Nov 2012 13:22:26 -0000 1.71
@@ -14,7 +14,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
Version: 1.0
-Release: 3%{?date}%{?date:git}%{?rel}%{?dist}
+Release: 4%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -157,6 +157,8 @@
%else
%setup -q -n ffmpeg-%{version}
%endif
+# fix -O3 -g in host_cflags
+sed -i "s/-O3 -g/$RPM_OPT_FLAGS/" configure
%build
mkdir generic
@@ -220,13 +222,13 @@
%install
rm -rf $RPM_BUILD_ROOT
pushd generic
-make install DESTDIR=$RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT V=1
popd
%if 0%{!?ffmpegsuffix:1}
install -pm755 generic/tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
pushd simd
%ifarch sparc sparc64
-make install DESTDIR=$RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT V=1
%endif
popd
%endif
@@ -272,6 +274,10 @@
%changelog
+* Sat Nov 03 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0-4
+- Fixed -O3 -g in host_cflags
+- Made the installation verbose too
+
* Sat Nov 03 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0-3
- Use Fedora %%{optflags}
- Made the build process verbose
12 years
rpms/ffmpeg/devel ffmpeg.spec,1.69,1.70
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/ffmpeg/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25977
Modified Files:
ffmpeg.spec
Log Message:
* Sat Nov 03 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0-3
- Use Fedora %{optflags}
- Made the build process verbose
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/ffmpeg.spec,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ffmpeg.spec 1 Nov 2012 21:44:00 -0000 1.69
+++ ffmpeg.spec 3 Nov 2012 10:36:47 -0000 1.70
@@ -14,7 +14,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
Version: 1.0
-Release: 2%{?date}%{?date:git}%{?rel}%{?dist}
+Release: 3%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -109,7 +109,7 @@
--libdir=%{_libdir} \\\
--mandir=%{_mandir} \\\
--arch=%{_target_cpu} \\\
- --extra-cflags="$RPM_OPT_FLAGS" \\\
+ --optflags="$RPM_OPT_FLAGS" \\\
%{?_with_amr:--enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3} \\\
--enable-bzlib \\\
%{!?_with_crystalhd:--disable-crystalhd} \\\
@@ -195,9 +195,9 @@
%endif
%endif
-make %{?_smp_mflags}
-make documentation
-make alltools
+make %{?_smp_mflags} V=1
+make documentation V=1
+make alltools V=1
popd
%if 0%{!?ffmpegsuffix:1}
@@ -212,7 +212,7 @@
--disable-ffserver \
--disable-ffplay \
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
%endif
popd
%endif
@@ -272,6 +272,10 @@
%changelog
+* Sat Nov 03 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0-3
+- Use Fedora %%{optflags}
+- Made the build process verbose
+
* Thu Nov 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0-2
- Add opus
- Enable opencv frei0r by default
12 years
rpms/wl-kmod/F-16 wl-kmod.spec,1.109,1.110
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv5519
Modified Files:
wl-kmod.spec
Log Message:
Bump
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-16/wl-kmod.spec,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- wl-kmod.spec 1 Nov 2012 17:43:47 -0000 1.109
+++ wl-kmod.spec 2 Nov 2012 10:58:49 -0000 1.110
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.100.82.112
-Release: 4%{?dist}.1
+Release: 4%{?dist}.2
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,7 +93,7 @@
rm -rf $RPM_BUILD_ROOT
%changelog
-* Thu Nov 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-4.1
+* Thu Nov 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-4.2
- Rebuilt for updated kernel
* Sat Oct 20 2012 Nicolas Vieville <nicolas.vieville(a)univ-valenciennes.fr> - 5.100.82.112-4
12 years
rpms/xmms2-freeworld/devel xmms2-ffmpeg.patch, 1.2, 1.3 xmms2-freeworld.spec, 1.10, 1.11
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/xmms2-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv5578
Modified Files:
xmms2-freeworld.spec
Added Files:
xmms2-ffmpeg.patch
Log Message:
* Thu Nov 01 2012 John Doe <anonymous(a)american.us> 0.8-5
- Patch for new ffmpeg
xmms2-ffmpeg.patch:
avcodec.c | 4 ++--
avcodec_compat.h | 18 ++++++++++++++++++
2 files changed, 20 insertions(+), 2 deletions(-)
Index: xmms2-ffmpeg.patch
===================================================================
RCS file: xmms2-ffmpeg.patch
diff -N xmms2-ffmpeg.patch
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ xmms2-ffmpeg.patch 2 Nov 2012 01:50:27 -0000 1.3
@@ -0,0 +1,46 @@
+diff -rupN xmms2-0.8DrO_o.old/src/plugins/avcodec/avcodec.c xmms2-0.8DrO_o/src/plugins/avcodec/avcodec.c
+--- xmms2-0.8DrO_o.old/src/plugins/avcodec/avcodec.c 2011-10-20 15:26:08.000000000 -0400
++++ xmms2-0.8DrO_o/src/plugins/avcodec/avcodec.c 2012-11-01 21:36:57.426070895 -0400
+@@ -200,7 +200,7 @@ xmms_avcodec_init (xmms_xform_t *xform)
+ }
+ }
+
+- data->codecctx = avcodec_alloc_context ();
++ data->codecctx = avcodec_alloc_context3 (codec);
+ data->codecctx->sample_rate = data->samplerate;
+ data->codecctx->channels = data->channels;
+ data->codecctx->bit_rate = data->bitrate;
+@@ -211,7 +211,7 @@ xmms_avcodec_init (xmms_xform_t *xform)
+ data->codecctx->codec_id = codec->id;
+ data->codecctx->codec_type = codec->type;
+
+- if (avcodec_open (data->codecctx, codec) < 0) {
++ if (avcodec_open2 (data->codecctx, codec, NULL) < 0) {
+ XMMS_DBG ("Opening decoder '%s' failed", codec->name);
+ goto err;
+ } else {
+diff -rupN xmms2-0.8DrO_o.old/src/plugins/avcodec/avcodec_compat.h xmms2-0.8DrO_o/src/plugins/avcodec/avcodec_compat.h
+--- xmms2-0.8DrO_o.old/src/plugins/avcodec/avcodec_compat.h 2011-10-20 15:26:08.000000000 -0400
++++ xmms2-0.8DrO_o/src/plugins/avcodec/avcodec_compat.h 2012-11-01 21:35:50.276405569 -0400
+@@ -65,3 +65,21 @@ typedef struct AVPacket {
+ # define AVMEDIA_TYPE_AUDIO CODEC_TYPE_AUDIO
+ #endif
+
++/* Calling avcodec_init is not necessary after 53.04 (ffmpeg 0.9) */
++#if LIBAVCODEC_VERSION_INT >= 0x350400
++# define avcodec_init()
++#endif
++
++/* Map avcodec_alloc_context3 into the deprecated version
++ * avcodec_alloc_context in versions earlier than 53.04 (ffmpeg 0.9) */
++#if LIBAVCODEC_VERSION_INT < 0x350400
++# define avcodec_alloc_context3(codec) \
++ avcodec_alloc_context()
++#endif
++
++/* Map avcodec_open2 into the deprecated version
++ * avcodec_open in versions earlier than 53.04 (ffmpeg 0.9) */
++#if LIBAVCODEC_VERSION_INT < 0x350400
++# define avcodec_open2(avctx, codec, options) \
++ avcodec_open(avctx, codec)
++#endif
Index: xmms2-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xmms2-freeworld/devel/xmms2-freeworld.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xmms2-freeworld.spec 1 Nov 2012 19:17:49 -0000 1.10
+++ xmms2-freeworld.spec 2 Nov 2012 01:50:27 -0000 1.11
@@ -3,7 +3,7 @@
Name: xmms2-freeworld
Summary: Plugins for XMMS2 that cannot be included in Fedora
Version: 0.8
-Release: 4%{?dist}
+Release: 5%{?dist}
License: LGPLv2+ and GPL+ and BSD
Group: Applications/Multimedia
# Fedora's xmms2 has to use a sanitized tarball, we don't.
@@ -12,6 +12,8 @@
Patch0: xmms2-0.8DrO_o-use-libdir.patch
# Don't add extra CFLAGS, we're smart enough, thanks.
Patch1: xmms2-0.8DrO_o-no-O0.patch
+# Fix compilation against newer ffmpeg
+Patch2: xmms2-ffmpeg.patch
URL: http://wiki.xmms2.xmms.se/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +95,7 @@
%patch0 -p1 -b .plugins-use-libdir
%patch1 -p1 -b .noO0
+%patch2 -p1 -b .oldffmpeg
%build
@@ -205,6 +208,9 @@
%{_libdir}/xmms2/libxmms_mp4.so
%changelog
+* Thu Nov 01 2012 John Doe <anonymous(a)american.us> 0.8-5
+- Patch for new ffmpeg
+
* Thu Nov 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.8-4
- Rebuilt for ffmpeg
12 years
rpms/ffmpeg/devel ffmpeg.spec,1.68,1.69
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25680/devel
Modified Files:
ffmpeg.spec
Log Message:
bump for build
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/ffmpeg.spec,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ffmpeg.spec 1 Nov 2012 21:42:58 -0000 1.68
+++ ffmpeg.spec 1 Nov 2012 21:44:00 -0000 1.69
@@ -14,7 +14,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
Version: 1.0
-Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
+Release: 2%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -272,6 +272,11 @@
%changelog
+* Thu Nov 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0-2
+- Add opus
+- Enable opencv frei0r by default
+- Disable librmtp - use builtin implementation rfbz#2399
+
* Thu Oct 04 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0-1
- Updated to 1.0
- Dropped obsolete Group, Buildroot, %%clean and %%defattr
12 years
rpms/ffmpeg/devel ffmpeg.spec,1.67,1.68
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25516
Modified Files:
ffmpeg.spec
Log Message:
- Add opus
- Enable opencv frei0r by default
- Disable librmtp - use builtin implementation rfbz#2399
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/ffmpeg.spec,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ffmpeg.spec 4 Oct 2012 20:39:33 -0000 1.67
+++ ffmpeg.spec 1 Nov 2012 21:42:58 -0000 1.68
@@ -5,8 +5,10 @@
#global rel rc1
%if 0%{?rhel}
-%global _without_vpx 1
-%global _without_celt 1
+%global _without_celt 1
+%global _without_frei0r 1
+%global _without_opencv 1
+%global _without_vpx 1
%endif
Summary: Digital VCR and streaming server
@@ -31,7 +33,7 @@
%{?_with_dirac:BuildRequires: dirac-devel}
%{?_with_faac:BuildRequires: faac-devel}
BuildRequires: freetype-devel
-%{?_with_frei0r:BuildRequires: frei0r-devel}
+%{!?_without_frei0r:BuildRequires: frei0r-devel}
BuildRequires: gnutls-devel
BuildRequires: gsm-devel
BuildRequires: lame-devel >= 3.98.3
@@ -42,7 +44,7 @@
%{?_with_crystalhd:BuildRequires: libcrystalhd-devel}
BuildRequires: libdc1394-devel
Buildrequires: libmodplug-devel
-BuildRequires: librtmp-devel
+%{?_with_rtmp:BuildRequires: librtmp-devel}
BuildRequires: libtheora-devel
BuildRequires: libv4l-devel
%{?!_without_vaapi:BuildRequires: libva-devel >= 0.31.0}
@@ -54,8 +56,9 @@
%endif
%{?_with_amr:BuildRequires: opencore-amr-devel vo-amrwbenc-devel}
%{!?_without_openal:BuildRequires: openal-soft-devel}
-%{?_with_opencv:BuildRequires: opencv-devel}
+%{!?_without_opencv:BuildRequires: opencv-devel}
BuildRequires: openjpeg-devel
+BuildRequires: opus-devel
%{!?_without_pulse:BuildRequires: pulseaudio-libs-devel}
BuildRequires: schroedinger-devel
BuildRequires: SDL-devel
@@ -110,7 +113,7 @@
%{?_with_amr:--enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3} \\\
--enable-bzlib \\\
%{!?_with_crystalhd:--disable-crystalhd} \\\
- %{?_with_frei0r:--enable-frei0r} \\\
+ %{!?_without_frei0r:--enable-frei0r} \\\
--enable-gnutls \\\
--enable-libass \\\
%{!?_without_cdio:--enable-libcdio} \\\
@@ -123,10 +126,11 @@
--enable-libgsm \\\
--enable-libmp3lame \\\
%{!?_without_openal:--enable-openal} \\\
- %{?_with_opencv:--enable-libopencv} \\\
+ %{!?_without_opencv:--enable-libopencv} \\\
--enable-libopenjpeg \\\
+ --enable-libopus \\\
%{!?_without_pulse:--enable-libpulse} \\\
- --enable-librtmp \\\
+ %{?_with_rtmp:--enable-librtmp} \\\
--enable-libschroedinger \\\
--enable-libspeex \\\
--enable-libtheora \\\
12 years
rpms/VirtualBox-kmod/F-16 VirtualBox-kmod.spec,1.24,1.25
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/VirtualBox-kmod/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23674
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Thu Nov 01 2012 Sérgio Basto <sergio(a)serjux.com> - 4.2.4-1.1
- Rebuilt for updated kernel.
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/F-16/VirtualBox-kmod.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- VirtualBox-kmod.spec 1 Nov 2012 21:02:10 -0000 1.24
+++ VirtualBox-kmod.spec 1 Nov 2012 21:03:13 -0000 1.25
@@ -99,7 +99,7 @@
%changelog
* Thu Nov 01 2012 Sérgio Basto <sergio(a)serjux.com> - 4.2.4-1.1
-- Rebuilt for updated kernel
+- Rebuilt for updated kernel.
* Thu Nov 01 2012 Sérgio Basto <sergio(a)serjux.com> - 4.2.4-1
- New upstream release.
12 years
rpms/VirtualBox-kmod/F-16 VirtualBox-kmod.spec,1.23,1.24
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/VirtualBox-kmod/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23609
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Thu Nov 01 2012 Sérgio Basto <sergio(a)serjux.com> - 4.2.4-1
- New upstream release.
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/F-16/VirtualBox-kmod.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- VirtualBox-kmod.spec 1 Nov 2012 20:54:14 -0000 1.23
+++ VirtualBox-kmod.spec 1 Nov 2012 21:02:10 -0000 1.24
@@ -3,7 +3,7 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%define buildforkernels current
+%define buildforkernels newest
# In prerelease builds (such as betas), this package has the same
# major version number, while the kernel module abi is not guarranteed
@@ -20,7 +20,7 @@
Name: VirtualBox-kmod
Version: 4.2.4
-Release: 1%{?prerel:.%{prerel}}%{?dist}
+Release: 1%{?prerel:.%{prerel}}%{?dist}.1
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -98,6 +98,9 @@
%changelog
+* Thu Nov 01 2012 Sérgio Basto <sergio(a)serjux.com> - 4.2.4-1.1
+- Rebuilt for updated kernel
+
* Thu Nov 01 2012 Sérgio Basto <sergio(a)serjux.com> - 4.2.4-1
- New upstream release.
12 years
rpms/VirtualBox-kmod/F-16 VirtualBox-kmod.spec,1.22,1.23
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/VirtualBox-kmod/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23313
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Thu Nov 01 2012 Sérgio Basto <sergio(a)serjux.com> - 4.2.4-1
- New upstream release.
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/F-16/VirtualBox-kmod.spec,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- VirtualBox-kmod.spec 1 Nov 2012 17:42:41 -0000 1.22
+++ VirtualBox-kmod.spec 1 Nov 2012 20:54:14 -0000 1.23
@@ -3,7 +3,7 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%define buildforkernels newest
+%define buildforkernels current
# In prerelease builds (such as betas), this package has the same
# major version number, while the kernel module abi is not guarranteed
@@ -12,15 +12,15 @@
#global prerel RC4
%global prereltag %{?prerel:_%(awk 'BEGIN {print toupper("%{prerel}")}')}
-%global vboxrel 4
+%global vboxrel 1
%global vboxreltag %{?vboxrel:-%{vboxrel}}
# Allow only root to access vboxdrv regardless of the file mode
# use only for debugging!
%bcond_without hardening
Name: VirtualBox-kmod
-Version: 4.2.0
-Release: 1%{?prerel:.%{prerel}}%{?dist}.5
+Version: 4.2.4
+Release: 1%{?prerel:.%{prerel}}%{?dist}
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -98,6 +98,9 @@
%changelog
+* Thu Nov 01 2012 Sérgio Basto <sergio(a)serjux.com> - 4.2.4-1
+- New upstream release.
+
* Thu Nov 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.2.0-1.5
- Rebuilt for updated kernel
12 years