# This is the Fedora subversion we're paired with # We need to match both version and release %global subversion_pkg_release 10%{?dist} Summary: Python bindings for Subversion Version Control system Name: python2-subversion Version: 1.14.0 Release: 6%{?dist} License: ASL 2.0 URL: https://subversion.apache.org/ Source0: https://archive.apache.org/dist/subversion/subversion-%{version}.tar.bz2 Patch1: subversion-1.12.0-linking.patch Patch2: subversion-1.14.0-testwarn.patch Patch3: subversion-1.14.0-soversion.patch BuildRequires: apr-devel >= 1.5.0 BuildRequires: apr-util-devel >= 1.3.0 BuildRequires: apr-util-openssl BuildRequires: autoconf BuildRequires: coreutils BuildRequires: cyrus-sasl-devel BuildRequires: file-devel BuildRequires: gcc BuildRequires: gcc-c++ BuildRequires: gettext BuildRequires: httpd-devel >= 2.0.45 BuildRequires: libdb-devel >= 4.1.25 BuildRequires: libserf-devel >= 1.3.0 BuildRequires: libtool BuildRequires: lz4-devel BuildRequires: make BuildRequires: perl-interpreter BuildRequires: py3c-devel BuildRequires: python2-devel BuildRequires: python2-swig3 BuildRequires: sed BuildRequires: sqlite-devel >= 3.4.0 BuildRequires: texinfo BuildRequires: utf8proc-devel BuildRequires: which BuildRequires: zlib-devel Requires: subversion-libs%{?_isa} = %{version}-%{subversion_pkg_release} # Put Python bindings in site-packages %define swigdirs swig_pydir=%{python2_sitearch}/libsvn swig_pydir_extra=%{python2_sitearch}/svn %description The python2-subversion package includes the Python 2.x bindings to the Subversion libraries. %prep %setup -q -n subversion-%{version} %patch1 -p1 -b .linking %patch2 -p1 -b .testwarn %patch3 -p1 -b .soversion %build # Regenerate the buildsystem, so that: # 1) patches applied to configure.in take effect # 2) the swig bindings are regenerated using the system swig # (2) is not ideal since typically upstream test with a different swig version # This PATH order makes the fugly test for libtoolize work... mv build-outputs.mk build-outputs.mk.old export PYTHON=%{__python2} PATH=/usr/bin:$PATH ./autogen.sh --release # Now run it again in non-release mode, needed for python 2 bindings PATH=/usr/bin:$PATH ./autogen.sh # Fix python executable for test suite perl -pi -e 's|/usr/bin/env python.*|%{__python2}|' subversion/tests/cmdline/svneditor.py export APACHE_LDFLAGS="-Wl,-z,relro,-z,now" export CC=gcc CXX=g++ %configure \ --disable-debug \ --disable-mod-activation \ --disable-static \ --with-apache-libexecdir=%{_httpd_moddir} \ --with-apr=%{_prefix} \ --with-apr-util=%{_prefix} \ --with-apxs=%{_httpd_apxs} \ --with-berkeley-db \ --with-libmagic=%{_prefix} \ --with-sasl=%{_prefix} \ --with-serf=%{_prefix} \ --with-swig \ || (cat config.log; exit 1) make %{?_smp_mflags} all make clean-swig-py make swig-py swig-py-lib %{swigdirs} %install make install DESTDIR=%{buildroot} make install-swig-py %{swigdirs} DESTDIR=%{buildroot} # Remove unpackaged files rm -v %{buildroot}%{_includedir}/subversion-*/*.txt \ %{buildroot}%{python2_sitearch}/*/*.la # Unnecessary libraries for swig bindings rm -v %{buildroot}%{_libdir}/libsvn_swig_*.{so,la} # Find translations for the main subversion package and exclude them %find_lang subversion sed -i -e 's/^/%%exclude /' subversion.lang # It would be nice to get rid of the dangling build-id links to excluded binaries: # https://bugzilla.redhat.com/show_bug.cgi?id=878863 # # Unfortunately the links under the .build-id directory are created after the end # of the %%install section so we can't delete them there. And if we remove the # excluded files rather than that %%excluding them, we have problems generating # the debugsource file. %check export LANG=C LC_ALL=C export LD_LIBRARY_PATH=%{buildroot}%{_libdir} export MALLOC_PERTURB_=171 MALLOC_CHECK_=3 export LIBC_FATAL_STDERR_=1 export PYTHON=%{__python2} if ! make check CLEANUP=yes; then : Test suite failure cat fails.log exit 1 fi if ! make check-swig-py; then : Python swig test failure exit 1 fi %files -f subversion.lang %license LICENSE NOTICE # Parts from main subversion package %exclude %{_bindir}/svn* %exclude %{_libdir}/libsvn*.*a %exclude %{_libdir}/libsvn*.so %exclude %{_libdir}/libsvn_client-1.so.* %exclude %{_libdir}/libsvn_delta-1.so.* %exclude %{_libdir}/libsvn_diff-1.so.* %exclude %{_libdir}/libsvn_fs-1.so.* %exclude %{_libdir}/libsvn_fs_fs-1.so.* %exclude %{_libdir}/libsvn_fs_util-1.so.* %exclude %{_libdir}/libsvn_fs_x-1.so.* %exclude %{_libdir}/libsvn_ra-1.so.* %exclude %{_libdir}/libsvn_ra_local-1.so.* %exclude %{_libdir}/libsvn_ra_serf-1.so.* %exclude %{_libdir}/libsvn_ra_svn-1.so.* %exclude %{_libdir}/libsvn_repos-1.so.* %exclude %{_libdir}/libsvn_subr-1.so.* %exclude %{_libdir}/libsvn_swig_py-1.so.* %exclude %{_libdir}/libsvn_wc-1.so.* %exclude %{_libdir}/libsvnjavahl-1.so.* %exclude %{_libdir}/httpd/modules/mod_*.so %exclude %{_includedir}/subversion-1/ %exclude %{_datadir}/pkgconfig/*.pc %exclude %{_mandir}/man1/svn*.1* %exclude %{_mandir}/man5/svn*.5* %exclude %{_mandir}/man8/svn*.8* # These are normally in subversion-libs but belong to the Python bindings # When subversion's Python 3 bindings are packaged, these may reappear in subversion-libs # They might also be conflicting and incompatible with Python 2 :-( %{_libdir}/libsvn_swig_py-1.so.0 %{_libdir}/libsvn_swig_py-1.so.0.0.14 # These were in subversion-libs in the 1.12.x buillds but disappeared in 1.14.0 # Maybe they're only needed for the Python 2 bindings? %{_libdir}/libsvn_fs_base-1.so.0 %{_libdir}/libsvn_fs_base-1.so.0.0.14 # These are what we actually want %{python2_sitearch}/svn/ %{python2_sitearch}/libsvn/ %changelog * Mon Dec 14 2020 Paul Howarth - 1.14.0-6 - Sync with subversion-1.14.0-10 in Rawhide * Thu Dec 3 2020 Paul Howarth - 1.14.0-5 - Sync with subversion-1.14.0-9 in Rawhide * Fri Oct 2 2020 Paul Howarth - 1.14.0-4 - Bump required apr-devel version to 1.5.0 * Wed Aug 5 2020 Paul Howarth - 1.14.0-3 - Sync with subversion-1.14.0-6 in Rawhide * Mon Jun 29 2020 Paul Howarth - 1.14.0-2 - Sync with subversion-1.14.0-4 in Rawhide * Fri Jun 5 2020 Paul Howarth - 1.14.0-1 - Update to 1.14.0 (#1840565, #1812195) * Wed Apr 29 2020 Paul Howarth - 1.12.2-6 - Sync with subversion-1.12.2-8 in Rawhide * Thu Feb 13 2020 Paul Howarth - 1.12.2-5 - Sync with subversion-1.12.2-7 in Rawhide * Mon Jan 6 2020 Paul Howarth - 1.12.2-4 - Rebuild to sync with Rawhide * Sat Nov 16 2019 Paul Howarth - 1.12.2-3 - Import from Fedora subversion package * Fri Aug 30 2019 Joe Orton - 1.12.2-2 - switch to Python 3 for F32+ (#1737928) * Thu Jul 25 2019 Joe Orton - 1.12.2-1 - update to 1.12.2 * Sat Jun 01 2019 Jitka Plesnikova - 1.12.0-2 - Perl 5.30 rebuild * Wed May 1 2019 Joe Orton - 1.12.0-1 - update to 1.12.0 (#1702471) * Wed Apr 17 2019 Joe Orton - 1.11.1-5 - fix build with APR 1.7.0 (upstream r1857391) * Sun Feb 03 2019 Fedora Release Engineering - 1.11.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Mon Jan 21 2019 Mamoru TASAKA - 1.11.1-3 - F-30: rebuild against ruby26 * Mon Jan 14 2019 Björn Esser - 1.11.1-2 - Rebuilt for libcrypt.so.2 (#1666033) * Fri Jan 11 2019 Joe Orton - 1.11.1-1 - update to 1.11.1 * Wed Oct 31 2018 Joe Orton - 1.11.0-1 - update to 1.11.0 * Thu Oct 11 2018 Joe Orton - 1.10.3-1 - update to 1.10.3 * Fri Jul 20 2018 Joe Orton - 1.10.2-1 - update to 1.10.2 (#1603197) * Sat Jul 14 2018 Fedora Release Engineering - 1.10.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Fri Jun 29 2018 Jitka Plesnikova - 1.10.0-9 - Perl 5.28 rebuild * Thu Jun 28 2018 Joe Orton - 1.10.0-8 - fix test suite invocation * Thu Jun 28 2018 Joe Orton - 1.10.0-7 - switch build conditional to disable only python bindings * Thu May 3 2018 Joe Orton - 1.10.0-6 - really disable Berkeley DB support if required by bcond - add build conditional to disable swig binding subpackages * Tue May 1 2018 Joe Orton - 1.10.0-5 - remove build and -devel deps on libgnome-keyring-devel * Tue May 1 2018 Joe Orton - 1.10.0-4 - drop -devel dep on libserf-devel * Tue Apr 24 2018 Joe Orton - 1.10.0-3 - add bdb, tests as build conditional * Tue Apr 17 2018 Joe Orton - 1.10.0-2 - move new tools to -tools * Mon Apr 16 2018 Joe Orton - 1.10.0-1 - update to 1.10.0 (#1566493) * Tue Mar 27 2018 Joe Orton - 1.9.7-7 - add build conditionals for python2, python3 and kwallet * Thu Feb 8 2018 Joe Orton - 1.9.7-6 - force use of Python2 in test suite * Thu Feb 01 2018 Iryna Shcherbina - 1.9.7-5 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) * Sat Jan 20 2018 Björn Esser - 1.9.7-4 - Rebuilt for switch to libxcrypt * Fri Jan 05 2018 Mamoru TASAKA - 1.9.7-3 - F-28: rebuild for ruby25 * Sun Dec 17 2017 Zbigniew Jędrzejewski-Szmek - 1.9.7-2 - Python 2 binary package renamed to python2-subversion See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 * Fri Aug 11 2017 Joe Orton - 1.9.7-1 - update to 1.9.7 (CVE-2017-9800, #1480402) - add Documentation= to svnserve.service * Thu Aug 03 2017 Fedora Release Engineering - 1.9.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Thu Jul 27 2017 Fedora Release Engineering - 1.9.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Mon Jul 17 2017 Joe Orton - 1.9.6-2 - move javahl .so to -libs (#1469158) * Thu Jul 6 2017 Joe Orton - 1.9.6-1 - update to 1.9.6 (#1467890) - update to latest upstream psvn.el - move libsvnjavahl to -libs, build -javahl noarch - fix javahl Requires * Sun Jun 04 2017 Jitka Plesnikova - 1.9.5-4 - Perl 5.26 rebuild * Sat Feb 11 2017 Fedora Release Engineering - 1.9.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Fri Jan 13 2017 Mamoru TASAKA - 1.9.5-2 - F-26: rebuild for ruby24 * Mon Jan 2 2017 Joe Orton - 1.9.5-1 - update to 1.9.5 (#1400040, CVE-2016-8734) * Tue Jul 19 2016 Fedora Release Engineering - 1.9.4-4 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Wed May 25 2016 Jitka Plesnikova - 1.9.4-3 - Enable tests - Revert one of Ruby 2.2 fixes * Tue May 17 2016 Jitka Plesnikova - 1.9.4-2 - Perl 5.24 rebuild * Sun May 8 2016 Peter Robinson 1.9.4-1 - Update to 1.9.4 (#1331222) CVE-2016-2167 CVE-2016-2168 - Move tools in docs to tools subpackage (rhbz 1171757 1199761) - Disable make check to work around FTBFS * Fri Feb 05 2016 Fedora Release Engineering - 1.9.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Thu Jan 21 2016 Joe Orton - 1.9.3-2 - rebuild for Ruby 2.3 * Tue Dec 15 2015 Joe Orton - 1.9.3-1 - update to 1.9.3 (#1291683) - use private /tmp in svnserve.service * Thu Sep 24 2015 Joe Orton - 1.9.2-1 - update to 1.9.2 (#1265447) * Mon Sep 14 2015 Joe Orton - 1.9.1-1 - update to 1.9.1 (#1259099) * Mon Aug 24 2015 Joe Orton - 1.9.0-1 - update to 1.9.0 (#1207835) - package pkgconfig files * Tue Jul 14 2015 Joe Orton - 1.8.13-7 - move svnauthz to -tools; make svnauthz-validate a symlink - move svnmucc man page to -tools - restore dep on systemd (#1183873) * Fri Jul 10 2015 Joe Orton - 1.8.13-6 - rebuild with tests enabled * Fri Jun 19 2015 Fedora Release Engineering - 1.8.13-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Mon Jun 15 2015 Ville Skyttä - 1.8.13-4 - Own bash-completion dirs not owned by anything in dep chain * Sat Jun 06 2015 Jitka Plesnikova - 1.8.13-3 - Perl 5.22 rebuild * Tue Apr 21 2015 Peter Robinson 1.8.13-2 - Disable tests to fix swig test issues * Wed Apr 08 2015 - 1.8.13-1 - Fix Ruby's test suite. * Tue Apr 7 2015 Joe Orton - 1.8.13-1 - update to 1.8.13 (#1207835) - attempt to patch around SWIG issues * Tue Dec 16 2014 Joe Orton - 1.8.11-1 - update to 1.8.11 (#1174521) - require newer libserf (#1155670) * Tue Sep 23 2014 Joe Orton - 1.8.10-6 - prevents assert()ions in library code (#1058693) * Tue Sep 23 2014 Joe Orton - 1.8.10-5 - drop sysv conversion trigger (#1133786) * Tue Sep 23 2014 Joe Orton - 1.8.10-4 - move svn-bench, fsfs-* to -tools * Tue Aug 26 2014 Jitka Plesnikova - 1.8.10-3 - Perl 5.20 rebuild * Thu Aug 21 2014 Kevin Fenzi - 1.8.10-2 - Rebuild for rpm bug 1131960 * Mon Aug 18 2014 Joe Orton - 1.8.10-1 - update to 1.8.10 (#1129100, #1128884, #1125800) * Mon Aug 18 2014 Fedora Release Engineering - 1.8.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Sun Jun 08 2014 Fedora Release Engineering - 1.8.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Wed May 28 2014 Joe Orton - 1.8.9-1 - update to 1.8.9 (#1100779) * Tue Apr 29 2014 Vít Ondruch - 1.8.8-3 - Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1 * Tue Apr 22 2014 Joe Orton - 1.8.8-2 - require minitest 4 to fix tests for Ruby bindings (#1089252) * Fri Feb 28 2014 Joe Orton - 1.8.8-1 - update to 1.8.8 * Thu Jan 23 2014 Joe Orton - 1.8.5-4 - fix _httpd_mmn expansion in absence of httpd-devel * Mon Jan 6 2014 Joe Orton - 1.8.5-3 - fix permissions of /run/svnserve (#1048422) * Tue Dec 10 2013 Joe Orton - 1.8.5-2 - don't drop -Wall when building swig Perl bindings (#1037341) * Tue Nov 26 2013 Joe Orton - 1.8.5-1 - update to 1.8.5 (#1034130) - add fix for wc-queries-test breakage (h/t Andreas Stieger, r1542774) * Mon Nov 18 2013 Joe Orton - 1.8.4-2 - add fix for ppc breakage (Andreas Stieger, #985582) * Tue Oct 29 2013 Joe Orton - 1.8.4-1 - update to 1.8.4 * Tue Sep 3 2013 Joe Orton - 1.8.3-1 - update to 1.8.3 - move bash completions out of /etc (#922993) * Tue Aug 06 2013 Adam Williamson - 1.8.1-2 - rebuild for perl 5.18 (again; 1.8.1-1 beat out 1.8.0-2) * Thu Jul 25 2013 Joe Orton - 1.8.1-1 - update to 1.8.1 * Fri Jul 19 2013 Joe Orton - 1.8.0-3 - temporarily ignore test suite failures on ppc* (#985582) * Wed Jul 17 2013 Petr Pisar - 1.8.0-2 - Perl 5.18 rebuild * Tue Jun 18 2013 Joe Orton - 1.8.0-1 - update to 1.8.0; switch to serf - use full relro in mod_dav_svn build (#973694) * Mon Jun 3 2013 Joe Orton - 1.7.10-1 - update to 1.7.10 (#970014) - fix aarch64 build issues (Dennis Gilmore, #926578) * Thu May 9 2013 Joe Orton - 1.7.9-3 - fix spurious failures in ruby test suite (upstream r1327373) * Thu May 9 2013 Joe Orton - 1.7.9-2 - try harder to avoid svnserve bind failures in ruby binding tests - enable verbose output for ruby binding tests * Tue Apr 9 2013 Joe Orton - 1.7.9-1 - update to 1.7.9 * Wed Mar 27 2013 Vít Ondruch - 1.7.8-6 - Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0 - Drop Ruby version checks from configuration script. - Fix and enable Ruby test suite. * Thu Mar 14 2013 Joe Orton - 1.7.8-5 - drop specific dep on ruby(abi) * Fri Feb 15 2013 Fedora Release Engineering - 1.7.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Tue Jan 8 2013 Joe Orton - 1.7.8-3 - update to latest psvn.el * Tue Jan 8 2013 Lukáš Nykrýn - 1.7.8-2 - Scriptlets replaced with new systemd macros (#850410) * Fri Jan 4 2013 Joe Orton - 1.7.8-1 - update to 1.7.8 * Thu Oct 11 2012 Joe Orton - 1.7.7-1 - update to 1.7.7 * Fri Aug 17 2012 Joe Orton - 1.7.6-1 - update to 1.7.6 * Sat Jul 21 2012 Fedora Release Engineering - 1.7.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Mon Jul 16 2012 Joe Orton - 1.7.5-5 - switch svnserve pidfile to use /run, use /usr/lib/tmpfiles.d (#840195) * Thu Jun 28 2012 Petr Pisar - 1.7.5-4 - Perl 5.16 rebuild * Mon Jun 18 2012 Dan Horák - 1.7.5-2 - Perl 5.16 rebuild * Tue May 22 2012 Joe Orton - 1.7.5-1 - update to 1.7.5 * Tue Apr 24 2012 Joe Orton - 1.7.4-6 - drop strict sqlite version requirement (#815396) * Mon Apr 23 2012 Joe Orton - 1.7.4-5 - switch to libdb-devel (#814090) * Thu Apr 19 2012 Joe Orton - 1.7.4-4 - adapt for conf.modules.d with httpd 2.4 - add possible workaround for kwallet crasher (#810861) * Fri Mar 30 2012 Joe Orton - 1.7.4-3 - re-enable test suite * Fri Mar 30 2012 Joe Orton - 1.7.4-2 - fix build with httpd 2.4 * Mon Mar 12 2012 Joe Orton - 1.7.4-1 - update to 1.7.4 - fix build with httpd 2.4 * Thu Mar 1 2012 Joe Orton - 1.7.3-7 - re-enable kwallet (#791031) * Wed Feb 29 2012 Joe Orton - 1.7.3-6 - update psvn * Wed Feb 29 2012 Joe Orton - 1.7.3-5 - add tools subpackage (#648015) * Tue Feb 28 2012 Joe Orton - 1.7.3-4 - trim contents of doc dic (#746433) * Tue Feb 28 2012 Joe Orton - 1.7.3-3 - re-enable test suite * Tue Feb 28 2012 Joe Orton - 1.7.3-2 - add upstream test suite fixes for APR hash change (r1293602, r1293811) - use ruby vendorlib directory (#798203) - convert svnserve to systemd (#754074) * Mon Feb 13 2012 Joe Orton - 1.7.3-1 - update to 1.7.3 - ship, enable mod_dontdothat * Mon Feb 13 2012 Joe Orton - 1.7.2-2 - require ruby 1.9.1 abi * Thu Feb 9 2012 Joe Orton - 1.7.2-1 - update to 1.7.2 - add Vincent Batts' Ruby 1.9 fixes from dev@ * Sun Feb 5 2012 Peter Robinson - 1.7.1-3 - fix gnome-keyring build deps * Sat Jan 14 2012 Fedora Release Engineering - 1.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Mon Nov 28 2011 Joe Orton - 1.7.1-1 - update to 1.7.1 - (temporarily) disable failing kwallet support * Sun Nov 27 2011 Ville Skyttä - 1.7.0-3 - Build with libmagic support. * Sat Oct 15 2011 Ville Skyttä - 1.7.0-2 - Fix apr Conflicts syntax in -libs. - Fix obsolete chown syntax in subversion.conf. - Fix use of spaces vs tabs in specfile. * Wed Oct 12 2011 Joe Orton - 1.7.0-1 - update to 1.7.0 - drop svn2cl (no longer shipped in upstream tarball)