From 68c0d178990884b7e7c473ac37cb86c6e99d0f04 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Sat, 8 Jun 2019 20:43:48 +0000 Subject: [PATCH 01/18] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8da910a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# zimg + +The zimg package \ No newline at end of file From d11fa9f6cd7adfd7a0cbe0388fdb1c920b138ffc Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Sun, 9 Jun 2019 07:48:12 +0200 Subject: [PATCH 02/18] Initial import --- .gitignore | 1 + sources | 1 + zimg.spec | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 .gitignore create mode 100644 sources create mode 100644 zimg.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cae1b65 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/zimg-2.8.tar.gz diff --git a/sources b/sources new file mode 100644 index 0000000..56a6505 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (zimg-2.8.tar.gz) = 1e89087a756798a7ae3bfae3bc8244b29ae8ae7f04f53bdf6c4d4de3cb11412dc1eecd95a4a121bb9077437e633f8fbb665522ff8112ade806d9191ea4b5f7bf diff --git a/zimg.spec b/zimg.spec new file mode 100644 index 0000000..3df3768 --- /dev/null +++ b/zimg.spec @@ -0,0 +1,73 @@ +Name: zimg +Version: 2.8 +Release: 3%{?dist} +Summary: Scaling, color space conversion, and dithering library +License: WTFPL +URL: https://github.com/sekrit-twc/zimg + +Source0: https://github.com/sekrit-twc/zimg/archive/release-%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: gcc-c++ +BuildRequires: libtool + +%description +The "z" library implements the commonly required image processing basics of +scaling, color space conversion, and depth conversion. A simple API enables +conversion between any supported formats to operate with minimal knowledge from +the programmer. All library routines were designed from the ground-up with +correctness, flexibility, and thread-safety as first priorities. Allocation, +buffering, and I/O are cleanly separated from processing, allowing the +programmer to adapt "z" to many scenarios. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%prep +%autosetup -n zimg-release-%{version} + +%build +autoreconf -vif +%configure \ + --disable-static \ + --enable-testapp +%make_build + +%install +%make_install +install -m 755 -p -D testapp %{buildroot}%{_bindir}/testapp + +find %{buildroot} -name '*.la' -delete + +# Pick up docs in the files section +rm -fr %{buildroot}%{_docdir}/%{name} + +%ldconfig_scriptlets + +%files +%license COPYING +%doc README.md ChangeLog +%{_libdir}/lib%{name}.so.2.0.0 +%{_libdir}/lib%{name}.so.2 + +%files devel +%{_bindir}/testapp +%{_includedir}/* +%{_libdir}/lib%{name}.so +%{_libdir}/pkgconfig/%{name}.pc + +%changelog +* Sat Jun 08 2019 Simone Caronni - 2.8-3 +- Review fixes. + +* Sat May 25 2019 Simone Caronni - 2.8-2 +- rpmlint fixes. + +* Thu Mar 28 2019 Simone Caronni - 2.8-1 +- First build. From 899339502835b02cea5d21bc7316c6acbddbe6d9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 05:00:26 +0000 Subject: [PATCH 03/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zimg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zimg.spec b/zimg.spec index 3df3768..b79334a 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg Version: 2.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -63,6 +63,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 2.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Jun 08 2019 Simone Caronni - 2.8-3 - Review fixes. From f130f8df9261b5f7f01a931dbcbbb6e5dc2e7f81 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Mon, 23 Sep 2019 01:13:43 +0100 Subject: [PATCH 04/18] Update to 2.9.2 release --- .gitignore | 1 + sources | 2 +- zimg.spec | 11 +++++++---- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index cae1b65..fa90514 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /zimg-2.8.tar.gz +/zimg-2.9.2.tar.gz diff --git a/sources b/sources index 56a6505..3fd30b1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zimg-2.8.tar.gz) = 1e89087a756798a7ae3bfae3bc8244b29ae8ae7f04f53bdf6c4d4de3cb11412dc1eecd95a4a121bb9077437e633f8fbb665522ff8112ade806d9191ea4b5f7bf +SHA512 (zimg-2.9.2.tar.gz) = b688f8e93a2e4549f2c844cd58c6e0714e6494d6fc8c800dc1b0cdf2278fb9925a646fc332350c1b5d77cef2134bf35e18a873c24ea1979c1adce57bfef68ebe diff --git a/zimg.spec b/zimg.spec index b79334a..232f94f 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,11 +1,11 @@ Name: zimg -Version: 2.8 -Release: 4%{?dist} +Version: 2.9.2 +Release: 1%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg -Source0: https://github.com/sekrit-twc/zimg/archive/release-%{version}.tar.gz#/%{name}-%{version}.tar.gz +Source0: %{url}/archive/release-%{version}/%{name}-%{version}.tar.gz BuildRequires: autoconf BuildRequires: automake @@ -37,7 +37,7 @@ autoreconf -vif %configure \ --disable-static \ --enable-testapp -%make_build +%make_build V=1 %install %make_install @@ -63,6 +63,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Mon Sep 23 2019 Leigh Scott - 2.9.2-1 +- Update to 2.9.2 release + * Sat Jul 27 2019 Fedora Release Engineering - 2.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From e98d74952bc2cbe24a9cafa6b07c8e050e7a606c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 05:19:12 +0000 Subject: [PATCH 05/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zimg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zimg.spec b/zimg.spec index 232f94f..7c5353f 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg Version: 2.9.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -63,6 +63,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 2.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Mon Sep 23 2019 Leigh Scott - 2.9.2-1 - Update to 2.9.2 release From 1d9b8028f5f01b426f6df18e2eb33d39b00b5853 Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Wed, 4 Mar 2020 14:55:51 +0100 Subject: [PATCH 06/18] Update to 2.9.3 --- .gitignore | 1 + sources | 2 +- zimg.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fa90514..570a7d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /zimg-2.8.tar.gz /zimg-2.9.2.tar.gz +/zimg-2.9.3.tar.gz diff --git a/sources b/sources index 3fd30b1..180a453 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zimg-2.9.2.tar.gz) = b688f8e93a2e4549f2c844cd58c6e0714e6494d6fc8c800dc1b0cdf2278fb9925a646fc332350c1b5d77cef2134bf35e18a873c24ea1979c1adce57bfef68ebe +SHA512 (zimg-2.9.3.tar.gz) = dfa5dd8f6f6335f6f5106e792774ae649d056c42c8f586627996be172d98b17e0583c41f1dc421edd0fc27793240df9f87217d8cdfc24a2367646e046109b196 diff --git a/zimg.spec b/zimg.spec index 7c5353f..ebc58b9 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg -Version: 2.9.2 -Release: 2%{?dist} +Version: 2.9.3 +Release: 1%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -63,6 +63,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Wed Mar 04 2020 Simone Caronni - 2.9.3-1 +- Update to 2.9.3. + * Fri Jan 31 2020 Fedora Release Engineering - 2.9.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 6154ceca1397d450e626ca6ebd62a7fb3e2c779f Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Mon, 20 Apr 2020 09:17:43 +0200 Subject: [PATCH 07/18] Fix FTBFS in Rawhide --- zimg.spec | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/zimg.spec b/zimg.spec index ebc58b9..2958d62 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,12 +1,15 @@ Name: zimg Version: 2.9.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg Source0: %{url}/archive/release-%{version}/%{name}-%{version}.tar.gz +# Included in 2.9.4: +Patch: https://github.com/sekrit-twc/zimg/commit/9ae36d7d5f7420eaacd9644451933512fa13d716.patch#/zimg-ftbfs.patch + BuildRequires: autoconf BuildRequires: automake BuildRequires: gcc-c++ @@ -30,7 +33,7 @@ The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep -%autosetup -n zimg-release-%{version} +%autosetup -p1 -n zimg-release-%{version} %build autoreconf -vif @@ -63,6 +66,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Mon Apr 20 2020 Simone Caronni - 2.9.3-2 +- Fix FTBFS in Rawhide. + * Wed Mar 04 2020 Simone Caronni - 2.9.3-1 - Update to 2.9.3. From d56786d5c68d00f6da2b76f2e0a135a786a8d272 Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Mon, 20 Apr 2020 09:37:24 +0200 Subject: [PATCH 08/18] Add patch --- zimg-ftbfs.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 zimg-ftbfs.patch diff --git a/zimg-ftbfs.patch b/zimg-ftbfs.patch new file mode 100644 index 0000000..a86b51c --- /dev/null +++ b/zimg-ftbfs.patch @@ -0,0 +1,18 @@ +From 9ae36d7d5f7420eaacd9644451933512fa13d716 Mon Sep 17 00:00:00 2001 +From: sekrit-twc +Date: Wed, 4 Dec 2019 12:01:26 -0800 +Subject: [PATCH] Update matrix3.cpp + +--- + src/zimg/colorspace/matrix3.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/zimg/colorspace/matrix3.cpp b/src/zimg/colorspace/matrix3.cpp +index 06e0e2fe..b4aeea74 100644 +--- a/src/zimg/colorspace/matrix3.cpp ++++ b/src/zimg/colorspace/matrix3.cpp +@@ -1,3 +1,4 @@ ++#include + #include "matrix3.h" + + namespace zimg { From 02831c8fe99449ca5a2e3dbec883a6be86265d9d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 15:23:15 +0000 Subject: [PATCH 09/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zimg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zimg.spec b/zimg.spec index 2958d62..727fa0c 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg Version: 2.9.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -66,6 +66,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 2.9.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Apr 20 2020 Simone Caronni - 2.9.3-2 - Fix FTBFS in Rawhide. From 60da0a958f35e401be22d96a8ceab725b9bd1f9b Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Sat, 2 Jan 2021 19:07:05 +0100 Subject: [PATCH 10/18] Update to 3.0.1 --- .gitignore | 1 + sources | 2 +- zimg-ftbfs.patch | 18 ------------------ zimg.spec | 10 +++++----- 4 files changed, 7 insertions(+), 24 deletions(-) delete mode 100644 zimg-ftbfs.patch diff --git a/.gitignore b/.gitignore index 570a7d7..8045104 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /zimg-2.8.tar.gz /zimg-2.9.2.tar.gz /zimg-2.9.3.tar.gz +/zimg-3.0.1.tar.gz diff --git a/sources b/sources index 180a453..21114c2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zimg-2.9.3.tar.gz) = dfa5dd8f6f6335f6f5106e792774ae649d056c42c8f586627996be172d98b17e0583c41f1dc421edd0fc27793240df9f87217d8cdfc24a2367646e046109b196 +SHA512 (zimg-3.0.1.tar.gz) = ae117399772d2c35ffa61b8cf5d156edf4ed65e9ffeb2e9e0688c88244fdd1a89c098bd842e3795b33fb0951da97f844fb6ffe27045e3234720f70f842356936 diff --git a/zimg-ftbfs.patch b/zimg-ftbfs.patch deleted file mode 100644 index a86b51c..0000000 --- a/zimg-ftbfs.patch +++ /dev/null @@ -1,18 +0,0 @@ -From 9ae36d7d5f7420eaacd9644451933512fa13d716 Mon Sep 17 00:00:00 2001 -From: sekrit-twc -Date: Wed, 4 Dec 2019 12:01:26 -0800 -Subject: [PATCH] Update matrix3.cpp - ---- - src/zimg/colorspace/matrix3.cpp | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/zimg/colorspace/matrix3.cpp b/src/zimg/colorspace/matrix3.cpp -index 06e0e2fe..b4aeea74 100644 ---- a/src/zimg/colorspace/matrix3.cpp -+++ b/src/zimg/colorspace/matrix3.cpp -@@ -1,3 +1,4 @@ -+#include - #include "matrix3.h" - - namespace zimg { diff --git a/zimg.spec b/zimg.spec index 727fa0c..69aa0b4 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,15 +1,12 @@ Name: zimg -Version: 2.9.3 -Release: 3%{?dist} +Version: 3.0.1 +Release: 1%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg Source0: %{url}/archive/release-%{version}/%{name}-%{version}.tar.gz -# Included in 2.9.4: -Patch: https://github.com/sekrit-twc/zimg/commit/9ae36d7d5f7420eaacd9644451933512fa13d716.patch#/zimg-ftbfs.patch - BuildRequires: autoconf BuildRequires: automake BuildRequires: gcc-c++ @@ -66,6 +63,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Jan 2 2021 Simone Caronni - 3.0.1-1 +- Update to 3.0.1. + * Wed Jul 29 2020 Fedora Release Engineering - 2.9.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 4a3cdb03d0d7da25bd4cd92c58040937fc74596b Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Thu, 7 Jan 2021 08:57:12 +0100 Subject: [PATCH 11/18] Fix build on armv7hl --- zimg.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/zimg.spec b/zimg.spec index 69aa0b4..e98c313 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg Version: 3.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -33,6 +33,10 @@ developing applications that use %{name}. %autosetup -p1 -n zimg-release-%{version} %build +%ifarch armv7hl +CXXFLAGS=$(echo %{optflags} | sed -e 's/ -mfpu=vfpv3-d16//g') +%endif + autoreconf -vif %configure \ --disable-static \ @@ -63,6 +67,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jan 7 2021 Simone Caronni - 3.0.1-2 +- Fix build on armv7hl. + * Sat Jan 2 2021 Simone Caronni - 3.0.1-1 - Update to 3.0.1. From 0e85b670fcad95b8a3d128245fdd46f64f2e0a37 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 01:53:05 +0000 Subject: [PATCH 12/18] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- zimg.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/zimg.spec b/zimg.spec index e98c313..9dc00ac 100644 --- a/zimg.spec +++ b/zimg.spec @@ -7,6 +7,7 @@ URL: https://github.com/sekrit-twc/zimg Source0: %{url}/archive/release-%{version}/%{name}-%{version}.tar.gz +BuildRequires: make BuildRequires: autoconf BuildRequires: automake BuildRequires: gcc-c++ From 2244cc4519db02a8fb306f57dfcda09085a6f701 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 28 Jan 2021 00:42:06 +0000 Subject: [PATCH 13/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zimg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zimg.spec b/zimg.spec index 9dc00ac..76ed984 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -68,6 +68,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jan 28 2021 Fedora Release Engineering - 3.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Thu Jan 7 2021 Simone Caronni - 3.0.1-2 - Fix build on armv7hl. From 156b9584f0d765f0d50eb2dd18f7b05ce2207b5b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 22:18:03 +0000 Subject: [PATCH 14/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zimg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zimg.spec b/zimg.spec index 76ed984..e959fb0 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg Version: 3.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -68,6 +68,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 3.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Thu Jan 28 2021 Fedora Release Engineering - 3.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From c4d6a26762f0d4c95aff1fc2310069156bf89fd8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 05:51:41 +0000 Subject: [PATCH 15/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zimg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zimg.spec b/zimg.spec index e959fb0..c1f8f4e 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg Version: 3.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -68,6 +68,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 3.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 3.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 3246a82541c3fdb0f804611427851490ffc638cb Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 23 Feb 2022 17:35:20 +0100 Subject: [PATCH 16/18] Update to 3.0.3 --- .gitignore | 5 +---- sources | 2 +- zimg.spec | 7 +++++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 8045104..91d7f39 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1 @@ -/zimg-2.8.tar.gz -/zimg-2.9.2.tar.gz -/zimg-2.9.3.tar.gz -/zimg-3.0.1.tar.gz +zimg-*.tar.gz diff --git a/sources b/sources index 21114c2..63bc1d1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zimg-3.0.1.tar.gz) = ae117399772d2c35ffa61b8cf5d156edf4ed65e9ffeb2e9e0688c88244fdd1a89c098bd842e3795b33fb0951da97f844fb6ffe27045e3234720f70f842356936 +SHA512 (zimg-3.0.3.tar.gz) = 859c625599b412ecdd72c73d7618f6c7f9760337f7c8aec69fb97e30e1e65e4da51f6cbc5a2c8ad58cb7fbccdccb5322b95f24166c0204da6a3a8cd862cfb2ab diff --git a/zimg.spec b/zimg.spec index c1f8f4e..9e5c15f 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg -Version: 3.0.1 -Release: 5%{?dist} +Version: 3.0.3 +Release: 1%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -68,6 +68,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Wed Feb 23 2022 Nicolas Chauvet - 3.0.3-1 +- Update to 3.0.3 + * Sat Jan 22 2022 Fedora Release Engineering - 3.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From e38a306bbc37ffc5bc7e5813ae6ba0839e6bfee3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 13:55:25 +0000 Subject: [PATCH 17/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zimg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zimg.spec b/zimg.spec index 9e5c15f..a87d552 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg Version: 3.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -68,6 +68,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 3.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Wed Feb 23 2022 Nicolas Chauvet - 3.0.3-1 - Update to 3.0.3 From ceee51005a2da7b9131fd092e3d676ac65af2c8b Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Tue, 29 Nov 2022 08:19:12 +0100 Subject: [PATCH 18/18] Update to 3.0.4 --- sources | 2 +- zimg.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 63bc1d1..207dd14 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zimg-3.0.3.tar.gz) = 859c625599b412ecdd72c73d7618f6c7f9760337f7c8aec69fb97e30e1e65e4da51f6cbc5a2c8ad58cb7fbccdccb5322b95f24166c0204da6a3a8cd862cfb2ab +SHA512 (zimg-3.0.4.tar.gz) = 94beddb109f0b301f0fecf09ea2761d3707aaa1f0cc1caf682bb3d1d7dcd89164de8388e922758e274914df9c7c7c1a0a0c5192e78f88655ed4c6da0ee51995c diff --git a/zimg.spec b/zimg.spec index a87d552..68d3377 100644 --- a/zimg.spec +++ b/zimg.spec @@ -1,6 +1,6 @@ Name: zimg -Version: 3.0.3 -Release: 2%{?dist} +Version: 3.0.4 +Release: 1%{?dist} Summary: Scaling, color space conversion, and dithering library License: WTFPL URL: https://github.com/sekrit-twc/zimg @@ -68,6 +68,9 @@ rm -fr %{buildroot}%{_docdir}/%{name} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Tue Nov 29 2022 Simone Caronni - 3.0.4-1 +- Update to 3.0.4. + * Sat Jul 23 2022 Fedora Release Engineering - 3.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild