[pkg-java] r11059 - in trunk: . fast-md5 fast-md5/debian

Onkar Shinde onkarshinde-guest at alioth.debian.org
Fri Nov 13 05:30:09 UTC 2009


Author: onkarshinde-guest
Date: 2009-11-13 05:30:06 +0000 (Fri, 13 Nov 2009)
New Revision: 11059

Added:
   trunk/fast-md5/
   trunk/fast-md5/debian/
   trunk/fast-md5/debian/changelog
   trunk/fast-md5/debian/compat
   trunk/fast-md5/debian/control
   trunk/fast-md5/debian/copyright
   trunk/fast-md5/debian/rules
   trunk/fast-md5/debian/watch
Log:
fast-md5 initial release

Added: trunk/fast-md5/debian/changelog
===================================================================
--- trunk/fast-md5/debian/changelog	                        (rev 0)
+++ trunk/fast-md5/debian/changelog	2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,5 @@
+fast-md5 (2.6.2-1) UNRELEASED; urgency=low
+
+  * Initial release. Merge from Ubuntu. (Closes: #555944)
+
+ -- Onkar Shinde <onkarshinde at ubuntu.com>  Fri, 13 Nov 2009 10:36:46 +0530

Added: trunk/fast-md5/debian/compat
===================================================================
--- trunk/fast-md5/debian/compat	                        (rev 0)
+++ trunk/fast-md5/debian/compat	2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1 @@
+5

Added: trunk/fast-md5/debian/control
===================================================================
--- trunk/fast-md5/debian/control	                        (rev 0)
+++ trunk/fast-md5/debian/control	2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,25 @@
+Source: fast-md5
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Onkar Shinde <onkarshinde at ubuntu.com>
+Build-Depends: debhelper (>=5), cdbs, ant
+Build-Depends-Indep: default-jdk
+Standards-Version: 3.8.3
+Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/fast-md5/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-java/trunk/fast-md5/
+Homepage: http://www.twmacinta.com/myjava/fast_md5.php
+DM-Upload-Allowed: yes
+
+Package: libfast-md5-java
+Architecture: all
+Depends: ${misc:Depends}, default-jre-headless | java2-runtime-headless
+Description: fast implementation of the MD5 algorithm written in Java
+ fast-md5 is faster than the build-in MD5 support in java standard toolkit.
+ It can be used if one or more of following applies:
+  * Java's built-in MD5 support is a bottleneck for your program's performance
+    and you want something faster.
+  * You are using a version of Java which doesn't have MD5 support, such as
+    J2ME MIDP/CLDC.
+  * You want the extra convenience methods for hashing a file, hashing a
+    string, converting the hash to a hex string, etc. 

Added: trunk/fast-md5/debian/copyright
===================================================================
--- trunk/fast-md5/debian/copyright	                        (rev 0)
+++ trunk/fast-md5/debian/copyright	2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,30 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+Name: fast-md5
+Maintainer: Timothy W Macinta <twm at twmacinta.com>
+Source: http://www.twmacinta.com/myjava/fast_md5.php
+
+Files: *
+Copyright: 1996-2002, Santeri Paavolainen <sjpaavol at cc.helsinki.fi>
+           2002-2008, Timothy W Macinta <twm at twmacinta.com>
+License: LGPL-2.1+
+
+Files: src/com/twmacinta/io/NullOutputStream.java
+Copyright: 2001-2002 by Pensamos Digital, Inc.
+           2002-2008, Timothy W Macinta <twm at twmacinta.com>
+License: LGPL-2.1+
+
+Files: build.xml
+Copyright: 2003 - 2006 by Dannes Wessels, Timothy W Macinta, Martin West.
+License: LGPL-2.1+
+
+Files: src/com/twmacinta/util/test/MD5OutputStreamTest.java
+Copyright: 2002-2008, Timothy W Macinta <twm at twmacinta.com>
+License: LGPL-2.1+
+
+Files: debian/*
+Copyright: 2009, Onkar Shinde <onkarshinde at ubuntu.com>
+License: LGPL-2.1+
+
+License: LGPL-2.1+
+ On Debian systems the full text of the LGPL-2.1 license can be found in the
+ `/usr/share/common-licenses/LGPL-2.1' file.

Added: trunk/fast-md5/debian/rules
===================================================================
--- trunk/fast-md5/debian/rules	                        (rev 0)
+++ trunk/fast-md5/debian/rules	2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+JAVA_HOME_DIRS		:= /usr/lib/jvm/default-java
+DEB_ANT_BUILD_TARGET	:= jar
+DEB_ANT_ARGS		:= -Dapp.name=fast-md5-${DEB_UPSTREAM_VERSION} -Dant.build.javac.source=1.4 -Dant.build.javac.target=1.4
+
+install/libfast-md5-java::
+	dh_install dist/fast-md5-${DEB_UPSTREAM_VERSION}.jar usr/share/java/
+	dh_link usr/share/java/fast-md5-${DEB_UPSTREAM_VERSION}.jar usr/share/java/fast-md5.jar
+
+get-orig-source::
+	uscan --verbose --force-download
+	unzip ../fast-md5-$(DEB_UPSTREAM_VERSION).zip
+	mv fast-md5/ fast-md5-$(DEB_UPSTREAM_VERSION)
+	rm -rf fast-md5-$(DEB_UPSTREAM_VERSION)/build
+	tar -zcv --exclude *.h --exclude *.jnilib \
+	    --exclude *.dll --exclude *.so \
+	    -f ../fast-md5_$(DEB_UPSTREAM_VERSION).orig.tar.gz fast-md5-$(DEB_UPSTREAM_VERSION)
+	rm -rf fast-md5-$(DEB_UPSTREAM_VERSION)
+


Property changes on: trunk/fast-md5/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/fast-md5/debian/watch
===================================================================
--- trunk/fast-md5/debian/watch	                        (rev 0)
+++ trunk/fast-md5/debian/watch	2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,2 @@
+version=2
+http://www.twmacinta.com/myjava/fast_md5.php .*fast-md5-([\d\.]+).zip




More information about the pkg-java-commits mailing list