[pkg-java] r5103 - in trunk: . libtvanytimeapi-java libtvanytimeapi-java/debian
twerner at alioth.debian.org
twerner at alioth.debian.org
Mon Dec 17 20:07:10 UTC 2007
Author: twerner
Date: 2007-12-17 20:07:10 +0000 (Mon, 17 Dec 2007)
New Revision: 5103
Added:
trunk/libtvanytimeapi-java/
trunk/libtvanytimeapi-java/debian/
trunk/libtvanytimeapi-java/debian/ant.properties
trunk/libtvanytimeapi-java/debian/build.xml
trunk/libtvanytimeapi-java/debian/changelog
trunk/libtvanytimeapi-java/debian/compat
trunk/libtvanytimeapi-java/debian/control
trunk/libtvanytimeapi-java/debian/copyright
trunk/libtvanytimeapi-java/debian/orig-tar.sh
trunk/libtvanytimeapi-java/debian/rules
Log:
new package tvanytimeapi
Added: trunk/libtvanytimeapi-java/debian/ant.properties
===================================================================
--- trunk/libtvanytimeapi-java/debian/ant.properties (rev 0)
+++ trunk/libtvanytimeapi-java/debian/ant.properties 2007-12-17 20:07:10 UTC (rev 5103)
@@ -0,0 +1,4 @@
+project.name=tvanytimeapi
+class.dir=build
+source.dir=java
+jar=tvanytimeapi.jar
Added: trunk/libtvanytimeapi-java/debian/build.xml
===================================================================
--- trunk/libtvanytimeapi-java/debian/build.xml (rev 0)
+++ trunk/libtvanytimeapi-java/debian/build.xml 2007-12-17 20:07:10 UTC (rev 5103)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="${project.name}" basedir="..">
+
+ <target name="clean">
+ <delete dir="${class.dir}" quiet="true"/>
+ </target>
+
+ <target name="compile" description="o Compile the source files">
+ <mkdir dir="${class.dir}"/>
+ <javac srcdir="${source.dir}" destdir="${class.dir}"
+ debug="true" source="1.5"/>
+ </target>
+
+ <target name="jar" description="o Create the jar" depends="compile">
+ <jar jarfile="${jar}">
+ <fileset dir="${class.dir}">
+ <include name="**"/>
+ </fileset>
+ </jar>
+ </target>
+
+</project>
Added: trunk/libtvanytimeapi-java/debian/changelog
===================================================================
--- trunk/libtvanytimeapi-java/debian/changelog (rev 0)
+++ trunk/libtvanytimeapi-java/debian/changelog 2007-12-17 20:07:10 UTC (rev 5103)
@@ -0,0 +1,6 @@
+libtvanytimeapi-java (1.3-1) unstable; urgency=low
+
+ UNRELEASED
+ * Initial release (Closes: #456660)
+
+ -- Torsten Werner <twerner at debian.org> Mon, 17 Dec 2007 20:48:51 +0100
Added: trunk/libtvanytimeapi-java/debian/compat
===================================================================
--- trunk/libtvanytimeapi-java/debian/compat (rev 0)
+++ trunk/libtvanytimeapi-java/debian/compat 2007-12-17 20:07:10 UTC (rev 5103)
@@ -0,0 +1 @@
+5
Added: trunk/libtvanytimeapi-java/debian/control
===================================================================
--- trunk/libtvanytimeapi-java/debian/control (rev 0)
+++ trunk/libtvanytimeapi-java/debian/control 2007-12-17 20:07:10 UTC (rev 5103)
@@ -0,0 +1,25 @@
+Source: libtvanytimeapi-java
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Torsten Werner <twerner at debian.org>
+Build-Depends: ant, cdbs, debhelper (>= 5), java-gcj-compat-dev
+Standards-Version: 3.7.3
+Homepage: http://www.bbc.co.uk/opensource/projects/tv_anytime_api/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libtvanytimeapi-java/
+Vcs-Svn: svn+ssh://svn.debian.org/svn/pkg-java/trunk/libtvanytimeapi-java
+
+Package: libtvanytimeapi-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends},
+ java-gcj-compat | java1-runtime | java2-runtime
+Suggests: java-virtual-machine
+Description: Java API for parsing, manipulating and creating TV-Anytime metadata
+ TV-Anytime is an open standard for metadata describing TV and radio
+ programmes that is designed to support Personal Video Recoders (PVRs),
+ programme guides and related technologies. The TV Anytime Forum is an
+ association of organisations which seeks to develop specifications to
+ enable audio-visual and other services based on mass-market high volume
+ digital storage. For further information go to www.tv-anytime.org. The
+ TV-Anytime specifications are published by ETSI as the TS 102 822
+ series and are available at the ETSI web site (http://www.etsi.org/)
Added: trunk/libtvanytimeapi-java/debian/copyright
===================================================================
--- trunk/libtvanytimeapi-java/debian/copyright (rev 0)
+++ trunk/libtvanytimeapi-java/debian/copyright 2007-12-17 20:07:10 UTC (rev 5103)
@@ -0,0 +1,30 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Mon Dec 17 20:50:34 CET 2007.
+
+It was downloaded from http://sourceforge.net/projects/tvanytimeapi/
+
+Upstream Authors: Chris Newell, Tristan Ferne
+
+Copyright: (c) 2003-2005 BBC Research and Development
+
+License:
+
+ This library 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.1 of the License, or (at your option) any later version.
+
+ This library 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.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+The full text of the LGPL can be found in
+/usr/share/common-licenses/LGPL-2.1 on Debian GNU/Linux systems.
+
+The Debian packaging is (C) 2007, Torsten Werner <twerner at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: trunk/libtvanytimeapi-java/debian/orig-tar.sh
===================================================================
--- trunk/libtvanytimeapi-java/debian/orig-tar.sh (rev 0)
+++ trunk/libtvanytimeapi-java/debian/orig-tar.sh 2007-12-17 20:07:10 UTC (rev 5103)
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+set -e
+
+VERSION=$(dpkg-parsechangelog | sed -ne 's,^Version: \(.*\)-.*,\1,p')
+SOURCE=$(dpkg-parsechangelog | sed -ne 's,Source: \(.*\),\1,p')
+
+URL=http://downloads.sourceforge.net/tvanytimeapi
+ZIP=TVAnytimeAPI_July05_release.zip
+
+DIR=${SOURCE}-${VERSION}
+TAR=../${SOURCE}_${VERSION}.orig.tar.gz
+
+wget $URL/$ZIP
+mkdir $DIR
+unzip -d $DIR $ZIP
+tar -c -z --exclude '*.jar' --exclude '*.pdf' --exclude '*/doc/*' -f $TAR $DIR
+rm -rf $DIR $ZIP
+
+# 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/libtvanytimeapi-java/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
+
Added: trunk/libtvanytimeapi-java/debian/rules
===================================================================
--- trunk/libtvanytimeapi-java/debian/rules (rev 0)
+++ trunk/libtvanytimeapi-java/debian/rules 2007-12-17 20:07:10 UTC (rev 5103)
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+JAVA_HOME := /usr/lib/jvm/java-gcj
+DEB_ANT_BUILDFILE := debian/build.xml
+
+install/libcommons-compress-java::
+ install -m644 -D commons-compress.jar $(DEB_DESTDIR)/usr/share/java/commons-compress-$(DEB_UPSTREAM_VERSION).jar
+ dh_link -plibcommons-compress-java /usr/share/java/commons-compress-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/commons-compress.jar
+
+get-orig-source:
+ sh debian/orig-tar.sh
Property changes on: trunk/libtvanytimeapi-java/debian/rules
___________________________________________________________________
Name: svn:executable
+
More information about the pkg-java-commits
mailing list