[libjgroups-java] 01/38: * Initial inject of JGroups. - Build-Depends on glassfish for javax.jms.* classes - jboss Build-Depends on JGroups

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Thu Nov 23 12:36:54 UTC 2017


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

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

commit 7b2740d86496fc9da60503daea4eeee902cf4abd
Author: Varun Hiremath <varun at debian.org>
Date:   Sat Oct 27 15:10:52 2007 +0000

    * Initial inject of JGroups.
      - Build-Depends on glassfish for javax.jms.* classes
      - jboss Build-Depends on JGroups
---
 debian/README.Debian-source | 13 +++++++++++++
 debian/changelog            |  5 +++++
 debian/compat               |  1 +
 debian/control              | 29 +++++++++++++++++++++++++++++
 debian/copyright            | 13 +++++++++++++
 debian/docs                 |  1 +
 debian/orig-tar.sh          | 18 ++++++++++++++++++
 debian/rules                | 17 +++++++++++++++++
 debian/watch                |  2 ++
 9 files changed, 99 insertions(+)

diff --git a/debian/README.Debian-source b/debian/README.Debian-source
new file mode 100644
index 0000000..943561a
--- /dev/null
+++ b/debian/README.Debian-source
@@ -0,0 +1,13 @@
+libjgroups-java
+===============
+
+The upstream supplied source package contains binary jar files.
+Currently no clean source distribution exists. Therefore, the upstream
+sources were modified to comply with the Debian Free Software
+Guidelines.
+
+Use the rules/get-orig-source target to create the orig.tar.gz.
+For more details on repackaging of upstream sources please see the 
+debian/orig-tar.sh file.
+
+ -- Varun Hiremath <varunhiremath at gmail.com>, Tue, 16 Oct 2007 18:29:16 +0530
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d646d54
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libjgroups-java (2.5.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #)
+
+ -- Varun Hiremath <varunhiremath at gmail.com>  Tue, 24 Apr 2007 17:19:10 +0530
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..9bc4688
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,29 @@
+Source: libjgroups-java
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Varun Hiremath <varunhiremath at gmail.com>, Torsten Werner <twerner at debian.org>
+Build-Depends: cdbs, debhelper (>= 5)
+Build-Depends-Indep: ant, sun-java6-jdk, glassfish, bsh,
+ libxalan2-java, libbcprov-java, libcommons-logging-java,
+ liblog4j1.2-java
+Standards-Version: 3.7.2
+Homepage: http://www.jgroups.org/javagroupsnew/docs/index.html
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjgroups-java
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjgroups-java
+
+Package: libjgroups-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, sun-java6-jre | java1-runtime | java2-runtime
+Description: Toolkit for Reliable Multicast Communication
+ JGroups is a toolkit for reliable multicast communication.  (Note
+ that this doesn't necessarily mean IP Multicast, JGroups can also use
+ transports such as TCP). It can be used to create groups of processes
+ whose members can send messages to each other. The main features
+ include:
+  * Group creation and deletion. Group members can be spread across LANs or WANs 
+  * Joining and leaving of groups 
+  * Membership detection and notification about joined/left/crashed members 
+  * Detection and removal of crashed members 
+  * Sending and receiving of member-to-group messages (point-to-multipoint) 
+  * Sending and receiving of member-to-member messages (point-to-point)
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..123fe49
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,13 @@
+This package was debianized by Varun Hiremath <varunhiremath at gmail.com> on
+Tue, 24 Apr 2007 17:19:10 +0530.
+
+It was downloaded from http://www.jgroups.org/javagroupsnew/docs/index.html
+
+Upstream Author:
+
+Copyright:
+
+License:
+
+The Debian packaging is (C) 2007, Varun Hiremath <varunhiremath at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+
diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
new file mode 100755
index 0000000..1ae4bee
--- /dev/null
+++ b/debian/orig-tar.sh
@@ -0,0 +1,18 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+TAR=libjgroups-java_$2.orig.tar.gz
+DIR=libjgroups-java-$2.orig
+
+# clean up the upstream tarball
+unzip $3
+mv JGroups-* $DIR
+tar -c -z -f $TAR --exclude '*.jar' $DIR
+rm -rf $3 $DIR
+
+# 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..83ef5a9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,17 @@
+#!/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/java-6-sun
+DEB_ANT_BUILD_TARGET	:= jar
+DEB_JARS		:= xalan2 serializer junit log4j-1.2 bsh commons-logging bcprov javaee
+
+install/libjgroups-java::
+	install -m 644 -D dist/jgroups-all.jar $(DEB_DESTDIR)/usr/share/java/jgroups-all-$(DEB_UPSTREAM_VERSION).jar
+	install -m 644 -D dist/jgroups-core.jar $(DEB_DESTDIR)/usr/share/java/jgroups-core-$(DEB_UPSTREAM_VERSION).jar
+	dh_link /usr/share/java/dist/jgroups-all-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/jgroups-all.jar
+	dh_link /usr/share/java/jgroups-core-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/jgroups-core.jar
+
+get-orig-source:
+	-uscan --upstream-version 0
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..8c1b963
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/javagroups/ JGroups-([\d\.]*)\.src\.zip debian debian/orig-tar.sh

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



More information about the pkg-java-commits mailing list