[pkg-java] r4400 - in trunk: . libjorbis-java libjorbis-java/debian

varun-guest at alioth.debian.org varun-guest at alioth.debian.org
Mon Oct 15 04:07:55 UTC 2007


Author: varun-guest
Date: 2007-10-15 04:07:55 +0000 (Mon, 15 Oct 2007)
New Revision: 4400

Added:
   trunk/libjorbis-java/
   trunk/libjorbis-java/debian/
   trunk/libjorbis-java/debian/README.Debian-source
   trunk/libjorbis-java/debian/ant.properties
   trunk/libjorbis-java/debian/build.xml
   trunk/libjorbis-java/debian/changelog
   trunk/libjorbis-java/debian/compat
   trunk/libjorbis-java/debian/control
   trunk/libjorbis-java/debian/copyright
   trunk/libjorbis-java/debian/docs
   trunk/libjorbis-java/debian/install
   trunk/libjorbis-java/debian/orig-tar.sh
   trunk/libjorbis-java/debian/rules
   trunk/libjorbis-java/debian/watch
Log:
* Initial inject of libjorbis-java.



Property changes on: trunk/libjorbis-java/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/libjorbis-java/debian/README.Debian-source
===================================================================
--- trunk/libjorbis-java/debian/README.Debian-source	                        (rev 0)
+++ trunk/libjorbis-java/debian/README.Debian-source	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,13 @@
+libjorbis-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 <varunhiremath at gmail.com>  Mon, 27 Aug 2007 19:02:53 +0530

Added: trunk/libjorbis-java/debian/ant.properties
===================================================================
--- trunk/libjorbis-java/debian/ant.properties	                        (rev 0)
+++ trunk/libjorbis-java/debian/ant.properties	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,4 @@
+class.dir=class
+source.dir=com/jcraft
+jorbis.jar.name=jorbis.jar
+jogg.jar.name=jogg.jar

Added: trunk/libjorbis-java/debian/build.xml
===================================================================
--- trunk/libjorbis-java/debian/build.xml	                        (rev 0)
+++ trunk/libjorbis-java/debian/build.xml	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="jorbis" basedir="..">
+  <property file="./build.properties"/>
+
+  <target name="clean">
+    <delete dir="${class.dir}" quiet="true"/>
+    <delete file="${jorbis.jar.name}" quiet="true"/>
+    <delete file="${jogg.jar.name}" quiet="true"/>
+  </target>
+
+  <target name="compile">
+    <mkdir dir="${class.dir}"/>
+    <javac srcdir="${source.dir}" destdir="${class.dir}"
+    deprecation="true" debug="true" optimize="false"/>
+  </target>
+
+  <target name="jar" description="o Create the jar" depends="compile">
+    <jar jarfile="${jorbis.jar.name}">
+      <fileset dir="${class.dir}">
+          <include name="com/jcraft/jorbis/*"/>
+      </fileset>
+    </jar>
+    <jar jarfile="${jogg.jar.name}">
+      <fileset dir="${class.dir}">
+          <include name="com/jcraft/jogg/*"/>
+      </fileset>
+    </jar>
+
+  </target>
+
+</project>

Added: trunk/libjorbis-java/debian/changelog
===================================================================
--- trunk/libjorbis-java/debian/changelog	                        (rev 0)
+++ trunk/libjorbis-java/debian/changelog	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,29 @@
+libjorbis-java (0.0.16-4) unstable; urgency=low
+
+  * Move the package to pkg-java svn.
+  * Set Maintainer to Debian Java Maintainers and add myself to Uploaders.
+  * Move the build scripts to debian dir.
+
+ -- Varun Hiremath <varunhiremath at gmail.com>  Mon, 15 Oct 2007 09:41:36 +0530
+
+libjorbis-java (0.0.16-3) unstable; urgency=low
+
+  * debian/control: Set Priority to optional from extra.
+  * Switch from kaffe to java-gcj-compat-dev.
+
+ -- Varun Hiremath <varunhiremath at gmail.com>  Thu, 11 Oct 2007 13:54:08 +0530
+
+libjorbis-java (0.0.16-2) unstable; urgency=low
+
+  * Fix the directory structure in the jars.
+  * debian/control: Add XS-Vcs-{Svn,Browser} headers.
+  * Add debian/README.Debian-source file.
+
+ -- Varun Hiremath <varunhiremath at gmail.com>  Fri, 24 Aug 2007 18:49:27 +0530
+
+libjorbis-java (0.0.16-1) unstable; urgency=low
+
+  * Initial release (Closes: #421716)
+
+ -- Varun Hiremath <varunhiremath at gmail.com>  Tue, 24 Apr 2007 17:19:10 +0530
+

Added: trunk/libjorbis-java/debian/compat
===================================================================
--- trunk/libjorbis-java/debian/compat	                        (rev 0)
+++ trunk/libjorbis-java/debian/compat	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1 @@
+5

Added: trunk/libjorbis-java/debian/control
===================================================================
--- trunk/libjorbis-java/debian/control	                        (rev 0)
+++ trunk/libjorbis-java/debian/control	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,17 @@
+Source: libjorbis-java
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Varun Hiremath <varunhiremath at gmail.com>, Torsten Werner <twerner at debian.org>
+Build-Depends: ant, cdbs, debhelper (>= 5), java-gcj-compat-dev
+Standards-Version: 3.7.2
+Homepage: http://www.jcraft.com/jorbis/
+XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjorbis-java
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjorbis-java
+
+Package: libjorbis-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, java-gcj-compat | java1-runtime | java2-runtime
+Description: Pure Java Ogg Vorbis Decoder
+ JOrbis is a pure Java Ogg Vorbis decoder. JOrbis accepts Ogg Vorbis
+ bitstreams and decodes them to raw PCM.

Added: trunk/libjorbis-java/debian/copyright
===================================================================
--- trunk/libjorbis-java/debian/copyright	                        (rev 0)
+++ trunk/libjorbis-java/debian/copyright	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,26 @@
+This package was debianized by Varun Hiremath <varunhiremath at gmail.com> on
+Tue, 24 Apr 2007 17:19:10 +0530.
+
+It was downloaded from http://www.jcraft.com/jorbis/
+
+Upstream Author: ymnk <ymnk at jcraft.com>
+
+Copyright: (C) 2000 ymnk, JCraft,Inc.
+
+License:
+
+    This package is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
+
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Lesser General Public License for more details.
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+The Debian packaging is (C) 2007, Varun Hiremath <varunhiremath at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: trunk/libjorbis-java/debian/docs
===================================================================
--- trunk/libjorbis-java/debian/docs	                        (rev 0)
+++ trunk/libjorbis-java/debian/docs	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1 @@
+README

Added: trunk/libjorbis-java/debian/install
===================================================================
--- trunk/libjorbis-java/debian/install	                        (rev 0)
+++ trunk/libjorbis-java/debian/install	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1 @@
+*.jar /usr/share/java/

Added: trunk/libjorbis-java/debian/orig-tar.sh
===================================================================
--- trunk/libjorbis-java/debian/orig-tar.sh	                        (rev 0)
+++ trunk/libjorbis-java/debian/orig-tar.sh	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,19 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+
+TAR=libjorbis-java_$2.orig.tar.gz
+DIR=libjorbis-java-$2.orig
+
+# clean up the upstream tarball
+unzip $3
+mv jorbis-$2 $DIR
+tar -c -z -f $TAR --exclude '*.jar' $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/libjorbis-java/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/libjorbis-java/debian/rules
===================================================================
--- trunk/libjorbis-java/debian/rules	                        (rev 0)
+++ trunk/libjorbis-java/debian/rules	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,17 @@
+#!/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	:= debian/build.xml
+
+install/libjorbis-java::
+	install -m 644 -D jorbis.jar $(DEB_DESTDIR)/usr/share/java/jorbis-$(DEB_UPSTREAM_VERSION).jar
+	install -m 644 -D jogg.jar $(DEB_DESTDIR)/usr/share/java/jogg-$(DEB_UPSTREAM_VERSION).jar
+	dh_link /usr/share/java/jorbis-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/jorbis.jar
+	dh_link /usr/share/java/jogg-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/jogg.jar
+
+get-orig-source:
+	-uscan --upstream-version 0


Property changes on: trunk/libjorbis-java/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/libjorbis-java/debian/watch
===================================================================
--- trunk/libjorbis-java/debian/watch	                        (rev 0)
+++ trunk/libjorbis-java/debian/watch	2007-10-15 04:07:55 UTC (rev 4400)
@@ -0,0 +1,2 @@
+version=3
+http://www.jcraft.com/jorbis/ jorbis-(.*).zip debian debian/orig-tar.sh




More information about the pkg-java-commits mailing list