[a52dec/f25] Fix macro in comment
by nchauvet
Summary of changes:
e88c1ef... Fix macro in comment (*)
(*) This commit already existed in another branch; no separate mail sent
8 years, 3 months
[a52dec] Fix macro in comment
by nchauvet
commit e88c1ef713197b8aec9cb61a4601fcd28315c79e
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Aug 23 17:21:41 2016 +0200
Fix macro in comment
a52dec.spec | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/a52dec.spec b/a52dec.spec
index 674df23..bcb497b 100644
--- a/a52dec.spec
+++ b/a52dec.spec
@@ -1,7 +1,7 @@
Summary: A free ATSC A/52 stream decoder
Name: a52dec
Version: 0.7.4
-Release: 20%{?dist}
+Release: 21%{?dist}
License: GPLv2
Group: System Environment/Libraries
URL: http://liba52.sourceforge.net
@@ -65,6 +65,9 @@ This package contains development files for a52dec.
%{_libdir}/liba52.so
%changelog
+* Tue Aug 23 2016 Nicolas Chauvet <nicolas.chauvet(a)kwizart.fr> - 0.7.4-21
+- Fix macro in comment
+
* Tue Aug 16 2016 Sérgio Basto <sergio(a)serjux.com> - 0.7.4-20
- Clean spec, with Vascom, rfbz #4193, add license tag
@@ -97,7 +100,7 @@ This package contains development files for a52dec.
* Mon Oct 1 2007 David Juran <david(a)juran.se> - 0.7.4-11
- Fix Licence tag to be GPLv2
-- Drop %makeinstall macro
+- Drop %%makeinstall macro
- Drop static archive
- Drop djbfft
8 years, 3 months
[kmodtool/el7] Bump for dist
by nchauvet
commit dd93ef612353e5ba5c767479f88eb95878cd8a51
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Aug 23 17:12:12 2016 +0200
Bump for dist
kmodtool.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/kmodtool.spec b/kmodtool.spec
index 6fdc4cb..a94eb95 100755
--- a/kmodtool.spec
+++ b/kmodtool.spec
@@ -1,6 +1,6 @@
Name: kmodtool
Version: 1
-Release: 23%{?dist}
+Release: 23%{?dist}.1
Summary: Tool for building kmod packages
Group: Development/Tools
@@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/%{name}/
%changelog
+* Tue Aug 23 2016 Nicolas Chauvet <nicolas.chauvet(a)kwizart.fr> - 1-23.1
+- Bump for dist
+
* Sat Dec 07 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1-23
- Add support for lpae kernel variant for ARM
8 years, 3 months
[buildsys-build-rpmfusion/el7] Add missing source
by nchauvet
commit 6b12f930dc6ae6b94fb8f93b50846b038607cee6
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Aug 23 16:30:38 2016 +0200
Add missing source
buildsys-build-rpmfusion-macros | 2 ++
1 file changed, 2 insertions(+)
---
diff --git a/buildsys-build-rpmfusion-macros b/buildsys-build-rpmfusion-macros
new file mode 100644
index 0000000..a72136e
--- /dev/null
+++ b/buildsys-build-rpmfusion-macros
@@ -0,0 +1,2 @@
+#Override dist macro for the RPM Fusion buildsys
+%dist .el7
8 years, 3 months
[buildsys-build-rpmfusion/el7] Switch to el7 override dist
by nchauvet
commit 03e282a13354255ce300c4e6817dbd2a3ac4c9dc
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Aug 23 16:24:22 2016 +0200
Switch to el7
override dist
buildsys-build-rpmfusion.spec | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
---
diff --git a/buildsys-build-rpmfusion.spec b/buildsys-build-rpmfusion.spec
index b19975a..d09f981 100755
--- a/buildsys-build-rpmfusion.spec
+++ b/buildsys-build-rpmfusion.spec
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 20
-Release: 64
+Release: 100
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -14,6 +14,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Source2: %{name}-list-kernels.sh
Source5: %{name}-README
Source11: %{name}-kerneldevpkgs-current
+Source20: %{name}-macros
# provide this to avoid a error when generating akmods packages
Provides: buildsys-build-rpmfusion-kerneldevpkgs-akmod-%{_target_cpu}
@@ -73,6 +74,10 @@ install -p -m 0644 %{SOURCE11} $RPM_BUILD_ROOT/%{_datadir}/%{name}/kerneldevpkgs
sed -i 's|^default_prefix=.*|default_prefix=%{_datadir}/%{name}/|' \
$RPM_BUILD_ROOT/%{_bindir}/%{name}-kerneldevpkgs
+# Install dist macro for the buildsys
+mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rpm
+install -pm 0644 %{SOURCE20} $RPM_BUILD_ROOT%{_sysconfdir}/rpm/macros.zz-%{name}
+
%clean
rm -rf $RPM_BUILD_ROOT
@@ -80,12 +85,17 @@ rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
+%config %{_sysconfdir}/rpm/macros.zz-%{name}
%{_bindir}/*
%{_datadir}/%{name}/
%changelog
+* Tue Aug 23 2016 Nicolas Chauvet <nicolas.chauvet(a)kwizart.fr> - 10:20-100
+- Switch to EL7
+- Add %%{_sysconfdir}/rpm/macros.zz-%%{name} to override dist
+
* Wed Apr 22 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 10:20-64
- rebuild for kernel 3.19.5-100.fc20
8 years, 3 months
[kdenlive] Kdenlive 16.08.0 is here
by Sérgio M. Basto
commit 750ee69a854fc3377aa181a7346b29cbc2dcae45
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Aug 23 07:03:53 2016 +0100
Kdenlive 16.08.0 is here
.gitignore | 1 +
kdenlive.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e646986..1c77d64 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/kdenlive-16.04.3.tar.xz
+/kdenlive-16.08.0.tar.xz
diff --git a/kdenlive.spec b/kdenlive.spec
index 2678800..eb16509 100644
--- a/kdenlive.spec
+++ b/kdenlive.spec
@@ -1,7 +1,7 @@
Name: kdenlive
Summary: Non-linear video editor
-Version: 16.04.3
+Version: 16.08.0
Release: 1%{?dist}
License: GPLv2+
@@ -145,6 +145,9 @@ fi
%changelog
+* Tue Aug 23 2016 Sérgio Basto <sergio(a)serjux.com> - 16.08.0-1
+- Kdenlive 16.08.0 is here
+
* Thu Jul 28 2016 Rex Dieter <rdieter(a)fedoraproject.org> - 16.04.3-1
- 16.04.3, add missing 'touch' to %%postun, document kinit workaround
diff --git a/sources b/sources
index 9c156ab..526c538 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-79982708bd27e58855fa4af2ee23302b kdenlive-16.04.3.tar.xz
+007ba69109b1775e7bce2b23b7dbf89c kdenlive-16.08.0.tar.xz
8 years, 3 months
[dvdstyler] rfpkg new-sources DVDStyler-3.0.2.tar.bz2
by Sérgio M. Basto
commit decf37ec9c46836c39b01d6d3b847f00412833cf
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Aug 23 06:06:37 2016 +0100
rfpkg new-sources DVDStyler-3.0.2.tar.bz2
.gitignore | 1 +
sources | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index 9e8bc2a..204b802 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
DVDStyler-2.9.4.tar.bz2
DVDStyler-2.9.6.tar.bz2
/DVDStyler-3.0.2b2.tar.bz2
+/DVDStyler-3.0.2.tar.bz2
diff --git a/sources b/sources
index 0c43411..d6433f8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b39654d2fce3f62e8dba653f7714c449 DVDStyler-3.0.2b2.tar.bz2
+97d0c516f6f1c9e3cf3115c7194111fd DVDStyler-3.0.2.tar.bz2
8 years, 3 months
[dvdstyler] New upstream release 3.0.2
by Sérgio M. Basto
commit 108caf8a8765463316cf0f502b06a9dfffed21f7
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Aug 23 06:01:22 2016 +0100
New upstream release 3.0.2
3.0.2b3.patch | 180 ---------------------------------------------------------
dvdstyler.spec | 15 ++---
2 files changed, 8 insertions(+), 187 deletions(-)
---
diff --git a/dvdstyler.spec b/dvdstyler.spec
index 83c69f0..3e6b629 100644
--- a/dvdstyler.spec
+++ b/dvdstyler.spec
@@ -1,17 +1,16 @@
-%global prerel_real .beta3
-%global prerel b2
+#global prerel_real .beta3
+#global prerel b2
Name: dvdstyler
Epoch: 1
Version: 3.0.2
-Release: 0.2%{?prerel_real}%{?dist}
+Release: 1%{?prerel_real}%{?dist}
Summary: Cross-platform DVD authoring application
Group: Applications/Multimedia
License: GPLv2+
URL: http://www.dvdstyler.de/
Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}%{?prerel}...
-Patch1: 3.0.2b3.patch
# build
BuildRequires: automake autoconf
BuildRequires: gettext
@@ -55,7 +54,6 @@ create navigational DVD menus similar to those found on most commercial DVDs.
%prep
%setup -q -n DVDStyler-%{version}%{?prerel}
-%patch1 -p1 -b beta3
#{__sed} -i 's|_T("xine \\"dvd:/$DIR\\"");|_T("totem \\"dvd://$DIR\\"");|' src/Config.h
%build
@@ -67,11 +65,11 @@ autoreconf -i
--disable-dependency-tracking --with-wx-config=/usr/bin/wx-config-3.0
# docs folder is not smp_mflags safe
make -C docs
-make %{?_smp_mflags}
+%make_build
%install
-make install DESTDIR=%{buildroot}
+%make_install
# License docs go to another place
rm -rf %{buildroot}%{_docdir}/%{name}/COPYING
@@ -94,6 +92,9 @@ desktop-file-install \
%{_mandir}/*/*.gz
%changelog
+* Tue Aug 23 2016 Sérgio Basto <sergio(a)serjux.com> - 1:3.0.2-1
+- New upstream release 3.0.2
+
* Tue Aug 16 2016 Sérgio Basto <sergio(a)serjux.com> - 1:3.0.2-0.2.beta3
- Remove BR:libgnomeui-devel
8 years, 3 months