Add python3-librepo subpackage
This commit is contained in:
parent
5ea63a306e
commit
e8713e2e4a
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,3 +9,4 @@
|
|||||||
/librepo-b28e796.tar.xz
|
/librepo-b28e796.tar.xz
|
||||||
/librepo-29872d4.tar.xz
|
/librepo-29872d4.tar.xz
|
||||||
/librepo-c4ee6d2.tar.xz
|
/librepo-c4ee6d2.tar.xz
|
||||||
|
/librepo-4a8f93b.tar.xz
|
||||||
|
56
librepo.spec
56
librepo.spec
@ -1,9 +1,9 @@
|
|||||||
%global gitrev c4ee6d2
|
%global gitrev 4a8f93b
|
||||||
# gitrev is output of: git rev-parse --short HEAD
|
# gitrev is output of: git rev-parse --short HEAD
|
||||||
|
|
||||||
Name: librepo
|
Name: librepo
|
||||||
Version: 1.2.0
|
Version: 1.2.0
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Repodata downloading library
|
Summary: Repodata downloading library
|
||||||
|
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
@ -24,11 +24,11 @@ BuildRequires: gpgme-devel
|
|||||||
BuildRequires: libattr-devel
|
BuildRequires: libattr-devel
|
||||||
BuildRequires: libcurl-devel
|
BuildRequires: libcurl-devel
|
||||||
BuildRequires: openssl-devel
|
BuildRequires: openssl-devel
|
||||||
BuildRequires: pygpgme
|
|
||||||
BuildRequires: python2-devel
|
# prevent provides from nonstandard paths:
|
||||||
BuildRequires: python-flask
|
%filter_provides_in %{python_sitearch}/.*\.so$
|
||||||
BuildRequires: python-nose
|
%filter_provides_in %{python3_sitearch}/.*\.so$
|
||||||
BuildRequires: python-sphinx
|
%filter_setup
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A library providing C and Python (libcURL like) API to downloading repository
|
A library providing C and Python (libcURL like) API to downloading repository
|
||||||
@ -45,23 +45,58 @@ Development files for librepo.
|
|||||||
%package -n python-librepo
|
%package -n python-librepo
|
||||||
Summary: Python bindings for the librepo library
|
Summary: Python bindings for the librepo library
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
|
BuildRequires: pygpgme
|
||||||
|
BuildRequires: python2-devel
|
||||||
|
BuildRequires: python-flask
|
||||||
|
BuildRequires: python-nose
|
||||||
|
BuildRequires: python-sphinx
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
%description -n python-librepo
|
%description -n python-librepo
|
||||||
Python bindings for the librepo library.
|
Python bindings for the librepo library.
|
||||||
|
|
||||||
|
%package -n python3-librepo
|
||||||
|
Summary: Python 3 bindings for the librepo library
|
||||||
|
Group: Development/Languages
|
||||||
|
BuildRequires: python3-pygpgme
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: python3-flask
|
||||||
|
BuildRequires: python3-nose
|
||||||
|
BuildRequires: python3-sphinx
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n python3-librepo
|
||||||
|
Python 3 bindings for the librepo library.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n librepo
|
%setup -q -n librepo
|
||||||
|
|
||||||
|
rm -rf py3
|
||||||
|
mkdir ../py3
|
||||||
|
cp -a . ../py3/
|
||||||
|
mv ../py3 ./
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .
|
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
pushd py3
|
||||||
|
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DPYTHON_DESIRED:str=3 .
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
popd
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make ARGS="-V" test
|
make ARGS="-V" test
|
||||||
|
|
||||||
|
pushd py3
|
||||||
|
make ARGS="-V" test
|
||||||
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
pushd py3
|
||||||
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
popd
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
@ -79,7 +114,14 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
|||||||
%files -n python-librepo
|
%files -n python-librepo
|
||||||
%{python_sitearch}/librepo/
|
%{python_sitearch}/librepo/
|
||||||
|
|
||||||
|
%files -n python3-librepo
|
||||||
|
%{python3_sitearch}/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 03 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.2.0-2
|
||||||
|
- Add target for Python 3 to the spec file
|
||||||
|
- Fix few python3 related issues
|
||||||
|
|
||||||
* Tue Oct 01 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.2.0-1
|
* Tue Oct 01 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.2.0-1
|
||||||
- Better detection of bad content of repomd.xml
|
- Better detection of bad content of repomd.xml
|
||||||
- Close files properly (RhBug: 1012290)
|
- Close files properly (RhBug: 1012290)
|
||||||
|
Loading…
Reference in New Issue
Block a user