Initial import.
This commit is contained in:
parent
43109640c1
commit
4332ad5396
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/scour-0.35.tar.gz
|
84
python-scour.spec
Normal file
84
python-scour.spec
Normal file
@ -0,0 +1,84 @@
|
||||
%global modname scour
|
||||
%global sum An SVG scrubber
|
||||
|
||||
Name: python-scour
|
||||
Version: 0.35
|
||||
Release: 2%{?dist}
|
||||
Summary: %{sum}
|
||||
|
||||
License: ASL 2.0
|
||||
URL: https://github.com/scour-project/scour
|
||||
Source0: %{url}/archive/v%{version}.tar.gz#/%{modname}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python-setuptools
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
%{sum}.
|
||||
|
||||
|
||||
%package -n python2-%{modname}
|
||||
Summary: %{sum}
|
||||
%{?python_provide:%python_provide python2-%{modname}}
|
||||
|
||||
|
||||
%description -n python2-%{modname}
|
||||
%{sum}.
|
||||
|
||||
|
||||
%package -n python3-%{modname}
|
||||
Summary: %{sum}
|
||||
%{?python_provide:%python_provide python3-%{modname}}
|
||||
|
||||
|
||||
%description -n python3-%{modname}
|
||||
%{sum}.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -n %{modname}-%{version}
|
||||
|
||||
# Better safe than sorry
|
||||
find . -type f -name '*.py' -exec sed -i /env\ python/d {} ';'
|
||||
find . -type f -name '*.py' -exec sed -i /env\ python/d {} ';'
|
||||
|
||||
%build
|
||||
%py2_build
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%py2_install
|
||||
%py3_install
|
||||
|
||||
|
||||
#%%check
|
||||
#%%{__python2} setup.py test
|
||||
#%%{__python3} setup.py test
|
||||
|
||||
%{!?_licensedir: %global license %doc}
|
||||
|
||||
%files -n python2-%{modname}
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{python2_sitelib}/%{modname}/
|
||||
%{python2_sitelib}/%{modname}-%{version}*
|
||||
|
||||
%files -n python3-%{modname}
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{_bindir}/%{modname}
|
||||
%{python3_sitelib}/%{modname}/
|
||||
%{python3_sitelib}/%{modname}-%{version}*
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Oct 28 2016 Jon Ciesla <limburgher@gmail.com> - 0.35-2
|
||||
- Fix Source0.
|
||||
|
||||
* Fri Oct 28 2016 Jon Ciesla <limburgher@gmail.com> - 0.35-1
|
||||
- Initial package.
|
Loading…
Reference in New Issue
Block a user