Author: varun-guest Date: 2007-10-31 13:22:01 +0000 (Wed, 31 Oct 2007) New Revision: 4542
Added: trunk/libjdbm-java/ trunk/libjdbm-java/debian/ trunk/libjdbm-java/debian/README.Debian-source trunk/libjdbm-java/debian/changelog trunk/libjdbm-java/debian/compat trunk/libjdbm-java/debian/control trunk/libjdbm-java/debian/copyright trunk/libjdbm-java/debian/orig-tar.sh trunk/libjdbm-java/debian/rules trunk/libjdbm-java/debian/watch Log: * Initial inject of JDBM. Property changes on: trunk/libjdbm-java/debian ___________________________________________________________________ Name: mergeWithUpstream + 1 Added: trunk/libjdbm-java/debian/README.Debian-source =================================================================== --- trunk/libjdbm-java/debian/README.Debian-source (rev 0) +++ trunk/libjdbm-java/debian/README.Debian-source 2007-10-31 13:22:01 UTC (rev 4542) @@ -0,0 +1,13 @@ +libjdbm-java +============ + +The upstream supplied source package contains binary jar files. +Currently no clean source distribution exists. Therefore, the upstream +sources were modified to comply with the Debian Free Software +Guidelines. + +Use the rules/get-orig-source target to create the orig.tar.gz. +For more details on repackaging of upstream sources please see the +debian/orig-tar.sh file. + + -- Varun Hiremath <[EMAIL PROTECTED]>, Wed, 31 Oct 2007 19:02:26 +0530 Added: trunk/libjdbm-java/debian/changelog =================================================================== --- trunk/libjdbm-java/debian/changelog (rev 0) +++ trunk/libjdbm-java/debian/changelog 2007-10-31 13:22:01 UTC (rev 4542) @@ -0,0 +1,5 @@ +libjdbm-java (1.0-1) unstable; urgency=low + + * Initial release (Closes: #) + + -- Varun Hiremath <[EMAIL PROTECTED]> Tue, 24 Apr 2007 17:19:10 +0530 Added: trunk/libjdbm-java/debian/compat =================================================================== --- trunk/libjdbm-java/debian/compat (rev 0) +++ trunk/libjdbm-java/debian/compat 2007-10-31 13:22:01 UTC (rev 4542) @@ -0,0 +1 @@ +5 Added: trunk/libjdbm-java/debian/control =================================================================== --- trunk/libjdbm-java/debian/control (rev 0) +++ trunk/libjdbm-java/debian/control 2007-10-31 13:22:01 UTC (rev 4542) @@ -0,0 +1,21 @@ +Source: libjdbm-java +Section: libs +Priority: optional +Maintainer: Debian Java Maintainers <[EMAIL PROTECTED]> +Uploaders: Varun Hiremath <[EMAIL PROTECTED]>, + Torsten Werner <[EMAIL PROTECTED]> +Build-Depends: cdbs, debhelper (>= 5) +Build-Depends-Indep: ant, java-gcj-compat-dev +Standards-Version: 3.7.2 +Homepage: http://sourceforge.net/projects/jdbm/ +Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjdbm-java +Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjdbm-java + +Package: libjdbm-java +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, + java-gcj-compat | java1-runtime | java2-runtime +Description: persistence engine for Java + JDBM is a transactional persistence engine for Java. It aims to be + for Java what GDBM is for Perl, Python, C, etcetera: a simple + persistence engine that is lightweight and fast. Added: trunk/libjdbm-java/debian/copyright =================================================================== --- trunk/libjdbm-java/debian/copyright (rev 0) +++ trunk/libjdbm-java/debian/copyright 2007-10-31 13:22:01 UTC (rev 4542) @@ -0,0 +1,57 @@ +This package was debianized by Varun Hiremath <[EMAIL PROTECTED]> on +Tue, 24 Apr 2007 17:19:10 +0530. + +It was downloaded from http://sourceforge.net/projects/jdbm/ + +Upstream Authors: + Alex Boisvert + Cees de Groot + +Copyright: + (C) 2000-2001 Alex Boisvert. All Rights Reserved. + (C) 2000 Cees de Groot. All Rights Reserved. + +License: + Redistribution and use of this software and associated documentation + ("Software"), with or without modification, are permitted provided + that the following conditions are met: + + 1. Redistributions of source code must retain copyright + statements and notices. Redistributions must also contain a + copy of this document. + + 2. Redistributions in binary form must reproduce the + above copyright notice, this list of conditions and the + following disclaimer in the documentation and/or other + materials provided with the distribution. + + 3. The name "JDBM" must not be used to endorse or promote + products derived from this Software without prior written + permission of Cees de Groot. For written permission, + please contact [EMAIL PROTECTED] + + 4. Products derived from this Software may not be called "JDBM" + nor may "JDBM" appear in their names without prior written + permission of Cees de Groot. + + 5. Due credit should be given to the JDBM Project + (http://jdbm.sourceforge.net/). + + THIS SOFTWARE IS PROVIDED BY THE JDBM PROJECT AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT + NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL + CEES DE GROOT OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + OF THE POSSIBILITY OF SUCH DAMAGE. + + On Debian systems, the complete text of the BSD License can be + found in `/usr/share/common-licenses/BSD'. + +The Debian packaging is (C) 2007, Varun Hiremath <[EMAIL PROTECTED]> and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. Added: trunk/libjdbm-java/debian/orig-tar.sh =================================================================== --- trunk/libjdbm-java/debian/orig-tar.sh (rev 0) +++ trunk/libjdbm-java/debian/orig-tar.sh 2007-10-31 13:22:01 UTC (rev 4542) @@ -0,0 +1,18 @@ +#!/bin/sh -e + +# called by uscan with '--upstream-version' <version> <file> +TAR=../libjdbm-java_$2.orig.tar.gz +DIR=libjdbm-java-$2.orig + +# clean up the upstream tarball +unzip $3 +mv jdbm-$2 $DIR +GZIP=--best tar -c -z -f $TAR --exclude '*/lib/*' $DIR +rm -rf $3 $DIR + +# move to directory 'tarballs' +if [ -r .svn/deb-layout ]; then + . .svn/deb-layout + mv $TAR $origDir + echo "moved $TAR to $origDir" +fi Property changes on: trunk/libjdbm-java/debian/orig-tar.sh ___________________________________________________________________ Name: svn:executable + * Added: trunk/libjdbm-java/debian/rules =================================================================== --- trunk/libjdbm-java/debian/rules (rev 0) +++ trunk/libjdbm-java/debian/rules 2007-10-31 13:22:01 UTC (rev 4542) @@ -0,0 +1,15 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/class/ant.mk +include /usr/share/cdbs/1/rules/debhelper.mk + +JAVA_HOME := /usr/lib/jvm/java-gcj +DEB_ANT_BUILD_TARGET := jar +DEB_ANT_BUILDFILE := src/build.xml + +install/libjdbm-java:: + install -m 644 -D dist/jdbm*.jar $(DEB_DESTDIR)/usr/share/java/jdbm-$(DEB_UPSTREAM_VERSION).jar + dh_link /usr/share/java/jdbm-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/jdbm.jar + +get-orig-source: + -uscan --upstream-version 0 Property changes on: trunk/libjdbm-java/debian/rules ___________________________________________________________________ Name: svn:executable + * Added: trunk/libjdbm-java/debian/watch =================================================================== --- trunk/libjdbm-java/debian/watch (rev 0) +++ trunk/libjdbm-java/debian/watch 2007-10-31 13:22:01 UTC (rev 4542) @@ -0,0 +1,2 @@ +version=3 +http://sf.net/jdbm/ jdbm-(.*)-src\.zip debian debian/orig-tar.sh _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

