rpms/php-pecl-pdflib/devel pdflib-php54.patch, NONE, 1.1 php-pecl-pdflib.spec, 1.10, 1.11
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/php-pecl-pdflib/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23420
Modified Files:
php-pecl-pdflib.spec
Added Files:
pdflib-php54.patch
Log Message:
rebuild for php 5.4
pdflib-php54.patch:
pdf.c | 4 ++++
pdf7.c | 4 ++++
2 files changed, 8 insertions(+)
--- NEW FILE pdflib-php54.patch ---
diff -up pdflib-2.1.8/pdf7.c.php54 pdflib-2.1.8/pdf7.c
--- pdflib-2.1.8/pdf7.c.php54 2011-11-27 08:55:33.068642986 +0100
+++ pdflib-2.1.8/pdf7.c 2011-11-27 08:56:40.703860070 +0100
@@ -332,10 +332,14 @@ pdflib_object_new_ex(zend_class_entry *c
ALLOC_HASHTABLE(intern->std.properties);
zend_hash_init(intern->std.properties, 0, NULL, ZVAL_PTR_DTOR, 0);
+#if PHP_VERSION_ID < 50399
zend_hash_copy(intern->std.properties,
&class_type->default_properties,
(copy_ctor_func_t) zval_add_ref,
(void *) &tmp, sizeof(zval *));
+#else
+ object_properties_init( (zend_object*)intern, class_type );
+#endif
retval.handle = zend_objects_store_put(intern, NULL,
(zend_objects_free_object_storage_t)pdflib_object_dtor,
diff -up pdflib-2.1.8/pdf.c.php54 pdflib-2.1.8/pdf.c
--- pdflib-2.1.8/pdf.c.php54 2011-11-27 08:53:51.378310945 +0100
+++ pdflib-2.1.8/pdf.c 2011-11-27 08:56:31.184829597 +0100
@@ -766,10 +766,14 @@ pdflib_object_new_ex(zend_class_entry *c
ALLOC_HASHTABLE(intern->std.properties);
zend_hash_init(intern->std.properties, 0, NULL, ZVAL_PTR_DTOR, 0);
+#if PHP_VERSION_ID < 50399
zend_hash_copy(intern->std.properties,
&class_type->default_properties,
(copy_ctor_func_t) zval_add_ref,
(void *) &tmp, sizeof(zval *));
+#else
+ object_properties_init( (zend_object*)intern, class_type );
+#endif
retval.handle = zend_objects_store_put(intern, NULL,
(zend_objects_free_object_storage_t)pdflib_object_dtor,
Index: php-pecl-pdflib.spec
===================================================================
RCS file: /cvs/nonfree/rpms/php-pecl-pdflib/devel/php-pecl-pdflib.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- php-pecl-pdflib.spec 8 Feb 2012 23:47:12 -0000 1.10
+++ php-pecl-pdflib.spec 2 May 2012 08:36:49 -0000 1.11
@@ -9,7 +9,7 @@
Summary(fr): Extension pour générer des fichiers PDF
Name: php-pecl-pdflib
Version: 2.1.8
-Release: 3%{?dist}.1
+Release: 4%{?dist}
License: PHP
Group: Development/Languages
URL: http://pecl.php.net/package/pdflib
@@ -18,24 +18,28 @@
Source2: xml2changelog
+# https://bugs.php.net/60397 php 5.4 build
+Patch0: pdflib-php54.patch
+
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Provides: php-pecl(pdflib) = %{version}-%{release}, php-pdflib = %{version}-%{release}
BuildRequires: php-devel, pdflib-lite-devel, php-pear
+
Requires(post): %{__pecl}
Requires(postun): %{__pecl}
%if 0%{?php_zend_api:1}
-Requires: php(zend-abi) = %{php_zend_api}
-Requires: php(api) = %{php_core_api}
+Requires: php(zend-abi) = %{php_zend_api}
+Requires: php(api) = %{php_core_api}
%else
-Requires: php-api = %{php_apiver}
+Requires: php-api = %{php_apiver}
%endif
+Provides: php-pecl(pdflib) = %{version}-%{release}
+Provides: php-pdflib = %{version}-%{release}
-%if 0%{?fedora} >= 11 || 0%{?rhel} >= 6
-%{?filter_setup:
-%filter_provides_in %{php_extdir}/.*\.so$
-%filter_setup
-}
-%endif
+# RPM 4.8
+%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$}
+%{?filter_setup}
+# RPM 4.9
+%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}%{_libdir}/.*\\.so$
%description
@@ -58,31 +62,38 @@
%setup -c -q
%{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG
-cd pdflib-%{version}
+%patch0 -p0 -b .php54
+
+# Check version
+extver=$(sed -n '/#define PHP_PDFLIB_VERSION/{s/.* "//;s/".*$//;p}' %{pecl_name}-%{version}/php_pdflib.h)
+if test "x${extver}" != "x%{version}"; then
+ : Error: Upstream version is ${extver}, expecting %{version}.
+ exit 1
+fi
%build
cd pdflib-%{version}
phpize
%configure
-%{__make} %{?_smp_mflags}
+make %{?_smp_mflags}
%install
cd pdflib-%{version}
-%{__rm} -rf %{buildroot}
-%{__make} install INSTALL_ROOT=%{buildroot}
+rm -rf %{buildroot}
+make install INSTALL_ROOT=%{buildroot}
# Drop in the bit of configuration
-%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d
-%{__cat} > %{buildroot}%{_sysconfdir}/php.d/%{extname}.ini << 'EOF'
+mkdir -p %{buildroot}%{_sysconfdir}/php.d
+cat > %{buildroot}%{_sysconfdir}/php.d/%{extname}.ini << 'EOF'
; Enable PDFlib extension module
extension=%{extname}.so
EOF
# Install XML package description
-%{__mkdir_p} %{buildroot}%{pecl_xmldir}
-%{__install} -m 644 ../package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
+mkdir -p %{buildroot}%{pecl_xmldir}
+install -m 644 ../package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
%check
@@ -108,7 +119,7 @@
%clean
-%{__rm} -rf %{buildroot}
+rm -rf %{buildroot}
%files
@@ -120,6 +131,10 @@
%changelog
+* Wed May 02 2012 Remi Collet <rpmfusion(a)FamilleCollet.com> 2.1.8-4
+- add patch for php 5.4
+- fix filter for private .so
+
* Thu Feb 09 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.1.8-3.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
12 years, 6 months
rpms/smpeg/F-16 smpeg.spec,1.5,1.6
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/smpeg/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23077
Modified Files:
smpeg.spec
Log Message:
Fix for static library
Index: smpeg.spec
===================================================================
RCS file: /cvs/free/rpms/smpeg/F-16/smpeg.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- smpeg.spec 29 Mar 2009 14:07:24 -0000 1.5
+++ smpeg.spec 2 May 2012 08:28:02 -0000 1.6
@@ -37,14 +37,14 @@
%package devel
-Summary: Header files and static libraries for %{name}
+Summary: Header files and libraries for %{name}
Group: Development/Libraries
Requires: %{name}-libs = %{version}-%{release}
Obsoletes: %{name} < 0.4.5
Requires: SDL-devel
%description devel
-This package contains header files and static libraries for %{name}.
+This package contains header files and libraries for %{name}.
%prep
12 years, 6 months
rpms/vcdimager/devel vcdimager.spec,1.12,1.13
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vcdimager/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21940/devel
Modified Files:
vcdimager.spec
Log Message:
Remove static statement
Index: vcdimager.spec
===================================================================
RCS file: /cvs/free/rpms/vcdimager/devel/vcdimager.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- vcdimager.spec 17 Apr 2012 09:45:50 -0000 1.12
+++ vcdimager.spec 2 May 2012 08:01:33 -0000 1.13
@@ -1,7 +1,7 @@
Summary: VideoCD (pre-)mastering and ripping tool
Name: vcdimager
Version: 0.7.24
-Release: 4%{?dist}
+Release: 5%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.gnu.org/software/vcdimager/
@@ -36,7 +36,7 @@
The %{name}-libs package contains shared libraries for %{name}.
%package devel
-Summary: Header files and static library for VCDImager
+Summary: Header files and library for VCDImager
Group: Development/Libraries
Requires: %{name}-libs = %{version}-%{release}
Requires: pkgconfig
@@ -47,7 +47,7 @@
files which can be burned with cdrdao or any other program capable of
burning BIN/CUE files.
-This package contains the header files and a static library to develop
+This package contains the header files and a library to develop
applications that will use VCDImager.
@@ -114,6 +114,9 @@
%changelog
+* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.7.24-5
+- Remove static statement in the devel sub-package - rfbz#2312
+
* Tue Apr 17 2012 Matthias Saou <matthias(a)saou.eu> 0.7.24-4
- Minor spec file cleanups.
12 years, 6 months
rpms/vcdimager/F-17 vcdimager.spec,1.11,1.12
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vcdimager/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21940/F-17
Modified Files:
vcdimager.spec
Log Message:
Remove static statement
Index: vcdimager.spec
===================================================================
RCS file: /cvs/free/rpms/vcdimager/F-17/vcdimager.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- vcdimager.spec 25 Jan 2012 15:01:39 -0000 1.11
+++ vcdimager.spec 2 May 2012 08:01:33 -0000 1.12
@@ -1,12 +1,13 @@
Summary: VideoCD (pre-)mastering and ripping tool
Name: vcdimager
Version: 0.7.24
-Release: 3%{?dist}
+Release: 5%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.gnu.org/software/vcdimager/
Source: ftp://ftp.gnu.org/pub/gnu/vcdimager/vcdimager-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+Requires: %{name}-libs = %{version}-%{release}
Requires(post): info
Requires(preun): info
BuildRequires: libcdio-devel >= 0.72
@@ -15,8 +16,6 @@
BuildRequires: pkgconfig >= 0.9
BuildRequires: popt-devel
-Requires: %{name}-libs = %{version}-%{release}
-
%description
VCDImager allows you to create VideoCD BIN/CUE CD images from MPEG
files. These can be burned with cdrdao or any other program capable of
@@ -37,10 +36,9 @@
The %{name}-libs package contains shared libraries for %{name}.
%package devel
-Summary: Header files and static library for VCDImager
+Summary: Header files and library for VCDImager
Group: Development/Libraries
Requires: %{name}-libs = %{version}-%{release}
-
Requires: pkgconfig
Requires: libcdio-devel
@@ -49,7 +47,7 @@
files which can be burned with cdrdao or any other program capable of
burning BIN/CUE files.
-This package contains the header files and a static library to develop
+This package contains the header files and a library to develop
applications that will use VCDImager.
@@ -59,20 +57,20 @@
%build
%configure --disable-static --disable-dependency-tracking
-%{__make} %{?_smp_mflags}
+make %{?_smp_mflags}
%install
-%{__rm} -rf %{buildroot}
-%{__make} DESTDIR=%{buildroot} install INSTALL="install -p"
+rm -rf %{buildroot}
+make DESTDIR=%{buildroot} install INSTALL="install -p"
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
# Sometimes this file gets created... but we don't want it!
-%{__rm} -f %{buildroot}%{_infodir}/dir
+rm -f %{buildroot}%{_infodir}/dir
%clean
-%{__rm} -rf %{buildroot}
+rm -rf %{buildroot}
%post libs -p /sbin/ldconfig
@@ -116,6 +114,12 @@
%changelog
+* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.7.24-5
+- Remove static statement in the devel sub-package - rfbz#2312
+
+* Tue Apr 17 2012 Matthias Saou <matthias(a)saou.eu> 0.7.24-4
+- Minor spec file cleanups.
+
* Wed Jan 25 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.7.24-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
12 years, 6 months
rpms/openafs/F-15 openafs.spec,1.24,1.25
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs/F-15
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25518
Modified Files:
openafs.spec
Log Message:
* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
- Provide openafs-static (RPM Fusion bug #2310).
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/F-15/openafs.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- openafs.spec 4 Apr 2012 19:48:31 -0000 1.24
+++ openafs.spec 2 May 2012 00:15:41 -0000 1.25
@@ -13,7 +13,7 @@
Summary: Enterprise Network File System
Name: openafs
Version: 1.6.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -63,6 +63,7 @@
Group: Development/Libraries
Requires: openafs = %{version}-%{release}
Requires(post): /sbin/ldconfig
+Provides: openafs-static = %{version}-%{release}
%description devel
The AFS distributed filesystem. AFS is a distributed filesystem
@@ -323,6 +324,9 @@
%{_datadir}/openafs/C/afszcm.cat
%changelog
+* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
+- Provide openafs-static (RPM Fusion bug #2310).
+
* Wed Apr 04 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-1
- Update to OpenAFS 1.6.1 final
- Require selinux-policy-targeted (RPM Fusion bug #2138).
12 years, 6 months
rpms/openafs/F-16 openafs.spec,1.18,1.19
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24520
Modified Files:
openafs.spec
Log Message:
* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
- Provide openafs-static (RPM Fusion bug #2310).
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/F-16/openafs.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- openafs.spec 4 Apr 2012 19:41:19 -0000 1.18
+++ openafs.spec 1 May 2012 23:41:13 -0000 1.19
@@ -13,7 +13,7 @@
Summary: Enterprise Network File System
Name: openafs
Version: 1.6.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -63,6 +63,7 @@
Group: Development/Libraries
Requires: openafs = %{version}-%{release}
Requires(post): /sbin/ldconfig
+Provides: openafs-static = %{version}-%{release}
%description devel
The AFS distributed filesystem. AFS is a distributed filesystem
@@ -323,6 +324,9 @@
%{_datadir}/openafs/C/afszcm.cat
%changelog
+* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
+- Provide openafs-static (RPM Fusion bug #2310).
+
* Wed Apr 04 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-1
- Update to OpenAFS 1.6.1 final
- Require selinux-policy-targeted (RPM Fusion bug #2138).
12 years, 6 months
rpms/openafs/F-17 openafs.spec,1.22,1.23
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22417
Modified Files:
openafs.spec
Log Message:
* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
- Provide openafs-static (RPM Fusion bug #2310).
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/F-17/openafs.spec,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- openafs.spec 4 Apr 2012 19:20:12 -0000 1.22
+++ openafs.spec 1 May 2012 22:34:34 -0000 1.23
@@ -13,7 +13,7 @@
Summary: Enterprise Network File System
Name: openafs
Version: 1.6.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -63,6 +63,7 @@
Group: Development/Libraries
Requires: openafs = %{version}-%{release}
Requires(post): /sbin/ldconfig
+Provides: openafs-static = %{version}-%{release}
%description devel
The AFS distributed filesystem. AFS is a distributed filesystem
@@ -323,6 +324,9 @@
%{_datadir}/openafs/C/afszcm.cat
%changelog
+* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
+- Provide openafs-static (RPM Fusion bug #2310).
+
* Wed Apr 04 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-1
- Update to OpenAFS 1.6.1 final
- Require selinux-policy-targeted (RPM Fusion bug #2138).
12 years, 6 months
rpms/openafs/devel openafs.spec,1.23,1.24
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22288
Modified Files:
openafs.spec
Log Message:
* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
- Provide openafs-static (RPM Fusion bug #2310).
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/devel/openafs.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- openafs.spec 4 Apr 2012 18:10:38 -0000 1.23
+++ openafs.spec 1 May 2012 22:33:23 -0000 1.24
@@ -13,7 +13,7 @@
Summary: Enterprise Network File System
Name: openafs
Version: 1.6.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -63,6 +63,7 @@
Group: Development/Libraries
Requires: openafs = %{version}-%{release}
Requires(post): /sbin/ldconfig
+Provides: openafs-static = %{version}-%{release}
%description devel
The AFS distributed filesystem. AFS is a distributed filesystem
@@ -323,6 +324,9 @@
%{_datadir}/openafs/C/afszcm.cat
%changelog
+* Mon May 01 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-2
+- Provide openafs-static (RPM Fusion bug #2310).
+
* Wed Apr 04 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-1
- Update to OpenAFS 1.6.1 final
- Require selinux-policy-targeted (RPM Fusion bug #2138).
12 years, 6 months
rpms/mjpegtools/EL-6 mjpegtools.spec,1.8,1.9
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/mjpegtools/EL-6
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv20021
Modified Files:
mjpegtools.spec
Log Message:
Sync spec with rawhide.
Index: mjpegtools.spec
===================================================================
RCS file: /cvs/free/rpms/mjpegtools/EL-6/mjpegtools.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- mjpegtools.spec 1 May 2012 20:35:59 -0000 1.8
+++ mjpegtools.spec 1 May 2012 21:25:43 -0000 1.9
@@ -1,25 +1,22 @@
Name: mjpegtools
Version: 2.0.0
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Tools to manipulate MPEG data
Group: Applications/Multimedia
License: GPLv2
URL: http://mjpeg.sourceforge.net/
Source0: http://downloads.sourceforge.net/mjpeg/%{name}-%{version}.tar.gz
-
Patch0: mjpegtools-2.0.0-no-config-in-public-header.h
-
BuildRequires: libjpeg-devel
BuildRequires: nasm
BuildRequires: libdv-devel
BuildRequires: SDL-devel >= 1.1.3
BuildRequires: SDL_gfx-devel
-#BuildRequires: libquicktime-devel >= 0.9.8
+BuildRequires: libquicktime-devel >= 0.9.8
BuildRequires: libpng-devel
BuildRequires: gtk2-devel >= 2.4.0
-
-Requires: %{name}-libs%{?_isa} = %{version}-%{release}
-Requires: %{name}-lav%{?_isa} = %{version}-%{release}
+Requires: %{name}-libs = %{version}-%{release}
+Requires: %{name}-lav = %{version}-%{release}
# mencoder for lav2avi.sh
Requires: mencoder
# ffmpeg main package, y4mscaler and which for anytovcd.sh
@@ -39,7 +36,7 @@
%package gui
Summary: GUI tools to manipulate MPEG data
Group: Applications/Multimedia
-Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: %{name} = %{version}-%{release}
%description gui
The mjpeg programs are a set of tools that can do recording of videos
@@ -62,7 +59,7 @@
%package lav
Summary: MJPEGtools lavpipe libraries
Group: System Environment/Libraries
-Requires: %{name}-libs%{?_isa} = %{version}-%{release}
+Requires: %{name}-libs = %{version}-%{release}
%description lav
The mjpeg programs are a set of tools that can do recording of videos
@@ -74,7 +71,7 @@
%package devel
Summary: Development files for mjpegtools libraries
Group: Development/Libraries
-Requires: %{name}-libs%{?_isa} = %{version}-%{release}
+Requires: %{name}-libs = %{version}-%{release}
%description devel
The mjpeg programs are a set of tools that can do recording of videos
@@ -86,8 +83,8 @@
%package lav-devel
Summary: Development files for mjpegtools lavpipe libraries
Group: Development/Libraries
-Requires: %{name}-lav%{?_isa} = %{version}-%{release}
-Requires: %{name}-devel%{?_isa} = %{version}-%{release}
+Requires: %{name}-lav = %{version}-%{release}
+Requires: %{name}-devel = %{version}-%{release}
%description lav-devel
The mjpeg programs are a set of tools that can do recording of videos
@@ -112,10 +109,10 @@
%install
-make install DESTDIR=%{buildroot}
-rm -f %{buildroot}{%{_infodir}/dir,%{_libdir}/lib*.la}
+make install DESTDIR=$RPM_BUILD_ROOT
+rm -f $RPM_BUILD_ROOT{%{_infodir}/dir,%{_libdir}/lib*.la}
# too broken/outdated to be useful in 1.[89].0 (and would come with dep chain)
-rm %{buildroot}%{_bindir}/mpegtranscode
+rm $RPM_BUILD_ROOT%{_bindir}/mpegtranscode
%post
@@ -126,13 +123,16 @@
/sbin/install-info --delete %{_infodir}/mjpeg-howto.info %{_infodir}/dir || :
%post libs -p /sbin/ldconfig
+
%postun libs -p /sbin/ldconfig
%post lav -p /sbin/ldconfig
+
%postun lav -p /sbin/ldconfig
%files
+%defattr(-,root,root,-)
%doc CHANGES ChangeLog AUTHORS BUGS README.lavpipe NEWS TODO
%{_bindir}/*
%exclude %{_bindir}/glav
@@ -146,6 +146,7 @@
%{_infodir}/mjpeg-howto.info*
%files gui
+%defattr(-,root,root,-)
%doc README.glav
%{_bindir}/glav
# lavplay and yuvplay won't save console util users from X11 and SDL
@@ -158,26 +159,33 @@
%{_mandir}/man1/yuvplay.1*
%files libs
+%defattr(-,root,root,-)
%doc COPYING
%{_libdir}/libm*.so.*
%files lav
+%defattr(-,root,root,-)
%{_libdir}/liblav*.so.*
%files devel
+%defattr(-,root,root,-)
%{_includedir}/%{name}
%exclude %{_includedir}/%{name}/*lav*.h
%{_libdir}/libm*.so
%{_libdir}/pkgconfig/%{name}.pc
%files lav-devel
+%defattr(-,root,root,-)
%{_includedir}/%{name}/*lav*.h
%{_libdir}/liblav*.so
%changelog
-* Tue May 01 2012 Richard Shaw <hobbes1069(a)gmail.com> - 2.0.0-2
-- Inital release for EL6.
+* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.0-3
+- Rebuilt for c++ ABI breakage
+
+* Wed Feb 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Mon Aug 1 2011 Hans de Goede <j.w.r.degoede(a)gmail.com> - 2.0.0-1
- Update to new upstream 2.0.0 final release
12 years, 6 months
rpms/libquicktime/F-17 .cvsignore, 1.9, 1.10 libquicktime.spec, 1.27, 1.28 sources, 1.9, 1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/libquicktime/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18639/F-17
Modified Files:
.cvsignore libquicktime.spec sources
Log Message:
Update for F-17
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/libquicktime/F-17/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 11 Jul 2011 20:34:23 -0000 1.9
+++ .cvsignore 1 May 2012 20:59:42 -0000 1.10
@@ -1 +1 @@
-libquicktime-1.2.3.tar.gz
+libquicktime-1.2.4.tar.gz
Index: libquicktime.spec
===================================================================
RCS file: /cvs/free/rpms/libquicktime/F-17/libquicktime.spec,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- libquicktime.spec 13 Mar 2012 08:42:28 -0000 1.27
+++ libquicktime.spec 1 May 2012 20:59:42 -0000 1.28
@@ -1,7 +1,7 @@
Summary: Library for reading and writing Quicktime files
Name: libquicktime
-Version: 1.2.3
-Release: 6%{?dist}
+Version: 1.2.4
+Release: 1%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://libquicktime.sourceforge.net/
@@ -129,6 +129,9 @@
# --------------------------------------------------------------------
%changelog
+* Tue May 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.4-1
+- Update to 1.2.4
+
* Tue Mar 13 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.3-6
- Rebuilt for x264 ABI 0.120
Index: sources
===================================================================
RCS file: /cvs/free/rpms/libquicktime/F-17/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 11 Jul 2011 20:34:23 -0000 1.9
+++ sources 1 May 2012 20:59:42 -0000 1.10
@@ -1 +1 @@
-9a82a1546408605ea8337b3a7c78786e libquicktime-1.2.3.tar.gz
+81cfcebad9b7ee7e7cfbefc861d6d61b libquicktime-1.2.4.tar.gz
12 years, 6 months