Compare commits

...
Sign in to create a new pull request.

14 commits

Author SHA1 Message Date
Simone Caronni
32522e4c3c Update to 3.0.6 2025-08-19 13:04:24 +02:00
Simone Caronni
eacf1fa22b Convert to %autorelease and %autochangelog
[skip changelog]
2025-08-19 13:03:50 +02:00
Simone Caronni
b5e53d7d9c Update to 3.0.5 2023-10-09 11:21:52 +02:00
Simone Caronni
52949fd2b7 Update to 3.0.4 2022-11-29 08:20:05 +01:00
Simone Caronni
53657f17b7 Update to 3.0.3 2022-03-02 08:28:30 +01:00
Simone Caronni
9431193742 Fix build on armv7hl 2021-01-07 08:57:27 +01:00
Simone Caronni
8edaf7a0d4 Merge from master 2021-01-02 19:09:25 +01:00
Troy Dawson
76d5822cfd remove package.cfg per new epel-playground policy 2020-09-24 16:12:49 +00:00
Simone Caronni
0aaaaed416 Update to 2.9.3 2020-03-04 14:58:22 +01:00
Fedora Release Engineering
16fbb3ba51 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-03-04 14:58:18 +01:00
Leigh Scott
5377fa8af2 Update to 2.9.2 release 2020-01-14 07:30:29 +01:00
Fedora Release Engineering
5cccc7f9f1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-08-18 19:39:32 +02:00
Simone Caronni
fcb03426b9 Initial import 2019-08-18 19:39:30 +02:00
Igor Gnatenko
f14ba9f6e8 "Adding package.cfg file" 2019-08-18 14:25:25 +02:00
4 changed files with 110 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
zimg-*.tar.gz

41
changelog Normal file
View file

@ -0,0 +1,41 @@
* Mon Oct 09 2023 Simone Caronni <negativo17@gmail.com> - 3.0.5-1
- Update to 3.0.5.
* Tue Nov 29 2022 Simone Caronni <negativo17@gmail.com> - 3.0.4-1
- Update to 3.0.4.
* Wed Feb 23 2022 Nicolas Chauvet <kwizart@gmail.com> - 3.0.3-1
- Update to 3.0.3
* Thu Jan 7 2021 Simone Caronni <negativo17@gmail.com> - 3.0.1-2
- Fix build on armv7hl.
* Sat Jan 2 2021 Simone Caronni <negativo17@gmail.com> - 3.0.1-1
- Update to 3.0.1.
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Mon Apr 20 2020 Simone Caronni <negativo17@gmail.com> - 2.9.3-2
- Fix FTBFS in Rawhide.
* Wed Mar 04 2020 Simone Caronni <negativo17@gmail.com> - 2.9.3-1
- Update to 2.9.3.
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Mon Sep 23 2019 Leigh Scott <leigh123linux@googlemail.com> - 2.9.2-1
- Update to 2.9.2 release
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Sat Jun 08 2019 Simone Caronni <negativo17@gmail.com> - 2.8-3
- Review fixes.
* Sat May 25 2019 Simone Caronni <negativo17@gmail.com> - 2.8-2
- rpmlint fixes.
* Thu Mar 28 2019 Simone Caronni <negativo17@gmail.com> - 2.8-1
- First build.

1
sources Normal file
View file

@ -0,0 +1 @@
SHA512 (zimg-3.0.6.tar.gz) = 98d7d65085530e0e1d3e25218608867f1e8d978fc759777efe2e6034baa31db10f1dda46ef8e00ec6f3c23b91aea839da076bfa4fcb75d98111a08513f45506d

67
zimg.spec Normal file
View file

@ -0,0 +1,67 @@
Name: zimg
Version: 3.0.6
Release: %autorelease
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
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gcc-c++
BuildRequires: libtool
BuildRequires: make
%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 -p1 -n zimg-release-%{version}
%build
autoreconf -vif
%configure \
--disable-static \
--enable-testapp
%make_build V=1
%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
%autochangelog