[pkg-java] r11305 - in trunk/libjlatexmath-java/debian: . patches

Sylvestre Ledru sylvestre at alioth.debian.org
Wed Dec 23 15:31:21 UTC 2009


Author: sylvestre
Date: 2009-12-23 15:31:21 +0000 (Wed, 23 Dec 2009)
New Revision: 11305

Removed:
   trunk/libjlatexmath-java/debian/orig-tar.sh
Modified:
   trunk/libjlatexmath-java/debian/changelog
   trunk/libjlatexmath-java/debian/control
   trunk/libjlatexmath-java/debian/patches/enableJavaDoc.diff
   trunk/libjlatexmath-java/debian/watch
Log:
  * New upstream release
  * Update of the Homepage field.
  * Repacking script removed
  * watch file desactivated for now

Modified: trunk/libjlatexmath-java/debian/changelog
===================================================================
--- trunk/libjlatexmath-java/debian/changelog	2009-12-21 14:41:21 UTC (rev 11304)
+++ trunk/libjlatexmath-java/debian/changelog	2009-12-23 15:31:21 UTC (rev 11305)
@@ -1,3 +1,13 @@
+libjlatexmath-java (0.8.2-1) unstable; urgency=low
+
+  * New upstream release
+  * Update of the Homepage field.
+  * Repacking script removed
+  * watch file desactivated for now
+  * enableJavaDoc.diff applied upstream
+
+ -- Sylvestre Ledru <sylvestre at debian.org>  Wed, 23 Dec 2009 15:50:24 +0100
+
 libjlatexmath-java (0.5-1) unstable; urgency=low
 
   * Initial Release (Closes: #554868)

Modified: trunk/libjlatexmath-java/debian/control
===================================================================
--- trunk/libjlatexmath-java/debian/control	2009-12-21 14:41:21 UTC (rev 11304)
+++ trunk/libjlatexmath-java/debian/control	2009-12-23 15:31:21 UTC (rev 11305)
@@ -7,7 +7,7 @@
 Standards-Version: 3.8.3
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjlatexmath
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjlatexmath
-Homepage: http://sourceforge.net/projects/jlatexmath/
+Homepage: http://forge.scilab.org/index.php/p/jlatexmath/
 
 Package: libjlatexmath-java
 Architecture: all

Deleted: trunk/libjlatexmath-java/debian/orig-tar.sh
===================================================================
--- trunk/libjlatexmath-java/debian/orig-tar.sh	2009-12-21 14:41:21 UTC (rev 11304)
+++ trunk/libjlatexmath-java/debian/orig-tar.sh	2009-12-23 15:31:21 UTC (rev 11305)
@@ -1,22 +0,0 @@
-#!/bin/sh -e
-
-# called by uscan with '--upstream-version' <version> <file>
-DIR=libjlatexmath-java-$2
-TAR=../libjlatexmath-java_$2.orig.tar.gz
-
-# clean up the upstream tarball
-mkdir $DIR
-cd $DIR
-jar xvf ../$3
-cd -
-tar -c -z -f $TAR $DIR
-rm -rf $DIR $3
-
-# move to directory 'tarballs'
-if [ -r .svn/deb-layout ]; then
-    . .svn/deb-layout
-    mv $TAR $origDir
-    echo "moved $TAR to $origDir"
-fi
-
-exit 0

Modified: trunk/libjlatexmath-java/debian/patches/enableJavaDoc.diff
===================================================================
--- trunk/libjlatexmath-java/debian/patches/enableJavaDoc.diff	2009-12-21 14:41:21 UTC (rev 11304)
+++ trunk/libjlatexmath-java/debian/patches/enableJavaDoc.diff	2009-12-23 15:31:21 UTC (rev 11305)
@@ -1,23 +1,16 @@
-commit dd763bb23bb90797ed81dd1ecbb6fca86e478b41
-Author: Sylvestre Ledru <sylvestre.ledru at scilab.org>
-Date:   Sat Nov 7 00:32:42 2009 +0100
-
-    build the doc through javadoc
-
-diff --git a/build.xml b/build.xml
-index 306f758..e3f55c3 100644
---- a/build.xml
-+++ b/build.xml
-@@ -4,7 +4,9 @@
+Index: libjlatexmath-java-0.8.2/build.xml
+===================================================================
+--- libjlatexmath-java-0.8.2.orig/build.xml	2009-12-23 16:16:48.000000000 +0100
++++ libjlatexmath-java-0.8.2/build.xml	2009-12-23 16:17:53.000000000 +0100
+@@ -4,6 +4,8 @@
  	<!-- Init -->
  	<target name="init" description="Initialize build">
  		<property name="project.root.dir" value="." />
 +		<property name="doc.dir" value="${project.root.dir}/doc/" />
- 		<property name="class.dir" value="/org/scilab/forge/jlatexmath" />
 +		<property name="project.src.basedir" value="${project.root.dir}/src/" />
+ 		<property name="class.dir" value="/org/scilab/forge/jlatexmath" />
  		<property name="project.src.dir" value="${project.root.dir}/src/${class.dir}" />
  		<property name="project.bin.dir" value="${project.root.dir}/bin" />
- 		<property name="package.dir" value="dist/" />
 @@ -30,6 +32,7 @@
  	<!-- Remove all temp directories and/or files-->
  	<target name="clean" depends="info" description="Removes all generated files">
@@ -26,11 +19,10 @@
  		<delete>
  			<fileset dir="${project.bin.dir}" includes="*.class" />
  		</delete>
-@@ -58,5 +61,18 @@
+@@ -58,5 +61,17 @@
  	<target name="source" depends="info" >
- 	  <jar jarfile="${output.jar.dir}/jlatexmath-src-${version}.jar" basedir="${project.root.dir}" includes="COPYING LICENSE build.xml src/**/*.java src/**/*.xml src/**/*.ttf src/**/licences/* src/**/README"/>
+ 	  <jar jarfile="${output.jar.dir}/jlatexmath-src-${version}.jar" basedir="${project.root.dir}" includes="COPYING LICENSE build.xml MANIFEST.MF src/**/*.java src/**/*.xml src/**/*.ttf src/**/licences/* src/**/README"/>
  	</target>
-+
 +     <target name="doc" depends="compile" description="Generates the API specification (javadoc)">
 +  <javadoc packagenames="org.scilab.forge.jlatexmath.*"
 +           sourcepath="${project.src.basedir}"

Modified: trunk/libjlatexmath-java/debian/watch
===================================================================
--- trunk/libjlatexmath-java/debian/watch	2009-12-21 14:41:21 UTC (rev 11304)
+++ trunk/libjlatexmath-java/debian/watch	2009-12-23 15:31:21 UTC (rev 11305)
@@ -1,2 +1,3 @@
 version=3
-http://sf.net/jlatexmath/ jlatexmath-src-(.*)\.jar debian debian/orig-tar.sh
+#http://forge.scilab.org/index.php/p/jlatexmath/downloads/ .*/downloads/(.*) debian
+#jlatexmath-(.*)\.tar\.gz debian debian/orig-tar.sh




More information about the pkg-java-commits mailing list