[libdvbcsa/f23] Fix %%license tag
by nchauvet
commit 2868058f803d973f1011d425a7f92709c8b984cb
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Thu Sep 15 16:59:47 2016 +0200
Fix %%license tag
.gitignore | 1 +
libdvbcsa.spec | 3 ++-
sources | 1 +
3 files changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..99fe637 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+libdvbcsa-*.tar.gz
diff --git a/libdvbcsa.spec b/libdvbcsa.spec
index c0e43dc..5cd6780 100644
--- a/libdvbcsa.spec
+++ b/libdvbcsa.spec
@@ -57,7 +57,8 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';'
%files
-%doc AUTHORS COPYING README
+%doc AUTHORS README
+%license COPYING
%{_libdir}/*.so.*
%files devel
diff --git a/sources b/sources
index e69de29..824bde4 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+478ab1ca56ca58d2667da6ce22f74e39 libdvbcsa-1.1.0.tar.gz
8 years, 1 month
[libdvbcsa/f23] Clean-up
by nchauvet
commit d0008ab9e92680a63ccef24f0dfbc4c1f21813ac
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Thu Sep 15 12:36:55 2016 +0200
Clean-up
libdvbcsa.spec | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
---
diff --git a/libdvbcsa.spec b/libdvbcsa.spec
index a746817..c0e43dc 100644
--- a/libdvbcsa.spec
+++ b/libdvbcsa.spec
@@ -1,13 +1,12 @@
Name: libdvbcsa
Version: 1.1.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: DVB Common Scrambling Algorithm with encryption and decryption capabilities
Group: System Environment/Libraries
License: GPLv2+
URL: http://www.videolan.org/developers/libdvbcsa.html
Source0: http://download.videolan.org/pub/videolan/libdvbcsa/%{version}/libdvbcsa-...
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
@@ -22,7 +21,7 @@ a faster parallel bitslice implementation.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
-Requires: %{name} = %{version}-%{release}
+Requires: %{name}%{_isa} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
@@ -43,18 +42,14 @@ developing applications that use %{name}.
%endif
-make %{?_smp_mflags}
+%make_build
%install
-rm -rf $RPM_BUILD_ROOT
-make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
-find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
+%make_install INSTALL="install -p"
+find %{buildroot} -name '*.la' -exec rm -f {} ';'
-%clean
-rm -rf $RPM_BUILD_ROOT
-
%post -p /sbin/ldconfig
@@ -62,17 +57,18 @@ rm -rf $RPM_BUILD_ROOT
%files
-%defattr(-,root,root,-)
%doc AUTHORS COPYING README
%{_libdir}/*.so.*
%files devel
-%defattr(-,root,root,-)
%{_includedir}/dvbcsa/
%{_libdir}/*.so
%changelog
+* Thu Sep 15 2016 Nicolas Chauvet <kwizart(a)gmail.com> - 1.1.0-2
+- Spec file clean-up
+
* Thu Jun 09 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.1.0-1
- Update to 1.1.0
8 years, 1 month
[libdvbcsa/f23] Initial import
by nchauvet
commit 923bfe2c3d4c0e8c6b5c60221acb65e72489a666
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Jan 3 15:30:46 2012 +0100
Initial import
libdvbcsa.spec | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 81 insertions(+)
---
diff --git a/libdvbcsa.spec b/libdvbcsa.spec
new file mode 100644
index 0000000..a746817
--- /dev/null
+++ b/libdvbcsa.spec
@@ -0,0 +1,81 @@
+Name: libdvbcsa
+Version: 1.1.0
+Release: 1%{?dist}
+Summary: DVB Common Scrambling Algorithm with encryption and decryption capabilities
+
+Group: System Environment/Libraries
+License: GPLv2+
+URL: http://www.videolan.org/developers/libdvbcsa.html
+Source0: http://download.videolan.org/pub/videolan/libdvbcsa/%{version}/libdvbcsa-...
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+
+%description
+libdvbcsa is a free and portable implementation of the DVB Common
+Scrambling algorithm with decryption and encryption capabilities.
+
+It comes in two flavors: a classical single packet implementation and
+a faster parallel bitslice implementation.
+
+
+
+%package devel
+Summary: Development files for %{name}
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+
+%description devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+
+%prep
+%setup -q
+
+
+%build
+%configure --disable-static \
+%ifarch %{ix86} x86_64
+ --enable-sse2 --enable-uint64 \
+%endif
+%ifarch ppc ppc64
+ --enable-altivec \
+%endif
+
+
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING README
+%{_libdir}/*.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/dvbcsa/
+%{_libdir}/*.so
+
+
+%changelog
+* Thu Jun 09 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.1.0-1
+- Update to 1.1.0
+
+* Mon Jan 5 2009 kwizart < kwizart at gmail.com > - 1.0.0-1
+- Initial spec file
+
8 years, 1 month
[x264] Update to 0.148-20160924-86b7198 version
by Sérgio M. Basto
commit 1ef590aad90e3acfaae61bad587c627e534d5048
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Sep 27 23:37:19 2016 +0100
Update to 0.148-20160924-86b7198 version
.gitignore | 1 +
sources | 2 +-
x264.spec | 11 +++++++----
3 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index a40918d..227b5de 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
x264-0.144-20150225-c8a773e.tar.bz2
x264-0.148-20160118-5c65704.tar.bz2
/x264-0.148-20160614-a5e06b9.tar.bz2
+/x264-0.148-20160924-86b7198.tar.bz2
diff --git a/sources b/sources
index ebb5a07..46ab657 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-504515ba14fed322ad89cf39f05e78ee x264-0.148-20160614-a5e06b9.tar.bz2
+5d3470475b238807a57d22d39c58277c x264-0.148-20160924-86b7198.tar.bz2
diff --git a/x264.spec b/x264.spec
index 3f60dfa..20355cf 100644
--- a/x264.spec
+++ b/x264.spec
@@ -1,7 +1,7 @@
-# globals for x264-0.148-20160614-a5e06b9.tar.bz2
+# globals for x264-0.148-20160924-86b7198.tar.bz2
%global api 148
-%global gitdate 20160614
-%global gitversion a5e06b9
+%global gitdate 20160924
+%global gitversion 86b7198
%global snapshot %{gitdate}-%{gitversion}
%global gver .%{gitdate}git%{gitversion}
%global branch stable
@@ -30,7 +30,7 @@
Summary: H264/AVC video streams encoder
Name: x264
Version: 0.%{api}
-Release: 11%{?gver}%{?_with_bootstrap:_bootstrap}%{?dist}
+Release: 12%{?gver}%{?_with_bootstrap:_bootstrap}%{?dist}
License: GPLv2+
URL: https://www.videolan.org/developers/x264.html
Source0: %{name}-0.%{api}-%{snapshot}.tar.bz2
@@ -200,6 +200,9 @@ install -pm644 generic/{AUTHORS,COPYING} %{buildroot}%{_pkgdocdir}/
%endif
%changelog
+* Tue Sep 27 2016 Sérgio Basto <sergio(a)serjux.com> - 0.148-12.20160924git86b7198
+- Update to 0.148-20160924-86b7198 version
+
* Fri Aug 26 2016 Dominik Mierzejewski <rpm(a)greysector.net> - 0.148-11.20160614gita5e06b9
- rework asm treatment on i686 and ppc64
- fix adding the 10b suffix to the library name
8 years, 1 month
[x264] Revert "Update to 0.148-20160924-86b7198 version"
by nchauvet
commit 8d052b5d4b12a70a0f7023daf51df436f61145b0
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Sep 27 17:18:48 2016 +0200
Revert "Update to 0.148-20160924-86b7198 version"
This reverts commit 36ac6ae0d5cb72b37ba60a8dc69eae3b147e0935.
.gitignore | 1 -
sources | 2 +-
x264.spec | 16 +++++-----------
3 files changed, 6 insertions(+), 13 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 227b5de..a40918d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,3 @@
x264-0.144-20150225-c8a773e.tar.bz2
x264-0.148-20160118-5c65704.tar.bz2
/x264-0.148-20160614-a5e06b9.tar.bz2
-/x264-0.148-20160924-86b7198.tar.bz2
diff --git a/sources b/sources
index 46ab657..ebb5a07 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5d3470475b238807a57d22d39c58277c x264-0.148-20160924-86b7198.tar.bz2
+504515ba14fed322ad89cf39f05e78ee x264-0.148-20160614-a5e06b9.tar.bz2
diff --git a/x264.spec b/x264.spec
index 0a5ac90..3f60dfa 100644
--- a/x264.spec
+++ b/x264.spec
@@ -1,7 +1,7 @@
-# globals for x264-0.148-20160924-86b7198.tar.bz2
+# globals for x264-0.148-20160614-a5e06b9.tar.bz2
%global api 148
-%global gitdate 20160924
-%global gitversion 86b7198
+%global gitdate 20160614
+%global gitversion a5e06b9
%global snapshot %{gitdate}-%{gitversion}
%global gver .%{gitdate}git%{gitversion}
%global branch stable
@@ -29,8 +29,8 @@
Summary: H264/AVC video streams encoder
Name: x264
-Version: 0.%{api}%{?gver}
-Release: 1%{?_with_bootstrap:_bootstrap}%{?dist}
+Version: 0.%{api}
+Release: 11%{?gver}%{?_with_bootstrap:_bootstrap}%{?dist}
License: GPLv2+
URL: https://www.videolan.org/developers/x264.html
Source0: %{name}-0.%{api}-%{snapshot}.tar.bz2
@@ -200,12 +200,6 @@ install -pm644 generic/{AUTHORS,COPYING} %{buildroot}%{_pkgdocdir}/
%endif
%changelog
-* Sat Sep 24 2016 Sérgio Basto <sergio(a)serjux.com> - 0.148.20160924git86b7198-1
-- Update to 0.148-20160924-86b7198 version
-- Change versioning of the package in order to have better information, now the
- package version include date plus git short commit, as result we may reset the
- release count.
-
* Fri Aug 26 2016 Dominik Mierzejewski <rpm(a)greysector.net> - 0.148-11.20160614gita5e06b9
- rework asm treatment on i686 and ppc64
- fix adding the 10b suffix to the library name
8 years, 1 month