| 1 | %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0} |
|---|
| 2 | |
|---|
| 3 | Name: libtalloc |
|---|
| 4 | Version: 2.0.7 |
|---|
| 5 | Release: 1%{?_dist_release} |
|---|
| 6 | Group: System Environment/Libraries |
|---|
| 7 | Summary: The talloc library |
|---|
| 8 | License: LGPLv3+ |
|---|
| 9 | URL: http://talloc.samba.org/ |
|---|
| 10 | Source: http://samba.org/ftp/talloc/talloc-%{version}.tar.gz |
|---|
| 11 | BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) |
|---|
| 12 | |
|---|
| 13 | BuildRequires: autoconf |
|---|
| 14 | BuildRequires: libxslt |
|---|
| 15 | BuildRequires: docbook-style-xsl |
|---|
| 16 | BuildRequires: python-devel |
|---|
| 17 | |
|---|
| 18 | Vendor: Project Vine |
|---|
| 19 | Distribution: Vine Linux |
|---|
| 20 | Packager: tomop |
|---|
| 21 | |
|---|
| 22 | # Patches |
|---|
| 23 | Patch0001: 0001-Install-python-bindings-in-the-arch-specific-location.patch |
|---|
| 24 | |
|---|
| 25 | %description |
|---|
| 26 | A library that implements a hierarchical allocator with destructors. |
|---|
| 27 | |
|---|
| 28 | %package devel |
|---|
| 29 | Group: Development/Libraries |
|---|
| 30 | Summary: Developer tools for the Talloc library |
|---|
| 31 | Requires: libtalloc = %{version}-%{release} |
|---|
| 32 | |
|---|
| 33 | %description devel |
|---|
| 34 | Header files needed to develop programs that link against the Talloc library. |
|---|
| 35 | |
|---|
| 36 | %package -n pytalloc |
|---|
| 37 | Group: Development/Libraries |
|---|
| 38 | Summary: Developer tools for the Talloc library |
|---|
| 39 | Requires: libtalloc = %{version}-%{release} |
|---|
| 40 | |
|---|
| 41 | %description -n pytalloc |
|---|
| 42 | Pytalloc libraries for creating python bindings using talloc |
|---|
| 43 | |
|---|
| 44 | %package -n pytalloc-devel |
|---|
| 45 | Group: Development/Libraries |
|---|
| 46 | Summary: Developer tools for the Talloc library |
|---|
| 47 | Requires: pytalloc = %{version}-%{release} |
|---|
| 48 | |
|---|
| 49 | %description -n pytalloc-devel |
|---|
| 50 | Development libraries for pytalloc |
|---|
| 51 | |
|---|
| 52 | %if %build_compat32 |
|---|
| 53 | |
|---|
| 54 | %package -n compat32-libtalloc |
|---|
| 55 | Summary: The talloc library |
|---|
| 56 | Group: System Environment/Libraries |
|---|
| 57 | |
|---|
| 58 | %description -n compat32-libtalloc |
|---|
| 59 | A library that implements a hierarchical allocator with destructors. |
|---|
| 60 | |
|---|
| 61 | %endif |
|---|
| 62 | |
|---|
| 63 | %prep |
|---|
| 64 | %setup -q -n talloc-%{version} |
|---|
| 65 | %patch0001 -p1 |
|---|
| 66 | |
|---|
| 67 | %build |
|---|
| 68 | #./autogen.sh |
|---|
| 69 | %configure --disable-rpath --bundled-libraries=NONE |
|---|
| 70 | make %{?_smp_mflags} V=1 |
|---|
| 71 | |
|---|
| 72 | %install |
|---|
| 73 | rm -rf $RPM_BUILD_ROOT |
|---|
| 74 | |
|---|
| 75 | make install DESTDIR=$RPM_BUILD_ROOT |
|---|
| 76 | |
|---|
| 77 | # Shared libraries need to be marked executable for |
|---|
| 78 | # rpmbuild to strip them and include them in debuginfo |
|---|
| 79 | find $RPM_BUILD_ROOT -name "*.so*" -exec chmod -c +x {} \; |
|---|
| 80 | |
|---|
| 81 | rm -f $RPM_BUILD_ROOT%{_libdir}/libtalloc.a |
|---|
| 82 | rm -f $RPM_BUILD_ROOT/usr/share/swig/*/talloc.i |
|---|
| 83 | |
|---|
| 84 | %clean |
|---|
| 85 | rm -rf $RPM_BUILD_ROOT |
|---|
| 86 | |
|---|
| 87 | %files |
|---|
| 88 | %defattr(-,root,root,-) |
|---|
| 89 | %{_libdir}/libtalloc.so.* |
|---|
| 90 | |
|---|
| 91 | %files devel |
|---|
| 92 | %defattr(-,root,root,-) |
|---|
| 93 | %{_includedir}/talloc.h |
|---|
| 94 | %{_libdir}/libtalloc.so |
|---|
| 95 | %{_libdir}/pkgconfig/talloc.pc |
|---|
| 96 | %{_mandir}/man3/talloc.3.gz |
|---|
| 97 | |
|---|
| 98 | %files -n pytalloc |
|---|
| 99 | %defattr(-,root,root,-) |
|---|
| 100 | %{_libdir}/libpytalloc-util.so.* |
|---|
| 101 | %{python_sitearch}/talloc.so |
|---|
| 102 | |
|---|
| 103 | %files -n pytalloc-devel |
|---|
| 104 | %defattr(-,root,root,-) |
|---|
| 105 | %{_includedir}/pytalloc.h |
|---|
| 106 | %{_libdir}/pkgconfig/pytalloc-util.pc |
|---|
| 107 | %{_libdir}/libpytalloc-util.so |
|---|
| 108 | |
|---|
| 109 | %if %build_compat32 |
|---|
| 110 | |
|---|
| 111 | %files -n compat32-libtalloc |
|---|
| 112 | %attr(755,root,root) %{_libdir}/libtalloc.so.* |
|---|
| 113 | |
|---|
| 114 | %endif |
|---|
| 115 | |
|---|
| 116 | %post -p /sbin/ldconfig |
|---|
| 117 | |
|---|
| 118 | %postun -p /sbin/ldconfig |
|---|
| 119 | |
|---|
| 120 | %post -n pytalloc -p /sbin/ldconfig |
|---|
| 121 | %postun -n pytalloc -p /sbin/ldconfig |
|---|
| 122 | |
|---|
| 123 | %if %build_compat32 |
|---|
| 124 | |
|---|
| 125 | %post -n compat32-libtalloc -p /sbin/ldconfig |
|---|
| 126 | %postun -n compat32-libtalloc -p /sbin/ldconfig |
|---|
| 127 | |
|---|
| 128 | %endif |
|---|
| 129 | |
|---|
| 130 | %changelog |
|---|
| 131 | * Sat Apr 14 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.0.7-1 |
|---|
| 132 | - new upstream release. |
|---|
| 133 | - updated Patch0001. |
|---|
| 134 | |
|---|
| 135 | * Wed Feb 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.5-10 |
|---|
| 136 | - rebuild with python-2.7.2 |
|---|
| 137 | |
|---|
| 138 | * Thu Mar 24 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.0.5-9 |
|---|
| 139 | - initial build for Vine Linux. |
|---|
| 140 | |
|---|
| 141 | * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.5-8 |
|---|
| 142 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
|---|
| 143 | |
|---|
| 144 | * Thu Jan 14 2011 Stephen Gallagher <sgallagh@redhat.com> - 2.0.5-7 |
|---|
| 145 | - Let rpmbuild strip binaries, make build more verbose. |
|---|
| 146 | - Resolves rhbz#669477 - libtalloc 2.0.5-6 binaries not stripped, |
|---|
| 147 | - empty -debuginfo |
|---|
| 148 | - Original patch by Ville Skyttä <ville.skytta@iki.fi> |
|---|
| 149 | |
|---|
| 150 | * Wed Jan 12 2011 Stephen Gallagher <sgallagh@redhat.com> - 2.0.5-6 |
|---|
| 151 | - Install python bindings in the correct location |
|---|
| 152 | |
|---|
| 153 | * Tue Jan 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 2.0.5-5 |
|---|
| 154 | - Run ldconfig on pytalloc |
|---|
| 155 | |
|---|
| 156 | * Tue Jan 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 2.0.5-4 |
|---|
| 157 | - Fix build failure on 32-bit platforms |
|---|
| 158 | |
|---|
| 159 | * Tue Jan 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 2.0.5-3 |
|---|
| 160 | - New version from upstream |
|---|
| 161 | - Add support for pytalloc |
|---|
| 162 | - Convert to new WAF build-system |
|---|
| 163 | |
|---|
| 164 | * Tue Dec 15 2009 Simo Sorce <ssorce@redhat.com> - 2.0.1-1 |
|---|
| 165 | - New version from upstream |
|---|
| 166 | - Also stop building the compat lib, it is not necessary anymore |
|---|
| 167 | |
|---|
| 168 | * Tue Sep 8 2009 Simo Sorce <ssorce@redhat.com> - 2.0.0-0 |
|---|
| 169 | - New version from upstream. |
|---|
| 170 | - Build also sover 1 compat library to ease packages migration |
|---|
| 171 | |
|---|
| 172 | * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-2 |
|---|
| 173 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
|---|
| 174 | |
|---|
| 175 | * Wed Jun 17 2009 Simo Sorce <ssorce@redhat.com> - 1.3.1-1 |
|---|
| 176 | - Original tarballs had a screw-up, rebuild with new fixed tarballs from |
|---|
| 177 | upstream. |
|---|
| 178 | |
|---|
| 179 | * Tue Jun 16 2009 Simo Sorce <ssorce@redhat.com> - 1.3.1-0 |
|---|
| 180 | - New Upstream release. |
|---|
| 181 | |
|---|
| 182 | * Wed May 6 2009 Simo Sorce <ssorce@redhat.com> - 1.3.0-0 |
|---|
| 183 | - First public independent release from upstream |
|---|