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.gz
|
||||
|
@ -1,25 +1,24 @@
|
||||
%if 0%{?fedora} > 12
|
||||
%global with_python3 1
|
||||
%else
|
||||
|
||||
%if 0%{?fedora} && 0%{?fedora} <= 12
|
||||
%global with_python3 0
|
||||
%endif
|
||||
|
||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
||||
%{!?__python2: %global __python2 /usr/bin/python2}
|
||||
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||
%else
|
||||
%global with_python3 1
|
||||
%endif
|
||||
%global with_python3 0
|
||||
%endif
|
||||
|
||||
Name: python-productmd
|
||||
Version: 1.0
|
||||
Release: 8%{?dist}.git3b72969
|
||||
Release: 9%{?dist}
|
||||
Summary: Library providing parsers for metadata related to OS installation
|
||||
|
||||
Group: Development/Tools
|
||||
License: LGPLv2+
|
||||
URL: https://github.com/release-engineering/productmd
|
||||
#tarball made by running python2 setup.py sdist in the checkout
|
||||
#commit has used: 3b72969cca33021954ee61746c9ba5b3e3d47dd9
|
||||
Source0: productmd-%{version}.tar.bz2
|
||||
Source0: productmd-%{version}.tar.gz
|
||||
BuildRequires: python2-devel python-setuptools
|
||||
%if 0%{?with_python3}
|
||||
BuildRequires: python3-devel python3-setuptools
|
||||
@ -29,14 +28,31 @@ BuildRequires: python-six
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
# this must go after all 'License:' tags
|
||||
%{!?_licensedir:%global license %doc}
|
||||
|
||||
%description
|
||||
Python library providing parsers for metadata related to composes
|
||||
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}
|
||||
%package -n python3-productmd
|
||||
Summary: Library providing parsers for metadata related to OS installation
|
||||
Group: Development/Tools
|
||||
Requires: python3-six
|
||||
|
||||
%description -n python3-productmd
|
||||
Python library providing parsers for metadata related to composes
|
||||
@ -84,7 +100,7 @@ pushd python3
|
||||
popd
|
||||
%endif
|
||||
|
||||
%files
|
||||
%files -n python2-productmd
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE
|
||||
%doc AUTHORS
|
||||
@ -101,6 +117,12 @@ popd
|
||||
%endif
|
||||
|
||||
%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
|
||||
- enable building only on python 2 on epel
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user