143 lines
4.2 KiB
RPMSpec
143 lines
4.2 KiB
RPMSpec
%global srcname pkgconfig
|
|
%global _docdir_fmt %{name}
|
|
|
|
Name: python-%{srcname}
|
|
Version: 1.2.2
|
|
Release: 3%{?dist}
|
|
Summary: A Python interface to the pkg-config command line tool
|
|
|
|
License: MIT
|
|
URL: https://github.com/matze/pkgconfig
|
|
Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
pkgconfig is a Python module to interface with the pkg-config command line
|
|
tool and supports Python 2.6+.
|
|
|
|
It can be used to
|
|
|
|
* check if a package exists
|
|
* check if a package meets certain version requirements
|
|
* query CFLAGS and LDFLAGS
|
|
* parse the output to build extensions with setup.py
|
|
|
|
If pkg-config is not on the path, raises EnvironmentError.
|
|
|
|
%package -n python2-%{srcname}
|
|
Summary: A Python2 interface to the pkg-config ocmmand line tool
|
|
%{?python_provide:%python_provide python2-%{srcname}}
|
|
BuildRequires: python2-devel
|
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
|
BuildRequires: python-setuptools
|
|
# For tests
|
|
BuildRequires: python-nose
|
|
%else
|
|
BuildRequires: python2-setuptools
|
|
# For tests
|
|
BuildRequires: python2-nose
|
|
%endif
|
|
|
|
%description -n python2-%{srcname}
|
|
pkgconfig is a Python module to interface with the pkg-config command line
|
|
tool and supports Python 2.6+.
|
|
|
|
It can be used to
|
|
|
|
* check if a package exists
|
|
* check if a package meets certain version requirements
|
|
* query CFLAGS and LDFLAGS
|
|
* parse the output to build extensions with setup.py
|
|
|
|
If pkg-config is not on the path, raises EnvironmentError.
|
|
|
|
Python 2 version.
|
|
|
|
%package -n python%{python3_pkgversion}-%{srcname}
|
|
Summary: A Python3 interface to the pkg-config command line tool
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
|
# For tests
|
|
BuildRequires: python%{python3_pkgversion}-nose
|
|
|
|
%description -n python%{python3_pkgversion}-%{srcname}
|
|
pkgconfig is a Python module to interface with the pkg-config command line
|
|
tool and supports Python 2.6+.
|
|
|
|
It can be used to
|
|
|
|
* check if a package exists
|
|
* check if a package meets certain version requirements
|
|
* query CFLAGS and LDFLAGS
|
|
* parse the output to build extensions with setup.py
|
|
|
|
If pkg-config is not on the path, raises EnvironmentError.
|
|
|
|
Python 3 version.
|
|
|
|
%prep
|
|
%autosetup -n %{srcname}-%{version}
|
|
# Strip shebang
|
|
find -type f -name '*.py' -exec sed -i -e '1{\@^#!/usr/bin/env python@d}' {} ';'
|
|
|
|
%build
|
|
%py2_build
|
|
%py3_build
|
|
|
|
%install
|
|
%py2_install
|
|
%py3_install
|
|
|
|
%check
|
|
%{__python2} setup.py test
|
|
%{__python3} setup.py test
|
|
|
|
%files -n python2-%{srcname}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python2_sitelib}/%{srcname}-*.egg-info/
|
|
%{python2_sitelib}/%{srcname}/
|
|
|
|
%files -n python%{python3_pkgversion}-%{srcname}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python3_sitelib}/%{srcname}-*.egg-info/
|
|
%{python3_sitelib}/%{srcname}/
|
|
|
|
%changelog
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.2.2-2
|
|
- Rebuild for Python 3.6
|
|
|
|
* Sun Dec 04 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.2.2-1
|
|
- Update to 1.2.2
|
|
|
|
* Wed Oct 12 2016 Orion Poplawski <orion@cora.nwra.com> - 1.1.0-7
|
|
- Fix build for EPEL
|
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-6
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
* Sun Feb 14 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.1.0-5
|
|
- Make package compliant with new packaging guidelines
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Mon May 18 2015 Orion Poplawski <orion@cora.nwra.com> - 1.1.0-1
|
|
- Add BR on python-nose
|
|
- Combined build
|
|
|
|
* Sun May 17 2015 Orion Poplawski <orion@cora.nwra.com> - 1.1.0-1
|
|
- Initial package
|