[swftools] - Spec cleanup - Update for latest Python guidelines
by Mohamed ElMorabity
commit 065a6774f6d914a64594a8f27f688a3a55c3810b
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Fri Feb 23 16:28:01 2018 +0100
- Spec cleanup
- Update for latest Python guidelines
swftools-0.9.1-prefix.patch | 80 -----------------------------------------
swftools-0.9.2-install.patch | 86 +++++++++++++++++++++++++++++++++++++-------
swftools-0.9.2-prefix.patch | 80 -----------------------------------------
swftools.spec | 48 ++++++++++++-------------
4 files changed, 96 insertions(+), 198 deletions(-)
---
diff --git a/swftools-0.9.2-install.patch b/swftools-0.9.2-install.patch
index ca00f86..92fa6a4 100644
--- a/swftools-0.9.2-install.patch
+++ b/swftools-0.9.2-install.patch
@@ -1,16 +1,78 @@
-diff -up swftools-0.9.2/swfs/Makefile.in.orig swftools-0.9.2/swfs/Makefile.in
---- swftools-0.9.2/swfs/Makefile.in.orig 2012-04-10 14:19:33.650083642 +0200
-+++ swftools-0.9.2/swfs/Makefile.in 2012-04-10 15:32:27.209976521 +0200
-@@ -41,10 +41,8 @@ install:
- $(INSTALL_DATA) ./PreLoaderTemplate.swf $(DESTDIR)/$(pkgdatadir)/swfs/PreLoaderTemplate.swf
- $(INSTALL_DATA) ./tessel_loader.swf $(DESTDIR)/$(pkgdatadir)/swfs/tessel_loader.swf
- $(INSTALL_DATA) ./swft_loader.swf $(DESTDIR)/$(pkgdatadir)/swfs/swft_loader.swf
-- rm -f $(DESTDIR)/$(pkgdatadir)/swfs/default_viewer.swf -o -L $(DESTDIR)/$(pkgdatadir)/swfs/default_viewer.swf
-- $(LN_S) $(DESTDIR)/$(pkgdatadir)/swfs/simple_viewer.swf $(DESTDIR)/$(pkgdatadir)/swfs/default_viewer.swf
-- rm -f $(DESTDIR)/$(pkgdatadir)/swfs/default_loader.swf -o -L $(DESTDIR)/$(pkgdatadir)/swfs/default_loader.swf
-- $(LN_S) $(DESTDIR)/$(pkgdatadir)/swfs/tessel_loader.swf $(DESTDIR)/$(pkgdatadir)/swfs/default_loader.swf
+diff -up ./Makefile.common.in.orig ./Makefile.common.in
+--- ./Makefile.common.in.orig 2010-11-12 20:06:53.000000000 +0100
++++ ./Makefile.common.in 2018-02-23 16:13:00.498244016 +0100
+@@ -69,10 +69,10 @@ man1dir = $(mandir)/man1
+
+ # ------------------- defines -------------------------
+
+-INSTALL_BIN = echo installing $$file to $(bindir);$(INSTALL_PROGRAM) $$file $(bindir)/`echo $$file|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`
+-UNINSTALL_BIN = ff=`echo $$file|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`;echo rm -f $(bindir)/$$ff;rm -f $(bindir)/$$ff
+-INSTALL_MAN1 = ff=$(srcdir)/$$file.1; inst=`echo $$file | sed '$(transform)'`.1; echo "$(INSTALL_DATA) $$ff $(man1dir)/$$inst"; $(INSTALL_DATA) $$ff $(man1dir)/$$inst
+-UNINSTALL_MAN1 = ff=$(srcdir)/$$file.1; inst=`echo $$file | sed '$(transform)'`.1; echo "rm -f $(man1dir)/$$inst"; rm -f $(man1dir)/$$inst
++INSTALL_BIN = echo installing $$file to $(DESTDIR)$(bindir);$(INSTALL_PROGRAM) $$file $(DESTDIR)/$(bindir)/`echo $$file|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`
++UNINSTALL_BIN = ff=`echo $$file|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`;echo rm -f $(DESTDIR)/$(bindir)/$$ff;rm -f $(DESTDIR)/$(bindir)/$$ff
++INSTALL_MAN1 = ff=$(srcdir)/$$file.1; inst=`echo $$file | sed '$(transform)'`.1; echo "$(INSTALL_DATA) $$ff $(DESTDIR)/$(man1dir)/$$inst"; $(INSTALL_DATA) $$ff $(DESTDIR)/$(man1dir)/$$inst
++UNINSTALL_MAN1 = ff=$(srcdir)/$$file.1; inst=`echo $$file | sed '$(transform)'`.1; echo "rm -f $(man1dir)/$$inst"; rm -f $(DESTDIR)/$(man1dir)/$$inst
+
+ #%.o: %.c
+ # $(C) $< -o $@
+diff -up ./src/Makefile.in.orig ./src/Makefile.in
+--- ./src/Makefile.in.orig 2018-02-23 16:14:24.951532590 +0100
++++ ./src/Makefile.in 2018-02-23 16:14:45.183603506 +0100
+@@ -134,8 +134,8 @@ swfc$(E): parser.$(O) swfc.$(O) swfc-fee
+ $(STRIP) $@
+
+ install:
+- $(mkinstalldirs) $(bindir)
+- $(mkinstalldirs) $(man1dir)
++ $(mkinstalldirs) $(DESTDIR)/$(bindir)
++ $(mkinstalldirs) $(DESTDIR)/$(man1dir)
+ @for file in $(install_programs); do if test -f $$file;then $(INSTALL_BIN);$(INSTALL_MAN1);fi;done
+
+ uninstall:
+diff -up ./swfs/Makefile.in.orig ./swfs/Makefile.in
+--- ./swfs/Makefile.in.orig 2012-04-08 19:25:26.000000000 +0200
++++ ./swfs/Makefile.in 2018-02-23 16:18:36.604465653 +0100
+@@ -34,26 +34,24 @@ PreLoaderTemplate.swf: $(programs)
+ ./PreLoaderTemplate$(E) || true
+
+ install:
+- $(mkinstalldirs) $(pkgdatadir)
+- $(mkinstalldirs) $(pkgdatadir)/swfs
+- $(INSTALL_DATA) ./simple_viewer.swf $(pkgdatadir)/swfs/simple_viewer.swf
+- $(INSTALL_DATA) ./keyboard_viewer.swf $(pkgdatadir)/swfs/keyboard_viewer.swf
+- $(INSTALL_DATA) ./PreLoaderTemplate.swf $(pkgdatadir)/swfs/PreLoaderTemplate.swf
+- $(INSTALL_DATA) ./tessel_loader.swf $(pkgdatadir)/swfs/tessel_loader.swf
+- $(INSTALL_DATA) ./swft_loader.swf $(pkgdatadir)/swfs/swft_loader.swf
+- rm -f $(pkgdatadir)/swfs/default_viewer.swf -o -L $(pkgdatadir)/swfs/default_viewer.swf
+- $(LN_S) $(pkgdatadir)/swfs/simple_viewer.swf $(pkgdatadir)/swfs/default_viewer.swf
+- rm -f $(pkgdatadir)/swfs/default_loader.swf -o -L $(pkgdatadir)/swfs/default_loader.swf
+- $(LN_S) $(pkgdatadir)/swfs/tessel_loader.swf $(pkgdatadir)/swfs/default_loader.swf
++ $(mkinstalldirs) $(DESTDIR)/$(pkgdatadir)
++ $(mkinstalldirs) $(DESTDIR)/$(pkgdatadir)/swfs
++ $(INSTALL_DATA) ./simple_viewer.swf $(DESTDIR)/$(pkgdatadir)/swfs/simple_viewer.swf
++ $(INSTALL_DATA) ./keyboard_viewer.swf $(DESTDIR)/$(pkgdatadir)/swfs/keyboard_viewer.swf
++ $(INSTALL_DATA) ./PreLoaderTemplate.swf $(DESTDIR)/$(pkgdatadir)/swfs/PreLoaderTemplate.swf
++ $(INSTALL_DATA) ./tessel_loader.swf $(DESTDIR)/$(pkgdatadir)/swfs/tessel_loader.swf
++ $(INSTALL_DATA) ./swft_loader.swf $(DESTDIR)/$(pkgdatadir)/swfs/swft_loader.swf
+ $(LN_S) simple_viewer.swf $(DESTDIR)/$(pkgdatadir)/swfs/default_viewer.swf
+ $(LN_S) tessel_loader.swf $(DESTDIR)/$(pkgdatadir)/swfs/default_loader.swf
uninstall:
- $(UNINSTALL_DATA) $(DESTDIR)/$(pkgdatadir)/swfs/simple_viewer.swf
+- $(UNINSTALL_DATA) $(pkgdatadir)/swfs/simple_viewer.swf
+- $(UNINSTALL_DATA) $(pkgdatadir)/swfs/keyboard_viewer.swf
+- $(UNINSTALL_DATA) $(pkgdatadir)/swfs/PreLoaderTemplate.swf
+- $(UNINSTALL_DATA) $(pkgdatadir)/swfs/tessel_loader.swf
+- $(UNINSTALL_DATA) $(pkgdatadir)/swfs/swft_loader.swf
+- $(UNINSTALL_DATA) $(pkgdatadir)/swfs/default_viewer.swf
+- $(UNINSTALL_DATA) $(pkgdatadir)/swfs/default_loader.swf
++ $(UNINSTALL_DATA) $(DESTDIR)/$(pkgdatadir)/swfs/simple_viewer.swf
++ $(UNINSTALL_DATA) $(DESTDIR)/$(pkgdatadir)/swfs/keyboard_viewer.swf
++ $(UNINSTALL_DATA) $(DESTDIR)/$(pkgdatadir)/swfs/PreLoaderTemplate.swf
++ $(UNINSTALL_DATA) $(DESTDIR)/$(pkgdatadir)/swfs/tessel_loader.swf
++ $(UNINSTALL_DATA) $(DESTDIR)/$(pkgdatadir)/swfs/swft_loader.swf
++ $(UNINSTALL_DATA) $(DESTDIR)/$(pkgdatadir)/swfs/default_viewer.swf
++ $(UNINSTALL_DATA) $(DESTDIR)/$(pkgdatadir)/swfs/default_loader.swf
+
+ clean:
+ rm -f *.o *.obj *.lo *.a *.lib *.la gmon.out
diff --git a/swftools.spec b/swftools.spec
index cad89fc..5e3d686 100644
--- a/swftools.spec
+++ b/swftools.spec
@@ -1,12 +1,6 @@
-# Filter Python modules from Provides
-%{?filter_setup:
-%filter_provides_in %{python_sitearch}/.*\.so$
-%filter_setup
-}
-
Name: swftools
Version: 0.9.2
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: SWF manipulation and generation utilities
Group: Applications/Multimedia
@@ -15,16 +9,15 @@ Group: Applications/Multimedia
License: GPLv3+ and LGPLv2+ and BSD
URL: http://www.swftools.org/
Source0: http://www.swftools.org/%{name}-%{version}.tar.gz
-# Add prefix to installation paths
-Patch0: swftools-0.9.2-prefix.patch
# Fix installation
-Patch1: swftools-0.9.2-install.patch
+Patch0: swftools-0.9.2-install.patch
BuildRequires: fftw-devel
BuildRequires: fontconfig-devel
BuildRequires: giflib-devel
BuildRequires: lame-devel
-BuildRequires: python-imaging-devel
+BuildRequires: python2-devel
+BuildRequires: python2-pillow-devel
BuildRequires: zziplib-devel
%description
@@ -34,19 +27,18 @@ them, and creating them from other content (like images, sound files, videos or
source code).
-%package -n python-%{name}
+%package -n python2-%{name}
Summary: Python bindings for %{name}
Group: System Environment/Libraries
Requires: %{name} = %{version}-%{release}
+%{?python_provide:%python_provide python2-%{name}}
-%description -n python-%{name}
+%description -n python2-%{name}
This package provides Python bindings for %{name}.
%prep
-%setup -q
-%patch0 -p1 -b .prefix
-%patch1 -p1 -b .install
+%autosetup -p0
# Fix permissions
chmod -x lib/*.[ch] lib/action/*.[ch]
@@ -60,8 +52,8 @@ done
%build
-export PYTHON_INCLUDES=$(python-config --includes)/Imaging/
-export PYTHON_LIB=$(python-config --libs)
+export PYTHON_INCLUDES=$(python2-config --includes)/Imaging/
+export PYTHON_LIB=$(python2-config --libs)
export PYTHON_LIB2=$PYTHON_LIB
export HAVE_PYTHON_IMAGING_LIB=1
%configure
@@ -71,22 +63,27 @@ make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT
-install -dm 0755 $RPM_BUILD_ROOT%{python_sitearch}/
-install -Dp lib/python/*.so $RPM_BUILD_ROOT%{python_sitearch}/
+install -dm 0755 $RPM_BUILD_ROOT%{python2_sitearch}/
+install -Dp lib/python/*.so $RPM_BUILD_ROOT%{python2_sitearch}/
%files
-%doc AUTHORS ChangeLog COPYING doc/fileformat.sc
+%doc AUTHORS ChangeLog doc/fileformat.sc
+%license COPYING
%{_bindir}/*
%{_mandir}/man1/*.1.*
%{_datadir}/%{name}/
-%files -n python-%{name}
+%files -n python2-%{name}
%{python_sitearch}/*.so
%changelog
+* Fri Feb 23 2018 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 0.9.2-7
+- Spec cleanup
+- Update for latest Python guidelines
+
* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.9.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
@@ -94,8 +91,7 @@ install -Dp lib/python/*.so $RPM_BUILD_ROOT%{python_sitearch}/
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Mon Aug 01 2016 Sérgio Basto <sergio(a)serjux.com> - 0.9.2-4
--
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_...
+- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_...
* Sun Aug 31 2014 Sérgio Basto <sergio(a)serjux.com> - 0.9.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
@@ -115,7 +111,7 @@ install -Dp lib/python/*.so $RPM_BUILD_ROOT%{python_sitearch}/
* Wed Nov 30 2011 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 0.9.1-4
- Spec cleanup
-* Thu Jan 10 2011 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 0.9.1-3
+* Mon Jan 10 2011 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 0.9.1-3
- Remove pdflib-devel from BuildRequires
* Thu Nov 11 2010 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 0.9.1-2
@@ -126,5 +122,5 @@ install -Dp lib/python/*.so $RPM_BUILD_ROOT%{python_sitearch}/
- Update to 0.9.1
- Disable Python modules build (broken in 0.9.1)
-* Wed Jun 3 2010 Mohamed El Morabity <melmorabity(a)fedoraproject.org> 0.9.0-1
+* Thu Jun 3 2010 Mohamed El Morabity <melmorabity(a)fedoraproject.org> 0.9.0-1
- Initial RPM release
6 years, 8 months
[qt5-qtwebengine-freeworld] Reduce jumbo_file_merge_limit from 50 to 10 on aarch64
by Kevin Kofler
commit 6b69f6e9c503ffebc31725337e5e8f1beeb6e562
Author: Kevin Kofler <kevin.kofler(a)chello.at>
Date: Fri Feb 23 12:42:00 2018 +0100
Reduce jumbo_file_merge_limit from 50 to 10 on aarch64
20 is still too much.
qt5-qtwebengine-freeworld.spec | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/qt5-qtwebengine-freeworld.spec b/qt5-qtwebengine-freeworld.spec
index aef4aae..1fe20e3 100644
--- a/qt5-qtwebengine-freeworld.spec
+++ b/qt5-qtwebengine-freeworld.spec
@@ -371,7 +371,7 @@ sed -i -e 's/symbol_level=1/symbol_level=2/g' src/core/config/common.pri
%endif
%ifarch aarch64
-sed -i -e 's/jumbo_file_merge_limit=50/jumbo_file_merge_limit=20/g' src/core/config/common.pri
+sed -i -e 's/jumbo_file_merge_limit=50/jumbo_file_merge_limit=10/g' src/core/config/common.pri
%endif
# generate qtwebengine-3rdparty.qdoc, it is missing from the tarball
@@ -429,7 +429,7 @@ echo "%{_libdir}/%{name}" \
- Workaround FTBFS with GCC 8, build with -fabi-version=11 on F28+ (rh#1545918)
- Reenable system libvpx on F28+, Rawhide (future F28) has libvpx 1.7.0 now
- Fix build with FFmpeg 3.5 (apply conditionally because it breaks older FFmpeg)
-- Reduce jumbo_file_merge_limit from 50 to 20 on aarch64
+- Reduce jumbo_file_merge_limit from 50 to 10 on aarch64
* Sat Dec 30 2017 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 5.10.0-1
- Update to 5.10.0
6 years, 8 months
[xpra-codecs-freeworld] Use --without-strict option (upstream bug #1772)
by Antonio
commit c1867fe397fc76c3765bdaaa44a03380cc031e23
Author: sagitter <sagitter(a)fedoraproject.org>
Date: Fri Feb 23 11:32:56 2018 +0100
Use --without-strict option (upstream bug #1772)
xpra-codecs-freeworld.spec | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/xpra-codecs-freeworld.spec b/xpra-codecs-freeworld.spec
index e66bde5..f96fd8c 100644
--- a/xpra-codecs-freeworld.spec
+++ b/xpra-codecs-freeworld.spec
@@ -19,7 +19,7 @@
Name: xpra-codecs-freeworld
Version: 2.2.4
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Additional codecs for xpra using x264 and ffmpeg
License: GPLv2+
@@ -61,11 +61,7 @@ x264 and ffmpeg.
%endif
%build
-%if 0%{?fedora} > 27
-CFLAGS="%{optflags} -Wno-error=deprecated-declarations" %{__python2} setup.py build --executable="%{__python2} -s" \
-%else
CFLAGS="%{optflags}" %{__python2} setup.py build --executable="%{__python2} -s" \
-%endif
%{?_with_enc_x264} \
%{?_with_dec_avcodec2} \
%{?_with_csc_swscale} \
@@ -75,6 +71,9 @@ CFLAGS="%{optflags}" %{__python2} setup.py build --executable="%{__python2} -s"
--without-html5 \
--without-tests \
--with-verbose \
+%if 0%{?fedora} > 27
+ --without-strict \
+%endif
--without-html5_gzip --without-html5_brotli
%install
@@ -115,6 +114,9 @@ find %{buildroot}%{python2_sitearch}/xpra -name '*.so' \
%license COPYING
%changelog
+* Fri Feb 23 2018 Antonio Trande <sagitter(a)fedoraproject.org> - 2.2.4-3
+- Use --without-strict option (upstream bug #1772)
+
* Thu Feb 22 2018 Antonio Trande <sagitter(a)fedoraproject.org> - 2.2.4-2
- Fix ?_isa macro
- Add gcc BR
6 years, 8 months
[mock-rpmfusion-nonfree/el6] (16 commits) ...Merge branch 'el6'
by Sérgio M. Basto
Summary of changes:
5262df2... Update to 19.1 (*)
ab62341... Update to 20.0 (*)
f664663... Update to 20.1 (*)
2fc29a8... Update to 21.0 (*)
3d41eda... Update to fedora-22 (*)
0ec0ea1... Update to 23.0 (*)
2620c9b... Update to 24.0 (*)
af2436f... Update to 25.0 (*)
a794591... Update package requires to mock >= 1.2.19 (*)
3534c57... Fix el-round.sh typo (*)
0af5f9f... Add configuration files for Fedora 26 Remove Configuration (*)
fcf159b... - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass (*)
ddd500e... Add configuration files for Fedora 27 Remove Configuration (*)
25752b7... Move rpmfusion buildroot to branch F28 Prepare new version (*)
53db9a0... Merge commit '3d41eda7f87f05a219bea1e32c6e7a96fd6001ff' int (*)
49961f0... Merge branch 'el6' (*)
(*) This commit already existed in another branch; no separate mail sent
6 years, 8 months
[mock-rpmfusion-nonfree: 7/7] Merge branch 'el6'
by Sérgio M. Basto
commit 49961f01b7492e58893d9859d1a3ca18fd1888f6
Merge: 25752b7 53db9a0
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Fri Feb 23 06:40:18 2018 +0000
Merge branch 'el6'
---
6 years, 8 months
[mock-rpmfusion-nonfree] (7 commits) ...Merge branch 'el6'
by Sérgio M. Basto
Summary of changes:
2776b3b... Update to 19.1 (*)
66b2e65... Rebuilt (*)
713346b... Update to 20.0 (*)
672a4a6... Update to 20.1 (*)
185fb45... Update to fedora-22 (*)
53db9a0... Merge commit '3d41eda7f87f05a219bea1e32c6e7a96fd6001ff' int
49961f0... Merge branch 'el6'
(*) This commit already existed in another branch; no separate mail sent
6 years, 8 months
[mock-rpmfusion-nonfree] Move rpmfusion buildroot to branch F28 Prepare new version and drop F25 Fix locations of fedora-seco
by Sérgio M. Basto
commit 25752b77a30568037359d461cf752d2e3009afcf
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Fri Feb 23 06:34:47 2018 +0000
Move rpmfusion buildroot to branch F28
Prepare new version and drop F25
Fix locations of fedora-secondary arches
.gitignore | 1 +
mock-rpmfusion-nonfree.spec | 10 +++++++++-
sources | 2 +-
3 files changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4088eff..7b52977 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ mock-rpmfusion-nonfree-23.0.tar.bz2
/mock-rpmfusion-nonfree-25.2.tar.bz2
/mock-rpmfusion-nonfree-26.0.tar.bz2
/mock-rpmfusion-nonfree-27.0.tar.bz2
+/mock-rpmfusion-nonfree-27.1.tar.bz2
diff --git a/mock-rpmfusion-nonfree.spec b/mock-rpmfusion-nonfree.spec
index 33a2a4b..24fcf53 100644
--- a/mock-rpmfusion-nonfree.spec
+++ b/mock-rpmfusion-nonfree.spec
@@ -1,5 +1,5 @@
Name: mock-rpmfusion-nonfree
-Version: 27.0
+Version: 27.1
Release: 1%{?dist}
Summary: Mock config files for the RPM Fusion NonFree Repository
@@ -34,10 +34,18 @@ install -pm 0644 etc/mock/*_nonfree.cfg %{buildroot}%{_sysconfdir}/mock
%changelog
+* Fri Feb 23 2018 Sérgio Basto <sergio(a)serjux.com> - 27.1-1
+- Move rpmfusion buildroot to branch F28
+- Prepare new version and drop F25
+- Fix locations of fedora-secondary arches
+
* Tue Aug 22 2017 Sérgio Basto <sergio(a)serjux.com> - 27.0-1
- Add configuration files for Fedora 27
- Remove Configuration files for Fedora 24
+* Sun Mar 26 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 26.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Thu Mar 02 2017 Sérgio Basto <sergio(a)serjux.com> - 26.0-1
- Add configuration files for Fedora 26
- Remove Configuration files for Fedora 23
diff --git a/sources b/sources
index 9c026f6..e5b35e7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-53e2f93c7644c95fcdaf533c51cdd60e mock-rpmfusion-nonfree-27.0.tar.bz2
+b628ff27bcea904b351fe4046b9fbaf6 mock-rpmfusion-nonfree-27.1.tar.bz2
6 years, 8 months
[mock-rpmfusion-free] Move rpmfusion buildroot to branch F28 Prepare new version and drop F25 Fix locations of fedora-seco
by Sérgio M. Basto
commit ac301f50fe07c6d754df4e23ec0cdb8b36fe18e7
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Fri Feb 23 06:32:56 2018 +0000
Move rpmfusion buildroot to branch F28
Prepare new version and drop F25
Fix locations of fedora-secondary arches
.gitignore | 1 +
mock-rpmfusion-free.spec | 10 +++++++++-
sources | 2 +-
3 files changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index be91154..eac94eb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ mock-rpmfusion-free-23.0.tar.bz2
/mock-rpmfusion-free-25.2.tar.bz2
/mock-rpmfusion-free-26.0.tar.bz2
/mock-rpmfusion-free-27.0.tar.bz2
+/mock-rpmfusion-free-27.1.tar.bz2
diff --git a/mock-rpmfusion-free.spec b/mock-rpmfusion-free.spec
index 23965ce..df713e6 100644
--- a/mock-rpmfusion-free.spec
+++ b/mock-rpmfusion-free.spec
@@ -1,5 +1,5 @@
Name: mock-rpmfusion-free
-Version: 27.0
+Version: 27.1
Release: 1%{?dist}
Summary: Mock config files for the RPM Fusion Free Repository
@@ -34,10 +34,18 @@ install -pm 0644 etc/mock/*_free.cfg %{buildroot}%{_sysconfdir}/mock
%changelog
+* Fri Feb 23 2018 Sérgio Basto <sergio(a)serjux.com> - 27.1-1
+- Move rpmfusion buildroot to branch F28
+- Prepare new version and drop F25
+- Fix locations of fedora-secondary arches
+
* Tue Aug 22 2017 Sérgio Basto <sergio(a)serjux.com> - 27.0-1
- Add configuration files for Fedora 27
- Remove Configuration files for Fedora 24
+* Sun Mar 26 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 26.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Thu Mar 02 2017 Sérgio Basto <sergio(a)serjux.com> - 26.0-1
- Add configuration files for Fedora 26
- Remove Configuration files for Fedora 23
diff --git a/sources b/sources
index 071d911..17cf6ec 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3cfa54a9d2934fa3997e14cc5fc7d0c1 mock-rpmfusion-free-27.0.tar.bz2
+27353f1d2c78858ee5087e420e3f8706 mock-rpmfusion-free-27.1.tar.bz2
6 years, 8 months
[mock-rpmfusion-free/el6] (18 commits) ...Merge branch 'el6'
by Sérgio M. Basto
Summary of changes:
9c9ee08... Bump (*)
341199d... Update to 19.1 (*)
801a69c... Update to 20.0 (*)
05885a6... Update to 20.1 (*)
d857ad1... Update to 21.0 (*)
0b3c07c... Update sources (*)
d761ce5... Update to mock fedora 22 (*)
1e68d09... Update to 23.0 (*)
8550379... Update to 24.0 (*)
513012c... Update to 25.0 (*)
2153991... update mock-rpmfusion-free-25.0.tar.bz2 source (*)
23d3bc3... Update package requires to mock >= 1.2.19 (*)
062a86c... Fix el-round.sh typo Not include rpmfusion-buildsys-epel-te (*)
68eef8c... Add configuration files for Fedora 26 Remove Configuration (*)
fc3bf18... - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass (*)
2cc46a2... Add configuration files for Fedora 27 Remove Configuration (*)
df2c568... Merge commit 'd761ce5ce10b7dff94fae1e5ce12688bd4c1123d' int (*)
cb7f259... Merge branch 'el6' (*)
(*) This commit already existed in another branch; no separate mail sent
6 years, 8 months