Use v1.0 tarball from github.
This commit is contained in:
parent
dfef458f96
commit
27f5183b26
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/productmd-1.0.tar.bz2
|
/productmd-1.0.tar.bz2
|
||||||
|
/productmd-1.0.tar.gz
|
||||||
|
@ -1,25 +1,24 @@
|
|||||||
%if 0%{?fedora} > 12
|
|
||||||
%global with_python3 1
|
%global with_python3 1
|
||||||
%else
|
|
||||||
|
%if 0%{?fedora} && 0%{?fedora} <= 12
|
||||||
|
%global with_python3 0
|
||||||
|
%endif
|
||||||
|
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
||||||
%{!?__python2: %global __python2 /usr/bin/python2}
|
%{!?__python2: %global __python2 /usr/bin/python2}
|
||||||
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||||
%else
|
%global with_python3 0
|
||||||
%global with_python3 1
|
|
||||||
%endif
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: python-productmd
|
Name: python-productmd
|
||||||
Version: 1.0
|
Version: 1.0
|
||||||
Release: 8%{?dist}.git3b72969
|
Release: 9%{?dist}
|
||||||
Summary: Library providing parsers for metadata related to OS installation
|
Summary: Library providing parsers for metadata related to OS installation
|
||||||
|
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: https://github.com/release-engineering/productmd
|
URL: https://github.com/release-engineering/productmd
|
||||||
#tarball made by running python2 setup.py sdist in the checkout
|
Source0: productmd-%{version}.tar.gz
|
||||||
#commit has used: 3b72969cca33021954ee61746c9ba5b3e3d47dd9
|
|
||||||
Source0: productmd-%{version}.tar.bz2
|
|
||||||
BuildRequires: python2-devel python-setuptools
|
BuildRequires: python2-devel python-setuptools
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
BuildRequires: python3-devel python3-setuptools
|
BuildRequires: python3-devel python3-setuptools
|
||||||
@ -29,14 +28,31 @@ BuildRequires: python-six
|
|||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
# this must go after all 'License:' tags
|
||||||
|
%{!?_licensedir:%global license %doc}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Python library providing parsers for metadata related to composes
|
Python library providing parsers for metadata related to composes
|
||||||
and installation media.
|
and installation media.
|
||||||
|
|
||||||
|
%package -n python2-productmd
|
||||||
|
Summary: Library providing parsers for metadata related to OS installation
|
||||||
|
Group: Development/Tools
|
||||||
|
Obsoletes: python-productmd <= %{version}-%{release}
|
||||||
|
Provides: python-productmd = %{version}-%{release}
|
||||||
|
Obsoletes: productmd <= %{version}-%{release}
|
||||||
|
Provides: productmd = %{version}-%{release}
|
||||||
|
Requires: python-six
|
||||||
|
|
||||||
|
%description -n python2-productmd
|
||||||
|
Python library providing parsers for metadata related to composes
|
||||||
|
and installation media.
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
%package -n python3-productmd
|
%package -n python3-productmd
|
||||||
Summary: Library providing parsers for metadata related to OS installation
|
Summary: Library providing parsers for metadata related to OS installation
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
|
Requires: python3-six
|
||||||
|
|
||||||
%description -n python3-productmd
|
%description -n python3-productmd
|
||||||
Python library providing parsers for metadata related to composes
|
Python library providing parsers for metadata related to composes
|
||||||
@ -84,10 +100,10 @@ pushd python3
|
|||||||
popd
|
popd
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files
|
%files -n python2-productmd
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc AUTHORS
|
%doc AUTHORS
|
||||||
%{python_sitelib}/productmd/
|
%{python_sitelib}/productmd/
|
||||||
%{python_sitelib}/productmd-%{version}-py?.?.egg-info
|
%{python_sitelib}/productmd-%{version}-py?.?.egg-info
|
||||||
|
|
||||||
@ -95,12 +111,18 @@ popd
|
|||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
%files -n python3-productmd
|
%files -n python3-productmd
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc AUTHORS
|
%doc AUTHORS
|
||||||
%{python3_sitelib}/productmd/
|
%{python3_sitelib}/productmd/
|
||||||
%{python3_sitelib}/productmd-%{version}-py?.?.egg-info
|
%{python3_sitelib}/productmd-%{version}-py?.?.egg-info
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Dec 11 2015 Daniel Mach <dmach@redhat.com> - 1.0-9
|
||||||
|
- Use v1.0 tarball from github
|
||||||
|
- Rename python-productmd to python2-productmd
|
||||||
|
- Fix spec for el6 (license macro)
|
||||||
|
- Add dependency on python(3)-six
|
||||||
|
|
||||||
* Wed Dec 09 2015 Dennis Gilmore <dennis@ausil.us> - 1.0-8.git3b72969
|
* Wed Dec 09 2015 Dennis Gilmore <dennis@ausil.us> - 1.0-8.git3b72969
|
||||||
- enable building only on python 2 on epel
|
- enable building only on python 2 on epel
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user