[libtablelayout-java] 01/15: move package to pkg-java
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Fri Apr 20 16:05:36 BST 2018
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository libtablelayout-java.
commit 0fe67eca1bca6cfdd2dc62c4cba530c8d3d499e0
Author: Torsten Werner <twerner at debian.org>
Date: Sun Jun 28 19:50:35 2009 +0000
move package to pkg-java
---
build.properties | 4 ++++
build.xml | 31 +++++++++++++++++++++++++++++++
debian/changelog | 16 ++++++++++++++++
debian/compat | 1 +
debian/control | 25 +++++++++++++++++++++++++
debian/copyright | 44 ++++++++++++++++++++++++++++++++++++++++++++
debian/doc-base | 11 +++++++++++
debian/docs | 1 +
debian/install | 1 +
debian/orig-tar.sh | 21 +++++++++++++++++++++
debian/rules | 9 +++++++++
debian/watch | 5 +++++
12 files changed, 169 insertions(+)
diff --git a/build.properties b/build.properties
new file mode 100644
index 0000000..4bab26f
--- /dev/null
+++ b/build.properties
@@ -0,0 +1,4 @@
+class.dir=build
+doc.dir=doc
+source.dir=.
+jar.name=tablelayout.jar
diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000..0e1d2e9
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="tablelayout" basedir=".">
+ <property file="build.properties"/>
+
+ <target name="clean" description="Clean up">
+ <delete dir="${class.dir}"/>
+ <delete file="${jar.name}"/>
+ </target>
+
+ <target name="compile" description="Compile the sources">
+ <mkdir dir="${class.dir}"/>
+ <javac srcdir="${source.dir}" destdir="${class.dir}"
+ deprecation="true" debug="true" optimize="false"/>
+ </target>
+
+ <target name="javadoc" description="Creates Javadoc documentation">
+ <mkdir dir="${doc.dir}"/>
+ <javadoc packagenames="info.clearthought.layout.*"
+ sourcepath="${source.dir}" destdir="${doc.dir}"/>
+ </target>
+
+ <target name="jar" description="Create the jar" depends="compile,javadoc">
+ <jar jarfile="${jar.name}" basedir="${class.dir}"/>
+ </target>
+
+ <target name="install" depends="jar">
+ <mkdir dir="${destdir}/usr/share/java/" />
+ <copy file="${jar.name}" todir="${destdir}/usr/share/java/"/>
+ </target>
+</project>
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d929862
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,16 @@
+libtablelayout-java (20070421-2) unstable; urgency=low
+
+ [ Varun Hiremath ]
+ * Fix debian/watch and debian/orig-tar.sh
+
+ [ Torsten Werner ]
+ * Fix Vcs headers and add Homepage header in debian/control.
+
+ -- Torsten Werner <twerner at debian.org> Mon, 03 Dec 2007 21:31:05 +0100
+
+libtablelayout-java (20070421-1) unstable; urgency=low
+
+ * Initial release (Closes: #423671)
+
+ -- Torsten Werner <twerner at debian.org> Sun, 29 Apr 2007 16:23:33 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..abacdcf
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: libtablelayout-java
+Section: non-free/libs
+Priority: optional
+Maintainer: Torsten Werner <twerner at debian.org>
+Build-Depends: ant, cdbs, debhelper (>= 5), kaffe
+Standards-Version: 3.7.2
+Homepage: https://tablelayout.dev.java.net/
+Vcs-Svn: https://bollin.googlecode.com/svn/libtablelayout-java/trunk
+Vcs-Browser: http://bollin.googlecode.com/svn/libtablelayout-java/trunk
+
+Package: libtablelayout-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Java layout manager for creating user interfaces fast and easy
+ TableLayout is a free layout manager designed to make creating user interfaces
+ fast and easy. It can do anything GridBagLayout can do and much, much more.
+ Yet it is remarkably simple and easy to use.
+ .
+ TableLayout uses concepts that everyone is familiar with such as
+ spreadsheet-like rows, columns, and cells; and word processing justifications
+ like left, center, right, and full. Consequentially, creating interfaces takes
+ minutes instead of hours.
+ .
+ Since its publication in 2002, TableLayout has rapidly become the most popular
+ third party layout manager in the world.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..eb693b1
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,44 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Sun May 13 18:53:26 CEST 2007.
+
+It was downloaded from
+https://tablelayout.dev.java.net/servlets/ProjectDocumentList?folderID=3487&expandFolder=3487&folderID=3487
+
+Upstream Author:
+Daniel Barbalace <clearthought at dev.java.net>
+
+Copyright:
+(c) 2001-2005 Daniel Barbalace. All rights reserved.
+
+License:
+
+ The Clearthought Software License, Version 1.0
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ 2. The original software may not be altered. However, the classes
+ provided may be subclasses as long as the subclasses are not
+ packaged in the info.clearthought package or any subpackage of
+ info.clearthought.
+
+ THIS SOFTWARE IS PROVIDED ``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 THE AUTHOR, AFFILATED BUSINESSES,
+ OR ANYONE ELSE 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.
+
+
+The Debian packaging is (C) 2007, Torsten Werner <twerner at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
diff --git a/debian/doc-base b/debian/doc-base
new file mode 100644
index 0000000..39c255a
--- /dev/null
+++ b/debian/doc-base
@@ -0,0 +1,11 @@
+Document: libtablelayout-java
+Title: Java layout manager for creating user interfaces fast and easy
+Author: Daniel Barbalace <clearthought at dev.java.net>
+Abstract: TableLayout is a free layout manager designed to make creating user
+ interfaces fast and easy. It can do anything GridBagLayout can do and much,
+ much more.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libtablelayout-java/index.html
+Files: /usr/share/doc/libtablelayout-java/*.html
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..30d29de
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+doc/*
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..71161d4
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+*.jar /usr/share/java/
diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
new file mode 100755
index 0000000..d7a710b
--- /dev/null
+++ b/debian/orig-tar.sh
@@ -0,0 +1,21 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+
+DIR=tablelayout-$2
+TAR=../libtablelayout-java_$2.orig.tar.gz
+
+# clean up the upstream tarball
+mkdir $DIR
+(cd $DIR && jar -x -f ../$3)
+tar -c -z -f $TAR $DIR
+rm -rf $DIR
+rm -rf $3
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+ . .svn/deb-layout
+ mv $TAR $origDir
+ echo "moved $TAR to $origDir"
+fi
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..41091fa
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/class/ant.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+JAVA_HOME = /usr/lib/kaffe
+
+get-orig-source:
+ -uscan --upstream-version 0
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..5b96b34
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+# ARGH: does not work with https
+version=3
+opts=uversionmangle=s/-//g \
+ https://tablelayout.dev.java.net/servlets/ProjectDocumentList?folderID=3487&expandFolder=3487&folderID=3487 \
+ .*/TableLayout-src-(.*).jar debian debian/orig-tar.sh
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libtablelayout-java.git
More information about the pkg-java-commits
mailing list