update to 3.6.1 [release 3.6.1-1mamba;Wed Aug 23 2017]

This commit is contained in:
Silvan Calarco 2024-01-05 21:43:17 +01:00
parent c25549259c
commit cfbf8a76fc

View File

@ -1,5 +1,5 @@
Name: deltarpm Name: deltarpm
Version: 3.6 Version: 3.6.1
Release: 1mamba Release: 1mamba
Summary: Create deltas between rpms Summary: Create deltas between rpms
Group: System/Management Group: System/Management
@ -7,12 +7,15 @@ Vendor: openmamba
Distribution: openmamba Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.novell.com/products/linuxpackages/professional/deltarpm.html URL: http://www.novell.com/products/linuxpackages/professional/deltarpm.html
Source: ftp://ftp.suse.com/pub/projects/deltarpm/deltarpm-%{version}.tar.bz2 Source: https://github.com/rpm-software-management/deltarpm.git/%{version}/deltarpm-%{version}.tar.bz2
#Source: ftp://ftp.suse.com/pub/projects/deltarpm/deltarpm-%{version}.tar.bz2
License: BSD License: BSD
## AUTOBUILDREQ-BEGIN ## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel BuildRequires: glibc-devel
BuildRequires: libbzip2-devel BuildRequires: libbzip2-devel
BuildRequires: liblzma-devel BuildRequires: liblzma-devel
BuildRequires: libperl
BuildRequires: libpython-devel
BuildRequires: perl-devel BuildRequires: perl-devel
BuildRequires: rpm-devel BuildRequires: rpm-devel
## AUTOBUILDREQ-END ## AUTOBUILDREQ-END
@ -21,6 +24,22 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description %description
A deltarpm contains the difference between an old and a new version of a rpm, which makes it possible to recreate the new rpm from the deltarpm and the old one. You don't have to have a copy of the old rpm, deltarpms can also work with installed rpms. A deltarpm contains the difference between an old and a new version of a rpm, which makes it possible to recreate the new rpm from the deltarpm and the old one. You don't have to have a copy of the old rpm, deltarpms can also work with installed rpms.
%package -n python-deltarpm
Group: System/Libraries
Summary: Python bindings for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description -n python-deltarpm
Python bindings for %{name}.
%package -n python-deltarpm-py3
Group: System/Libraries
Summary: Python 3 bindings for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description -n python-deltarpm-py3
Python 3 bindings for %{name}.
%debug_package %debug_package
%prep %prep
@ -29,7 +48,8 @@ A deltarpm contains the difference between an old and a new version of a rpm, wh
%build %build
%make \ %make \
CFLAGS="-I%{_includedir}/rpm" \ CFLAGS="-I%{_includedir}/rpm" \
LDFLAGS="-lrpmdb" LDFLAGS="-lrpmdb" \
all python
%install %install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@ -60,6 +80,19 @@ A deltarpm contains the difference between an old and a new version of a rpm, wh
%doc LICENSE.BSD %doc LICENSE.BSD
#%doc NEWS README #%doc NEWS README
%files -n python-deltarpm
%defattr(-,root,root)
%{python27_sitearch}/_deltarpmmodule.so
%{python27_sitearch}/deltarpm.py
%files -n python-deltarpm-py3
%defattr(-,root,root)
%{python3_sitearch}/_deltarpmmodule.so
%{python3_sitearch}/deltarpm.py
%changelog %changelog
* Wed Aug 23 2017 Silvan Calarco <silvan.calarco@mambasoft.it> 3.6.1-1mamba
- update to 3.6.1
* Mon Feb 17 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.6-1mamba * Mon Feb 17 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.6-1mamba
- package created using the webbuild interface - package created using the webbuild interface