[libxpp3-java] 01/24: Initial revision

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Fri Mar 16 13:06:50 GMT 2018


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

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

commit 87ad3a324f15c5b9f2e4cb2a95c1bcc3f05afaf8
Author: Arnaud Vandyck <avdyk at debian.org>
Date:   Fri May 6 11:26:17 2005 +0000

    Initial revision
---
 debian/README.Debian-source             |  4 +++
 debian/changelog                        | 10 ++++++
 debian/compat                           |  1 +
 debian/control                          | 18 ++++++++++
 debian/copyright                        | 59 +++++++++++++++++++++++++++++++++
 debian/libxpp3-java.dirs                |  1 +
 debian/libxpp3-java.docs                |  2 ++
 debian/patches/01_Buildxml_apidoc.patch | 12 +++++++
 debian/rules                            | 23 +++++++++++++
 9 files changed, 130 insertions(+)

diff --git a/debian/README.Debian-source b/debian/README.Debian-source
new file mode 100644
index 0000000..a383581
--- /dev/null
+++ b/debian/README.Debian-source
@@ -0,0 +1,4 @@
+From the original upstream distribution the prebuilt
+jar files were removed with rm *.jar in the basedir.
+
+ 
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3467a3f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,10 @@
+libxpp3-java (1.1.3.4.M-1) experimental; urgency=low
+
+  * Initial Release, based on the work of Jorge Perez Burgos (closes: #251303)
+  * Included additional xpath library
+  * Enabled junit tests
+  * Included xmlpull api documentation
+  * Reworked description to show differences to the xpp2 version  
+
+ -- Wolfgang Baer <WBaer at gmx.de>  Sat, 23 Apr 2005 15:23:09 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c841d40
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,18 @@
+Source: libxpp3-java
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Wolfgang Baer <WBaer at gmx.de>
+Build-Depends-Indep: debhelper (>= 4.2.30), cdbs (>= 0.4.28), libant1.6-java, kaffe, junit
+Standards-Version: 3.6.1
+
+Package: libxpp3-java
+Architecture: all
+Depends: kaffe | java1-runtime | java2-runtime
+Description: XML pull parser library for java
+ Xml Pull Parser (in short XPP) is a streaming pull XML parser for java.
+ This version XPP3 is a successor of XPP2 (see package libxpp2-java) that
+ implements XmlPull API (see http://www.xmlpull.org). 
+ .
+ However XPP3 currently supports only parsing and does not support 
+ incremental node tree from XPP2. 
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..949914a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,59 @@
+This package was debianized by Wolfgang Baer <WBaer at gmx.de> on
+Sat, 23 Apr 2005 15:23:09 +0200 based on the work of Jorge 
+P�rez Burgos <jorge.perez at adaptia.net>.
+
+It was downloaded from 
+<http://www.extreme.indiana.edu/dist/java-repository/xpp3/distributions/>
+
+Copyright:
+
+Upstream Author: Aleksander Andrzej Slominski <aslom at cs.indiana.edu>
+
+License:
+
+ Indiana University Extreme! Lab Software License
+
+ Version 1.1.1
+
+ Copyright (c) 2002 Extreme! Lab, Indiana University. All rights reserved.
+
+ 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. 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.
+
+ 3. The end-user documentation included with the redistribution, if any,
+ must include the following acknowledgment:
+
+ "This product includes software developed by the Indiana University
+ Extreme! Lab (http://www.extreme.indiana.edu/)."
+
+ Alternately, this acknowledgment may appear in the software itself,
+ if and wherever such third-party acknowledgments normally appear.
+
+ 4. The names "Indiana Univeristy" and "Indiana Univeristy Extreme! Lab"
+ must not be used to endorse or promote products derived from this
+ software without prior written permission. For written permission,
+ please contact http://www.extreme.indiana.edu/.
+
+ 5. Products derived from this software may not use "Indiana Univeristy"
+ name nor may "Indiana Univeristy" appear in their name, without prior
+ written permission of the Indiana University.
+
+ 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 AUTHORS, COPYRIGHT HOLDERS OR ITS 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.
diff --git a/debian/libxpp3-java.dirs b/debian/libxpp3-java.dirs
new file mode 100644
index 0000000..13c9f03
--- /dev/null
+++ b/debian/libxpp3-java.dirs
@@ -0,0 +1 @@
+usr/share/java
diff --git a/debian/libxpp3-java.docs b/debian/libxpp3-java.docs
new file mode 100644
index 0000000..abc24c3
--- /dev/null
+++ b/debian/libxpp3-java.docs
@@ -0,0 +1,2 @@
+README.html
+doc/api
diff --git a/debian/patches/01_Buildxml_apidoc.patch b/debian/patches/01_Buildxml_apidoc.patch
new file mode 100644
index 0000000..f968287
--- /dev/null
+++ b/debian/patches/01_Buildxml_apidoc.patch
@@ -0,0 +1,12 @@
+--- build.xml.orig	2005-04-23 15:43:52.000000000 +0200
++++ build.xml	2005-04-23 15:40:53.000000000 +0200
+@@ -477,8 +477,7 @@
+              use="true"
+              windowtitle="${name} ${version} API"
+              doctitle="${name}"
+-             bottom="${copyright}"
+-             link="http://java.sun.com/j2se/1.4/docs/api/"             
++             bottom="${copyright}"             
+     />
+   </target>
+ 
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..adf27dc
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+# debian/rules file for libxpp3-java (uses cdbs)
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+export UPSTREAM_VERSION = $(shell head -1 debian/changelog | cut -f2 -d\( | cut -f1 -d\) | cut -f1 -d\-)
+
+JAVA_HOME := /usr/lib/kaffe
+ANT_HOME := /usr/share/ant1.6
+DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar junit
+DEB_ANT_COMPILER := jikes
+DEB_ANT_BUILD_TARGET := xpp3 junit apidoc
+
+clean::
+	-rm -rf doc/api
+
+install/libxpp3-java::
+	install -m 644 build/xpp3-$(UPSTREAM_VERSION).jar debian/libxpp3-java/usr/share/java/xpp3-$(UPSTREAM_VERSION).jar
+	ln -s xpp3-$(UPSTREAM_VERSION).jar debian/libxpp3-java/usr/share/java/xpp3.jar
+	install -m 644 build/xpp3_xpath-$(UPSTREAM_VERSION).jar debian/libxpp3-java/usr/share/java/xpp3-xpath-$(UPSTREAM_VERSION).jar
+	ln -s xpp3-xpath-$(UPSTREAM_VERSION).jar debian/libxpp3-java/usr/share/java/xpp3-xpath.jar

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



More information about the pkg-java-commits mailing list