You Have Exceeded Your Storage Limit

2011-11-05 Thread Meigs_Debra
To ensure quick, responsive e-mail services, it is necessary to establish 
limits on the amount of e-mail each user may store on the system.
Our records show that you have almost exhausted your usage allowance provided 
with your webmail service.
Depending on your current storage space you may request for additional storage.
Please click here to request for additional storage.
https://docs.google.com/spreadsheet/viewform?formkey=dEtqeVNOcF9kZzRzRlQ4TkY4NnZqaVE6MQ

Thanks
Meigs Debra
For IT Support Center

__
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] r15346 - trunk/libxmlrpc3-java/debian

2011-11-05 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-11-05 10:03:55 + (Sat, 05 Nov 2011)
New Revision: 15346

Added:
   trunk/libxmlrpc3-java/debian/xmlrpc-client.mf
   trunk/libxmlrpc3-java/debian/xmlrpc-common.mf
   trunk/libxmlrpc3-java/debian/xmlrpc-server.mf
Modified:
   trunk/libxmlrpc3-java/debian/build.xml
   trunk/libxmlrpc3-java/debian/changelog
Log:
Add OSGi metadata to JAR manifests

Modified: trunk/libxmlrpc3-java/debian/build.xml
===
--- trunk/libxmlrpc3-java/debian/build.xml  2011-11-04 23:16:08 UTC (rev 
15345)
+++ trunk/libxmlrpc3-java/debian/build.xml  2011-11-05 10:03:55 UTC (rev 
15346)
@@ -12,6 +12,10 @@
property name=server.bin.dir location=server/target/classes/
property name=tests.bin.dir location=server/target/test-classes/
 
+   property name=common.manifest.file location=debian/xmlrpc-common.mf/
+   property name=client.manifest.file location=debian/xmlrpc-client.mf/
+   property name=server.manifest.file location=debian/xmlrpc-server.mf/
+
property name=common.jar.file
  
location=common/target/${ant.project.name}-common-${version}.jar/
property name=client.jar.file
@@ -31,26 +35,29 @@
target name=jar-all 
depends=jar-common,jar-client,jar-server,jar-tests/
 
target name=jar-common
- antcall target=jar
+ antcall target=jar-with-manifest
param name=bin value=${common.bin.dir}/
param name=src value=${common.src.dir}/
param name=jar value=${common.jar.file}/
+   param name=manifest value=${common.manifest.file}/
  /antcall
/target
 
target name=jar-client
- antcall target=jar
+ antcall target=jar-with-manifest
param name=bin value=${client.bin.dir}/
param name=src value=${client.src.dir}/
param name=jar value=${client.jar.file}/
+   param name=manifest value=${client.manifest.file}/
  /antcall
/target
 
target name=jar-server
- antcall target=jar
+ antcall target=jar-with-manifest
param name=bin value=${server.bin.dir}/
param name=src value=${server.src.dir}/
param name=jar value=${server.jar.file}/
+   param name=manifest value=${server.manifest.file}/
  /antcall
/target
 
@@ -73,6 +80,17 @@
  /jar
/target
 
+   target name=jar-with-manifest
+ antcall target=compile
+   param name=bin value=${bin}/
+   param name=src value=${src}/
+ /antcall
+
+ jar destfile=${jar} manifest=${manifest}
+   fileset dir=${bin}/
+ /jar
+   /target
+
target name=tests depends=jar-all
  junit printsummary=on haltonfailure=true
classpath

Modified: trunk/libxmlrpc3-java/debian/changelog
===
--- trunk/libxmlrpc3-java/debian/changelog  2011-11-04 23:16:08 UTC (rev 
15345)
+++ trunk/libxmlrpc3-java/debian/changelog  2011-11-05 10:03:55 UTC (rev 
15346)
@@ -1,3 +1,9 @@
+libxmlrpc3-java (3.1.3-4) UNRELEASED; urgency=low
+
+  * Add OSGi metadata to JAR manifests
+
+ -- Jakub Adam jakub.a...@ktknet.cz  Sun, 09 Oct 2011 14:45:30 +0200
+
 libxmlrpc3-java (3.1.3-3) unstable; urgency=low
 
   [ Damien Raude-Morvan ]

Added: trunk/libxmlrpc3-java/debian/xmlrpc-client.mf
===
--- trunk/libxmlrpc3-java/debian/xmlrpc-client.mf   
(rev 0)
+++ trunk/libxmlrpc3-java/debian/xmlrpc-client.mf   2011-11-05 10:03:55 UTC 
(rev 15346)
@@ -0,0 +1,13 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-SymbolicName: org.apache.xmlrpc.client
+Bundle-Version: 3.1.3
+Export-Package: org.apache.xmlrpc.client,
+ org.apache.xmlrpc.client.util
+Import-Package: org.apache.commons.httpclient,
+ org.apache.xmlrpc.common,
+ org.apache.xmlrpc.parser,
+ org.apache.xmlrpc.serializer,
+ org.apache.xmlrpc.util,
+ org.apache.xmlrpc,
+ org.xml.sax

Added: trunk/libxmlrpc3-java/debian/xmlrpc-common.mf
===
--- trunk/libxmlrpc3-java/debian/xmlrpc-common.mf   
(rev 0)
+++ trunk/libxmlrpc3-java/debian/xmlrpc-common.mf   2011-11-05 10:03:55 UTC 
(rev 15346)
@@ -0,0 +1,17 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-SymbolicName: org.apache.xmlrpc
+Bundle-Version: 3.1.3
+Export-Package: org.apache.xmlrpc,
+ org.apache.xmlrpc.common,
+ org.apache.xmlrpc.jaxb,
+ org.apache.xmlrpc.parser,
+ org.apache.xmlrpc.serializer,
+ org.apache.xmlrpc.util
+Import-Package: javax.xml.bind,
+ javax.xml.namespace,
+ javax.xml.parsers,
+ org.apache.ws.commons.serialize,
+ org.apache.ws.commons.util,
+ org.w3c.dom,
+ org.xml.sax

Added: trunk/libxmlrpc3-java/debian/xmlrpc-server.mf
===
--- trunk/libxmlrpc3-java/debian/xmlrpc-server.mf   
(rev 0)
+++ trunk/libxmlrpc3-java/debian/xmlrpc-server.mf   2011-11-05 10:03:55 

[pkg-java] r15347 - trunk/libxmlrpc3-java/debian

2011-11-05 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-11-05 10:07:31 + (Sat, 05 Nov 2011)
New Revision: 15347

Modified:
   trunk/libxmlrpc3-java/debian/control
Log:
Add myself to Uploaders

Modified: trunk/libxmlrpc3-java/debian/control
===
--- trunk/libxmlrpc3-java/debian/control2011-11-05 10:03:55 UTC (rev 
15346)
+++ trunk/libxmlrpc3-java/debian/control2011-11-05 10:07:31 UTC (rev 
15347)
@@ -2,7 +2,9 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Torsten Werner twer...@debian.org, Damien Raude-Morvan 
draz...@debian.org
+Uploaders: Torsten Werner twer...@debian.org,
+ Damien Raude-Morvan draz...@debian.org,
+ Jakub Adam jakub.a...@ktknet.cz
 Build-Depends: debhelper (= 7), cdbs, default-jdk, ant,
  libcommons-httpclient-java, libcommons-logging-java, libservlet2.5-java, 
junit,
  libws-commons-util-java, libjaxme-java, default-jdk-doc


___
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] r15348 - trunk/libjaxp1.3-java/debian

2011-11-05 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-11-05 10:34:18 + (Sat, 05 Nov 2011)
New Revision: 15348

Modified:
   trunk/libjaxp1.3-java/debian/control
Log:
Add myself to Uploaders

Modified: trunk/libjaxp1.3-java/debian/control
===
--- trunk/libjaxp1.3-java/debian/control2011-11-05 10:07:31 UTC (rev 
15347)
+++ trunk/libjaxp1.3-java/debian/control2011-11-05 10:34:18 UTC (rev 
15348)
@@ -2,7 +2,8 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Matthias Klose d...@ubuntu.com, Michael Koch konque...@gmx.de
+Uploaders: Matthias Klose d...@ubuntu.com, Michael Koch konque...@gmx.de,
+ Jakub Adam jakub.a...@ktknet.cz
 Build-Depends: cdbs, debhelper (= 7), default-jdk-builddep, maven-repo-helper
 Standards-Version: 3.8.4
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjaxp1.3-java


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


bnd 1.44.0-1 MIGRATED to testing

2011-11-05 Thread Debian testing watch
FYI: The status of the bnd source package
in Debian's testing distribution has changed.

  Previous version: 0.0.384-2
  Current version:  1.44.0-1

-- 
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.


bindex 2.2-3 MIGRATED to testing

2011-11-05 Thread Debian testing watch
FYI: The status of the bindex source package
in Debian's testing distribution has changed.

  Previous version: 2.2-2
  Current version:  2.2-3

-- 
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.


maven-bundle-plugin 2.3.5-1 MIGRATED to testing

2011-11-05 Thread Debian testing watch
FYI: The status of the maven-bundle-plugin source package
in Debian's testing distribution has changed.

  Previous version: 2.3.4-4
  Current version:  2.3.5-1

-- 
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.


libxbean-java 3.7-3 MIGRATED to testing

2011-11-05 Thread Debian testing watch
FYI: The status of the libxbean-java source package
in Debian's testing distribution has changed.

  Previous version: 3.7-2
  Current version:  3.7-3

-- 
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.


[SCM] UNNAMED PROJECT branch, master, updated. debian/1.2-11-3-gd188b6c

2011-11-05 Thread tony mancill
The following commit has been merged in the master branch:
commit d188b6c60845cd5511bde4f7fe5a84bed9e66f64
Author: tony mancill tmanc...@debian.org
Date:   Sat Nov 5 10:09:40 2011 -0700

add bug to changelog entry

diff --git a/debian/changelog b/debian/changelog
index 6967711..59f361b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
 tuxguitar (1.2-12) UNRELEASED; urgency=low
 
-  * add xulrunner-8.0 to list of dependencies
+  * add xulrunner-8.0 to list of dependencies  (Closes: #647542)
 
  -- tony mancill tmanc...@debian.org  Fri, 04 Nov 2011 14:30:36 -0700
 

-- 
UNNAMED PROJECT

___
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] r15349 - trunk/jta/debian

2011-11-05 Thread Tony Mancill
Author: tmancill
Date: 2011-11-05 17:28:07 + (Sat, 05 Nov 2011)
New Revision: 15349

Modified:
   trunk/jta/debian/changelog
   trunk/jta/debian/control
Log:
fix descriptions in debian/control #647588

Modified: trunk/jta/debian/changelog
===
--- trunk/jta/debian/changelog  2011-11-05 10:34:18 UTC (rev 15348)
+++ trunk/jta/debian/changelog  2011-11-05 17:28:07 UTC (rev 15349)
@@ -1,3 +1,10 @@
+jta (2.6+dfsg-5) UNRELEASED; urgency=low
+
+  * Team upload.
+  * Exchange description lines in debian/control (Closes: #647588)
+
+ -- tony mancill tmanc...@debian.org  Sat, 05 Nov 2011 10:24:38 -0700
+
 jta (2.6+dfsg-4) unstable; urgency=low
 
   * Team upload.

Modified: trunk/jta/debian/control
===
--- trunk/jta/debian/control2011-11-05 10:34:18 UTC (rev 15348)
+++ trunk/jta/debian/control2011-11-05 17:28:07 UTC (rev 15349)
@@ -16,7 +16,7 @@
 Architecture: all
 Depends: libgnu-regexp-java, libcrimson-java, libjdom1-java, ${misc:Depends}
 Suggests: jta-doc
-Description: Java telnet/ssh applet - documentation
+Description: Java telnet/ssh applet
  JTA is a Java implementation of Telnet and ssh.
  .
  JTA may be run as a standalone application (using class
@@ -32,7 +32,7 @@
 Section: doc
 Depends: ${misc:Depends}
 Suggests: jta, default-jdk-doc
-Description: Java telnet/ssh applet
+Description: Java telnet/ssh applet - documentation
  JTA is a Java implementation of Telnet and ssh.
  .
  JTA may be run as a standalone application (using class


___
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] r15350 - trunk/javadap/debian

2011-11-05 Thread Mathieu Malaterre
Author: malat-guest
Date: 2011-11-05 17:33:10 + (Sat, 05 Nov 2011)
New Revision: 15350

Modified:
   trunk/javadap/debian/rules
Log:
minor cleanup

Modified: trunk/javadap/debian/rules
===
--- trunk/javadap/debian/rules  2011-11-05 17:28:07 UTC (rev 15349)
+++ trunk/javadap/debian/rules  2011-11-05 17:33:10 UTC (rev 15350)
@@ -1,9 +1,7 @@
 #!/usr/bin/make -f
-#export DH_VERBOSE=1
 
 JAVA_HOME=/usr/lib/jvm/default-java
 export 
CLASSPATH=/usr/share/java/commons-httpclient.jar:/usr/share/java/jdom1.jar:/usr/share/java/servlet-api.jar
-#DEB_ANT_BUILD_TARGET := distribution
 
 %:
dh $@ --with javahelper


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


Processed: tagging 647588

2011-11-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 647588 + pending
Bug #647588 [jta] Description-Line of jta and jta-doc are interchanged
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
647588: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=647588
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

__
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#647588: Description-Line of jta and jta-doc are interchanged

2011-11-05 Thread tony mancill
On 11/04/2011 02:19 AM, Sven Dreyer wrote:
 Package: jta
 Version: 2.6+dfsg-3
 Severity: minor
 
 The Description-Line of jta and jta-doc are interchanged: the jta package 
 is described as documentation and the jta-doc package is described as 
 applet.
 
 $ apt-cache show jta | grep ^Description
 Description: Java telnet/ssh applet - documentation
 
 $ apt-cache show jta-doc | grep ^Description
 Description: Java telnet/ssh applet

Fixed in the packaging repo.

Thank you for the bug report.
tony



__
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.


[SCM] GeoGebra: Dynamic mathematics software for education branch, master, updated. upstream/3.2.47.0+dfsg1-114-gdcf6bfd

2011-11-05 Thread Giovanni Mascellani
The following commit has been merged in the master branch:
commit dcf6bfdbb38e7e3916a5e1d876e33c943f7aa789
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Sat Nov 5 18:50:32 2011 +0100

Writing a list of the embedded software in upstream GeoGebra.

diff --git a/debian/README.source b/debian/README.source
index 6362e72..7d4e909 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -33,3 +33,45 @@ debian/patches and applied during the build.  Please see:
 for more information on how to apply the patches, modify patches, or
 remove a patch.
 
+
+EMBEDDED COPIES
+
+The following pieces of software are present in the upstream
+distribution of GeoGebra, but are not included in the Debian package:
+
+ * The installer/ directory, that contains the GeoGebra installer,
+   which is not needed for the Debian package (and includes non-free
+   software);
+
+ * The following files, which are non-free (their functionality are
+   replaced with equivalent code from the Apache Commons Math
+   library):
+   + geogebra/kernel/complex/Complex.java
+   + geogebra/kernel/complex/ComplexPoly.java
+   + geogebra/kernel/roots/RealRoot.java
+   + geogebra/kernel/roots/RealRootFunction.java
+   + geogebra/kernel/integration/GaussQuadIntegration.java;
+
+ * Some Apache Commons libraries, that are already included in Debian
+   (org/apache/commmons/);
+
+ * The Apache Log4J library, that is already included in Debian
+   (org/apache/log4j/);
+
+ * The FreeHEP libraries, that are already included in Debian
+   (org/freehep/);
+
+ * A few JDesktop classes, which appear to be unnecessary and are
+   anyway already included in package libswing-layout-java
+   (org/jdesktop/);
+
+ * JFugue, that will have to be put in Debian as a separate package
+   (org/jfugue/);
+
+ * Mathpiper, that is already included in Debian, although it will
+   probably require to be updated (org/mathpiper/); it advertises
+   itself as version .81f;
+
+ * Rhino (or at least some pieces of it), a JavaScript implementation
+   written in Java, which is already contained in _many_ Debian
+   packages (the autoritative one appears to be librhino-java);

-- 
GeoGebra: Dynamic mathematics software for education

___
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] GeoGebra: Dynamic mathematics software for education branch, master, updated. upstream/3.2.47.0+dfsg1-115-gbe0bf03

2011-11-05 Thread Giovanni Mascellani
The following commit has been merged in the master branch:
commit be0bf03cdb1e42605dd59c17de570df1ddc7d0a9
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Sat Nov 5 18:51:54 2011 +0100

There is no Flanagan code anymore! :-)

diff --git a/debian/README.source b/debian/README.source
index 7d4e909..1298569 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -43,15 +43,6 @@ distribution of GeoGebra, but are not included in the Debian 
package:
which is not needed for the Debian package (and includes non-free
software);
 
- * The following files, which are non-free (their functionality are
-   replaced with equivalent code from the Apache Commons Math
-   library):
-   + geogebra/kernel/complex/Complex.java
-   + geogebra/kernel/complex/ComplexPoly.java
-   + geogebra/kernel/roots/RealRoot.java
-   + geogebra/kernel/roots/RealRootFunction.java
-   + geogebra/kernel/integration/GaussQuadIntegration.java;
-
  * Some Apache Commons libraries, that are already included in Debian
(org/apache/commmons/);
 
diff --git a/debian/get_orig_source.sh b/debian/get_orig_source.sh
index 3f42a19..eb02d7f 100755
--- a/debian/get_orig_source.sh
+++ b/debian/get_orig_source.sh
@@ -37,11 +37,6 @@ done
 
 # Removes code with problematic license
 rm -vfr $DESTDIR/installer
-rm -vfr $DESTDIR/geogebra/kernel/complex/Complex.java
-rm -vfr $DESTDIR/geogebra/kernel/complex/ComplexPoly.java
-rm -vf $DESTDIR/geogebra/kernel/roots/RealRoot.java
-rm -vf $DESTDIR/geogebra/kernel/roots/RealRootFunction.java
-rm -vf $DESTDIR/geogebra/kernel/integration/GaussQuadIntegration.java
 
 # Removes embedded copies of other software
 rm -vfr $DESTDIR/org

-- 
GeoGebra: Dynamic mathematics software for education

___
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] GeoGebra: Dynamic mathematics software for education branch, master, updated. upstream/3.2.47.0+dfsg1-116-gfecf5bf

2011-11-05 Thread Giovanni Mascellani
The following commit has been merged in the master branch:
commit fecf5bfa6796e56bfeaa04ae64268f2bcc4dd3d3
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Sat Nov 5 21:39:58 2011 +0100

Fix code and docs about embedded copies removal.

diff --git a/debian/README.source b/debian/README.source
index 1298569..e497bee 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -1,25 +1,16 @@
 geogebra for Debian
 ---
 
-The upstream source tarball is obtained by the script get_orig_source.sh
-by exporing a copy of the SVN tag corresponding to the desired version
-and then:
- * Deleting all precompiled JAR files;
- * Deleting the installer/ directory, which is non free (Creative Commons
-   Attribution-Non Commercial-Share Alike 3.0 or later)
- * Deleting the files:
-   + geogebra/kernel/complex/Complex.java
-   + geogebra/kernel/complex/ComplexPoly.java
-   + geogebra/kernel/roots/RealRoot.java
-   + geogebra/kernel/roots/RealRootFunction.java
-   + geogebra/kernel/integration/GaussQuadIntegration.java
-   These files are non free (they use an ad-hoc license which, for instance,
-   doesn't allow commercial use).
- * Deleting the org/ directory, which contains copies of other software
-   already package in Debian (which is used instead of the embedded copy).
- * Deleting the geogebra/kernel/jama/ directory, except
-   the geogebra/kernel/jama/GgbMat.java file, which is a copy of
-   another software already in Debian.
+The upstream source tarball is obtained by the script
+get_orig_source.sh by exporing a copy of the SVN tag corresponding to
+the desired version and then:
+
+ * Deleting the scripts/, installer/ and webstart/ directory, which
+   are not necessary for the Debian package (and possibily contain
+   non-free pieces);
+
+ * Deleteing many embedded copies of other pieces of software,
+   documented below.
 
 
 QUILT
@@ -34,14 +25,12 @@ for more information on how to apply the patches, modify 
patches, or
 remove a patch.
 
 
-EMBEDDED COPIES
+EMBEDDED SOFTWARE
 
 The following pieces of software are present in the upstream
 distribution of GeoGebra, but are not included in the Debian package:
 
- * The installer/ directory, that contains the GeoGebra installer,
-   which is not needed for the Debian package (and includes non-free
-   software);
+ * JavaCC, that is already included in Debian;
 
  * Some Apache Commons libraries, that are already included in Debian
(org/apache/commmons/);
@@ -52,7 +41,7 @@ distribution of GeoGebra, but are not included in the Debian 
package:
  * The FreeHEP libraries, that are already included in Debian
(org/freehep/);
 
- * A few JDesktop classes, which appear to be unnecessary and are
+ * A few JDesktop classes, which appear to be unnecessary and are
anyway already included in package libswing-layout-java
(org/jdesktop/);
 
@@ -65,4 +54,20 @@ distribution of GeoGebra, but are not included in the Debian 
package:
 
  * Rhino (or at least some pieces of it), a JavaScript implementation
written in Java, which is already contained in _many_ Debian
-   packages (the autoritative one appears to be librhino-java);
+   packages (the main one appears to be librhino-java);
+
+ * Java Algebra System (JAS), that will have to be put in Debian as a
+   separate package (edu/jas/, sources from
+   http://krum.rz.uni-mannheim.de/jas/);
+
+ * A file in the edu/mas/ directory, that appears to be unnecessary;
+
+ * Java Universal Network/Graph Framework (JUNG), that will have to be
+   put in Debian as a separate package (edu/uci/, sources from
+   http://jung.sourceforge.net/);
+
+ * JLaTeXMath, that is already included in Debian (jlatexmath.jar,
+   jlm_cyrillic.jar, jlm_greek.jar);
+
+ * Some other minor JAR archives, not necessary for compiling the
+   Debian pacakge.
diff --git a/debian/get_orig_source.sh b/debian/get_orig_source.sh
index eb02d7f..88c0711 100755
--- a/debian/get_orig_source.sh
+++ b/debian/get_orig_source.sh
@@ -30,24 +30,20 @@ else
tar xzfv $DESTTGZ -C `dirname $DESTDIR`
 fi
 
-# Removes all upstream JARs, DLLs, SOs and JNILIBs
-for ext in jar dll so jnilib ; do
-   find $DESTDIR -iname '*'.$ext | xargs rm -vf
-done
-
-# Removes code with problematic license
-rm -vfr $DESTDIR/installer
-
 # Removes embedded copies of other software
 rm -vfr $DESTDIR/org
-mv -v $DESTDIR/geogebra/kernel/jama/GgbMat.java $TEMPDIR
-rm -vfr $DESTDIR/geogebra/kernel/jama/*
-mv -v $TEMPDIR/GgbMat.java $DESTDIR/geogebra/kernel/jama
+rm -vfr $DESTDIR/edu
 
 # Remove other unecessary files
-rm -vfr $DESTDIR/jogl1
-rm -vfr $DESTDIR/jogl2
+rm -vfr $DESTDIR/installer
 rm -vfr $DESTDIR/webstart
+rm -vfr $DESTDIR/scripts
+rm -vfr $DESTDIR/javacc
+
+# Removes all upstream JARs, DLLs, SOs and JNILIBs
+for ext in jar dll so jnilib ; do
+   find $DESTDIR -iname '*'.$ext -print0 | xargs -0 rm -vf
+done
 
 # Builds tarball
 tar czfv $DESTTGZ -C `dirname $DESTDIR` `basename $DESTDIR`

-- 
GeoGebra: Dynamic mathematics 

Bug#647632: leiningen: Could not locate clojure/contrib/java_utils__init.class or clojure/contrib/java_utils.clj on classpath:

2011-11-05 Thread Phil Hagelberg
On Fri, Nov 4, 2011 at 10:22 AM, Mathieu Malaterre
mathieu.malate...@gmail.com wrote:

 pom         Write a pom.xml file to disk for Maven interop.
 leiningen.push  Problem loading: java.io.FileNotFoundException: Could not 
 locate clojure/contrib/java_utils__init.class or 
 clojure/contrib/java_utils.clj on classpath:  (push.clj:1)

While Leiningen itself does not use Clojure Contrib, many plugins do,
and the upstream includes it. Perhaps it should be listed as a regular
dependency rather than a Recommended?

A workaround is to manually install clojure-contrib for now.

-Phil



__
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] r15351 - trunk/jaxme/debian

2011-11-05 Thread Niels Thykier
Author: nthykier
Date: 2011-11-05 22:18:37 + (Sat, 05 Nov 2011)
New Revision: 15351

Modified:
   trunk/jaxme/debian/changelog
   trunk/jaxme/debian/compat
   trunk/jaxme/debian/control
   trunk/jaxme/debian/rules
Log:
Added build-{arch,indep} targets, bump dh and S-V, merged B-D with B-D-I

Modified: trunk/jaxme/debian/changelog
===
--- trunk/jaxme/debian/changelog2011-11-05 17:33:10 UTC (rev 15350)
+++ trunk/jaxme/debian/changelog2011-11-05 22:18:37 UTC (rev 15351)
@@ -1,3 +1,15 @@
+jaxme (0.5.2+dfsg-5) UNRELEASED; urgency=low
+
+  * Team upload.
+  * Added build-arch and build-indep targets to d/rules.
+  * Merged Build-Depends and Build-Depends-Indep.
+  * Bumped Standards-Versions to 3.9.2 - no changes required.
+  * Removed Marcus Better from uploaders.  Thanks for your work
+on this package.
+  * Bumped debhelper compat to 8.
+
+ -- Niels Thykier ni...@thykier.net  Sat, 05 Nov 2011 23:08:47 +0100
+
 jaxme (0.5.2+dfsg-4) unstable; urgency=low
 
   * Team upload.

Modified: trunk/jaxme/debian/compat
===
--- trunk/jaxme/debian/compat   2011-11-05 17:33:10 UTC (rev 15350)
+++ trunk/jaxme/debian/compat   2011-11-05 22:18:37 UTC (rev 15351)
@@ -1 +1 @@
-7
+8

Modified: trunk/jaxme/debian/control
===
--- trunk/jaxme/debian/control  2011-11-05 17:33:10 UTC (rev 15350)
+++ trunk/jaxme/debian/control  2011-11-05 22:18:37 UTC (rev 15351)
@@ -2,10 +2,11 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Marcus Better mar...@better.se, Michael Koch konque...@gmx.de
-Build-Depends: debhelper (= 7), default-jdk, ant, ant-optional
-Build-Depends-Indep: antlr, junit, liblog4j1.2-java, libxerces2-java, 
libxalan2-java, libcommons-codec-java, libhsqldb-java
-Standards-Version: 3.8.3
+Uploaders: Michael Koch konque...@gmx.de
+Build-Depends: debhelper (= 8), default-jdk, ant, ant-optional,
+   antlr, junit, liblog4j1.2-java, libxerces2-java,
+   libxalan2-java, libcommons-codec-java, libhsqldb-java
+Standards-Version: 3.9.2
 Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/jaxme/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/jaxme/
 Homepage: http://ws.apache.org/jaxme/

Modified: trunk/jaxme/debian/rules
===
--- trunk/jaxme/debian/rules2011-11-05 17:33:10 UTC (rev 15350)
+++ trunk/jaxme/debian/rules2011-11-05 22:18:37 UTC (rev 15351)
@@ -23,7 +23,9 @@
 INSTALLDIR := $(CURDIR)/debian/$(PKGNAME)
 JAVALIBDIR := $(INSTALLDIR)/usr/share/java
 
-build: build-stamp check-stamp
+build: build-arch build-indep
+build-arch: build-stamp check-stamp
+build-indep: build-stamp check-stamp
 build-stamp:
dh_testdir
$(ANT_INVOKE) all javadoc
@@ -76,4 +78,4 @@
 binary-arch: build install
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+.PHONY: build build-arch build-indep clean binary-indep binary-arch binary 
install


___
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] r15352 - trunk/jaxme/debian

2011-11-05 Thread Niels Thykier
Author: nthykier
Date: 2011-11-05 22:23:06 + (Sat, 05 Nov 2011)
New Revision: 15352

Modified:
   trunk/jaxme/debian/changelog
Log:
Set dist to unstable

Modified: trunk/jaxme/debian/changelog
===
--- trunk/jaxme/debian/changelog2011-11-05 22:18:37 UTC (rev 15351)
+++ trunk/jaxme/debian/changelog2011-11-05 22:23:06 UTC (rev 15352)
@@ -1,4 +1,4 @@
-jaxme (0.5.2+dfsg-5) UNRELEASED; urgency=low
+jaxme (0.5.2+dfsg-5) unstable; urgency=low
 
   * Team upload.
   * Added build-arch and build-indep targets to d/rules.
@@ -8,7 +8,7 @@
 on this package.
   * Bumped debhelper compat to 8.
 
- -- Niels Thykier ni...@thykier.net  Sat, 05 Nov 2011 23:08:47 +0100
+ -- Niels Thykier ni...@thykier.net  Sat, 05 Nov 2011 23:19:53 +0100
 
 jaxme (0.5.2+dfsg-4) unstable; urgency=low
 


___
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 jaxme_0.5.2+dfsg-5_amd64.changes

2011-11-05 Thread Debian FTP Masters
jaxme_0.5.2+dfsg-5_amd64.changes uploaded successfully to localhost
along with the files:
  jaxme_0.5.2+dfsg-5.dsc
  jaxme_0.5.2+dfsg-5.debian.tar.gz
  libjaxme-java_0.5.2+dfsg-5_all.deb
  libjaxme-java-doc_0.5.2+dfsg-5_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.


jaxme_0.5.2+dfsg-5_amd64.changes ACCEPTED into unstable

2011-11-05 Thread Debian FTP Masters



Accepted:
jaxme_0.5.2+dfsg-5.debian.tar.gz
  to main/j/jaxme/jaxme_0.5.2+dfsg-5.debian.tar.gz
jaxme_0.5.2+dfsg-5.dsc
  to main/j/jaxme/jaxme_0.5.2+dfsg-5.dsc
libjaxme-java-doc_0.5.2+dfsg-5_all.deb
  to main/j/jaxme/libjaxme-java-doc_0.5.2+dfsg-5_all.deb
libjaxme-java_0.5.2+dfsg-5_all.deb
  to main/j/jaxme/libjaxme-java_0.5.2+dfsg-5_all.deb


Override entries for your package:
jaxme_0.5.2+dfsg-5.dsc - source libs
libjaxme-java-doc_0.5.2+dfsg-5_all.deb - optional doc
libjaxme-java_0.5.2+dfsg-5_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.


[pkg-java] r15353 - tags/jaxme

2011-11-05 Thread Niels Thykier
Author: nthykier
Date: 2011-11-05 22:44:42 + (Sat, 05 Nov 2011)
New Revision: 15353

Added:
   tags/jaxme/0.5.2+dfsg-5/
Log:
Tag for 0.5.2+dfsg-5 upload


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


Bug#647632: leiningen: Could not locate clojure/contrib/java_utils__init.class or clojure/contrib/java_utils.clj on classpath:

2011-11-05 Thread Wolodja Wentland
tags 647632 confirmed pending
kthxbye

On Sat, Nov 05, 2011 at 14:15 -0700, Phil Hagelberg wrote:
 On Fri, Nov 4, 2011 at 10:22 AM, Mathieu Malaterre
 mathieu.malate...@gmail.com wrote:
 
  pom         Write a pom.xml file to disk for Maven interop.
  leiningen.push  Problem loading: java.io.FileNotFoundException: Could not 
  locate clojure/contrib/java_utils__init.class or 
  clojure/contrib/java_utils.clj on classpath:  (push.clj:1)
 
 While Leiningen itself does not use Clojure Contrib, many plugins do,
 and the upstream includes it. Perhaps it should be listed as a regular
 dependency rather than a Recommended?
 
 A workaround is to manually install clojure-contrib for now.

As far as I can tell it is not, as clojure-contrib also needs to be on the
CLASSPATH. That being said, I already fixed that bug and uploaded a new
version of leiningen to mentors and hope that it will be sponsored soon.

I've attached the corresponding quilt patch to this mail and you can get the
updated Debian package with:

dget -x 
http://mentors.debian.net/debian/pool/main/l/leiningen/leiningen_1.6.1.1-2.dsc
-- 
Wolodja babi...@gmail.com

4096R/CAF14EFC
081C B7CD FF04 2BA9 94EA  36B2 8B7F 7D30 CAF1 4EFC


signature.asc
Description: Digital signature
__
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.

Processed: Re: Bug#647632: leiningen: Could not locate clojure/contrib/java_utils__init.class or clojure/contrib/java_utils.clj on classpath:

2011-11-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 647632 confirmed pending
Bug #647632 [leiningen] leiningen: Could not locate 
clojure/contrib/java_utils__init.class or clojure/contrib/java_utils.clj on 
classpath:
Added tag(s) confirmed and pending.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
647632: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=647632
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

__
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#647632: leiningen: Could not locate clojure/contrib/java_utils__init.class or clojure/contrib/java_utils.clj on classpath:

2011-11-05 Thread Wolodja Wentland
Patch against /usr/bin/lein that fixes the bug if clojure-contrib is
installed.
-- 
Wolodja babi...@gmail.com

4096R/CAF14EFC
081C B7CD FF04 2BA9 94EA  36B2 8B7F 7D30 CAF1 4EFC
From: Wolodja Wentland babi...@gmail.com
Date: Sat, 5 Nov 2011 13:35:57 +
Subject: Add clojure-contrib to CLASSPATH

This patch fixes #647632 by adding clojure-contrib to leiningen's CLASSPATH.
---
 bin/lein |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bin/lein b/bin/lein
index 3d1ca7b..93ded4b 100755
--- a/bin/lein
+++ b/bin/lein
@@ -78,7 +78,7 @@ else
 SCRIPT=$0
 fi
 
-SHARE_JARS=ant ant-launcher classworlds clojure-1.2 \
+SHARE_JARS=ant ant-launcher classworlds clojure-1.2 clojure-contrib-1.2.0 \
 lucene-memory maven-ant-tasks maven-artifact maven-artifact-manager \
 maven-error-diagnostics maven-model maven-settings maven-project maven-profile \
 maven-repository-metadata plexus-container-default-alpha plexus-interpolation \
-- 


signature.asc
Description: Digital signature
__
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.

[SCM] libjava-jdbc-clojure packaging branch, upstream, created. c3ea408fa74904d3c1535991243c1cd1302386f9

2011-11-05 Thread Daigo Moriwaki
The branch, upstream has been created
at  c3ea408fa74904d3c1535991243c1cd1302386f9 (commit)

- Shortlog 
---

-- 
libjava-jdbc-clojure 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] libjava-jdbc-clojure packaging branch, master, created. 75af33cc4720df58722f70abdec4bd4e3a8d0e2f

2011-11-05 Thread Daigo Moriwaki
The branch, master has been created
at  75af33cc4720df58722f70abdec4bd4e3a8d0e2f (commit)

- Shortlog 
commit 75af33cc4720df58722f70abdec4bd4e3a8d0e2f
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:32:54 2011 +0900

Upgraded to 0.1.1

commit 5bcc756b81184af5fa67162a64ba760a40a0b036
Merge: 993569d c3ea408
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:32:10 2011 +0900

Merge commit 'upstream/0.1.1'

commit 993569da390910aa9ce91f65afd0d5da105e8a3a
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:27:07 2011 +0900

Closes the ITP bug number.

commit e9eff0bcdad6b282f17519cd6636b7046b369c8e
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Sep 25 23:18:55 2011 +0900

Initial Debian things

---

-- 
libjava-jdbc-clojure 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] libjava-jdbc-clojure packaging branch, pristine-tar, created. a6994b0dec4e9f83d0a565d386efdf1e225f14cf

2011-11-05 Thread Daigo Moriwaki
The branch, pristine-tar has been created
at  a6994b0dec4e9f83d0a565d386efdf1e225f14cf (commit)

- Shortlog 
commit a6994b0dec4e9f83d0a565d386efdf1e225f14cf
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:32:09 2011 +0900

pristine-tar data for libjava-jdbc-clojure_0.1.1.orig.tar.gz

commit 861e5647bb29be99217982553bf1040ee1dbfe05
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:31:26 2011 +0900

pristine-tar data for libjava-jdbc-clojure_0.1.1.orig.tar.gz

commit 880a8289c2b3f068a9bc108d05c36afbfb2e845d
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:29:51 2011 +0900

pristine-tar data for libjava-jdbc-clojure_0.1.1.orig.tar.gz

commit 2463d0a833d1ea361f5e5dc85bc6af7251138398
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Sep 25 22:39:00 2011 +0900

pristine-tar data for libjava-jdbc-clojure_0.0.6.orig.tar.gz

---

-- 
libjava-jdbc-clojure 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] libjava-jdbc-clojure packaging annotated tag, upstream/0.0.6, created. upstream/0.0.6

2011-11-05 Thread Daigo Moriwaki
The annotated tag, upstream/0.0.6 has been created
at  89aa893619ec32293089e35fa28e6f94233ec64e (tag)
   tagging  91173ae58a6e63c788c8e4049b93c6b97362c060 (commit)
 tagged by  Daigo Moriwaki
on  Sun Sep 25 22:39:00 2011 +0900

- Shortlog 
Upstream version 0.0.6

Daigo Moriwaki (1):
  Imported Upstream version 0.0.6

---

-- 
libjava-jdbc-clojure 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] libjava-jdbc-clojure packaging annotated tag, upstream/0.1.1, created. upstream/0.1.1

2011-11-05 Thread Daigo Moriwaki
The annotated tag, upstream/0.1.1 has been created
at  b3d66981977b25941185b9bd7e244f9d75b43d0c (tag)
   tagging  c3ea408fa74904d3c1535991243c1cd1302386f9 (commit)
  replaces  upstream/0.0.6
 tagged by  Daigo Moriwaki
on  Sun Nov 6 12:32:09 2011 +0900

- Shortlog 
Upstream version 0.1.1

Daigo Moriwaki (3):
  Imported Upstream version 0.1.1
  Imported Upstream version 0.1.1
  Imported Upstream version 0.1.1

---

-- 
libjava-jdbc-clojure 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] libjava-jdbc-clojure packaging annotated tag, debian/0.1.1-1, created. debian/0.1.1-1

2011-11-05 Thread Daigo Moriwaki
The annotated tag, debian/0.1.1-1 has been created
at  9942a5302b3ddb064e14e11fd2a3b393eed48285 (tag)
   tagging  75af33cc4720df58722f70abdec4bd4e3a8d0e2f (commit)
  replaces  upstream/0.1.1
 tagged by  Daigo Moriwaki
on  Sun Nov 6 12:40:23 2011 +0900

- Shortlog 
Debian release 0.1.1-1

Daigo Moriwaki (4):
  Initial Debian things
  Closes the ITP bug number.
  Merge commit 'upstream/0.1.1'
  Upgraded to 0.1.1

---

-- 
libjava-jdbc-clojure 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


Processing of libtools-logging-clojure_0.2.3-1_amd64.changes

2011-11-05 Thread Debian FTP Masters
libtools-logging-clojure_0.2.3-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  libtools-logging-clojure_0.2.3-1.dsc
  libtools-logging-clojure_0.2.3.orig.tar.gz
  libtools-logging-clojure_0.2.3-1.debian.tar.gz
  libtools-logging-clojure_0.2.3-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.


[SCM] libtools-logging-clojure packaging branch, pristine-tar, updated. 101afa678ab2e460e2edf7c3f5f60136665fb2d3

2011-11-05 Thread Daigo Moriwaki
The following commit has been merged in the pristine-tar branch:
commit 101afa678ab2e460e2edf7c3f5f60136665fb2d3
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:43:21 2011 +0900

pristine-tar data for libtools-logging-clojure_0.2.3.orig.tar.gz

diff --git a/libtools-logging-clojure_0.2.3.orig.tar.gz.delta 
b/libtools-logging-clojure_0.2.3.orig.tar.gz.delta
new file mode 100644
index 000..2629e18
Binary files /dev/null and b/libtools-logging-clojure_0.2.3.orig.tar.gz.delta 
differ
diff --git a/libtools-logging-clojure_0.2.3.orig.tar.gz.id 
b/libtools-logging-clojure_0.2.3.orig.tar.gz.id
new file mode 100644
index 000..9bb7d59
--- /dev/null
+++ b/libtools-logging-clojure_0.2.3.orig.tar.gz.id
@@ -0,0 +1 @@
+6770e7c222cae8c1da35beeab37e75ba1534eb40

-- 
libtools-logging-clojure 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] libtools-logging-clojure packaging branch, master, updated. debian/0.2.0-1-4-gbe522bf

2011-11-05 Thread Daigo Moriwaki
The following commit has been merged in the master branch:
commit be522bf0e3454216c50192015ef12b93191120f3
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:44:25 2011 +0900

New upstrea release.

diff --git a/debian/changelog b/debian/changelog
index e1114a1..03fdc46 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libtools-logging-clojure (0.2.3-1) unstable; urgency=low
+
+  * New upstrea release.
+
+ -- Daigo Moriwaki da...@debian.org  Sun, 06 Nov 2011 12:43:41 +0900
+
 libtools-logging-clojure (0.2.0-2) unstable; urgency=low
 
   * debian/watch: corrected.

-- 
libtools-logging-clojure 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] libtools-logging-clojure packaging branch, master, updated. debian/0.2.0-1-4-gbe522bf

2011-11-05 Thread Daigo Moriwaki
The following commit has been merged in the master branch:
commit cc9c2abc74d93129b858a3c29dfb97f9824e8a42
Merge: 68e6c9e0405b4e0a234f2fca4e2b032839734e38 
6770e7c222cae8c1da35beeab37e75ba1534eb40
Author: Daigo Moriwaki da...@debian.org
Date:   Sun Nov 6 12:43:21 2011 +0900

Merge commit 'upstream/0.2.3'


-- 
libtools-logging-clojure 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] libtools-logging-clojure packaging annotated tag, debian/0.2.3-1, created. debian/0.2.3-1

2011-11-05 Thread Daigo Moriwaki
The annotated tag, debian/0.2.3-1 has been created
at  046e74e1b01c8a0dfe5ff7e01442aaad2b6a6f36 (tag)
   tagging  be522bf0e3454216c50192015ef12b93191120f3 (commit)
  replaces  debian/0.2.0-1
 tagged by  Daigo Moriwaki
on  Sun Nov 6 12:52:30 2011 +0900

- Shortlog 
Debian release 0.2.3-1

Daigo Moriwaki (4):
  debian/watch: corrected.
  Imported Upstream version 0.2.3
  Merge commit 'upstream/0.2.3'
  New upstrea release.

---

-- 
libtools-logging-clojure 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] libtools-logging-clojure packaging annotated tag, upstream/0.2.3, created. upstream/0.2.3

2011-11-05 Thread Daigo Moriwaki
The annotated tag, upstream/0.2.3 has been created
at  d1b1df3a6ea7580c0be260fb835655e0935ff36c (tag)
   tagging  6770e7c222cae8c1da35beeab37e75ba1534eb40 (commit)
  replaces  upstream/0.2.0
 tagged by  Daigo Moriwaki
on  Sun Nov 6 12:43:21 2011 +0900

- Shortlog 
Upstream version 0.2.3

Daigo Moriwaki (1):
  Imported Upstream version 0.2.3

---

-- 
libtools-logging-clojure 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


libtools-logging-clojure_0.2.3-1_amd64.changes ACCEPTED into unstable

2011-11-05 Thread Debian FTP Masters



Accepted:
libtools-logging-clojure_0.2.3-1.debian.tar.gz
  to 
main/libt/libtools-logging-clojure/libtools-logging-clojure_0.2.3-1.debian.tar.gz
libtools-logging-clojure_0.2.3-1.dsc
  to main/libt/libtools-logging-clojure/libtools-logging-clojure_0.2.3-1.dsc
libtools-logging-clojure_0.2.3-1_all.deb
  to main/libt/libtools-logging-clojure/libtools-logging-clojure_0.2.3-1_all.deb
libtools-logging-clojure_0.2.3.orig.tar.gz
  to 
main/libt/libtools-logging-clojure/libtools-logging-clojure_0.2.3.orig.tar.gz


Override entries for your package:
libtools-logging-clojure_0.2.3-1.dsc - source java
libtools-logging-clojure_0.2.3-1_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.