X-Git-Url: http://git.pld-linux.org/?p=packages%2Fcreaterepo_c.git;a=blobdiff_plain;f=createrepo_c.spec;h=fe05a22132af173a3955e66089279e86e5853a7e;hp=d84445137b189b3c0f5d27d1e3c8001d82db275f;hb=HEAD;hpb=8343d24fb77c9e4cc38da96c1d618a2b0e9b9e74 diff --git a/createrepo_c.spec b/createrepo_c.spec index d844451..84fdce3 100644 --- a/createrepo_c.spec +++ b/createrepo_c.spec @@ -1,50 +1,49 @@ # TODO: -# - tests fail (rpm.org vs rpm5 compat problems?) # - drpm support? # # Conditional build: -%bcond_without python3 # CPython 3.x module -%bcond_with tests # make tests +%bcond_with rpm5 # build with rpm5, tests may fail (rpm.org vs rpm5 compat problems?) +%bcond_without tests # make tests Summary: Creates a common metadata repository Summary(pl.UTF-8): Tworzenie wspólnego repozytorium metadanych Name: createrepo_c -Version: 0.10.0 -Release: 3 +Version: 1.1.1 +Release: 1 License: GPL v2+ Group: Applications/System #Source0Download: https://github.com/rpm-software-management/createrepo_c/releases Source0: https://github.com/rpm-software-management/createrepo_c/archive/%{version}/%{name}-%{version}.tar.gz -# Source0-md5: 2e14b3e5d289875b894000ab1e54f1ec +# Source0-md5: 3ba2f7a3d1db713e3292d4e82c894ae5 Patch0: %{name}-rpm5.patch -Patch1: %{name}-python.patch -Patch2: %{name}-include.patch -Patch3: %{name}-bashcompdir.patch URL: https://github.com/rpm-software-management/createrepo_c +BuildRequires: bash-completion-devel >= 1:2.0 BuildRequires: bzip2-devel -BuildRequires: check-devel -BuildRequires: cmake >= 2.6 +BuildRequires: cmake >= 2.8.12 BuildRequires: curl-devel BuildRequires: doxygen #BuildRequires: drpm-devel -BuildRequires: expat-devel BuildRequires: glib2-devel >= 1:2.22.0 -BuildRequires: libmagic-devel +BuildRequires: libmodulemd-devel BuildRequires: libxml2-devel >= 2 BuildRequires: openssl-devel -BuildRequires: python-devel >= 2 +BuildRequires: pkgconfig %{?with_tests:BuildRequires: python-nose} -%if %{with python3} BuildRequires: python3-devel >= 1:3.2 +BuildRequires: python3-modules %{?with_tests:BuildRequires: python3-nose} -%endif -BuildRequires: rpm-devel >= 5 +BuildRequires: python3-setuptools +BuildRequires: rpm-build >= 4.6 +BuildRequires: rpm-devel BuildRequires: rpm-pythonprov BuildRequires: rpmbuild(macros) >= 1.673 -BuildRequires: sphinx-pdg-2 -BuildRequires: sqlite3-devel >= 3 +BuildRequires: sphinx-pdg +BuildRequires: sqlite3-devel >= 3.6.18 BuildRequires: xz-devel +BuildRequires: zchunk-devel BuildRequires: zlib-devel +BuildRequires: zstd-devel +%{?with_tests:BuildRequires: zchunk} Requires: %{name}-libs = %{version}-%{release} BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) @@ -61,6 +60,7 @@ Summary: Library for repodata manipulation Summary(pl.UTF-8): Biblioteka do operacji na danych repozytorium Group: Libraries Requires: glib2 >= 1:2.22.0 +Requires: sqlite3-libs >= 3.6.18 %description libs This package contains the createrepo_c library for applications to @@ -79,12 +79,12 @@ Requires: bzip2-devel Requires: curl-devel Requires: expat-devel Requires: glib2-devel >= 1:2.22.0 -Requires: libmagic-devel Requires: libxml2-devel >= 2 -Requires: rpm-devel >= 5 -Requires: sqlite3-devel >= 3 +Requires: rpm-devel +Requires: sqlite3-devel >= 3.6.18 Requires: xz-devel Requires: zlib-devel +Requires: zstd-devel %description devel This package contains the createrepo_c C header files. These @@ -98,6 +98,7 @@ celu łatwe operowanie na danych repozytorium (repodata). Summary: API documentation for createrepo_c library Summary(pl.UTF-8): Dokumentacja API biblioteki createrepo_c Group: Documentation +BuildArch: noarch %description apidocs API documentation for createrepo_c library. @@ -105,23 +106,12 @@ API documentation for createrepo_c library. %description apidocs -l pl.UTF-8 Dokumentacja API biblioteki createrepo_c. -%package -n python-createrepo_c -Summary: Python 2 bindings for the createrepo_c library -Summary(pl.UTF-8): Wiązania Pythona 2 do biblioteki createrepo_c -Group: Development/Languages/Python -Requires: %{name}-libs = %{version}-%{release} - -%description -n python-createrepo_c -Python 2 bindings for the createrepo_c library. - -%description -n python-createrepo_c -l pl.UTF-8 -Wiązania Pythona 2 do biblioteki createrepo_c. - %package -n python3-createrepo_c Summary: Python 3 bindings for the createrepo_c library Summary(pl.UTF-8): Wiązania Pythona 3 do biblioteki createrepo_c Group: Development/Languages/Python Requires: %{name}-libs = %{version}-%{release} +Obsoletes: python-createrepo_c < 0.17.6 %description -n python3-createrepo_c Python 3 bindings for the createrepo_c library. @@ -134,7 +124,8 @@ Summary: Bash completion for createrepo_c commands Summary(pl.UTF-8): Bashowe uzupełnianie dla poleceń createrepo_c Group: Applications/Shells Requires: %{name} = %{version}-%{release} -Requires: bash-completion >= 2.0 +Requires: bash-completion >= 1:2.0 +BuildArch: noarch %description -n bash-completion-createrepo_c Bash completion for createrepo_c commands (createrepo_c, mergerepo_c, @@ -146,60 +137,32 @@ mergerepo_c, modifyrepo_c). %prep %setup -q -%patch0 -p1 -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 +%{?with_rpm5:%patch0 -p1} %build -install -d build %{?with_python3:build-py3} - +install -d build cd build -%cmake .. \ - -DBASHCOMP_DIR=%{bash_compdir} - -%{__make} -%{__make} doc - -%if %{with tests} -%{__make} tests -%{__make} test \ - ARGS="-V" -%endif -cd .. - -%if %{with python3} -cd build-py3 %cmake .. \ -DBASHCOMP_DIR=%{bash_compdir} \ -DPYTHON_DESIRED=3 %{__make} +%{__make} doc %if %{with tests} %{__make} tests %{__make} test \ ARGS="-V" %endif -cd .. -%endif %install rm -rf $RPM_BUILD_ROOT -%if %{with python3} -%{__make} -C build-py3 install \ - DESTDIR=$RPM_BUILD_ROOT -%py3_comp $RPM_BUILD_ROOT%{py3_sitedir}/createrepo_c -%py3_ocomp $RPM_BUILD_ROOT%{py3_sitedir}/createrepo_c -%endif - %{__make} -C build install \ DESTDIR=$RPM_BUILD_ROOT -%py_comp $RPM_BUILD_ROOT%{py_sitedir}/createrepo_c -%py_ocomp $RPM_BUILD_ROOT%{py_sitedir}/createrepo_c -%py_postclean +%py3_comp $RPM_BUILD_ROOT%{py3_sitedir}/createrepo_c +%py3_ocomp $RPM_BUILD_ROOT%{py3_sitedir}/createrepo_c %clean rm -rf $RPM_BUILD_ROOT @@ -222,7 +185,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(644,root,root,755) %doc AUTHORS README.md %attr(755,root,root) %{_libdir}/libcreaterepo_c.so.*.*.* -%attr(755,root,root) %ghost %{_libdir}/libcreaterepo_c.so.0 +%attr(755,root,root) %ghost %{_libdir}/libcreaterepo_c.so.1 %files devel %defattr(644,root,root,755) @@ -234,20 +197,13 @@ rm -rf $RPM_BUILD_ROOT %defattr(644,root,root,755) %doc build/doc/html -%files -n python-createrepo_c -%defattr(644,root,root,755) -%dir %{py_sitedir}/createrepo_c -%attr(755,root,root) %{py_sitedir}/createrepo_c/_createrepo_c.so -%{py_sitedir}/createrepo_c/__init__.py[co] - -%if %{with python3} %files -n python3-createrepo_c %defattr(644,root,root,755) %dir %{py3_sitedir}/createrepo_c %attr(755,root,root) %{py3_sitedir}/createrepo_c/_createrepo_c.so %{py3_sitedir}/createrepo_c/__init__.py %{py3_sitedir}/createrepo_c/__pycache__ -%endif +%{py3_sitedir}/createrepo_c-%{version}-py*.egg-info %files -n bash-completion-createrepo_c %defattr(644,root,root,755)