Author: fourmond Date: 2011-04-16 19:43:17 +0000 (Sat, 16 Apr 2011) New Revision: 13539
Added: trunk/libjaba-client-java/ trunk/libjaba-client-java/debian/ trunk/libjaba-client-java/debian/changelog trunk/libjaba-client-java/debian/compat trunk/libjaba-client-java/debian/control trunk/libjaba-client-java/debian/copyright trunk/libjaba-client-java/debian/javabuild trunk/libjaba-client-java/debian/libjaba-client-java.dirs trunk/libjaba-client-java/debian/libjaba-client-java.jlibs trunk/libjaba-client-java/debian/rules trunk/libjaba-client-java/debian/source/ trunk/libjaba-client-java/debian/source/format Log: [libjaba-client-java] Initial packaging Property changes on: trunk/libjaba-client-java/debian ___________________________________________________________________ Added: mergeWithUpstream + 1 Added: trunk/libjaba-client-java/debian/changelog =================================================================== --- trunk/libjaba-client-java/debian/changelog (rev 0) +++ trunk/libjaba-client-java/debian/changelog 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1,5 @@ +libjaba-client-java (0-1~java1) unstable; urgency=low + + * Initial release. (Closes: #623030) + + -- Vincent Fourmond <[email protected]> Thu, 14 Apr 2011 22:03:33 +0200 Added: trunk/libjaba-client-java/debian/compat =================================================================== --- trunk/libjaba-client-java/debian/compat (rev 0) +++ trunk/libjaba-client-java/debian/compat 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1 @@ +7 Added: trunk/libjaba-client-java/debian/control =================================================================== --- trunk/libjaba-client-java/debian/control (rev 0) +++ trunk/libjaba-client-java/debian/control 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1,20 @@ +Source: libjaba-client-java +Section: java +Priority: optional +Maintainer: Vincent Fourmond <[email protected]> +Build-Depends: debhelper (>= 7.0.50~), javahelper, default-jdk, + liblog4j1.2-java +Standards-Version: 3.9.2 +Homepage: http://www.compbio.dundee.ac.uk/jabaws/ +Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjaba-client-java +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-java/trunk/libjaba-client-java + + +Package: libjaba-client-java +Architecture: all +Depends: ${misc:Depends}, ${java:Depends} +Description: minimal client for the JABAWS server + This package contains a library for building a client for the JABAWS + sequence alignment server. + . + This library is needed by jalview. Added: trunk/libjaba-client-java/debian/copyright =================================================================== --- trunk/libjaba-client-java/debian/copyright (rev 0) +++ trunk/libjaba-client-java/debian/copyright 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1,50 @@ +Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=174 +Upstream-Name: JABAWS command-line client +Source: http://www.compbio.dundee.ac.uk/jabaws/download.html + The "source" jar file actually found on that page is missing a few + bits, which were kindly provided privately by Peter Troshin. This + situation should improve soon enough. + +Files: * +Copyright: 2009, 2010 by Peter Troshin +License: Apache 2.0 + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + . + http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian system, the full text of the license can be found at + /usr/share/common-licenses/Apache-2.0 + + +Files: debian/* +Copyright: 2011 by Vincent Fourmond <[email protected]> +License: GPL2+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + . + This program 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 General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA + . + On Debian system, the full text of the license can be found at + /usr/share/common-licenses/GPL-2 + Added: trunk/libjaba-client-java/debian/javabuild =================================================================== --- trunk/libjaba-client-java/debian/javabuild (rev 0) +++ trunk/libjaba-client-java/debian/javabuild 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1 @@ +jaba-client.jar . Added: trunk/libjaba-client-java/debian/libjaba-client-java.dirs =================================================================== --- trunk/libjaba-client-java/debian/libjaba-client-java.dirs (rev 0) +++ trunk/libjaba-client-java/debian/libjaba-client-java.dirs 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1 @@ +usr/share/doc \ No newline at end of file Added: trunk/libjaba-client-java/debian/libjaba-client-java.jlibs =================================================================== --- trunk/libjaba-client-java/debian/libjaba-client-java.jlibs (rev 0) +++ trunk/libjaba-client-java/debian/libjaba-client-java.jlibs 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1 @@ +jaba-client.jar Added: trunk/libjaba-client-java/debian/rules =================================================================== --- trunk/libjaba-client-java/debian/rules (rev 0) +++ trunk/libjaba-client-java/debian/rules 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +export JAVA_HOME=/usr/lib/jvm/default-java +export CLASSPATH=/usr/share/java/log4j-1.2.jar + +%: + dh $@ --with javahelper + +override_dh_auto_clean: + +override_dh_auto_build: \ No newline at end of file Property changes on: trunk/libjaba-client-java/debian/rules ___________________________________________________________________ Added: svn:executable + * Added: trunk/libjaba-client-java/debian/source/format =================================================================== --- trunk/libjaba-client-java/debian/source/format (rev 0) +++ trunk/libjaba-client-java/debian/source/format 2011-04-16 19:43:17 UTC (rev 13539) @@ -0,0 +1 @@ +3.0 (quilt) _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

