[pkg-java] r8253 - in trunk: . libmiglayout-java libmiglayout-java/debian
Varun Hiremath
varun at alioth.debian.org
Sat May 9 04:37:02 UTC 2009
Author: varun
Date: 2009-05-09 04:37:01 +0000 (Sat, 09 May 2009)
New Revision: 8253
Added:
trunk/libmiglayout-java/
trunk/libmiglayout-java/debian/
trunk/libmiglayout-java/debian/ant.properties
trunk/libmiglayout-java/debian/build.xml
trunk/libmiglayout-java/debian/changelog
trunk/libmiglayout-java/debian/compat
trunk/libmiglayout-java/debian/control
trunk/libmiglayout-java/debian/copyright
trunk/libmiglayout-java/debian/orig-tar.sh
trunk/libmiglayout-java/debian/rules
trunk/libmiglayout-java/debian/watch
Log:
* New package: miglayout
* Supposed to replace tablelayout (non-free) in Jajuk.
Property changes on: trunk/libmiglayout-java/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: trunk/libmiglayout-java/debian/ant.properties
===================================================================
--- trunk/libmiglayout-java/debian/ant.properties (rev 0)
+++ trunk/libmiglayout-java/debian/ant.properties 2009-05-09 04:37:01 UTC (rev 8253)
@@ -0,0 +1,4 @@
+project.name=miglayout
+class.dir=build
+source.dir=.
+jar=miglayout.jar
Added: trunk/libmiglayout-java/debian/build.xml
===================================================================
--- trunk/libmiglayout-java/debian/build.xml (rev 0)
+++ trunk/libmiglayout-java/debian/build.xml 2009-05-09 04:37:01 UTC (rev 8253)
@@ -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" nowarn="true"/>
+ </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/libmiglayout-java/debian/changelog
===================================================================
--- trunk/libmiglayout-java/debian/changelog (rev 0)
+++ trunk/libmiglayout-java/debian/changelog 2009-05-09 04:37:01 UTC (rev 8253)
@@ -0,0 +1,5 @@
+libmiglayout-java (3.7-1) unstable; urgency=low
+
+ * Initial release (Closes: #)
+
+ -- Varun Hiremath <varun at debian.org> Fri, 08 May 2009 23:29:51 -0400
Added: trunk/libmiglayout-java/debian/compat
===================================================================
--- trunk/libmiglayout-java/debian/compat (rev 0)
+++ trunk/libmiglayout-java/debian/compat 2009-05-09 04:37:01 UTC (rev 8253)
@@ -0,0 +1 @@
+6
Added: trunk/libmiglayout-java/debian/control
===================================================================
--- trunk/libmiglayout-java/debian/control (rev 0)
+++ trunk/libmiglayout-java/debian/control 2009-05-09 04:37:01 UTC (rev 8253)
@@ -0,0 +1,22 @@
+Source: libmiglayout-java
+Section: non-free/java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Varun Hiremath <varun at debian.org>, Torsten Werner <twerner at debian.org>
+Build-Depends: debhelper (>= 6), cdbs
+Build-Depends-Indep: ant, default-jdk, libswt3.2-gtk-java, substance
+Standards-Version: 3.8.1
+Homepage: http://www.miglayout.com
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libmiglayout-java
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libmiglayout-java
+
+Package: libmiglayout-java
+Architecture: all
+Depends: ${misc:Depends}, default-jre-headless | java2-runtime-headless
+Description: The Java Layout Manager
+ MiGLayout is a superbly versatile SWT/Swing layout manager that makes
+ layout problems trivial. It is using String or API type-checked
+ constraints to format the layout. MiGLayout can produce flowing, grid
+ based, absolute (with links), grouped and docking layouts. MiGLayout
+ is created to be to manually coded layouts what Matisse/GroupLayout
+ is to IDE supported visual layouts.
Added: trunk/libmiglayout-java/debian/copyright
===================================================================
--- trunk/libmiglayout-java/debian/copyright (rev 0)
+++ trunk/libmiglayout-java/debian/copyright 2009-05-09 04:37:01 UTC (rev 8253)
@@ -0,0 +1,38 @@
+This package was debianized by Varun Hiremath <varun at debian.org> on
+Fri, 8 May 2009 23:31:48 -0400.
+
+It was downloaded from http://www.miglayout.com
+
+Upstream Authors: Mikael Grev
+
+Copyright: © 2004, Mikael Grev, MiG InfoCom AB. <miglayout at miginfocom.com>
+
+License: BSD
+
+ Redistribution and use in source and binary forms, with or without modification,
+ are permitted provided that the following conditions are met:
+ Redistributions of source code must retain the above copyright notice, this list
+ of conditions and the following disclaimer.
+ 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.
+ Neither the name of the MiG InfoCom AB nor the names of its contributors may be
+ used to endorse or promote products derived from this software without specific
+ prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS 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 COPYRIGHT OWNER OR 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.
+
+ The full text of the BSD license can be found in
+ /usr/share/common-licenses/BSD on Debian GNU/Linux systems.
+
+The Debian packaging is © 2009, Varun Hiremath <varun at debian.org>> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: trunk/libmiglayout-java/debian/orig-tar.sh
===================================================================
--- trunk/libmiglayout-java/debian/orig-tar.sh (rev 0)
+++ trunk/libmiglayout-java/debian/orig-tar.sh 2009-05-09 04:37:01 UTC (rev 8253)
@@ -0,0 +1,18 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+DIR=miglayout-$2
+TAR=../libmiglayout-java_$2.orig.tar.gz
+
+# clean up the upstream tarball
+mkdir $DIR
+(cd $DIR && jar xf ../$3)
+tar -c -z -f $TAR $DIR
+rm -rf $DIR $3
+
+# 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/libmiglayout-java/debian/orig-tar.sh
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/libmiglayout-java/debian/rules
===================================================================
--- trunk/libmiglayout-java/debian/rules (rev 0)
+++ trunk/libmiglayout-java/debian/rules 2009-05-09 04:37:01 UTC (rev 8253)
@@ -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/default-java
+DEB_ANT_BUILDFILE := debian/build.xml
+DEB_JARS := substance /usr/lib/java/swt.jar
+
+install/libmiglayout-java::
+ install -m644 -D miglayout.jar $(DEB_DESTDIR)/usr/share/java/miglayout-$(DEB_UPSTREAM_VERSION).jar
+ dh_link -plibmiglayout-java /usr/share/java/miglayout-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/miglayout.jar
+
+get-orig-source:
+ -uscan --upstream-version 0 --rename
Property changes on: trunk/libmiglayout-java/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/libmiglayout-java/debian/watch
===================================================================
--- trunk/libmiglayout-java/debian/watch (rev 0)
+++ trunk/libmiglayout-java/debian/watch 2009-05-09 04:37:01 UTC (rev 8253)
@@ -0,0 +1,3 @@
+version=3
+http://www.migcalendar.com/miglayout/versions/([\d\.]+)/miglayout-([\d\.]+)-sources.jar \
+ debian debian/orig-tar.sh
More information about the pkg-java-commits
mailing list