From ab373c5d181276a14924d3e23eedcd71bef99600 Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Tue, 20 Sep 2005 05:22:05 +0000 Subject: [PATCH 01/57] Setup of module libiec61883 --- .cvsignore | 0 Makefile | 6 ++++++ sources | 0 3 files changed, 6 insertions(+) create mode 100644 .cvsignore create mode 100644 Makefile create mode 100644 sources diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fc4f3a4 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +# Makefile for source rpm: libiec61883 +# $Id$ +NAME := libiec61883 +SPECFILE = $(firstword $(wildcard *.spec)) + +include ../common/Makefile.common diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 0cb8fa8197f03a7d04e63765f9b722acdc9a52fc Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Tue, 20 Sep 2005 05:22:16 +0000 Subject: [PATCH 02/57] auto-import libiec61883-1.0.0-8.fc5 on branch devel from libiec61883-1.0.0-8.fc5.src.rpm --- .cvsignore | 1 + libiec61883.spec | 91 ++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 93 insertions(+) create mode 100644 libiec61883.spec diff --git a/.cvsignore b/.cvsignore index e69de29..0744658 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +libiec61883-1.0.0.tar.gz diff --git a/libiec61883.spec b/libiec61883.spec new file mode 100644 index 0000000..ad3c374 --- /dev/null +++ b/libiec61883.spec @@ -0,0 +1,91 @@ +Summary: Streaming library for IEEE1394 +Name: libiec61883 +Version: 1.0.0 +Release: 8.fc5 +License: LGPL +Group: Libraries +Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz +Patch: libiec61883-1.0.0-installtests.patch +URL: http://linux1394.org +BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildRequires: libraw1394-devel + +%description + +The libiec61883 library provides an higher level API for streaming DV, +MPEG-2 and audio over IEEE1394. Based on the libraw1394 isochronous +functionality, this library acts as a filter that accepts DV-frames, +MPEG-2 frames or audio samples from the application and breaks these +down to isochronous packets, which are transmitted using libraw1394. + +%package devel +Summary: Development files for libiec61883 +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} + +%description devel +Development files needed to build applications against libiec61883 + +%package utils +Summary: Utilities for use with libiec61883 +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} + +%description utils +Utilities that make use of iec61883 + +%prep +%setup -q +%patch -p1 -b .installtests + +%build +autoreconf +export CFLAGS="%{optflags}" +%configure +make + +%install +rm -rf %{buildroot} +make DESTDIR=%{buildroot} install +rm $RPM_BUILD_ROOT%{_libdir}/libiec61883.a +rm $RPM_BUILD_ROOT%{_libdir}/libiec61883.la + +%clean +rm -rf %{buildroot} + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc AUTHORS COPYING NEWS README +%{_libdir}/libiec61883.so.* + +%files devel +%defattr(-,root,root,-) +%{_libdir}/libiec61883.so +%{_includedir}/libiec61883/*.h +%{_libdir}/pkgconfig/libiec61883.pc + +%files utils +%defattr(-,root,root,-) +%{_bindir}/* + +%changelog +* Mon Sep 19 2005 Warren Togami 1.0.0-8 +- split -devel for pkgconfig chain +- remove .a and .la + +* Tue Apr 5 2005 Axel Thimm +- Fixes for building properly on x86_64. + +* Mon Mar 28 2005 Jarod Wilson +- Fixed utils so they build properly + +* Sat Feb 26 2005 Jarod Wilson +- Rolled in utils + +* Wed Feb 23 2005 Jarod Wilson +- Initial build + diff --git a/sources b/sources index e69de29..bfc9de7 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +7f531c1599bfe8f385a2cb4e56e9d93b libiec61883-1.0.0.tar.gz From 5d4fdcb63453a5014ee9417055bd6171e541cf2c Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Tue, 20 Sep 2005 05:37:16 +0000 Subject: [PATCH 03/57] exclude s390 and s390x --- libiec61883.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libiec61883.spec b/libiec61883.spec index ad3c374..553c4ff 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -9,6 +9,7 @@ Patch: libiec61883-1.0.0-installtests.patch URL: http://linux1394.org BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: libraw1394-devel +ExcludeArch: s390 s390x %description @@ -76,6 +77,7 @@ rm -rf %{buildroot} * Mon Sep 19 2005 Warren Togami 1.0.0-8 - split -devel for pkgconfig chain - remove .a and .la +- exclude s390 and s390x * Tue Apr 5 2005 Axel Thimm - Fixes for building properly on x86_64. From 85ea847624647ae4014efc1ad322eb6da61238dd Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Fri, 11 Nov 2005 21:45:16 +0000 Subject: [PATCH 04/57] incorporate some spec improvements from Matthias (#120891) --- libiec61883.spec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index 553c4ff..299fae6 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,16 +1,19 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.0.0 -Release: 8.fc5 +Release: 9.fc5 License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz Patch: libiec61883-1.0.0-installtests.patch URL: http://linux1394.org BuildRoot: %{_tmppath}/%{name}-%{version}-root -BuildRequires: libraw1394-devel ExcludeArch: s390 s390x +# Works only with newer libraw1394 versions +BuildRequires: libraw1394-devel >= 1.2.0 +Requires: libraw1394 >= 1.2.0 + %description The libiec61883 library provides an higher level API for streaming DV, @@ -23,6 +26,7 @@ down to isochronous packets, which are transmitted using libraw1394. Summary: Development files for libiec61883 Group: Applications/Multimedia Requires: %{name} = %{version}-%{release} +Requires: pkgconfig, libraw1394-devel >= 1.2.0 %description devel Development files needed to build applications against libiec61883 @@ -74,6 +78,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Fri Nov 11 2005 Warren Togami 1.0.0-9 +- incorporate some spec improvements from Matthias (#120891) + * Mon Sep 19 2005 Warren Togami 1.0.0-8 - split -devel for pkgconfig chain - remove .a and .la From e2f1d2d4edcd6318a9979db7a3d1eef1f7f21e9e Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Fri, 11 Nov 2005 21:55:01 +0000 Subject: [PATCH 05/57] actually bug #172105 --- libiec61883.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 299fae6..4697f8d 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -79,7 +79,7 @@ rm -rf %{buildroot} %changelog * Fri Nov 11 2005 Warren Togami 1.0.0-9 -- incorporate some spec improvements from Matthias (#120891) +- incorporate some spec improvements from Matthias (#172105) * Mon Sep 19 2005 Warren Togami 1.0.0-8 - split -devel for pkgconfig chain From ac45f57700afb80bf756f4d2635da1f8aa8aa3be Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 9 Dec 2005 22:41:36 +0000 Subject: [PATCH 06/57] gcc update bump --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 4697f8d..90121bc 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.0.0 -Release: 9.fc5 +Release: 9.fc5.1 License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Fri Dec 09 2005 Jesse Keating +- rebuilt + * Fri Nov 11 2005 Warren Togami 1.0.0-9 - incorporate some spec improvements from Matthias (#172105) From 46c6f02fc8117908d08e1992178ae7c8172edee6 Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Fri, 13 Jan 2006 16:28:05 +0000 Subject: [PATCH 07/57] - Add missing autoconf, automake and libtool BuildRequires --- libiec61883.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 90121bc..1c827be 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.0.0 -Release: 9.fc5.1 +Release: 10.fc5 License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -12,6 +12,7 @@ ExcludeArch: s390 s390x # Works only with newer libraw1394 versions BuildRequires: libraw1394-devel >= 1.2.0 +BuildRequires: autoconf, automake, libtool Requires: libraw1394 >= 1.2.0 %description @@ -78,6 +79,10 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Fri Dec 30 2005 Jarod Wilson 1.0.0-10 +- Add missing autoconf, automake and libtool + BuildRequires + * Fri Dec 09 2005 Jesse Keating - rebuilt From 20a9838cc5f9a46b91a72d00b3c0112942e468fd Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 7 Feb 2006 12:40:41 +0000 Subject: [PATCH 08/57] bump for new gcc/glibc --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 1c827be..4987307 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.0.0 -Release: 10.fc5 +Release: 10.fc5.1 License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Tue Feb 07 2006 Jesse Keating - 1.0.0-10.fc5.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + * Fri Dec 30 2005 Jarod Wilson 1.0.0-10 - Add missing autoconf, automake and libtool BuildRequires From 58ee83b9e83f02f34586f6373eeb8f7991df6ed3 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 11 Feb 2006 04:09:03 +0000 Subject: [PATCH 09/57] bump for bug in double-long on ppc(64) --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 4987307..a864da4 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.0.0 -Release: 10.fc5.1 +Release: 10.fc5.2 License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Fri Feb 10 2006 Jesse Keating - 1.0.0-10.fc5.2 +- bump again for double-long bug on ppc(64) + * Tue Feb 07 2006 Jesse Keating - 1.0.0-10.fc5.1 - rebuilt for new gcc4.1 snapshot and glibc changes From aa4f698ae91a4aad037c0e58d1594321729aaed4 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 12 Jul 2006 06:53:56 +0000 Subject: [PATCH 10/57] bumped for rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index a864da4..a8e5c05 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.0.0 -Release: 10.fc5.2 +Release: 10.fc5.2.1 License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Wed Jul 12 2006 Jesse Keating - 1.0.0-10.fc5.2.1 +- rebuild + * Fri Feb 10 2006 Jesse Keating - 1.0.0-10.fc5.2 - bump again for double-long bug on ppc(64) From 437bed75e1c6a60d062f661f651d24a31a82fd30 Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Wed, 11 Oct 2006 14:59:59 +0000 Subject: [PATCH 11/57] use %dist tag --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index a8e5c05..18852df 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.0.0 -Release: 10.fc5.2.1 +Release: 11%{?dist} License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Wed Oct 11 2006 Jarod Wilson - 1.0.0-11 +- Use %dist tag + * Wed Jul 12 2006 Jesse Keating - 1.0.0-10.fc5.2.1 - rebuild From 331561bcf01e37a983708c84cad528153b989953 Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Wed, 25 Oct 2006 17:18:29 +0000 Subject: [PATCH 12/57] bump to 1.1.0 release --- .cvsignore | 1 + libiec61883-1.1.0-installtests.patch | 12 ++++++++++++ libiec61883.spec | 16 ++++++++++------ sources | 2 +- 4 files changed, 24 insertions(+), 7 deletions(-) create mode 100644 libiec61883-1.1.0-installtests.patch diff --git a/.cvsignore b/.cvsignore index 0744658..9760e44 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1,2 @@ libiec61883-1.0.0.tar.gz +libiec61883-1.1.0.tar.gz diff --git a/libiec61883-1.1.0-installtests.patch b/libiec61883-1.1.0-installtests.patch new file mode 100644 index 0000000..6fb5338 --- /dev/null +++ b/libiec61883-1.1.0-installtests.patch @@ -0,0 +1,12 @@ +diff -ur libiec61883-1.1.0.orig/examples/Makefile.am libiec61883-1.1.0/examples/Makefile.am +--- libiec61883-1.1.0.orig/examples/Makefile.am 2006-09-24 15:34:12.000000000 -0400 ++++ libiec61883-1.1.0/examples/Makefile.am 2006-10-25 13:12:38.000000000 -0400 +@@ -1,6 +1,6 @@ + +-noinst_PROGRAMS = test-amdtp test-dv test-mpeg2 test-plugs +-bin_PROGRAMS = plugreport plugctl ++noinst_PROGRAMS = ++bin_PROGRAMS = plugreport plugctl test-amdtp test-dv test-mpeg2 test-plugs + man_MANS = plugreport.1 plugctl.1 + EXTRA_DIST = plugreport.1 plugctl.1 + diff --git a/libiec61883.spec b/libiec61883.spec index 18852df..8fad17f 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,19 +1,19 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 -Version: 1.0.0 -Release: 11%{?dist} +Version: 1.1.0 +Release: 1%{?dist} License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz -Patch: libiec61883-1.0.0-installtests.patch +Patch: libiec61883-1.1.0-installtests.patch URL: http://linux1394.org BuildRoot: %{_tmppath}/%{name}-%{version}-root ExcludeArch: s390 s390x # Works only with newer libraw1394 versions -BuildRequires: libraw1394-devel >= 1.2.0 +BuildRequires: libraw1394-devel >= 1.2.1 BuildRequires: autoconf, automake, libtool -Requires: libraw1394 >= 1.2.0 +Requires: libraw1394 >= 1.2.1 %description @@ -27,7 +27,7 @@ down to isochronous packets, which are transmitted using libraw1394. Summary: Development files for libiec61883 Group: Applications/Multimedia Requires: %{name} = %{version}-%{release} -Requires: pkgconfig, libraw1394-devel >= 1.2.0 +Requires: pkgconfig, libraw1394-devel >= 1.2.1 %description devel Development files needed to build applications against libiec61883 @@ -77,8 +77,12 @@ rm -rf %{buildroot} %files utils %defattr(-,root,root,-) %{_bindir}/* +%{_mandir}/man1/*.1* %changelog +* Wed Oct 25 2006 Jarod Wilson - 1.1.0-1 +- Update to 1.1.0 release + * Wed Oct 11 2006 Jarod Wilson - 1.0.0-11 - Use %dist tag diff --git a/sources b/sources index bfc9de7..2d6ce48 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7f531c1599bfe8f385a2cb4e56e9d93b libiec61883-1.0.0.tar.gz +08f46840912ae2032499186228842a32 libiec61883-1.1.0.tar.gz From 4a99dad61e28ee7f3cc9e5ee2c902be2d4ee05cf Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Mon, 26 Mar 2007 04:41:06 +0000 Subject: [PATCH 13/57] Own created directories (#233865) --- libiec61883.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 8fad17f..0228892 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPL Group: Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -71,6 +71,7 @@ rm -rf %{buildroot} %files devel %defattr(-,root,root,-) %{_libdir}/libiec61883.so +%dir %{_includedir}/libiec61883 %{_includedir}/libiec61883/*.h %{_libdir}/pkgconfig/libiec61883.pc @@ -80,6 +81,9 @@ rm -rf %{buildroot} %{_mandir}/man1/*.1* %changelog +* Mon Mar 26 2007 Jarod Wilson - 1.1.0-2 +- Own created directories (#233865) + * Wed Oct 25 2006 Jarod Wilson - 1.1.0-1 - Update to 1.1.0 release From 8383b97479990fb38ed9c5de9cda28175a952838 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 15 Oct 2007 19:01:51 +0000 Subject: [PATCH 14/57] makefile update to properly grab makefile.common --- Makefile | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fc4f3a4..bbe89c3 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,21 @@ # Makefile for source rpm: libiec61883 -# $Id$ +# $Id: Makefile,v 1.1 2005/09/20 05:22:05 wtogami Exp $ NAME := libiec61883 SPECFILE = $(firstword $(wildcard *.spec)) -include ../common/Makefile.common +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attempt a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) From 94408ad20ddd1a19e97dbcdd52b012b0af0902bc Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Wed, 19 Dec 2007 15:28:53 +0000 Subject: [PATCH 15/57] - Fix license and group tags (#411201) - Clean up spacing and macro/var inconsistency --- libiec61883.spec | 64 +++++++++++++++++++++++++----------------------- 1 file changed, 34 insertions(+), 30 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index 0228892..84f1151 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,21 +1,21 @@ -Summary: Streaming library for IEEE1394 -Name: libiec61883 -Version: 1.1.0 -Release: 2%{?dist} -License: LGPL -Group: Libraries -Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz -Patch: libiec61883-1.1.0-installtests.patch -URL: http://linux1394.org -BuildRoot: %{_tmppath}/%{name}-%{version}-root -ExcludeArch: s390 s390x +Summary: Streaming library for IEEE1394 +Name: libiec61883 +Version: 1.1.0 +Release: 3%{?dist} +License: LGPLv2+ +Group: System Environment/Libraries +Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz +Patch: libiec61883-1.1.0-installtests.patch +URL: http://linux1394.org +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +ExcludeArch: s390 s390x # Works only with newer libraw1394 versions -BuildRequires: libraw1394-devel >= 1.2.1 -BuildRequires: autoconf, automake, libtool -Requires: libraw1394 >= 1.2.1 +BuildRequires: libraw1394-devel >= 1.2.1 +BuildRequires: autoconf, automake, libtool +Requires: libraw1394 >= 1.2.1 -%description +%description The libiec61883 library provides an higher level API for streaming DV, MPEG-2 and audio over IEEE1394. Based on the libraw1394 isochronous @@ -24,18 +24,18 @@ MPEG-2 frames or audio samples from the application and breaks these down to isochronous packets, which are transmitted using libraw1394. %package devel -Summary: Development files for libiec61883 -Group: Applications/Multimedia -Requires: %{name} = %{version}-%{release} -Requires: pkgconfig, libraw1394-devel >= 1.2.1 +Summary: Development files for libiec61883 +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig, libraw1394-devel >= 1.2.1 %description devel Development files needed to build applications against libiec61883 %package utils -Summary: Utilities for use with libiec61883 -Group: Applications/Multimedia -Requires: %{name} = %{version}-%{release} +Summary: Utilities for use with libiec61883 +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} %description utils Utilities that make use of iec61883 @@ -46,18 +46,18 @@ Utilities that make use of iec61883 %build autoreconf -export CFLAGS="%{optflags}" +export CFLAGS="$RPM_OPT_FLAGS" %configure -make +make %{?_smp_mflags} %install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} install -rm $RPM_BUILD_ROOT%{_libdir}/libiec61883.a -rm $RPM_BUILD_ROOT%{_libdir}/libiec61883.la +rm -rf $RPM_BUILD_ROOT +make DESTDIR=$RPM_BUILD_ROOT install +rm -f $RPM_BUILD_ROOT%{_libdir}/libiec61883.a +rm -f $RPM_BUILD_ROOT%{_libdir}/libiec61883.la %clean -rm -rf %{buildroot} +rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig @@ -81,6 +81,10 @@ rm -rf %{buildroot} %{_mandir}/man1/*.1* %changelog +* Wed Dec 19 2007 Jarod Wilson - 1.1.0-3 +- Fix license and group tags (#411201) +- Clean up spacing and macro/var inconsistency + * Mon Mar 26 2007 Jarod Wilson - 1.1.0-2 - Own created directories (#233865) @@ -88,7 +92,7 @@ rm -rf %{buildroot} - Update to 1.1.0 release * Wed Oct 11 2006 Jarod Wilson - 1.0.0-11 -- Use %dist tag +- Use %%dist tag * Wed Jul 12 2006 Jesse Keating - 1.0.0-10.fc5.2.1 - rebuild From 2bd30160b24e0fbfe55b7a150c1c517851eb1cf0 Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Thu, 14 Feb 2008 18:22:30 +0000 Subject: [PATCH 16/57] - Bump and rebuild with gcc 4.3 --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 84f1151..5b890fd 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.1.0 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Thu Feb 14 2008 Jarod Wilson - 1.1.0-4 +- Bump and rebuild with gcc 4.3 + * Wed Dec 19 2007 Jarod Wilson - 1.1.0-3 - Fix license and group tags (#411201) - Clean up spacing and macro/var inconsistency From 514784b864e4100ef2eb81c10903a155cc4453bc Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Tue, 22 Jul 2008 19:24:01 +0000 Subject: [PATCH 17/57] - Bump and rebuild for libraw1394 v2.0.0 --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 5b890fd..8c0e116 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Tue Jul 22 2008 Jarod Wilson 1.1.0-5 +- Bump and rebuild for libraw1394 v2.0.0 + * Thu Feb 14 2008 Jarod Wilson - 1.1.0-4 - Bump and rebuild with gcc 4.3 From b49c736d9c360cdc1526e72ad6c0fe3f35de7964 Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Thu, 15 Jan 2009 15:33:26 +0000 Subject: [PATCH 18/57] - Update to libiec61883 v1.2.0 release - Rework installtests patch to not require reautoconf - Make iso channel allocation work w/o local fw node r/w --- .cvsignore | 1 + libiec61883-1.1.0-installtests.patch | 12 ---------- libiec61883-1.2.0-installtests.patch | 28 +++++++++++++++++++++++ libiec61883.spec | 33 ++++++++++++++++------------ sources | 1 + 5 files changed, 49 insertions(+), 26 deletions(-) delete mode 100644 libiec61883-1.1.0-installtests.patch create mode 100644 libiec61883-1.2.0-installtests.patch diff --git a/.cvsignore b/.cvsignore index 9760e44..35e953c 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,2 +1,3 @@ libiec61883-1.0.0.tar.gz libiec61883-1.1.0.tar.gz +libiec61883-1.2.0.tar.gz diff --git a/libiec61883-1.1.0-installtests.patch b/libiec61883-1.1.0-installtests.patch deleted file mode 100644 index 6fb5338..0000000 --- a/libiec61883-1.1.0-installtests.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ur libiec61883-1.1.0.orig/examples/Makefile.am libiec61883-1.1.0/examples/Makefile.am ---- libiec61883-1.1.0.orig/examples/Makefile.am 2006-09-24 15:34:12.000000000 -0400 -+++ libiec61883-1.1.0/examples/Makefile.am 2006-10-25 13:12:38.000000000 -0400 -@@ -1,6 +1,6 @@ - --noinst_PROGRAMS = test-amdtp test-dv test-mpeg2 test-plugs --bin_PROGRAMS = plugreport plugctl -+noinst_PROGRAMS = -+bin_PROGRAMS = plugreport plugctl test-amdtp test-dv test-mpeg2 test-plugs - man_MANS = plugreport.1 plugctl.1 - EXTRA_DIST = plugreport.1 plugctl.1 - diff --git a/libiec61883-1.2.0-installtests.patch b/libiec61883-1.2.0-installtests.patch new file mode 100644 index 0000000..6f62e23 --- /dev/null +++ b/libiec61883-1.2.0-installtests.patch @@ -0,0 +1,28 @@ +diff -Naurp libiec61883-1.2.0.orig/examples/Makefile.am libiec61883-1.2.0/examples/Makefile.am +--- libiec61883-1.2.0.orig/examples/Makefile.am 2006-09-24 15:34:12.000000000 -0400 ++++ libiec61883-1.2.0/examples/Makefile.am 2009-01-15 10:29:02.265594991 -0500 +@@ -1,6 +1,6 @@ + +-noinst_PROGRAMS = test-amdtp test-dv test-mpeg2 test-plugs +-bin_PROGRAMS = plugreport plugctl ++noinst_PROGRAMS = ++bin_PROGRAMS = plugreport plugctl test-amdtp test-dv test-mpeg2 test-plugs + man_MANS = plugreport.1 plugctl.1 + EXTRA_DIST = plugreport.1 plugctl.1 + +diff -Naurp libiec61883-1.2.0.orig/examples/Makefile.in libiec61883-1.2.0/examples/Makefile.in +--- libiec61883-1.2.0.orig/examples/Makefile.in 2009-01-15 01:33:33.000000000 -0500 ++++ libiec61883-1.2.0/examples/Makefile.in 2009-01-15 10:28:57.088402078 -0500 +@@ -32,9 +32,10 @@ PRE_UNINSTALL = : + POST_UNINSTALL = : + build_triplet = @build@ + host_triplet = @host@ +-noinst_PROGRAMS = test-amdtp$(EXEEXT) test-dv$(EXEEXT) \ ++noinst_PROGRAMS = ++bin_PROGRAMS = plugreport$(EXEEXT) plugctl$(EXEEXT) \ ++ test-amdtp$(EXEEXT) test-dv$(EXEEXT) \ + test-mpeg2$(EXEEXT) test-plugs$(EXEEXT) +-bin_PROGRAMS = plugreport$(EXEEXT) plugctl$(EXEEXT) + subdir = examples + DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 diff --git a/libiec61883.spec b/libiec61883.spec index 8c0e116..8648c08 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,18 +1,18 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 -Version: 1.1.0 -Release: 5%{?dist} +Version: 1.2.0 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz -Patch: libiec61883-1.1.0-installtests.patch +Patch0: libiec61883-1.2.0-installtests.patch +Patch1: libiec61883-channel-allocation-without-local-node-rw.patch URL: http://linux1394.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root ExcludeArch: s390 s390x # Works only with newer libraw1394 versions BuildRequires: libraw1394-devel >= 1.2.1 -BuildRequires: autoconf, automake, libtool Requires: libraw1394 >= 1.2.1 %description @@ -42,10 +42,10 @@ Utilities that make use of iec61883 %prep %setup -q -%patch -p1 -b .installtests +%patch0 -p1 +%patch1 -p1 %build -autoreconf export CFLAGS="$RPM_OPT_FLAGS" %configure make %{?_smp_mflags} @@ -81,32 +81,37 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Thu Jan 15 2009 Jarod Wilson 1.2.0-1 +- Update to libiec61883 v1.2.0 release +- Rework installtests patch to not require reautoconf +- Make iso channel allocation work w/o local fw node r/w + * Tue Jul 22 2008 Jarod Wilson 1.1.0-5 - Bump and rebuild for libraw1394 v2.0.0 -* Thu Feb 14 2008 Jarod Wilson - 1.1.0-4 +* Thu Feb 14 2008 Jarod Wilson 1.1.0-4 - Bump and rebuild with gcc 4.3 -* Wed Dec 19 2007 Jarod Wilson - 1.1.0-3 +* Wed Dec 19 2007 Jarod Wilson 1.1.0-3 - Fix license and group tags (#411201) - Clean up spacing and macro/var inconsistency -* Mon Mar 26 2007 Jarod Wilson - 1.1.0-2 +* Mon Mar 26 2007 Jarod Wilson 1.1.0-2 - Own created directories (#233865) -* Wed Oct 25 2006 Jarod Wilson - 1.1.0-1 +* Wed Oct 25 2006 Jarod Wilson 1.1.0-1 - Update to 1.1.0 release -* Wed Oct 11 2006 Jarod Wilson - 1.0.0-11 +* Wed Oct 11 2006 Jarod Wilson 1.0.0-11 - Use %%dist tag -* Wed Jul 12 2006 Jesse Keating - 1.0.0-10.fc5.2.1 +* Wed Jul 12 2006 Jesse Keating 1.0.0-10.fc5.2.1 - rebuild -* Fri Feb 10 2006 Jesse Keating - 1.0.0-10.fc5.2 +* Fri Feb 10 2006 Jesse Keating 1.0.0-10.fc5.2 - bump again for double-long bug on ppc(64) -* Tue Feb 07 2006 Jesse Keating - 1.0.0-10.fc5.1 +* Tue Feb 07 2006 Jesse Keating 1.0.0-10.fc5.1 - rebuilt for new gcc4.1 snapshot and glibc changes * Fri Dec 30 2005 Jarod Wilson 1.0.0-10 diff --git a/sources b/sources index 2d6ce48..350359c 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ 08f46840912ae2032499186228842a32 libiec61883-1.1.0.tar.gz +8af39fff74988073c3ad53fbab147da9 libiec61883-1.2.0.tar.gz From 7dca9206b7473dcbba63d2536f933a4fe5d5d55d Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Thu, 15 Jan 2009 15:39:35 +0000 Subject: [PATCH 19/57] oops, forgot to cvs add patch. --- ...nel-allocation-without-local-node-rw.patch | 117 ++++++++++++++++++ libiec61883.spec | 2 +- sources | 1 - 3 files changed, 118 insertions(+), 2 deletions(-) create mode 100644 libiec61883-channel-allocation-without-local-node-rw.patch diff --git a/libiec61883-channel-allocation-without-local-node-rw.patch b/libiec61883-channel-allocation-without-local-node-rw.patch new file mode 100644 index 0000000..f3f0934 --- /dev/null +++ b/libiec61883-channel-allocation-without-local-node-rw.patch @@ -0,0 +1,117 @@ +Date: Thu, 15 Jan 2009 15:41:16 +0100 (CET) +From: Stefan Richter +Subject: [PATCH libiec61883] cmp: replace open-coded channel allocation by + raw1394_channel_modify +To: Dan Dennedy +Cc: linux1394-devel@lists.sourceforge.net + +On 15 Jan, Dan Dennedy wrote: +> On Thu, Jan 1, 2009 at 5:13 AM, Stefan Richter +> wrote: +>> input plug register on the local node? AFAICT neither dvgrab nor kino +>> use raw1394_channel_modify and raw1394_bandwidth_modify, not even +>> through libiec61883.) +> +> dvgrab indirectly uses channel_modify when you use its -guid option to +> establish a point-to-point connection. +> + +Hmm. + +$ dvgrab -guid 0x008088030960484b +libiec61883 error: Failed to get channels available. +Established connection over channel 63 +[...proceeds with capture...] + + +--------------------------------- 8< --------------------------------- + +cmp: replace open-coded channel allocation by raw1394_channel_modify + +The benefit is that it works on kernel 2.6.30 firewire-core without +write permission to the IRM's device file (provided that libraw1394 is +extended for 2.6.30 ioctls too, otherwise it still needs access to the +IRM's file). + +If I read the code correctly, iec61883_cmp_normalize_output doesn't care +whether the channel was already allocated by somebody else; it only +cares that the channel is allocated. That's what the new code does too. +--- + src/cmp.c | 56 +++++++++--------------------------------------------- + 1 file changed, 10 insertions(+), 46 deletions(-) + +Index: libiec61883-1.2.0/src/cmp.c +=================================================================== +--- libiec61883-1.2.0.orig/src/cmp.c ++++ libiec61883-1.2.0/src/cmp.c +@@ -973,55 +973,19 @@ iec61883_cmp_normalize_output (raw1394ha + + DEBUG ("iec61883_cmp_normalize_output: node %d\n", (int) node & 0x3f); + +- // Check for plugs on output ++ /* Check for plugs on output */ + result = iec61883_get_oMPR (handle, node, &ompr); + if (result < 0) + return result; + +- // locate an ouput plug that has a connection +- for (oplug = 0; oplug < ompr.n_plugs; oplug++) { +- if (iec61883_get_oPCRX (handle, node, &opcr, oplug) == 0) { +- if (opcr.online && (opcr.n_p2p_connections > 0 || +- opcr.bcast_connection == 1)) { ++ /* Locate an ouptut plug that has a connection, ++ * make sure the plug's channel is allocated with IRM */ ++ for (oplug = 0; oplug < ompr.n_plugs; oplug++) ++ if (iec61883_get_oPCRX (handle, node, &opcr, oplug) == 0 ++ && opcr.online ++ && (opcr.n_p2p_connections > 0 || opcr.bcast_connection == 1) ++ && raw1394_channel_modify (handle, opcr.channel, RAW1394_MODIFY_ALLOC) < 0) ++ DEBUG ("Channel %d already allocated, or can't reach IRM", opcr.channel); + +- // Make sure the plug's channel is allocated with IRM +- quadlet_t buffer; +- nodeaddr_t addr = CSR_REGISTER_BASE; +- unsigned int c = opcr.channel; +- quadlet_t compare, swap = 0; +- quadlet_t new; +- +- if (c > 31 && c < 64) { +- addr += CSR_CHANNELS_AVAILABLE_LO; +- c -= 32; +- } else if (c < 64) +- addr += CSR_CHANNELS_AVAILABLE_HI; +- else +- FAIL ("Invalid channel"); +- c = 31 - c; +- +- result = iec61883_cooked_read (handle, raw1394_get_irm_id (handle), addr, +- sizeof (quadlet_t), &buffer); +- if (result < 0) +- FAIL ("Failed to get channels available."); +- +- buffer = ntohl (buffer); +- DEBUG ("channels available before: 0x%08x", buffer); +- +- if ((buffer & (1 << c)) != 0) { +- swap = htonl (buffer & ~(1 << c)); +- compare = htonl (buffer); +- +- result = raw1394_lock (handle, raw1394_get_irm_id (handle), addr, +- EXTCODE_COMPARE_SWAP, swap, compare, &new); +- if ( (result < 0) || (new != compare) ) { +- FAIL ("Failed to modify channel %d", opcr.channel); +- } +- DEBUG ("channels available after: 0x%08x", ntohl (swap)); +- } +- } +- } +- } +- +- return result; ++ return 0; + } + +-- +Stefan Richter +-=====-==--= ---= -==== +http://arcgraph.de/sr/ diff --git a/libiec61883.spec b/libiec61883.spec index 8648c08..1dd4716 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -83,7 +83,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Thu Jan 15 2009 Jarod Wilson 1.2.0-1 - Update to libiec61883 v1.2.0 release -- Rework installtests patch to not require reautoconf +- Rework installtests patch to not require autoreconf - Make iso channel allocation work w/o local fw node r/w * Tue Jul 22 2008 Jarod Wilson 1.1.0-5 diff --git a/sources b/sources index 350359c..f21bffd 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -08f46840912ae2032499186228842a32 libiec61883-1.1.0.tar.gz 8af39fff74988073c3ad53fbab147da9 libiec61883-1.2.0.tar.gz From 79ca19bdd683b41d090028c31676a7f5f56cb558 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 25 Feb 2009 15:50:28 +0000 Subject: [PATCH 20/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 1dd4716..74c8deb 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Jan 15 2009 Jarod Wilson 1.2.0-1 - Update to libiec61883 v1.2.0 release - Rework installtests patch to not require autoreconf From ea6e331fb3af7b9aa40ec1e9921f9101b3f746e5 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 25 Jul 2009 05:57:24 +0000 Subject: [PATCH 21/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 74c8deb..127cba4 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From a1c2d5429c432526f7fd1bc86890a1f8f032d206 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:51:01 +0000 Subject: [PATCH 22/57] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bbe89c3..d1f82ce 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libiec61883 -# $Id: Makefile,v 1.1 2005/09/20 05:22:05 wtogami Exp $ +# $Id: Makefile,v 1.2 2007/10/15 19:01:51 notting Exp $ NAME := libiec61883 SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From e2b2e6a34172d5c025ca99bef74a3b4c94ad95a5 Mon Sep 17 00:00:00 2001 From: Jay Fenlason Date: Fri, 8 Jan 2010 22:04:39 +0000 Subject: [PATCH 23/57] Update Source and URL fields to point to correct locations. --- libiec61883.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index 127cba4..034cb1c 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,13 +1,13 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: System Environment/Libraries -Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz +Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz Patch0: libiec61883-1.2.0-installtests.patch Patch1: libiec61883-channel-allocation-without-local-node-rw.patch -URL: http://linux1394.org +URL: http://ieee1394.wiki.kernel.org/index.php/Libraries#libiec61883 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root ExcludeArch: s390 s390x @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Fri Jan 8 2010 Jay Fenlason 1.2.0-4 +- Update the Source and URL fields to point to correct locations. + * Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From c25fd43edd2fccfdf971657d092f9c7368810bdb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:12:37 +0000 Subject: [PATCH 24/57] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index d1f82ce..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libiec61883 -# $Id: Makefile,v 1.2 2007/10/15 19:01:51 notting Exp $ -NAME := libiec61883 -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attempt a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From 7a2ff94feab6c27a8699dd7982b4433057c61285 Mon Sep 17 00:00:00 2001 From: paragn Date: Thu, 21 Oct 2010 10:31:33 +0530 Subject: [PATCH 25/57] - Merge-review cleanup (#226030) --- libiec61883.spec | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index 034cb1c..3d46472 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,22 +1,21 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz +# Fedora specific patches. + Patch0: libiec61883-1.2.0-installtests.patch Patch1: libiec61883-channel-allocation-without-local-node-rw.patch URL: http://ieee1394.wiki.kernel.org/index.php/Libraries#libiec61883 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root ExcludeArch: s390 s390x # Works only with newer libraw1394 versions -BuildRequires: libraw1394-devel >= 1.2.1 -Requires: libraw1394 >= 1.2.1 +BuildRequires: libraw1394-devel %description - The libiec61883 library provides an higher level API for streaming DV, MPEG-2 and audio over IEEE1394. Based on the libraw1394 isochronous functionality, this library acts as a filter that accepts DV-frames, @@ -27,7 +26,6 @@ down to isochronous packets, which are transmitted using libraw1394. Summary: Development files for libiec61883 Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: pkgconfig, libraw1394-devel >= 1.2.1 %description devel Development files needed to build applications against libiec61883 @@ -46,18 +44,15 @@ Utilities that make use of iec61883 %patch1 -p1 %build -export CFLAGS="$RPM_OPT_FLAGS" -%configure +%configure --disable-static +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT install -rm -f $RPM_BUILD_ROOT%{_libdir}/libiec61883.a -rm -f $RPM_BUILD_ROOT%{_libdir}/libiec61883.la +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" -%clean -rm -rf $RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %post -p /sbin/ldconfig @@ -81,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Fri Sep 24 2010 Parag Nemade 1.2.0-5 +- Merge-review cleanup (#226030) + * Fri Jan 8 2010 Jay Fenlason 1.2.0-4 - Update the Source and URL fields to point to correct locations. From f80aaa42f0e46885d9e9017c0a1be853a772131d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 00:59:11 -0600 Subject: [PATCH 26/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 3d46472..4e2592d 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 1.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Sep 24 2010 Parag Nemade 1.2.0-5 - Merge-review cleanup (#226030) From 1b57d0872b2fc2a8a5edb0f9da028d87cf098717 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 01:53:14 -0600 Subject: [PATCH 27/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 4e2592d..60f64e4 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 6%{?dist} +Release: 7%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 1.2.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Feb 08 2011 Fedora Release Engineering - 1.2.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From c81e943dbc32efbf8bef848c73a04216a059b55e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 15:09:18 -0500 Subject: [PATCH 28/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 60f64e4..95cba4b 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 7%{?dist} +Release: 8%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 1.2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 1.2.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 643cb2a8bd8bfefae0c77926c9fb4d342aea6e4b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 22:33:22 -0600 Subject: [PATCH 29/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 95cba4b..be27a5a 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 8%{?dist} +Release: 9%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 1.2.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Thu Jul 19 2012 Fedora Release Engineering - 1.2.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 87a796585f4f02ab186cd13b306cde20bb9cfae9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 00:50:12 -0500 Subject: [PATCH 30/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index be27a5a..2060ddc 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 1.2.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From ff2a2cc356a23059def7c6ecdbab05e9c1899331 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 22:51:28 -0500 Subject: [PATCH 31/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 2060ddc..8d8966e 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 10%{?dist} +Release: 11%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.2.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 1.2.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 456e7958f18a329983e6c669706bfb6331da9873 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 03:56:02 +0000 Subject: [PATCH 32/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 8d8966e..6d34963 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 11%{?dist} +Release: 12%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 1.2.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.2.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 39edbe896555caeda69346cfe228ae9a77f7b35e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 15:50:39 +0000 Subject: [PATCH 33/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 6d34963..ef05fee 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 12%{?dist} +Release: 13%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 1.2.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Aug 17 2014 Fedora Release Engineering - 1.2.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 090753b5fbeabd18bf0596027fa2169d1ffee617 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 03:20:09 +0000 Subject: [PATCH 34/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index ef05fee..243c205 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 13%{?dist} +Release: 14%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.2.0-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 1.2.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From c1615c7bf227f8f4b068db076953b0cd358862e2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 18:50:18 +0000 Subject: [PATCH 35/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 243c205..a2e6826 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 14%{?dist} +Release: 15%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.2.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 1.2.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From ed7043cafa3fcbb92ca4c0657d7e2b6cf252ae4a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 19:02:44 +0000 Subject: [PATCH 36/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index a2e6826..a452c95 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 15%{?dist} +Release: 16%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.2.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 1.2.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 9c9e8b1a7ab448d3799ce49da172433a6dd134ab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 01:38:44 +0000 Subject: [PATCH 37/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index a452c95..9dabb2f 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 16%{?dist} +Release: 17%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 1.2.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 1.2.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From f7aaa7ec1e35eb535cc56e4bed78c15e89a39708 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 21:55:57 +0000 Subject: [PATCH 38/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 9dabb2f..a2c0778 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 17%{?dist} +Release: 18%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.2.0-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 1.2.0-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 18e9d3745365cda66bbb11d84b8b747889292e51 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Tue, 20 Feb 2018 17:53:02 +0100 Subject: [PATCH 39/57] require gcc for building --- libiec61883.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index a2c0778..c82d2e3 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 18%{?dist} +Release: 19%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -12,6 +12,7 @@ Patch1: libiec61883-channel-allocation-without-local-node-rw.patch URL: http://ieee1394.wiki.kernel.org/index.php/Libraries#libiec61883 ExcludeArch: s390 s390x +BuildRequires: gcc # Works only with newer libraw1394 versions BuildRequires: libraw1394-devel @@ -76,6 +77,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Tue Feb 20 2018 Nils Philippsen - 1.2.0-19 +- require gcc for building + * Wed Feb 07 2018 Fedora Release Engineering - 1.2.0-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From e4ae5cf770644ec9debcc7960ab92358a1210b20 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 01:40:55 -0500 Subject: [PATCH 40/57] Remove needless use of %defattr --- libiec61883.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index c82d2e3..433e670 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -60,19 +60,16 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %postun -p /sbin/ldconfig %files -%defattr(-,root,root,-) %doc AUTHORS COPYING NEWS README %{_libdir}/libiec61883.so.* %files devel -%defattr(-,root,root,-) %{_libdir}/libiec61883.so %dir %{_includedir}/libiec61883 %{_includedir}/libiec61883/*.h %{_libdir}/pkgconfig/libiec61883.pc %files utils -%defattr(-,root,root,-) %{_bindir}/* %{_mandir}/man1/*.1* From 8e0940b56cae36bd5cb355b2dd1f32b7815c7797 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 08:15:20 +0000 Subject: [PATCH 41/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 433e670..be09130 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 19%{?dist} +Release: 20%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz @@ -74,6 +74,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.2.0-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Tue Feb 20 2018 Nils Philippsen - 1.2.0-19 - require gcc for building From d53797556b7f369003720b94ec22b1dce9d98600 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:39:47 +0100 Subject: [PATCH 42/57] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- libiec61883.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index be09130..043cdb1 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -55,9 +55,7 @@ make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files %doc AUTHORS COPYING NEWS README From 3c53dcccadd6e88f13ee79305b03149438a30fd5 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:17:51 +0100 Subject: [PATCH 43/57] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- libiec61883.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index 043cdb1..da55ef7 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -3,7 +3,6 @@ Name: libiec61883 Version: 1.2.0 Release: 20%{?dist} License: LGPLv2+ -Group: System Environment/Libraries Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -25,7 +24,6 @@ down to isochronous packets, which are transmitted using libraw1394. %package devel Summary: Development files for libiec61883 -Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel @@ -33,7 +31,6 @@ Development files needed to build applications against libiec61883 %package utils Summary: Utilities for use with libiec61883 -Group: Applications/Multimedia Requires: %{name} = %{version}-%{release} %description utils From 092436e739a1af858b40ef5ce79e761d523af531 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 07:22:02 +0000 Subject: [PATCH 44/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index da55ef7..0c58c78 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 20%{?dist} +Release: 21%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -69,6 +69,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 1.2.0-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 1.2.0-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From dba5c878935910710c6e7968a5a437c759629b63 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 13:30:34 +0000 Subject: [PATCH 45/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 0c58c78..48abe75 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 21%{?dist} +Release: 22%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -69,6 +69,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 1.2.0-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 1.2.0-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From cf89e92dd36517e1ebd1e4dad9d2f2f00c416dea Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 09:23:44 +0000 Subject: [PATCH 46/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 48abe75..d7ab2a5 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 22%{?dist} +Release: 23%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -69,6 +69,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 1.2.0-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 1.2.0-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From c5d4213ba6c11164e91f2c7006eff4baaf6e403f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 04:51:43 +0000 Subject: [PATCH 47/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index d7ab2a5..3c7f3e0 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 23%{?dist} +Release: 24%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -69,6 +69,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1.2.0-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jan 29 2020 Fedora Release Engineering - 1.2.0-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 20218d64232393c39ff728bdae5a26d473e4ec40 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 5 Jan 2021 02:01:28 +0000 Subject: [PATCH 48/57] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- libiec61883.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libiec61883.spec b/libiec61883.spec index 3c7f3e0..147c8ca 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -14,6 +14,7 @@ ExcludeArch: s390 s390x BuildRequires: gcc # Works only with newer libraw1394 versions BuildRequires: libraw1394-devel +BuildRequires: make %description The libiec61883 library provides an higher level API for streaming DV, From 5344f86affe850a9e584e2fbf37a1d07603c54ab Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Mon, 13 Jul 2020 21:04:45 +0000 Subject: [PATCH 49/57] Use make macros https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro --- libiec61883.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index 147c8ca..26fa591 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 24%{?dist} +Release: 25%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -46,10 +46,10 @@ Utilities that make use of iec61883 %configure --disable-static sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -make %{?_smp_mflags} +%make_build %install -make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +%make_install find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' @@ -70,6 +70,10 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Tue Jan 05 2021 Tom Stellard - 1.2.0-25 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + * Tue Jul 28 2020 Fedora Release Engineering - 1.2.0-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From d88d0a534589e7e60b8e3b85f48821b2e2d51c5b Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Tue, 5 Jan 2021 16:04:30 +0100 Subject: [PATCH 50/57] Indent consistently Signed-off-by: Nils Philippsen --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 26fa591..71f0b5e 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -14,7 +14,7 @@ ExcludeArch: s390 s390x BuildRequires: gcc # Works only with newer libraw1394 versions BuildRequires: libraw1394-devel -BuildRequires: make +BuildRequires: make %description The libiec61883 library provides an higher level API for streaming DV, @@ -70,6 +70,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Tue Jan 05 2021 Nils Philippsen - 1.2.0-25 +- Indent consistently + * Tue Jan 05 2021 Tom Stellard - 1.2.0-25 - Use make macros - https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro From 21ef9ac1e323626b4742e823cf2732646c605695 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Tue, 5 Jan 2021 16:05:12 +0100 Subject: [PATCH 51/57] Use %autosetup Signed-off-by: Nils Philippsen --- libiec61883.spec | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index 71f0b5e..caae605 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -38,9 +38,7 @@ Requires: %{name} = %{version}-%{release} Utilities that make use of iec61883 %prep -%setup -q -%patch0 -p1 -%patch1 -p1 +%autosetup %build %configure --disable-static @@ -72,6 +70,7 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %changelog * Tue Jan 05 2021 Nils Philippsen - 1.2.0-25 - Indent consistently +- Use %%autosetup * Tue Jan 05 2021 Tom Stellard - 1.2.0-25 - Use make macros From bfccc40484fa0e75a6113c27a51932ff213288e4 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Tue, 5 Jan 2021 16:41:03 +0100 Subject: [PATCH 52/57] Fix using %autosetup Signed-off-by: Nils Philippsen --- libiec61883.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index caae605..b17f112 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -38,7 +38,7 @@ Requires: %{name} = %{version}-%{release} Utilities that make use of iec61883 %prep -%autosetup +%autosetup -p1 %build %configure --disable-static From 0558ad82e5427aec9c12db35b0a01d72ea77748e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 17:16:36 +0000 Subject: [PATCH 53/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index b17f112..49fa145 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 25%{?dist} +Release: 26%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -68,6 +68,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1.2.0-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jan 05 2021 Nils Philippsen - 1.2.0-25 - Indent consistently - Use %%autosetup From d7c9ca50e25b54c17cf749904aaf92e1e17b65db Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 11:36:00 +0000 Subject: [PATCH 54/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 49fa145..5c8746e 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 26%{?dist} +Release: 27%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -68,6 +68,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1.2.0-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 1.2.0-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 11f7b392f4fb88aae29156f858250d01acd4ef9e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 16:26:53 +0000 Subject: [PATCH 55/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libiec61883.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libiec61883.spec b/libiec61883.spec index 5c8746e..77f2589 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 27%{?dist} +Release: 28%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -68,6 +68,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 1.2.0-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 1.2.0-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From a2ca4cc5e7b838cfed1c8dece30d43f758e09a81 Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Wed, 25 May 2022 15:55:42 +0200 Subject: [PATCH 56/57] Small clean up --- libiec61883.spec | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/libiec61883.spec b/libiec61883.spec index 77f2589..f54771e 100644 --- a/libiec61883.spec +++ b/libiec61883.spec @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 28%{?dist} +Release: 29%{?dist} License: LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz # Fedora specific patches. @@ -11,9 +11,12 @@ Patch1: libiec61883-channel-allocation-without-local-node-rw.patch URL: http://ieee1394.wiki.kernel.org/index.php/Libraries#libiec61883 ExcludeArch: s390 s390x +BuildRequires: autoconf +BuildRequires: automake BuildRequires: gcc # Works only with newer libraw1394 versions BuildRequires: libraw1394-devel +BuildRequires: libtool BuildRequires: make %description @@ -41,17 +44,14 @@ Utilities that make use of iec61883 %autosetup -p1 %build +autoreconf -vif %configure --disable-static -sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool %make_build %install %make_install -find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' - -%ldconfig_scriptlets +find %{buildroot} -name '*.la' -delete %files %doc AUTHORS COPYING NEWS README @@ -68,6 +68,10 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %{_mandir}/man1/*.1* %changelog +* Wed May 25 2022 Simone Caronni - 1.2.0-29 +- Rebuild autotools scripts to avoid running sed. +- Drop ldconfig scriptlets. + * Thu Jan 20 2022 Fedora Release Engineering - 1.2.0-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 6cbaff2975b32953339fe7a6aa5b95dd661df6af Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:07:54 +0300 Subject: [PATCH 57/57] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index f21bffd..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -8af39fff74988073c3ad53fbab147da9 libiec61883-1.2.0.tar.gz