[libjswingreader-java] 01/08: Imported Debian patch 0.3-1

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Fri Jul 31 14:53:39 UTC 2015


This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libjswingreader-java.

commit e1b59e261665a2e41eddd387926d409a1a5f5401
Author: Vincent Fourmond <fourmond at debian.org>
Date:   Wed Oct 19 21:20:01 2011 +0200

    Imported Debian patch 0.3-1
---
 debian/changelog                  |  5 ++++
 debian/compat                     |  1 +
 debian/control                    | 17 +++++++++++++
 debian/copyright                  | 53 +++++++++++++++++++++++++++++++++++++++
 debian/get-svn-source             | 41 ++++++++++++++++++++++++++++++
 debian/libjswingreader-java.jlibs |  1 +
 debian/rules                      | 25 ++++++++++++++++++
 debian/source/format              |  1 +
 8 files changed, 144 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ff5097c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libjswingreader-java (0.3-1) unstable; urgency=low
+
+  * Initial release. (Closes: #644561)
+
+ -- Vincent Fourmond <fourmond at debian.org>  Wed, 19 Oct 2011 21:20:01 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..ac783b7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: libjswingreader-java
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Vincent Fourmond <fourmond at debian.org>
+Build-Depends: cdbs, debhelper (>= 7), ant, default-jdk, javahelper, 
+ libgnumail-java
+Standards-Version: 3.9.2
+Homepage: http://jswingreader.sourceforge.net
+
+Package: libjswingreader-java
+Architecture: all
+Depends: ${java:Depends}, ${misc:Depends}
+Description: RSS NewsFeed reader for Java
+ This is a RSS feed reader for java. It can either be used as a
+ standalone reader or as a library.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8a8adc7
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,53 @@
+Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=174
+Upstream-Name: swingreader-java
+Upstream-Contact: jalview-discuss at jalview.org
+Source:
+  The original tarball was made from sourceforge's SVN repository thus:
+  .
+  svn export http://jswingreader.svn.sourceforge.net/svnroot/jswingreader/trunk/jswingreader/JSwingReader
+  .
+  The debian/get-svn-source does the actual job of packaging this.
+Comment:
+  Although the source code lacks copyright and licensing information,
+  I asked confirmation to Rob Clevenger, the only contributor listed
+  in the SVN repository, that he owns the copyright and the actual
+  license for distribution:
+  .
+  From: Rob Clevenger <rcleveng at users.sourceforge.net>
+  Date: Thu, 6 Oct 2011 13:21:35 -0700
+  Message-ID: <CAL62qSO9uKa1M7FsfywV4Bbs_TgAD2OF3Z2AKG2-MbSQGjLO7Q at mail.gmail.com>
+  Subject: Re: Copyright and license of JSwingReader
+  To: Vincent Fourmond <fourmond at users.sourceforge.net>
+  .
+  Yes, I wrote the code myself and therefore own the copyright to
+  it. I license everything under Apache 2.0 license.
+  .
+  I hope that works, if not let me know, I'd be willing to license it
+  under something different if required, but I personally prefer
+  Apache 2.0.
+
+
+Files: *
+Copyright: Copyright 2004 Rob Clevenger <rcleveng at users.sourceforge.net>
+License: Apache-2.0
+  Licensed 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.
+  .
+  The full text of the Apache license can be found in
+  `/usr/share/common-licenses/Apache-2.0'.
+
+
+Files: debian/*
+Copyright: Copyright (C) 2011 Vincent Fourmond <fourmond at debian.org>
+License: Apache-2.0
+  Debian packaging is subject to the same terms as swingreader-java
+  itself.
\ No newline at end of file
diff --git a/debian/get-svn-source b/debian/get-svn-source
new file mode 100755
index 0000000..e9c7aca
--- /dev/null
+++ b/debian/get-svn-source
@@ -0,0 +1,41 @@
+#!/bin/sh
+
+# Script to export the source code of jsymphonic from its SVN
+# repository, and repackage that into a decent .orig tarball...
+
+version="$1"
+package="libjswingreader-java"
+
+if [ -z "$version" ]; then
+    echo <<EOF
+Usage:
+
+  debian/get-svn-source version
+
+  revision can be ommitted.
+EOF
+    exit 1;
+fi
+
+REP="http://jswingreader.svn.sourceforge.net/svnroot/jswingreader/trunk/jswingreader/JSwingReader"
+
+tmpdir=`mktemp -d `
+curdir=`pwd`
+
+cd $tmpdir;
+echo "Getting $package-$version"
+
+echo "Exporting source"
+dir="${package}-${version}"
+tarball="${package}_${version}.orig.tar.bz2"
+svn export "$REP" "$dir"
+
+echo 
+echo '---------------------------------------------------------------'
+echo 
+echo "Making tarball"
+tar cvjf "$curdir/../$tarball" "$dir"
+
+echo "Cleaning up temporary files"
+cd $curdir
+rm -rf $tmpdir
\ No newline at end of file
diff --git a/debian/libjswingreader-java.jlibs b/debian/libjswingreader-java.jlibs
new file mode 100644
index 0000000..8acc578
--- /dev/null
+++ b/debian/libjswingreader-java.jlibs
@@ -0,0 +1 @@
+jars/jswingreader-0.3.jar
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a6116ca
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+# debian/rules for libjswingreader-java
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/javahelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+JAVA_HOME_DIRS       := /usr/lib/jvm/default-java
+ANT_HOME             := /usr/share/ant
+ANT_OPTS 	     := -Dbuild.sysclasspath=only
+DEB_ANT_COMPILER     := modern
+DEB_BUILDDIR         := .
+DEB_ANT_CLEAN_TARGET := clean
+DEB_ANT_BUILD_TARGET := jar
+DEB_JARS             := gnumail
+FINAL_CLASSPATH      := $(shell echo $(DEB_JARS) | sed -r 's/^/\/usr\/share\/java\//g' | sed -r 's/$$/.jar/g')
+
+
+JH_CLASSPATH_ARGS := -c"$(FINAL_CLASSPATH)" debian/libjswingreader-java/usr/share/java/jswingreader.jar 
+
+
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libjswingreader-java.git



More information about the pkg-java-commits mailing list