OBS User unknown 2008-04-22 23:52:08 +00:00 committed by Git OBS Bridge
parent 34e4648c6c
commit da5961d7b9
7 changed files with 26 additions and 56 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5c64505e7b44beb07371427dc3d78c28aee4648abb1986c5acdda18d747473fb
size 8637176
oid sha256:6c880f19bfcfae0c636a66191661251bf21aad26860b9acb665b1aff21892fb5
size 8601019

View File

@ -8,8 +8,8 @@
# Either a space-separated list of allowable Neon versions, or "any" to
# mean allow anything.
-NEON_ALLOWED_LIST="0.25.0 0.25.1 0.25.2 0.25.3 0.25.4 0.25.5 0.26.0 0.26.1 0.26.2 0.26.3 0.26.4 0.27.2 0.28.0 0.28.1"
+NEON_ALLOWED_LIST="0.25.0 0.25.1 0.25.2 0.25.3 0.25.4 0.25.5 0.26.0 0.26.1 0.26.2 0.26.3 0.26.4 0.27.0 0.27.1 0.27.2 0.27.3 0.27.4 0.27.5 0.28.0 0.28.1 0.28.2 0.28.3 0.29.0 0.29.1 0.29.2 0.29.3"
-NEON_ALLOWED_LIST="0.25.0 0.25.1 0.25.2 0.25.3 0.25.4 0.25.5 0.26.0 0.26.1 0.26.2 0.26.3 0.26.4 0.27.2 0.28.0 0.28.1 0.28.2"
+NEON_ALLOWED_LIST="0.25.0 0.25.1 0.25.2 0.25.3 0.25.4 0.25.5 0.26.0 0.26.1 0.26.2 0.26.3 0.26.4 0.27.0 0.27.1 0.27.2 0.27.3 0.27.4 0.27.5 0.28.0 0.28.1 0.28.2 0.28.3 0.28.4 0.28.5 0.29.0 0.29.1 0.29.2 0.29.3"
NEON_RECOMMENDED_VER=0.28.1
NEON_URL="http://www.webdav.org/neon/neon-${NEON_RECOMMENDED_VER}.tar.gz"
dnl You can skip the neon version check only if you know what you are doing

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Apr 22 09:39:30 CEST 2008 - olh@suse.de
- update to rev 30750, 1.5.0-rc3
-------------------------------------------------------------------
Thu Mar 20 13:40:25 CET 2008 - olh@suse.de

View File

@ -1,40 +0,0 @@
Fall back to ipv4 if the host has an ipv6 address,
but doesnt respond to ipv6 right now.
---
subversion/libsvn_ra_svn/client.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
--- a/subversion/libsvn_ra_svn/client.c
+++ b/subversion/libsvn_ra_svn/client.c
@@ -145,10 +145,30 @@ static svn_error_t *make_connection(cons
return svn_error_wrap_apr(status, _("Can't create socket"));
status = apr_socket_connect(*sock, sa);
+ if (!status)
+ goto out;
+ if (sa->family == APR_INET6) {
+ status = apr_sockaddr_info_get(&sa, hostname, APR_INET, port, 0, pool);
+ if (status)
+ return svn_error_createf(status, NULL, _("Unknown hostname '%s'"),
+ hostname);
+#ifdef MAX_SECS_TO_LINGER
+ /* ### old APR interface */
+ status = apr_socket_create(sock, sa->family, SOCK_STREAM, pool);
+#else
+ status = apr_socket_create(sock, sa->family, SOCK_STREAM, APR_PROTO_TCP,
+ pool);
+#endif
+ if (status)
+ return svn_error_wrap_apr(status, _("Can't create socket"));
+
+ status = apr_socket_connect(*sock, sa);
+ }
if (status)
return svn_error_wrap_apr(status, _("Can't connect to host '%s'"),
hostname);
+out:
return SVN_NO_ERROR;
}

View File

@ -5,7 +5,7 @@
--- a/configure.ac
+++ b/configure.ac
@@ -559,7 +559,7 @@ fi
@@ -539,7 +539,7 @@ fi
AC_PATH_PROGS(PYTHON, "$PYTHON", none)
# The minimum version for the JVM runtime for our Java bytecode.

View File

@ -7,10 +7,10 @@
SHELL = @SHELL@
LIBTOOL = @SVN_LIBTOOL@
-LTFLAGS = @SVN_LT_CCTAG@ --silent
-LTCXXFLAGS = @SVN_LT_CXXTAG@ --silent
+LTFLAGS = @SVN_LT_CCTAG@
+LTCXXFLAGS = @SVN_LT_CXXTAG@
-LTFLAGS = --tag=CC --silent
-LTCXXFLAGS = --tag=CXX --silent
+LTFLAGS = --tag=CC
+LTCXXFLAGS = --tag=CXX
LT_LDFLAGS = @LT_LDFLAGS@
LT_NO_UNDEFINED = @LT_NO_UNDEFINED@
LT_CXX_LIBADD = @LT_CXX_LIBADD@

View File

@ -20,7 +20,7 @@ BuildRequires: neon-devel openldap2-devel
%endif
BuildRequires: sqlite-devel
Version: 1.5.0
Release: 63
Release: 72
#
%define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
#
@ -52,7 +52,6 @@ Patch11: subversion.libtool-verbose.patch
Patch20: subversion-swig-perl-install_vendor.patch
Patch23: subversion.libtool-pie-flags.patch
Patch31: subversion.perl.LD_RUN_PATH.patch
Patch32: subversion.fallback-to-ipv4.patch
Patch33: subversion.header_wrappers.patch
Patch34: subversion.allowed-neon.patch
Patch35: subversion.java14.patch
@ -66,6 +65,7 @@ but has major enhancements compared to CVS.
%package devel
License: The Apache Software License
Group: Development/Libraries/C and C++
Summary: Development package for Subversion developers
Requires: subversion = %{version}
@ -79,6 +79,7 @@ files for developers interacting with the subversion package.
%package tools
License: The Apache Software License; Subversion License, http://subversion.tigris.org/license-1.html
Group: Development/Tools/Version Control
Summary: Tools for Subversion
@ -104,6 +105,7 @@ http://subversion.tigris.org/tools_contrib.html
%package perl
License: The Apache Software License; Subversion License, http://subversion.tigris.org/license-1.html
Group: Development/Tools/Version Control
Summary: Allows Perl scripts to directly use Subversion repositories.
Requires: subversion = %{version}
@ -115,6 +117,7 @@ Provides Perl (SWIG) support for Subversion.
%package python
License: The Apache Software License; Subversion License, http://subversion.tigris.org/license-1.html
Group: Development/Tools/Version Control
Summary: Allows Python scripts to directly use Subversion repositories.
Requires: subversion = %{version}
@ -125,6 +128,7 @@ Provides Pythong (SWIG) support for Subversion.
%package server
License: The Apache Software License
Group: Development/Tools/Version Control
Summary: Apache server module for Subversion server
Requires: subversion = %{version}
@ -154,7 +158,6 @@ esac
%patch20 -p1
%patch23 -p1
%patch31 -p1
%patch32 -p1
%patch33 -p1
%patch34 -p1
%patch35 -p1
@ -416,6 +419,8 @@ rm -rf $RPM_BUILD_ROOT
%{apache_libexecdir}/mod_authz_svn.*
%changelog
* Tue Apr 22 2008 olh@suse.de
- update to rev 30750, 1.5.0-rc3
* Thu Mar 20 2008 olh@suse.de
- update to rev 29972
various bugfixes
@ -532,7 +537,7 @@ rm -rf $RPM_BUILD_ROOT
(r20667, r22311)
* SWIG/python bindings:
- fixed: memory leak whenever C APIs returned errors (r21453, r23468)
* Tue May 22 2007 olh@suse.de
* Wed May 23 2007 olh@suse.de
- silence some lint warnings
run ldconfig in subversion-perl/python post install
remove development related files from subversion-tools
@ -917,14 +922,14 @@ rm -rf $RPM_BUILD_ROOT
- update viewcvs to todays status
correct subversion.viewcvs.conf defaults for mod_python
fix the python exceptions in viewcvs
* Sun Feb 26 2006 olh@suse.de
* Mon Feb 27 2006 olh@suse.de
- add build dependency handling for swig bindings
* Thu Feb 23 2006 olh@suse.de
- update viewcvs to todays status
remove Requires: swig (#153013)
Require libapr-util1-devel libapr1-devel python-devel openldap2-devel
cvs2svn requires svnadmin from subversion
* Sun Jan 29 2006 olh@suse.de
* Mon Jan 30 2006 olh@suse.de
- update viewcvs to todays status
update cvs2svn to current svn status
update viewcvs bugurl patch
@ -1263,7 +1268,7 @@ rm -rf $RPM_BUILD_ROOT
- new hook scripts: pre-lock, pre-unlock, post-lock, post-unlock
* speedups for 'svn blame' and other commands (see xdelta in release notes)
* fixed: make both svnserve and svn:// urls work with IPv6 (r13235-6)
* Sun May 01 2005 olh@suse.de
* Mon May 02 2005 olh@suse.de
- add a simple svngrep script to simplify grep -r in repositories
* Sun May 01 2005 olh@suse.de
- rcsvnserve had a hardcoded requirement for userid/groupid svn