Mailinglist Archive: opensuse-commit (1262 mails)
| < Previous | Next > |
commit subversion
- From: root@xxxxxxx (h_root)
- Date: Mon, 25 Sep 2006 23:02:19 +0200 (CEST)
- Message-id: <20060925210219.303E518F808@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package subversion
checked in at Mon Sep 25 23:02:19 CEST 2006.
--------
--- subversion/subversion.changes 2006-09-21 11:38:33.000000000 +0200
+++ subversion/subversion.changes 2006-09-25 10:56:04.000000000 +0200
@@ -1,0 +2,29 @@
+Mon Sep 25 10:55:08 CEST 2006 - olh@xxxxxxx
+
+- update cvs2svn to 1.4.0
+ New features:
+ * Support multicomponent --trunk, --tags, and --branches paths (issue #7).
+ * New --auto-props option allows file properties to be set via file.
+ * --force-branch and --force-tag options now accept regular expressions.
+ * Add --symbol-default option.
+ * Support multiple, ordered --encoding options.
+ Bugs fixed:
+ * Fix issue #93: Tags with forbidden characters converted to branches.
+ * Fix issue #102: Branch file, deleted in CVS, is present in SVN.
+ Improvements and output changes:
+ * Print informative warning message if a required program is missing.
+ * Output an error if any CVS filenames contain control characters.
+ * Clean up temporary files even for pass-by-pass conversions.
+ * Improve handling of commit dependencies and multibranch commits.
+ * Implemented issue #50 (performance change).
+ * Reduced the amount of temporary disk space needed during the conversion.
+ Miscellaneous:
+ * cvs2svn now requires Python version 2.2 or later.
+ * cvs2svn has been broken up into many smaller python modules for clarity.
+
+-------------------------------------------------------------------
+Sat Sep 23 08:59:32 CEST 2006 - olh@xxxxxxx
+
+- force javac 1.4 bytecode
+
+-------------------------------------------------------------------
Old:
----
subversion.cvs2svn-1.3.x.tar.bz2
New:
----
subversion.cvs2svn-1.4.x.tar.bz2
subversion.java14.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ subversion.spec ++++++
--- /var/tmp/diff_new_pack.FpICpG/_old 2006-09-25 23:01:29.000000000 +0200
+++ /var/tmp/diff_new_pack.FpICpG/_new 2006-09-25 23:01:29.000000000 +0200
@@ -13,7 +13,7 @@
Name: subversion
BuildRequires: apache2-devel db-devel gcc-c++ java2-devel-packages neon-devel openldap2-devel python-devel swig
Version: 1.4.0
-Release: 5
+Release: 7
#
%define apxs /usr/sbin/apxs2
%define apache_libexecdir %(%{apxs} -q LIBEXECDIR)
@@ -37,7 +37,7 @@
Source8: subversion.viewvc.conf
Source9: subversion.rcsvnserve
Source10: subversion.sysconfig.svnserve
-Source11: subversion.cvs2svn-1.3.x.tar.bz2
+Source11: subversion.cvs2svn-1.4.x.tar.bz2
Source42: subversion.svngrep.sh
Source43: subversion.svndiff.sh
#
@@ -53,6 +53,7 @@
Patch32: subversion.fallback-to-ipv4.patch
Patch33: subversion.header_wrappers.patch
patch34: subversion.allowed-neon.patch
+Patch35: subversion.java14.patch
#
Patch42: subversion.viewvc-buglink.patch
Patch43: subversion.viewvc-r1397.patch
@@ -128,9 +129,10 @@
+%define cvs2svn_dir cvs2svn-1.4.x
%package -n cvs2svn
-Version: 1.3.1
-Release: 11
+Version: 1.4.0
+Release: 1
Provides: subversion-cvs2svn
Obsoletes: subversion-cvs2svn
Group: Development/Tools/Version Control
@@ -150,11 +152,12 @@
%package -n viewvc
Version: 1.0.1
-Release: 1
+Release: 3
Requires: subversion-python
Provides: subversion-viewcvs viewcvs
Obsoletes: subversion-viewcvs viewcvs
Group: Development/Tools/Version Control
+URL: http://www.viewvc.org/
Summary: ViewVC - Browse a Subversion Repository with a Web Browser
%description -n viewvc
@@ -207,6 +210,7 @@
%patch32 -p1
%patch33 -p1
%patch34 -p1
+%patch35 -p1
#
pushd viewvc-1.0.x
%patch43
@@ -216,7 +220,7 @@
%patch47
%patch42
popd
-pushd cvs2svn-1.3.x
+pushd %{cvs2svn_dir}
%patch51 -p1
popd
@@ -348,7 +352,7 @@
cp -av subversion/mod_authz_svn/INSTALL README.mod_authz_svn
cat %name.lang > files.subversion
cat with_jdk.files >> files.subversion
-cd cvs2svn-1.3.x
+cd %{cvs2svn_dir}
make install DESTDIR=$RPM_BUILD_ROOT
cd ..
#
@@ -461,7 +465,7 @@
%files -n cvs2svn
%defattr(-,root,root)
-%doc cvs2svn-1.3.x/{BUGS,COMMITTERS,COPYING,README,design-notes.txt,verify-cvs2svn,www/{faq,cvs2svn}.html}
+%doc %{cvs2svn_dir}/{BUGS,COMMITTERS,COPYING,README,design-notes.txt,verify-cvs2svn.py,www/{faq,cvs2svn}.html}
%attr(755,root,root) /usr/bin/cvs2svn
%dir %{site_python}/cvs2svn_rcsparse
%{site_python}/cvs2svn*
@@ -485,6 +489,29 @@
%config (noreplace) %{apache_sysconfdir}/conf.d/subversion.viewvc.conf
%changelog -n subversion
+* Mon Sep 25 2006 - olh@xxxxxxx
+- update cvs2svn to 1.4.0
+ New features:
+ * Support multicomponent --trunk, --tags, and --branches paths (issue #7).
+ * New --auto-props option allows file properties to be set via file.
+ * --force-branch and --force-tag options now accept regular expressions.
+ * Add --symbol-default option.
+ * Support multiple, ordered --encoding options.
+ Bugs fixed:
+ * Fix issue #93: Tags with forbidden characters converted to branches.
+ * Fix issue #102: Branch file, deleted in CVS, is present in SVN.
+ Improvements and output changes:
+ * Print informative warning message if a required program is missing.
+ * Output an error if any CVS filenames contain control characters.
+ * Clean up temporary files even for pass-by-pass conversions.
+ * Improve handling of commit dependencies and multibranch commits.
+ * Implemented issue #50 (performance change).
+ * Reduced the amount of temporary disk space needed during the conversion.
+ Miscellaneous:
+ * cvs2svn now requires Python version 2.2 or later.
+ * cvs2svn has been broken up into many smaller python modules for clarity.
+* Sat Sep 23 2006 - olh@xxxxxxx
+- force javac 1.4 bytecode
* Thu Sep 21 2006 - olh@xxxxxxx
- rename viewcvs to viewvc, with no upgrade path for config files
- use the official viewvc-1.0.1 to get rid of the -dev string
++++++ subversion.cvs2svn-1.3.x.tar.bz2 -> subversion.cvs2svn-1.4.x.tar.bz2 ++++++
++++ 21237 lines of diff (skipped)
++++++ subversion.java14.patch ++++++
---
subversion/bindings/java/javahl/build/build.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: subversion-1.4.x/subversion/bindings/java/javahl/build/build.xml
===================================================================
--- subversion-1.4.x.orig/subversion/bindings/java/javahl/build/build.xml
+++ subversion-1.4.x/subversion/bindings/java/javahl/build/build.xml
@@ -17,13 +17,13 @@
</javah>
</target>
<target name="javac" unless="junit.path">
- <javac compiler="modern" destdir="classes">
+ <javac source="1.4" target="1.4" compiler="modern" destdir="classes">
<src path="src"/>
<exclude name="org/tigris/subversion/javahl/tests/**"/>
</javac>
</target>
<target name="javac-tests" if="junit.path">
- <javac compiler="modern" destdir="classes">
+ <javac source="1.4" target="1.4" compiler="modern" destdir="classes">
<src path="src"/>
<classpath path="${junit.path}"/>
</javac>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |