[SCM] Apache ZooKeeper branch, master, updated. debian/3.3.1+dfsg1-2-29-g0f10813

2011-10-27 Thread James Page
The following commit has been merged in the master branch:
commit cdfd5f69dd159440392c27e80fdc4ba93f2881c1
Author: James Page james.p...@canonical.com
Date:   Thu Oct 27 10:26:48 2011 +0100

Added support for upstart under Ubuntu (LP: #862762):

* Added support for upstart under Ubuntu (LP: #862762):
  - d/rules,d/zookeeperd.upstart.in: Detect Ubuntu and swap in provided
upstart configuration if required.
  - d/ubuntu|debian_control_vars,d/control,d/rules: Provide different 
Depends
for zookeeperd package when building under Ubuntu/Debian.

diff --git a/debian/changelog b/debian/changelog
index 4418708..23527d6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+zookeeper (3.3.3+dfsg2-3) UNRELEASED; urgency=low
+
+  * Added support for upstart under Ubuntu (LP: #862762):
+- d/rules,d/zookeeperd.upstart.in: Detect Ubuntu and swap in provided 
+  upstart configuration if required.
+- d/ubuntu|debian_control_vars,d/control,d/rules: Provide different 
Depends 
+  for zookeeperd package when building under Ubuntu/Debian.
+
+ -- James Page james.p...@ubuntu.com  Thu, 27 Oct 2011 10:23:37 +0100
+
 zookeeper (3.3.3+dfsg2-2) unstable; urgency=low
 
   * Updated patch for ZOOKEEPER-1117 with fixes accepted into
diff --git a/debian/control b/debian/control
index 0953313..2f617ac 100644
--- a/debian/control
+++ b/debian/control
@@ -65,7 +65,7 @@ Description: High-performance coordination service for 
distributed applications
 
 Package: zookeeperd
 Architecture: all
-Depends: lsb-base (= 3.2-14), zookeeper (= ${binary:Version}), ${misc:Depends}
+Depends: ${zookeeperd-deps}, zookeeper (= ${binary:Version}), ${misc:Depends}
 Description: Init control scripts for zookeeper 
  ZooKeeper is a centralized, reliable, service for maintaining configuration
  information, naming, providing distributed synchronization, and group
diff --git a/debian/debian_control_vars b/debian/debian_control_vars
new file mode 100644
index 000..c83f47f
--- /dev/null
+++ b/debian/debian_control_vars
@@ -0,0 +1 @@
+zookeeperd-deps= lsb-base (= 3.2-14) 
diff --git a/debian/rules b/debian/rules
index 6487ff9..87c6690 100755
--- a/debian/rules
+++ b/debian/rules
@@ -104,6 +104,9 @@ override_jh_installjavadoc:
true
 
 override_dh_installinit:
+   if dpkg-vendor --derives-from ubuntu ; then \
+   cp zookeeperd.upstart.in zookeeperd.upstart ; \
+   fi
dh_installinit -d
 
 # jh_depends fails for me:
@@ -116,3 +119,9 @@ override_jh_depends:
 # some utf8 error? Don't need them anyway by now
 #override_jh_classpath override_jh_manifest override_jh_exec:
 #  true
+override_dh_gencontrol:
+   if dpkg-vendor --derives-from ubuntu ; then \
+dh_gencontrol -- -T$(CURDIR)/debian/ubuntu_control_vars ; \
+else \
+dh_gencontrol -- -T$(CURDIR)/debian/debian_control_vars ; \
+fi
diff --git a/debian/ubuntu_control_vars b/debian/ubuntu_control_vars
new file mode 100644
index 000..e551528
--- /dev/null
+++ b/debian/ubuntu_control_vars
@@ -0,0 +1 @@
+zookeeperd-deps= daemon
diff --git a/debian/zookeeperd.upstart.in b/debian/zookeeperd.upstart.in
new file mode 100644
index 000..3354657
--- /dev/null
+++ b/debian/zookeeperd.upstart.in
@@ -0,0 +1,27 @@
+description zookeeper centralized coordination service
+
+start on runlevel [2345]
+stop on runlevel [!2345]
+
+respawn
+
+limit nofile 8192 8192
+
+pre-start script
+[ -r /usr/share/java/zookeeper.jar ] || exit 0
+[ -r /etc/zookeeper/conf/environment ] || exit 0
+. /etc/zookeeper/conf/environment
+[ -d $ZOO_LOG_DIR ] || mkdir -p $ZOO_LOG_DIR
+chown $USER:$GROUP $ZOO_LOG_DIR
+end script
+
+script
+. /etc/zookeeper/conf/environment
+[ -r /etc/default/zookeeper ]  . /etc/default/zookeeper
+if [ -z $JMXDISABLE ]; then
+JAVA_OPTS=$JAVA_OPTS -Dcom.sun.management.jmxremote 
-Dcom.sun.management.jmxremote.local.only=$JMXLOCALONLY
+fi
+exec daemon --name=zookeeper --inherit --user=$USER \
+   -- $JAVA -cp $CLASSPATH $JAVA_OPTS -Dzookeeper.log.dir=${ZOO_LOG_DIR} \
+   -Dzookeeper.root.logger=${ZOO_LOG4J_PROP} $ZOOMAIN $ZOOCFG
+end script

-- 
Apache ZooKeeper

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] Apache ZooKeeper branch, master, updated. debian/3.3.1+dfsg1-2-29-g0f10813

2011-10-27 Thread James Page
The following commit has been merged in the master branch:
commit 7edd30d6a422b2eeafa7daa5d1858df8ada8fb4e
Author: James Page james.p...@canonical.com
Date:   Thu Oct 27 10:31:48 2011 +0100

Fixup upstart path

diff --git a/debian/rules b/debian/rules
index 87c6690..0c77482 100755
--- a/debian/rules
+++ b/debian/rules
@@ -105,7 +105,7 @@ override_jh_installjavadoc:
 
 override_dh_installinit:
if dpkg-vendor --derives-from ubuntu ; then \
-   cp zookeeperd.upstart.in zookeeperd.upstart ; \
+   cp debian/zookeeperd.upstart.in debian/zookeeperd.upstart ; \
fi
dh_installinit -d
 

-- 
Apache ZooKeeper

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] Apache ZooKeeper branch, master, updated. debian/3.3.1+dfsg1-2-29-g0f10813

2011-10-27 Thread James Page
The following commit has been merged in the master branch:
commit 0f10813f1cf50793914b6326341608690eb56dbf
Author: James Page james.p...@canonical.com
Date:   Thu Oct 27 11:02:19 2011 +0100

General tidyup of rules

diff --git a/debian/copyright b/debian/copyright
index cb7153f..71cf969 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -12,6 +12,7 @@ Copyright: Daniele Piras (danielepiras80, no email).
 License: Apache-2.0
 
 Files: src/contrib/zooinspector/icons/*
+Copyright: Unknown
 License: EPL-1.0
   THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
   LICENSE (AGREEMENT). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
diff --git a/debian/rules b/debian/rules
index 0c77482..dfd401c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,20 +16,23 @@ override_dh_auto_build:
# see: https://issues.apache.org/jira/browse/ZOOKEEPER-537
ant -Dversion=$(DEB_UPSTREAM_VERSION) -DlastRevision=-1 javadoc 
javadoc-dev jar
 
-   # compile C library
+   # Compile C library
cd src/c  autoreconf -i
cd src/c  ./configure --prefix=/usr
$(MAKE) -C src/c
 
-   # compile contribs
+   # Compile contribs - bookkeeper
cd src/contrib  ant -Dversion=$(DEB_UPSTREAM_VERSION) 
-DlastRevision=-1 -Ddest.dir=../../build/zookeeper -Divy.jar.exists=true 
-Divy.initialized=true -Dcontribfilesetincludes=bookkeeper/build.xml
+   # Compile contribs - zooinspector
cd src/contrib  ant -Dversion=$(DEB_UPSTREAM_VERSION) 
-DlastRevision=-1 -Ddest.dir=../../build/zookeeper -Divy.jar.exists=true 
-Divy.initialized=true -Dcontribfilesetincludes=zooinspector/build.xml
 
+   # Build Python Bindings
cd src/contrib/zkpython  \
  for pv in $(PYVERS); do \
python$$pv src/python/setup.py build --build-base=$(CURDIR)/build ;\
  done
-   # compile zktreeutil
+
+   # Compile zktreeutil and generate man page
cd src/contrib/zktreeutil  autoreconf -if  ./configure  make
LD_LIBRARY_PATH=src/c/.libs help2man -N --version-string=0.0 
src/contrib/zktreeutil/src/zktreeutil zktreeutil.man
 
@@ -42,15 +45,13 @@ override_dh_install:
  done
dh_install
 
-#override_jh_build:
-#  jh_build --no-javadoc
-#  javadoc -link /usr/share/doc/default-jdk-doc/api/ -classpath 
${CLASSPATH}:debian/lib -d debian/_jh_build.javadoc/api -quiet -sourcepath 
src/java/main:src/contrib/bookkeeper/src/java -subpackages 
org.apache.jute:org.apache.zookeeper:org.apache.bookkeeper
-
+ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
 override_dh_auto_test:
# src/c/tests/TestClient.cc:298: Assertion: equality assertion failed 
[Expected: -101, Actual  : -4]
#ant -propertyfile debian/ant.properties -buildfile 
debian/build-override.xml test-core
#Testsuite runs ~15 min on my machine. Seems too much for the Debian 
build daemons
#ant -propertyfile debian/ant.properties -buildfile 
debian/build-override.xml test-core-java
+endif
 
 override_dh_clean:
dh_clean --exclude=src/java \
@@ -58,6 +59,7 @@ override_dh_clean:
  --exclude=src/c \
  --exclude=src/reciped
jh_clean
+   rm -rf debian/*.upstart
 
 # the original build.xml deletes too much
 override_dh_auto_clean:
@@ -93,32 +95,22 @@ override_dh_auto_clean:
rm -rf src/c/configure
rm -rf src/c/ltmain.sh
 
+ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS)))
 override_dh_installdocs:
dh_installdocs --link-doc=libzookeeper-java \
  -plibzookeeper-java -pzookeeper -pzookeeperd -plibzookeeper-java-doc
dh_installdocs --link-doc=libzookeeper2 \
  -plibzookeeper2 -plibzookeeper-dev -pzookeeper-bin -ppython-zookeeper
+endif
 
-# javahelper can't install two javadoc dirs per package
-override_jh_installjavadoc:
-   true
-
+# Install init script for Debian and upstart for Ubuntu
 override_dh_installinit:
if dpkg-vendor --derives-from ubuntu ; then \
cp debian/zookeeperd.upstart.in debian/zookeeperd.upstart ; \
fi
dh_installinit -d
 
-# jh_depends fails for me:
-# - I can not specify, that I need a minimal version of log4j
-# - It unnecesseraly pulls libjaxp1.3-java in Depends, although this is only a
-#   transitiv dependency of libxerces2-java
-override_jh_depends:
-   true
-
-# some utf8 error? Don't need them anyway by now
-#override_jh_classpath override_jh_manifest override_jh_exec:
-#  true
+# init/upstart require difference dependencies for zookeeperd
 override_dh_gencontrol:
if dpkg-vendor --derives-from ubuntu ; then \
 dh_gencontrol -- -T$(CURDIR)/debian/ubuntu_control_vars ; \

-- 
Apache ZooKeeper

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] Apache ZooKeeper branch, master, updated. debian/3.3.1+dfsg1-2-29-g0f10813

2011-10-27 Thread James Page
The following commit has been merged in the master branch:
commit 4ba9234adf96ba9f120fb178772cac679786ab1e
Author: James Page james.p...@canonical.com
Date:   Thu Oct 27 10:50:50 2011 +0100

Tidied copyright

diff --git a/debian/copyright b/debian/copyright
index b9f72cb..cb7153f 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,12 +1,12 @@
-Format-Specification: http://dep.debian.net/deps/dep5/
-Name: Apache Zookeeper
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: Apache Zookeeper
 Source: http://hadoop.apache.org/zookeeper/releases.html
 
 Files: *
 Copyright: 2008-2009, The Apache Software Foundation
 License: Apache-2.0
 
-Files: src/contrib/zooinspector/src/java/com/*,
+Files: src/contrib/zooinspector/src/java/com/*
debian/patches/add_jtoaster_source_to_zooinspector
 Copyright: Daniele Piras (danielepiras80, no email).
 License: Apache-2.0

-- 
Apache ZooKeeper

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15270 - in trunk: . clooj clooj/debian clooj/debian/source

2011-10-27 Thread Mathieu Malaterre
Author: malat-guest
Date: 2011-10-27 12:43:26 + (Thu, 27 Oct 2011)
New Revision: 15270

Added:
   trunk/clooj/
   trunk/clooj/debian/
   trunk/clooj/debian/changelog
   trunk/clooj/debian/clooj.jlibs
   trunk/clooj/debian/compat
   trunk/clooj/debian/control
   trunk/clooj/debian/copyright
   trunk/clooj/debian/get-orig-source
   trunk/clooj/debian/rules
   trunk/clooj/debian/source/
   trunk/clooj/debian/source/format
   trunk/clooj/debian/watch
Log:
first pass at clooj

Added: trunk/clooj/debian/changelog
===
--- trunk/clooj/debian/changelog(rev 0)
+++ trunk/clooj/debian/changelog2011-10-27 12:43:26 UTC (rev 15270)
@@ -0,0 +1,5 @@
+clooj (0.2.4~git4dfb603527-1) unstable; urgency=low
+
+  * Initial Debian Upload (Closes: #)
+
+ -- Mathieu Malaterre mathieu.malate...@gmail.com  Wed, 07 Sep 2011 18:48:30 
+0200

Added: trunk/clooj/debian/clooj.jlibs
===
--- trunk/clooj/debian/clooj.jlibs  (rev 0)
+++ trunk/clooj/debian/clooj.jlibs  2011-10-27 12:43:26 UTC (rev 15270)
@@ -0,0 +1 @@
+clooj-0.2.4.jar

Added: trunk/clooj/debian/compat
===
--- trunk/clooj/debian/compat   (rev 0)
+++ trunk/clooj/debian/compat   2011-10-27 12:43:26 UTC (rev 15270)
@@ -0,0 +1 @@
+8

Added: trunk/clooj/debian/control
===
--- trunk/clooj/debian/control  (rev 0)
+++ trunk/clooj/debian/control  2011-10-27 12:43:26 UTC (rev 15270)
@@ -0,0 +1,23 @@
+Source: clooj
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
+DM-Upload-Allowed: yes
+Uploaders: Mathieu Malaterre mathieu.malate...@gmail.com
+Build-Depends: debhelper (= 8), javahelper (= 0.25)
+Build-Depends-Indep: default-jdk, leiningen
+Standards-Version: 3.9.2
+Homepage: https://github.com/arthuredelstein/clooj/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/clooj
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/clooj/
+
+Package: clooj
+Architecture: all
+Depends: ${java:Depends}, ${misc:Depends}
+Recommends: ${java:Recommends}
+Description: clooj, a lightweight IDE for clojure
+ clooj is a small, simple IDE (integrated development environment) for the
+ clojure programming language, available for free download. clooj is written
+ entirely in clojure and uses a swing-based GUI. It is cross-platform, and runs
+ as a standalone application or as a clojure editor embedded in another java or
+ clojure application.

Added: trunk/clooj/debian/copyright
===
--- trunk/clooj/debian/copyright(rev 0)
+++ trunk/clooj/debian/copyright2011-10-27 12:43:26 UTC (rev 15270)
@@ -0,0 +1,62 @@
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: OPeNDAP
+Upstream-Contact: James Gallagher jgallag...@opendap.org
+Source: http://opendap.org/
+
+Files: *
+Copyright: © 2002,2003 OPeNDAP, Inc. ,
+ © 20010 OPeNDAP, Inc.
+Licence: 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 OPeNDAP 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
+ HOLDER 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.
+
+Files: src/opendap/servlet/AsciiWriter.java
+Copyright: © 1997-2006 Unidata Program Center/University Corporation for
+ Atmospheric Research, P.O. Box 3000, Boulder, CO 80307,
+ supp...@unidata.ucar.edu.
+Licence: LGPL v2.1
+ This library is free software; you can 

[pkg-java] r15271 - trunk/clooj/debian

2011-10-27 Thread Mathieu Malaterre
Author: malat-guest
Date: 2011-10-27 12:51:43 + (Thu, 27 Oct 2011)
New Revision: 15271

Modified:
   trunk/clooj/debian/changelog
   trunk/clooj/debian/get-orig-source
Log:
simplify packaging

Modified: trunk/clooj/debian/changelog
===
--- trunk/clooj/debian/changelog2011-10-27 12:43:26 UTC (rev 15270)
+++ trunk/clooj/debian/changelog2011-10-27 12:51:43 UTC (rev 15271)
@@ -1,4 +1,4 @@
-clooj (0.2.4~git4dfb603527-1) unstable; urgency=low
+clooj (0.2.4-1) unstable; urgency=low
 
   * Initial Debian Upload (Closes: #)
 

Modified: trunk/clooj/debian/get-orig-source
===
--- trunk/clooj/debian/get-orig-source  2011-10-27 12:43:26 UTC (rev 15270)
+++ trunk/clooj/debian/get-orig-source  2011-10-27 12:51:43 UTC (rev 15271)
@@ -12,6 +12,7 @@
 fi
 
 REVISION=`echo $VERSION | sed -e 's/^.*git//g'`
+REVISION=4dfb603527
 
 if [ -z ${TARFILE}]; then
 TARFILE=${PACKAGE}_${VERSION}.orig.tar.gz


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15272 - trunk/clooj/debian

2011-10-27 Thread Mathieu Malaterre
Author: malat-guest
Date: 2011-10-27 13:06:48 + (Thu, 27 Oct 2011)
New Revision: 15272

Modified:
   trunk/clooj/debian/copyright
   trunk/clooj/debian/rules
Log:
fix copyright

Modified: trunk/clooj/debian/copyright
===
--- trunk/clooj/debian/copyright2011-10-27 12:51:43 UTC (rev 15271)
+++ trunk/clooj/debian/copyright2011-10-27 13:06:48 UTC (rev 15272)
@@ -1,62 +1,611 @@
 Format: http://dep.debian.net/deps/dep5/
-Upstream-Name: OPeNDAP
-Upstream-Contact: James Gallagher jgallag...@opendap.org
-Source: http://opendap.org/
+Upstream-Name: clooj
+Upstream-Contact: Arthur Edelstein
+Source: http://github.com/arthuredelstein/clooj
 
 Files: *
-Copyright: © 2002,2003 OPeNDAP, Inc. ,
- © 20010 OPeNDAP, Inc.
-Licence: 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 OPeNDAP 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
- HOLDER 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.
+Copyright: © 2011, Arthur Edelstein
+Licence: EPL-1.0
 
-Files: src/opendap/servlet/AsciiWriter.java
-Copyright: © 1997-2006 Unidata Program Center/University Corporation for
- Atmospheric Research, P.O. Box 3000, Boulder, CO 80307,
- supp...@unidata.ucar.edu.
-Licence: LGPL v2.1
- This library is free software; you can redistribute it and/or modify it
- under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation; either version 2.1 of the License, or (at
- your option) any later version.
-
- This library 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 Lesser
- General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License
- along with this library; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-Comment:
- On Debian systems, you can read the full text of the GNU Lesser General Public
- License in ‘/usr/share/common-licenses/LGPL-2.1’.
-
-
 Files: debian/*
 Copyright: © 2011 Mathieu Malaterre mathieu.malate...@gmail.com
-License: BSD
+License: EPL-1.0
+
+License: EPL-1.0
+ Source code distributed under the Eclipse Public License - v 1.0:
+ .
+ THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+ PUBLIC LICENSE (AGREEMENT). ANY USE, REPRODUCTION OR DISTRIBUTION OF
+ THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+ .
+ 1. DEFINITIONS
+ .
+ Contribution means:
+ .
+ a) in the case of the initial Contributor, the initial code and
+ documentation distributed under this Agreement, and
+ .
+ b) in the case of each subsequent Contributor:
+ .
+ i) changes to the Program, and
+ .
+ ii) additions to the Program;
+ .
+ where such changes and/or additions to the Program originate from and
+ are distributed by that particular Contributor. A Contribution
+ 'originates' from a Contributor if it was added to the Program by such
+ Contributor itself or anyone acting on such Contributor's
+ behalf. Contributions do not include additions to the Program which:
+ (i) are separate modules of software distributed in conjunction with
+ the Program under their own license agreement, and (ii) are not
+ derivative works of the Program.
+ .
+ Contributor means any person or entity that distributes the Program.
+ .
+ Licensed Patents mean patent claims licensable by a Contributor
+ which are necessarily infringed by the use or sale of its Contribution
+ alone or when combined with the Program.
+ .
+ Program means the Contributions distributed in accordance 

[SCM] Apache ZooKeeper branch, master, updated. debian/3.3.1+dfsg1-2-31-g179a83a

2011-10-27 Thread James Page
The following commit has been merged in the master branch:
commit 179a83a5e0e3d0599749ed097627e1bd46ce6d50
Author: James Page james.p...@canonical.com
Date:   Thu Oct 27 13:50:17 2011 +0100

Switched to main test suite

diff --git a/debian/rules b/debian/rules
index 13648c3..a56944d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -58,7 +58,7 @@ override_dh_auto_test-arch:
 
 override_dh_auto_test-indep:
# Run core Java test suite against zookeeper
-   ant -Dversion=$(DEB_UPSTREAM_VERSION) -DlastRevision=-1 
-Dtestcase=VerGenTest -d test-core-java
+   ant -Dversion=$(DEB_UPSTREAM_VERSION) -DlastRevision=-1 test-core-java
 endif
 
 override_dh_clean:

-- 
Apache ZooKeeper

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] Apache ZooKeeper branch, master, updated. debian/3.3.1+dfsg1-2-31-g179a83a

2011-10-27 Thread James Page
The following commit has been merged in the master branch:
commit b26718d6b2f4b91350a4cccf1472245aa5b8de22
Author: James Page james.p...@canonical.com
Date:   Thu Oct 27 13:42:26 2011 +0100

Enabled C and Java test suites:

* Enabled C and Java test suites:
  - d/control,d/compat: Bumped debhelper compat level to 8 to allow
arch/indep overrides.
  - d/rules: Enable test suites for -arch and -indep builds.
  - d/patches/debian/patch-build-system: Patch unit testing to exclude
InvalidSnapshot and Upgrade tests (non-free data) and to pickup
junit4 from system library.

diff --git a/debian/changelog b/debian/changelog
index 23527d6..9dfe1ab 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,8 +5,15 @@ zookeeper (3.3.3+dfsg2-3) UNRELEASED; urgency=low
   upstart configuration if required.
 - d/ubuntu|debian_control_vars,d/control,d/rules: Provide different 
Depends 
   for zookeeperd package when building under Ubuntu/Debian.
-
- -- James Page james.p...@ubuntu.com  Thu, 27 Oct 2011 10:23:37 +0100
+  * Enabled C and Java test suites:
+- d/control,d/compat: Bumped debhelper compat level to 8 to allow 
+  arch/indep overrides.
+- d/rules: Enable test suites for -arch and -indep builds.
+- d/patches/debian/patch-build-system: Patch unit testing to exclude 
+  InvalidSnapshot and Upgrade tests (non-free data) and to pickup 
+  junit4 from system library.
+
+ -- James Page james.p...@ubuntu.com  Thu, 27 Oct 2011 12:57:26 +0100
 
 zookeeper (3.3.3+dfsg2-2) unstable; urgency=low
 
diff --git a/debian/compat b/debian/compat
index 7f8f011..45a4fb7 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+8
diff --git a/debian/control b/debian/control
index 2f617ac..533d717 100644
--- a/debian/control
+++ b/debian/control
@@ -9,9 +9,10 @@ Vcs-Git: git://git.debian.org/pkg-java/zookeeper.git
 Standards-Version: 3.9.2
 Build-Depends:
  ant (= 1.6.0),
+ ant-optional,
  autoconf,
  automake,
- debhelper (= 7.4.11),
+ debhelper (= 8.9.7),
  default-jdk (= 1:1.6),
  default-jdk-doc,
  help2man,
diff --git a/debian/patches/debian/patch-build-system 
b/debian/patches/debian/patch-build-system
index 826ae24..eb1e6a3 100644
--- a/debian/patches/debian/patch-build-system
+++ b/debian/patches/debian/patch-build-system
@@ -1,7 +1,13 @@
+Description: Patches to upstream build system to disable use of ivy,
+ use jar files from /usr/share/java and enable the relevant bits of the
+ test suite for execution during build.
+Author: James Page james.p...@ubuntu.com, Thomas Koch tho...@koch.ro
+Forwarded: not-needed
+
 Index: zookeeper/build.xml
 ===
 zookeeper.orig/build.xml   2011-07-12 15:03:47.576170738 +0100
-+++ zookeeper/build.xml2011-07-12 15:03:55.006170734 +0100
+--- zookeeper.orig/build.xml   2011-10-27 12:56:26.256766856 +0100
 zookeeper/build.xml2011-10-27 13:34:38.167607772 +0100
 @@ -25,7 +25,7 @@
  property environment=env/
  
@@ -11,7 +17,7 @@ Index: zookeeper/build.xml
  property name=revision.dir value=${basedir}/.revision /
  property name=revision.properties value=revision.properties /
  property file=${basedir}/src/java/${revision.properties} /
-@@ -169,21 +169,11 @@
+@@ -169,27 +169,17 @@
  path id=java.classpath
pathelement location=${build.classes}/
!-- allow the user to override (e.g. if there are local versions) --
@@ -37,6 +43,14 @@ Index: zookeeper/build.xml
  /path
  
  path id=test.java.classpath
+   pathelement location=${test.java.classes} /
+-  fileset dir=${ivy.test.lib}
+-include name=**/*.jar /
++  fileset dir=/usr/share/java
++include name=junit4.jar /
+   /fileset
+   path refid=java.classpath/
+ /path
 @@ -223,7 +213,7 @@
targetfile=${src_generated.dir}/.generated/
  /target
@@ -55,10 +69,51 @@ Index: zookeeper/build.xml
  javac srcdir=${java.src.dir} destdir=${build.classes} 
 target=${javac.target} debug=on
  classpath refid=java.classpath/
+@@ -334,7 +324,7 @@
+ /javac
+ /target
+ 
+-target name=compile-test depends=ivy-retrieve-test,compile
++target name=compile-test depends=compile
+   mkdir dir=${test.java.classes}/
+   javac srcdir=${test.src.dir} destdir=${test.java.classes}
+  target=${javac.target} debug=on
+@@ -769,21 +759,10 @@
+ target name=test-init depends=jar,compile-test
+ delete dir=${test.log.dir} /
+ delete dir=${test.tmp.dir} /
+-delete dir=${test.data.upgrade.dir} /
+-delete dir=${test.data.invalid.dir} /
+ delete dir=${test.data.dir} /
+ mkdir dir=${test.log.dir} /
+ mkdir dir=${test.tmp.dir} /
+ mkdir dir=${test.data.dir} /
+-mkdir dir=${test.data.upgrade.dir} /
+-mkdir dir=${test.data.invalid.dir} /
+-copy 

[pkg-java] r15273 - trunk/clooj/debian

2011-10-27 Thread Mathieu Malaterre
Author: malat-guest
Date: 2011-10-27 13:38:49 + (Thu, 27 Oct 2011)
New Revision: 15273

Modified:
   trunk/clooj/debian/changelog
   trunk/clooj/debian/control
Log:
add itp number. fix lintian

Modified: trunk/clooj/debian/changelog
===
--- trunk/clooj/debian/changelog2011-10-27 13:06:48 UTC (rev 15272)
+++ trunk/clooj/debian/changelog2011-10-27 13:38:49 UTC (rev 15273)
@@ -1,5 +1,5 @@
 clooj (0.2.4-1) unstable; urgency=low
 
-  * Initial Debian Upload (Closes: #)
+  * Initial Debian Upload (Closes: #646811)
 
  -- Mathieu Malaterre mathieu.malate...@gmail.com  Wed, 07 Sep 2011 18:48:30 
+0200

Modified: trunk/clooj/debian/control
===
--- trunk/clooj/debian/control  2011-10-27 13:06:48 UTC (rev 15272)
+++ trunk/clooj/debian/control  2011-10-27 13:38:49 UTC (rev 15273)
@@ -15,7 +15,7 @@
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}
 Recommends: ${java:Recommends}
-Description: clooj, a lightweight IDE for clojure
+Description: lightweight IDE for clojure
  clooj is a small, simple IDE (integrated development environment) for the
  clojure programming language, available for free download. clooj is written
  entirely in clojure and uses a swing-based GUI. It is cross-platform, and runs


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse-subclipse packaging branch, master, updated. 8a5f76fccbe14ebd01ad6600bcb46fc0d890c472

2011-10-27 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 8a5f76fccbe14ebd01ad6600bcb46fc0d890c472
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Thu Oct 27 18:38:46 2011 +0200

Add myself to Uploaders

diff --git a/debian/control b/debian/control
index 0c672fc..57720e5 100644
--- a/debian/control
+++ b/debian/control
@@ -2,6 +2,7 @@ Source: eclipse-subclipse
 Priority: optional
 Section: devel
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
+Uploaders: Jakub Adam jakub.a...@ktknet.cz
 Build-Depends: debhelper (= 8~),
default-jdk,
eclipse-pde (= 3.7~exp),

-- 
eclipse-subclipse packaging

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse-subclipse packaging branch, pristine-tar, created. f679cbec1bf5968196dd2a4e844455f1198b4ffa

2011-10-27 Thread Jakub Adam
The branch, pristine-tar has been created
at  f679cbec1bf5968196dd2a4e844455f1198b4ffa (commit)

- Shortlog 
commit f679cbec1bf5968196dd2a4e844455f1198b4ffa
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Thu Oct 27 18:46:21 2011 +0200

pristine-tar data for eclipse-subclipse_1.6.18.orig.tar.gz

---

-- 
eclipse-subclipse packaging

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


lucene2 2.9.4+ds1-4 MIGRATED to testing

2011-10-27 Thread Debian testing watch
FYI: The status of the lucene2 source package
in Debian's testing distribution has changed.

  Previous version: 2.9.4+ds1-2
  Current version:  2.9.4+ds1-4

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15274 - in trunk/axis/debian: . patches

2011-10-27 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-10-27 19:52:50 + (Thu, 27 Oct 2011)
New Revision: 15274

Added:
   trunk/axis/debian/patches/add-osgi-metadata.patch
Modified:
   trunk/axis/debian/changelog
   trunk/axis/debian/patches/series
Log:
Add OSGi metadata to jar manifests

Modified: trunk/axis/debian/changelog
===
--- trunk/axis/debian/changelog 2011-10-27 13:38:49 UTC (rev 15273)
+++ trunk/axis/debian/changelog 2011-10-27 19:52:50 UTC (rev 15274)
@@ -1,3 +1,9 @@
+axis (1.4-15) UNRELEASED; urgency=low
+
+  * Add OSGi metadata to jar manifests
+
+ -- Jakub Adam jakub.a...@ktknet.cz  Thu, 27 Oct 2011 19:23:14 +0200
+
 axis (1.4-14) unstable; urgency=low
 
   * Team upload.

Added: trunk/axis/debian/patches/add-osgi-metadata.patch
===
--- trunk/axis/debian/patches/add-osgi-metadata.patch   
(rev 0)
+++ trunk/axis/debian/patches/add-osgi-metadata.patch   2011-10-27 19:52:50 UTC 
(rev 15274)
@@ -0,0 +1,52 @@
+From: Jakub Adam jakub.a...@ktknet.cz
+Date: Sun, 9 Oct 2011 02:17:06 +0200
+Subject: add-osgi-metadata
+
+---
+ build.xml |   18 ++
+ 1 files changed, 18 insertions(+), 0 deletions(-)
+
+diff --git a/build.xml b/build.xml
+index 738d245..a6e2a32 100644
+--- a/build.xml
 b/build.xml
+@@ -195,6 +195,12 @@ Copyright:
+   include name=log4j.properties unless=exclude.log4j.configuration/
+   include name=simplelog.properties/
+   manifest
++attribute name=Bundle-ManifestVersion value=2/
++  attribute name=Bundle-Name value=Apache Axis/
++  attribute name=Bundle-Vendor value=Apache Software 
Foundation/
++attribute name=Bundle-SymbolicName value=org.apache.axis/
++attribute name=Bundle-Version value=${axis.version}/
++attribute name=Export-Package 
value=org.apache.axis,org.apache.axis.attachments,org.apache.axis.client,org.apache.axis.client.async,org.apache.axis.collections,org.apache.axis.components,org.apache.axis.components.compiler,org.apache.axis.components.encoding,org.apache.axis.image,org.apache.axis.components.jms,org.apache.axis.components.logger,org.apache.axis.components.net,org.apache.axis.components.script,org.apache.axis.components.threadpool,org.apache.axis.components.uuid,org.apache.axis.configuration,org.apache.axis.constants,org.apache.axis.deployment.wsdd,org.apache.axis.deployment.wsdd.providers,org.apache.axis.description,org.apache.axis.encoding,org.apache.axis.encoding.ser,org.apache.axis.encoding.ser.castor,org.apache.axis.enum,org.apache.axis.handlers,org.apache.axis.handlers.http,org.apache.axis.handlers.soap,org.apache.axis.holders,org.apache.axis.i18n,org.apache.axis.management,org.apache.axis.management.jmx,org.apache.axis.message,org.apache.axis.monitor,org.apache.axis.providers,org.apache.axis.providers.java,org.apache.axis.schema,org.apache.axis.security,org.apache.axis.security.servlet,org.apache.axis.security.simple,org.apache.axis.server,org.apache.axis.session,org.apache.axis.soap,org.apache.axis.strategies,org.apache.axis.transport.http,org.apache.axis.transport.java,org.apache.axis.transport.jms,org.apache.axis.transport.local,org.apache.axis.transport.mail,org.apache.axis.types,org.apache.axis.utils,org.apache.axis.utils.bytecode,org.apache.axis.utils.cache,org.apache.axis.wsdl,org.apache.axis.wsdl.fromJava,org.apache.axis.wsdl.gen,org.apache.axis.wsdl.symbolTable,org.apache.axis.wsdl.toJava/
+ section name=org/apache/axis
+   attribute name=Implementation-Title value=Apache Axis/
+   attribute name=Implementation-Version value=${axis.version} 
${TSTAMP} ${TODAY}/ 
+@@ -206,6 +212,12 @@ Copyright:
+   include name=javax/**/
+   exclude name=javax/xml/soap/**/
+   manifest
++attribute name=Bundle-ManifestVersion value=2/
++  attribute name=Bundle-Name value=JAX-RPC/
++  attribute name=Bundle-Vendor value=Apache Software 
Foundation/
++attribute name=Bundle-SymbolicName value=javax.xml.rpc/
++attribute name=Bundle-Version value=${axis.version}/
++attribute name=Export-Package 
value=javax.xml.rpc,javax.xml.rpc.encoding,javax.xml.rpc.handler,javax.xml.rpc.handler.soap,javax.xml.rpc.holders,javax.xml.rpc.server,javax.xml.rpc.soap/
+ section name=javax/xml/rpc
+   attribute name=Specification-Title value=JAX-RPC/
+   attribute name=Specification-Version value=1.1/
+@@ -216,6 +228,12 @@ Copyright:
+ jar jarfile=${build.lib}/${saaj}.jar basedir=${build.dest} 
+   include name=javax/xml/soap/**/
+   manifest
++attribute name=Bundle-ManifestVersion value=2/
++  attribute name=Bundle-Name value=SAAJ/
++  attribute name=Bundle-Vendor value=Apache Software 
Foundation/
++attribute name=Bundle-SymbolicName value=javax.xml.soap/
++attribute name=Bundle-Version 

[pkg-java] r15275 - trunk/axis/debian

2011-10-27 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-10-27 19:58:32 + (Thu, 27 Oct 2011)
New Revision: 15275

Modified:
   trunk/axis/debian/changelog
   trunk/axis/debian/control
Log:
Bump to Standards-Version 3.9.2

Modified: trunk/axis/debian/changelog
===
--- trunk/axis/debian/changelog 2011-10-27 19:52:50 UTC (rev 15274)
+++ trunk/axis/debian/changelog 2011-10-27 19:58:32 UTC (rev 15275)
@@ -1,6 +1,7 @@
 axis (1.4-15) UNRELEASED; urgency=low
 
   * Add OSGi metadata to jar manifests
+  * Bump to Standards-Version 3.9.2
 
  -- Jakub Adam jakub.a...@ktknet.cz  Thu, 27 Oct 2011 19:23:14 +0200
 

Modified: trunk/axis/debian/control
===
--- trunk/axis/debian/control   2011-10-27 19:52:50 UTC (rev 15274)
+++ trunk/axis/debian/control   2011-10-27 19:58:32 UTC (rev 15275)
@@ -6,7 +6,7 @@
 Build-Depends: debhelper (= 7), cdbs, ant-optional, default-jdk, 
libwsdl4j-java, libcommons-logging-java,
  libcommons-discovery-java, libgnujaf-java, libgnumail-java, 
libservlet2.5-java,
  maven-repo-helper
-Standards-Version: 3.9.1
+Standards-Version: 3.9.2
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/axis
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/axis
 Homepage: http://ws.apache.org/axis/


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15276 - trunk/axis/debian

2011-10-27 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-10-27 20:00:34 + (Thu, 27 Oct 2011)
New Revision: 15276

Modified:
   trunk/axis/debian/control
Log:
Add myself to Uploaders

Modified: trunk/axis/debian/control
===
--- trunk/axis/debian/control   2011-10-27 19:58:32 UTC (rev 15275)
+++ trunk/axis/debian/control   2011-10-27 20:00:34 UTC (rev 15276)
@@ -2,7 +2,10 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Michael Koch konque...@gmx.de, Torsten Werner 
twer...@debian.org, Damien Raude-Morvan draz...@debian.org
+Uploaders: Michael Koch konque...@gmx.de,
+ Torsten Werner twer...@debian.org,
+ Damien Raude-Morvan draz...@debian.org,
+ Jakub Adam jakub.a...@ktknet.cz
 Build-Depends: debhelper (= 7), cdbs, ant-optional, default-jdk, 
libwsdl4j-java, libcommons-logging-java,
  libcommons-discovery-java, libgnujaf-java, libgnumail-java, 
libservlet2.5-java,
  maven-repo-helper


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15277 - trunk/axis/debian

2011-10-27 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-10-27 20:03:57 + (Thu, 27 Oct 2011)
New Revision: 15277

Modified:
   trunk/axis/debian/changelog
   trunk/axis/debian/copyright
Log:
Updated the DEP-5 copyright to r202

Modified: trunk/axis/debian/changelog
===
--- trunk/axis/debian/changelog 2011-10-27 20:00:34 UTC (rev 15276)
+++ trunk/axis/debian/changelog 2011-10-27 20:03:57 UTC (rev 15277)
@@ -2,6 +2,7 @@
 
   * Add OSGi metadata to jar manifests
   * Bump to Standards-Version 3.9.2
+  * Updated the DEP-5 copyright to r202
 
  -- Jakub Adam jakub.a...@ktknet.cz  Thu, 27 Oct 2011 19:23:14 +0200
 

Modified: trunk/axis/debian/copyright
===
--- trunk/axis/debian/copyright 2011-10-27 20:00:34 UTC (rev 15276)
+++ trunk/axis/debian/copyright 2011-10-27 20:03:57 UTC (rev 15277)
@@ -1,33 +1,21 @@
-Format-Specification: http://dep.debian.net/deps/dep5/
-Name: Apache Axis
-Maintainer: http://ws.apache.org/axis/
+Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=202
+Upstream-Name: Apache Axis
+Upstream-Contact: http://ws.apache.org/axis/
 Source: http://www.apache.org/dist/ws/axis/1_4/
 
-
 Files: *
-Copyright: (c) 2006-2008 Apache Foundation
-Licence: Apache-2.0
+Copyright: 2006-2008, Apache Foundation
+License: Apache-2.0
 
 Files: debian/*
 Copyright: 2006, Vladimír Lapáček vladimir.lapa...@gmail.com
 Copyright: 2006-2010, various Debian Contributors
-Copyright: 2010 Damien Raude-Morvan draz...@debian.org
-Licence: Apache-2.0
+Copyright: 2010, Damien Raude-Morvan draz...@debian.org
+License: Apache-2.0
 
+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.
 
-Licence: 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 license can be found in
  `/usr/share/common-licenses/Apache-2.0'.
-


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

[SCM] Eclipse Team provider for the Git version control system branch, master, updated. upstream/1.1.0-19-g4a495e3

2011-10-27 Thread Niels Thykier
The following commit has been merged in the master branch:
commit 4a495e3953de719bd758f005aa3452e9aa5903ea
Author: Niels Thykier ni...@thykier.net
Date:   Thu Oct 27 22:21:03 2011 +0200

Set dist to unstable

diff --git a/debian/changelog b/debian/changelog
index 5d462aa..8ba67e0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-eclipse-egit (1.1.0-1) UNRELEASED; urgency=low
+eclipse-egit (1.1.0-1) unstable; urgency=low
 
   * Initial release. (Closes: #575783)
 

-- 
Eclipse Team provider for the Git version control system

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] Eclipse Team provider for the Git version control system annotated tag, debian/1.1.0-1, created. debian/1.1.0-1

2011-10-27 Thread Niels Thykier
The annotated tag, debian/1.1.0-1 has been created
at  77bb9675c2fded766ffa02fd71edc56f32f95769 (tag)
   tagging  4a495e3953de719bd758f005aa3452e9aa5903ea (commit)
  replaces  upstream/1.1.0
 tagged by  Niels Thykier
on  Thu Oct 27 22:22:27 2011 +0200

- Shortlog 
Tagging 1.1.0-1 upload

Benjamin Drung (5):
  Add packaging bug number.
  Add ${misc:Depends}.
  Change parameter order of % rule.
  Fix package-lacks-versioned-build-depends-on-debhelper 7.
  Use dpkg-source 3.0 (quilt) format.

Jakub Adam (12):
  Merge commit 'upstream/1.1.0'
  Increased versions of required dependency packages
  Increased debhelper compatibility level to 8
  Add debian/copyright
  Updated debian/changelog
  Removed override_jh_setupenvironment from debian/rules as it is not needed
  Bump Standards Version to 3.9.2
  Add lintian overrides for codeless-jar warnings
  Oops, distribution in changelog should remain UNRELEASED
  Add myself to uploaders
  Clean debian/rules
  Updated the DEP-5 copyright to r202

Niels Thykier (2):
  Initial debian packaging that builds.
  Set dist to unstable

---

-- 
Eclipse Team provider for the Git version control system

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


Processing of eclipse-egit_1.1.0-1_amd64.changes

2011-10-27 Thread Debian FTP Masters
eclipse-egit_1.1.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  eclipse-egit_1.1.0-1.dsc
  eclipse-egit_1.1.0.orig.tar.gz
  eclipse-egit_1.1.0-1.debian.tar.gz
  eclipse-egit_1.1.0-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#646856: netbeans: Correct binary package names

2011-10-27 Thread Andrew Ross
Package: netbeans
Version: 7.0.1+dfsg1-2
Severity: minor


Binary packages (and corresponding install locations) should 
be corrected as follows:

java4 - java5
apisupport2 - apisupport3
ide13 - ide14



__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#646857: netbeans: Split AbsoluteLayout.jar into a separate package

2011-10-27 Thread Andrew Ross
Package: netbeans
Version: 7.0.1+dfsg1-2
Severity: wishlist


To facilitate use of AbsoluteLayout.jar by other packages, split 
it into a separate binary package and store the jar in 
/usr/share/java/.



__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


eclipse-egit_1.1.0-1_amd64.changes is NEW

2011-10-27 Thread Debian FTP Masters
(new) eclipse-egit_1.1.0-1.debian.tar.gz optional devel
(new) eclipse-egit_1.1.0-1.dsc optional devel
(new) eclipse-egit_1.1.0-1_all.deb optional devel
Eclipse Team provider for the Git version control system
 The EGit project is implementing Eclipse tooling on top of the JGit Java
 implementation of Git.
(new) eclipse-egit_1.1.0.orig.tar.gz optional devel
Changes: eclipse-egit (1.1.0-1) unstable; urgency=low
 .
  * Initial release. (Closes: #575783)


Override entries for your package:

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 575783 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#646861: java-wrappers: Installs shell scripts in /usr/lib, but is an architecture all package

2011-10-27 Thread Niels Thykier
Package: java-wrappers
Severity: normal

Hi,

Obviously if they are moved, they need a symlink in the old location
to avoid breaking existing packages.

~Niels



__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15278 - trunk/axis/debian

2011-10-27 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-10-27 21:49:16 + (Thu, 27 Oct 2011)
New Revision: 15278

Modified:
   trunk/axis/debian/changelog
Log:
Upload to unstable

Modified: trunk/axis/debian/changelog
===
--- trunk/axis/debian/changelog 2011-10-27 20:03:57 UTC (rev 15277)
+++ trunk/axis/debian/changelog 2011-10-27 21:49:16 UTC (rev 15278)
@@ -1,4 +1,4 @@
-axis (1.4-15) UNRELEASED; urgency=low
+axis (1.4-15) unstable; urgency=low
 
   * Add OSGi metadata to jar manifests
   * Bump to Standards-Version 3.9.2


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15279 - in tags/axis: . 1.4-15/debian

2011-10-27 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-10-27 21:50:33 + (Thu, 27 Oct 2011)
New Revision: 15279

Added:
   tags/axis/1.4-15/
   tags/axis/1.4-15/debian/changelog
Removed:
   tags/axis/1.4-15/debian/changelog
Log:
[svn-buildpackage] Tagging axis 1.4-15

Deleted: tags/axis/1.4-15/debian/changelog
===
--- trunk/axis/debian/changelog 2011-10-27 20:03:57 UTC (rev 15277)
+++ tags/axis/1.4-15/debian/changelog   2011-10-27 21:50:33 UTC (rev 15279)
@@ -1,198 +0,0 @@
-axis (1.4-15) UNRELEASED; urgency=low
-
-  * Add OSGi metadata to jar manifests
-  * Bump to Standards-Version 3.9.2
-  * Updated the DEP-5 copyright to r202
-
- -- Jakub Adam jakub.a...@ktknet.cz  Thu, 27 Oct 2011 19:23:14 +0200
-
-axis (1.4-14) unstable; urgency=low
-
-  * Team upload.
-  * Drop package libaxis-java-gcj.
-
- -- Torsten Werner twer...@debian.org  Thu, 08 Sep 2011 17:13:34 +0200
-
-axis (1.4-13) unstable; urgency=low
-
-  [ tony mancill ]
-  * libaxis-java-gcj:  Remove incorrect libservlet2.4 depedency;
-the dependency on libaxis-java is sufficient.
-Thanks to Matthias Klose. (Closes: #597950)
-
-  [ Damien Raude-Morvan ]
-  * d/control: Bump Standards-Versions to 3.9.1 (no changes required).
-  * d/control: Change short synopsis of packages.
-  * Finaly upload to unstable.
-
- -- Damien Raude-Morvan draz...@debian.org  Sun, 06 Mar 2011 19:08:04 +0100
-
-axis (1.4-12) unstable; urgency=low
-
-  [ Niels Thykier ]
-  * Bumped Standards-Versions to 3.9.0 - no changes required.
-  * Replaced B-D on default-jdk-builddep with gcj-native-helper
-and default-jdk.
-
-  [ Damien Raude-Morvan ]
-  * Downgrade libaxis-java-gcj from Recommends to Suggest (Closes: #582151).
-  * Remove Depends on JRE since Axis is a library.
-
- -- Damien Raude-Morvan draz...@debian.org  Thu, 08 Jul 2010 00:06:06 +0200
-
-axis (1.4-11) unstable; urgency=low
-
-  * Merge changes from Ubuntu:
-- debian/control, debian/rules: (Build-)Depend on libservlet2.5-java
-  instead of libservlet2.4-java (LP: #534913)
-  * Remove Stephan and Vladimír from Uploaders list.
-
- -- Torsten Werner twer...@debian.org  Sun, 09 May 2010 02:53:34 +0200
-
-axis (1.4-10) unstable; urgency=low
-
-  * Add symlinks for old JAR names to fix some FTBFS
-(Closes: #575041):
-- saaj.jar - axis-saaj.jar
-- jaxrpc.jar - axis-jaxrpc.jar
-  * Javadoc:
-- Install Javadoc to /usr/share/doc/libaxis-java/api/
-- Register Javadoc with doc-base
-- d/patches/javadoc.diff and d/rules: Fix javadoc call
-  to only use javadoc and no gjdoc (which fail with
-  UnmappableCharacterException) and force 1.3 source format.
-  * Fix short description of libaxis-java-doc to contains documentation
-  * Rework d/copyright to use DEP5 format
-
- -- Damien Raude-Morvan draz...@debian.org  Thu, 25 Mar 2010 23:45:41 +0100
-
-axis (1.4-9) unstable; urgency=low
-
-  * debian/rules: Fix FTBFS when doing arch build:
-- overrive install/libaxis-java for mh_installjar calls
-(instead of binary-post-install)
-
- -- Damien Raude-Morvan draz...@debian.org  Sat, 20 Mar 2010 23:46:28 +0100
-
-axis (1.4-8) unstable; urgency=low
-
-  * Add Maven support:
-- debian/control: Build-Depends on maven-repo-helper
-- Add pom's files to debian/poms/
-- debian/rules: Use mh_installpoms and mh_installjar
-  * Update Standards-Version: 3.8.4
-- debian/rules: Add recommended get-orig-source target
-  * Bump to debhelper = 7
-  * Use 3.0 (quilt) source format:
-- debian/source/format: Set 3.0 (quilt)
-- debian/control: Remove quilt
-- debian/rules: Remove simpl-patchsys.mk
-- Refresh all debian/patches/*
-  * Add DEP-3 headers to all patches
-
- -- Damien Raude-Morvan draz...@debian.org  Sat, 20 Mar 2010 23:00:50 +0100
-
-axis (1.4-7) unstable; urgency=low
-
-  * Change Build-Depends: ant1.7-optional because gij is failing with ant 1.8.
-
- -- Torsten Werner twer...@debian.org  Sat, 27 Feb 2010 18:52:14 +0100
-
-axis (1.4-6ubuntu1) lucid; urgency=low
-
-  * debian/control, debian/rules: (Build-)Depend on libservlet2.5-java instead
-of libservlet2.4-java (LP: #534913)
-  * debian/rules: Drop extra JAVA_HOME entry, build with default-jdk
-
- -- Thierry Carrez thierry.car...@ubuntu.com  Tue, 09 Mar 2010 09:39:09 +0100
-
-axis (1.4-6) unstable; urgency=low
-
-  [ Matthias Klose ]
-  * axis: Depend on default-jre-headless.
-  * Build using java-gcj (axis is not 1.6 source compatible).
-
-  [ Torsten Werner ]
-  * Add patch for gcj-4.4: do not build function clearCache() which is not
-used anyway. (Closes: #531995)
-  * Add myself to Uploaders.
-  * Do no longer quote the full text of the Apache license.
-  * Fix lintian warnings.
-  * Move package to Section: java.
-  * Update Standards-Version: 3.8.2 (no changes).
-  * Add missing Depends: ${misc:Depends}.
-
- -- Torsten Werner twer...@debian.org  Fri, 24 Jul 2009 18:38:59 +0200
-
-axis (1.4-5) unstable; urgency=low
-
-  * Added missing packages to 

Processing of axis_1.4-15_amd64.changes

2011-10-27 Thread Debian FTP Masters
axis_1.4-15_amd64.changes uploaded successfully to localhost
along with the files:
  axis_1.4-15.dsc
  axis_1.4-15.debian.tar.gz
  libaxis-java_1.4-15_all.deb
  libaxis-java-doc_1.4-15_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libgnujaf-java_1.1.1-7_amd64.changes ACCEPTED into unstable

2011-10-27 Thread Debian FTP Masters



Accepted:
libgnujaf-java-doc_1.1.1-7_all.deb
  to main/libg/libgnujaf-java/libgnujaf-java-doc_1.1.1-7_all.deb
libgnujaf-java_1.1.1-7.debian.tar.gz
  to main/libg/libgnujaf-java/libgnujaf-java_1.1.1-7.debian.tar.gz
libgnujaf-java_1.1.1-7.dsc
  to main/libg/libgnujaf-java/libgnujaf-java_1.1.1-7.dsc
libgnujaf-java_1.1.1-7_all.deb
  to main/libg/libgnujaf-java/libgnujaf-java_1.1.1-7_all.deb


Override entries for your package:
libgnujaf-java-doc_1.1.1-7_all.deb - optional doc
libgnujaf-java_1.1.1-7.dsc - source java
libgnujaf-java_1.1.1-7_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libjsr166y-java_1.7.0-1_amd64.changes ACCEPTED into experimental

2011-10-27 Thread Debian FTP Masters



Accepted:
libjsr166y-java-doc_1.7.0-1_all.deb
  to main/libj/libjsr166y-java/libjsr166y-java-doc_1.7.0-1_all.deb
libjsr166y-java_1.7.0-1.debian.tar.gz
  to main/libj/libjsr166y-java/libjsr166y-java_1.7.0-1.debian.tar.gz
libjsr166y-java_1.7.0-1.dsc
  to main/libj/libjsr166y-java/libjsr166y-java_1.7.0-1.dsc
libjsr166y-java_1.7.0-1_all.deb
  to main/libj/libjsr166y-java/libjsr166y-java_1.7.0-1_all.deb
libjsr166y-java_1.7.0.orig.tar.gz
  to main/libj/libjsr166y-java/libjsr166y-java_1.7.0.orig.tar.gz


Override entries for your package:
libjsr166y-java-doc_1.7.0-1_all.deb - optional doc
libjsr166y-java_1.7.0-1.dsc - source java
libjsr166y-java_1.7.0-1_all.deb - optional java

Announcing to debian-experimental-chan...@lists.debian.org
Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


axis_1.4-15_amd64.changes ACCEPTED into unstable

2011-10-27 Thread Debian FTP Masters



Accepted:
axis_1.4-15.debian.tar.gz
  to main/a/axis/axis_1.4-15.debian.tar.gz
axis_1.4-15.dsc
  to main/a/axis/axis_1.4-15.dsc
libaxis-java-doc_1.4-15_all.deb
  to main/a/axis/libaxis-java-doc_1.4-15_all.deb
libaxis-java_1.4-15_all.deb
  to main/a/axis/libaxis-java_1.4-15_all.deb


Override entries for your package:
axis_1.4-15.dsc - source libs
libaxis-java-doc_1.4-15_all.deb - optional doc
libaxis-java_1.4-15_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


stapler-adjunct-timeline_1.3-1_amd64.changes REJECTED

2011-10-27 Thread Luca Falavigna
Hi,

upstream tarball contains some compressed javascript libraries.
They're not considered as preferred source for modification, thus they are
deemed not suitable for main.

Cheers,
Luca



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


maven-stapler-plugin_1.16-1_amd64.changes ACCEPTED into unstable

2011-10-27 Thread Debian FTP Masters



Accepted:
libmaven-stapler-plugin-java-doc_1.16-1_all.deb
  to main/m/maven-stapler-plugin/libmaven-stapler-plugin-java-doc_1.16-1_all.deb
libmaven-stapler-plugin-java_1.16-1_all.deb
  to main/m/maven-stapler-plugin/libmaven-stapler-plugin-java_1.16-1_all.deb
maven-stapler-plugin_1.16-1.debian.tar.gz
  to main/m/maven-stapler-plugin/maven-stapler-plugin_1.16-1.debian.tar.gz
maven-stapler-plugin_1.16-1.dsc
  to main/m/maven-stapler-plugin/maven-stapler-plugin_1.16-1.dsc
maven-stapler-plugin_1.16.orig.tar.gz
  to main/m/maven-stapler-plugin/maven-stapler-plugin_1.16.orig.tar.gz


Override entries for your package:
libmaven-stapler-plugin-java-doc_1.16-1_all.deb - optional doc
libmaven-stapler-plugin-java_1.16-1_all.deb - optional java
maven-stapler-plugin_1.16-1.dsc - source java

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 631961 


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.