add packaging accepted/tizen/20130503.223701 accepted/tizen/20130520.095228 accepted/trunk/20130325.212226 submit/tizen/20130503.184803 submit/tizen/20130503.190915 submit/tizen/20130509.173802 submit/tizen/20130517.020826 submit/trunk/20130325.065850
authorAnas Nashif <anas.nashif@intel.com>
Thu, 1 Nov 2012 20:04:49 +0000 (13:04 -0700)
committerAnas Nashif <anas.nashif@intel.com>
Thu, 1 Nov 2012 20:04:49 +0000 (13:04 -0700)
packaging/deltarpm.spec [new file with mode: 0644]

diff --git a/packaging/deltarpm.spec b/packaging/deltarpm.spec
new file mode 100644 (file)
index 0000000..21eb6b2
--- /dev/null
@@ -0,0 +1,56 @@
+Name:           deltarpm
+Version:        3.5.git
+Release:        0
+Summary:        Tools to Create and Apply deltarpms
+License:        BSD-3-Clause
+Group:          System/Packages
+Url:            ftp://ftp.suse.com/pub/projects/deltarpm
+Source:         deltarpm-3.5.git.tar.bz2
+BuildRequires:  bzip2-devel
+BuildRequires:  python-devel
+BuildRequires:  rpm-devel
+BuildRequires:  xz-devel
+# we need to build against recent rpm, so avoid the new payload
+%define _binary_payload w9.bzdio
+
+%description
+This package contains tools to create and apply deltarpms. A deltarpm
+contains the difference between an old and a new version of an RPM,
+which makes it possible to recreate the new RPM from the deltarpm and
+the old one. You do not need to have a copy of the old RPM, because
+deltarpms can also work with installed RPMs.
+
+%package -n python-deltarpm
+Summary:        Tools to Create and Apply deltarpms
+Group:          Development/Languages/Python
+Requires:       %{name} = %{version}
+
+%description -n python-deltarpm
+Python bindings for deltarpm
+
+%prep
+%setup -q
+
+%build
+make CC="gcc" CFLAGS="%{optflags}" rpmdumpheader="/usr/lib/rpm/rpmdumpheader" %{?_smp_mflags}
+make CC="gcc" CFLAGS="%{optflags}" rpmdumpheader="/usr/lib/rpm/rpmdumpheader" %{?_smp_mflags} python
+
+%install
+mkdir -p %{buildroot}%{_prefix}/lib/rpm
+make DESTDIR=%{buildroot} prefix="%{_prefix}" libdir="%{_libdir}" mandir="%{_mandir}" rpmdumpheader="/usr/lib/rpm/rpmdumpheader" install
+rm -rf %{buildroot}%{_libdir}/python/site-packages/{_deltarpmmodule.so,deltarpm.py} # Remove wrongly installed Python module
+mv %{buildroot}%{python_sitearch}/_deltarpm{module,}.so # Fix binary Python module name
+
+%files
+%defattr(-,root,root)
+%doc README LICENSE.BSD
+%{_bindir}/*
+%{_mandir}/man8/*
+%{_prefix}/lib/rpm/rpmdumpheader
+
+%files -n python-deltarpm
+%defattr(-,root,root)
+%{python_sitearch}/deltarpm.py
+%{python_sitearch}/_deltarpm.so
+
+%changelog