-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../.git/annex/objects/WW/Pq/SHA256E-s46572854--9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d.tar.gz/SHA256E-s46572854--9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,21 @@ | |
%global srcname pillow | ||
|
||
Name: python-%{srcname} | ||
Version: 9.5.0 | ||
Release: 5%{?dist} | ||
Version: 10.3.0 | ||
Release: 1%{?dist} | ||
Summary: Python Imaging Library (Fork) | ||
|
||
License: HPND | ||
URL: https://python-pillow.org | ||
Source0: https://files.pythonhosted.org/packages/source/P/%{pypi_name}/%{pypi_name}-%{version}.tar.gz | ||
Source0: https://files.pythonhosted.org/packages/source/P/%{pypi_name}/%{srcname}-%{version}.tar.gz | ||
|
||
BuildRequires: python%{python3_pkgversion}-devel | ||
BuildRequires: python%{python3_pkgversion}-setuptools | ||
BuildRequires: zlib-devel | ||
BuildRequires: libjpeg-turbo-devel | ||
BuildRequires: python%{python3_pkgversion}-devel | ||
BuildRequires: python%{python3_pkgversion}-pip | ||
BuildRequires: python%{python3_pkgversion}-setuptools | ||
BuildRequires: python%{python3_pkgversion}-wheel | ||
BuildRequires: pyproject-rpm-macros | ||
|
||
|
||
%description | ||
|
@@ -35,29 +38,29 @@ Summary: %{summary} | |
|
||
%prep | ||
set -ex | ||
%autosetup -n %{pypi_name}-%{version} | ||
%autosetup -n %{srcname}-%{version} | ||
# Remove bundled egg-info | ||
rm -rf %{pypi_name}.egg-info | ||
|
||
|
||
%build | ||
set -ex | ||
%py3_build | ||
%pyproject_wheel | ||
|
||
|
||
%install | ||
set -ex | ||
%py3_install | ||
%pyproject_install | ||
|
||
|
||
%files -n python%{python3_pkgversion}-%{srcname} | ||
%license LICENSE | ||
%doc README.md | ||
%{python3_sitearch}/PIL | ||
%{python3_sitearch}/%{pypi_name}-%{version}-py%{python3_version}.egg-info | ||
|
||
%{python3_sitearch}/%{srcname}-%{version}.dist-info/ | ||
|
||
%changelog | ||
* Thu Aug 01 2024 Odilon Sousa <[email protected]> - 10.3.0-1 | ||
- Release python-pillow 10.3.0 | ||
|
||
* Tue Jan 16 2024 Odilon Sousa <[email protected]> - 9.5.0-5 | ||
- Remove SCL bits | ||
|
||
|