Processed: limit source to maven-debian-helper, tagging 628272

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

> #maven-debian-helper (1.4.3) unstable; urgency=low
> #
> #  * DependenciesSolver: Don't use Properties.store() method since
> #it escape some chars (like " >\=") from variables.
> #Replace it with simple FileWriter. Closes: #628272.
> #
> limit source maven-debian-helper
Limiting to bugs with field 'source' containing at least one of 
'maven-debian-helper'
Limit currently set to 'source':'maven-debian-helper'

> tags 628272 + pending
Bug #628272 [maven-debian-helper] maven-javadoc-plugin: FTBFS: dpkg-deb: error: 
parsing file 'debian/libmaven-javadoc-plugin-java/DEBIAN/control' near line 7 
package 'libmaven-javadoc-plugin-java':
Added tag(s) pending.
> thanks
Stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r13766 - in trunk/maven-debian-helper: debian maven-packager-utils/src/main/java/org/debian/maven/packager

2011-06-07 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-06-07 22:52:16 + (Tue, 07 Jun 2011)
New Revision: 13766

Modified:
   trunk/maven-debian-helper/debian/changelog
   
trunk/maven-debian-helper/maven-packager-utils/src/main/java/org/debian/maven/packager/DependenciesSolver.java
Log:
DependenciesSolver: Don't use Properties.store() method since
it escape some chars (like " >\=") from variables.
Replace it with simple FileWriter. Closes: #628272.

Modified: trunk/maven-debian-helper/debian/changelog
===
--- trunk/maven-debian-helper/debian/changelog  2011-06-07 21:35:20 UTC (rev 
13765)
+++ trunk/maven-debian-helper/debian/changelog  2011-06-07 22:52:16 UTC (rev 
13766)
@@ -1,3 +1,11 @@
+maven-debian-helper (1.4.3) UNRELEASED; urgency=low
+
+  * DependenciesSolver: Don't use Properties.store() method since
+it escape some chars (like " >\=") from variables.
+Replace it with simple FileWriter. Closes: #628272.
+
+ -- Damien Raude-Morvan   Wed, 08 Jun 2011 00:51:52 +0200
+
 maven-debian-helper (1.4.2) unstable; urgency=low
 
   * mh_resolve_dependencies: Handle --verbose option has described in

Modified: 
trunk/maven-debian-helper/maven-packager-utils/src/main/java/org/debian/maven/packager/DependenciesSolver.java
===
--- 
trunk/maven-debian-helper/maven-packager-utils/src/main/java/org/debian/maven/packager/DependenciesSolver.java
  2011-06-07 21:35:20 UTC (rev 13765)
+++ 
trunk/maven-debian-helper/maven-packager-utils/src/main/java/org/debian/maven/packager/DependenciesSolver.java
  2011-06-07 22:52:16 UTC (rev 13766)
@@ -17,9 +17,10 @@
  */
 
 import java.io.BufferedReader;
+import java.io.BufferedWriter;
 import java.io.File;
-import java.io.FileOutputStream;
 import java.io.FileReader;
+import java.io.FileWriter;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.InputStreamReader;
@@ -444,8 +445,25 @@
 if (packageVersion != null) {
 depVars.put("maven.UpstreamPackageVersion", packageVersion);
 }
+// Write everything to debian/substvars
 try {
-depVars.store(new FileOutputStream(dependencies), "List of 
dependencies for " + packageName + ", generated for use by debian/control");
+FileWriter fstream = new FileWriter(dependencies);
+BufferedWriter out = new BufferedWriter(fstream);
+out.write("#List of dependencies for " + packageName + ", 
generated for use by debian/control");
+out.write("\n");
+Set propertiesNames = depVars.stringPropertyNames();
+if (propertiesNames != null) {
+   for (Iterator i = propertiesNames.iterator(); i.hasNext();) {
+  String propName = (String) i.next();
+  StringBuffer sb = new StringBuffer();
+  sb.append(propName);
+  sb.append("=");
+  sb.append(depVars.get(propName));
+  sb.append("\n");
+  out.write(sb.toString());
+}
+}
+out.close();
 } catch (IOException ex) {
 log.log(Level.SEVERE, "Error while saving file " + dependencies, 
ex);
 }


___
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: reassign 628272 to maven-debian-helper

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

> reassign 628272 maven-debian-helper 1.4.2
Bug #628272 [src:maven-javadoc-plugin] maven-javadoc-plugin: FTBFS: dpkg-deb: 
error: parsing file 'debian/libmaven-javadoc-plugin-java/DEBIAN/control' near 
line 7 package 'libmaven-javadoc-plugin-java':
Bug reassigned from package 'src:maven-javadoc-plugin' to 'maven-debian-helper'.
Bug No longer marked as found in versions maven-javadoc-plugin/2.6.1-1.
Bug #628272 [maven-debian-helper] maven-javadoc-plugin: FTBFS: dpkg-deb: error: 
parsing file 'debian/libmaven-javadoc-plugin-java/DEBIAN/control' near line 7 
package 'libmaven-javadoc-plugin-java':
Bug Marked as found in versions maven-debian-helper/1.4.2.
> thanks
Stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#625869: Problems with repackaged fop

2011-06-07 Thread Sylvestre Ledru
Le lundi 06 juin 2011 à 13:00 +0200, Vincent Fourmond a écrit :
> Hello all,
> 
>   I've attempted to rebuild fop with a stripped archive, and I managed
> to get a bit further, provided we add libqdox-java in the build
> depends and in the used jars. Unfortunately, bad luck strikes us here,
> since fop doesn't seem to work with qdox 1.12, and the build fails
> just after compilation. Can someone have a look ?
I stopped basically at the same place... I think we should ask help from
upstream on this ...

Sylvestre





__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


jtharness_4.3.0-MR1-Rel-b23-1_amd64.changes is NEW

2011-06-07 Thread Debian FTP Masters
(new) jtharness_4.3.0-MR1-Rel-b23-1.debian.tar.gz optional java
(new) jtharness_4.3.0-MR1-Rel-b23-1.dsc optional java
(new) jtharness_4.3.0-MR1-Rel-b23.orig.tar.bz2 optional java
(new) libjtharness-java-doc_4.3.0-MR1-Rel-b23-1_all.deb optional doc
jtharness (documentation)
 This is the javadoc for the libjtharness-java package.
 .
 The JT harness is a general purpose, fully-featured, flexible, and configurable
 test harness very well suited for most types of unit testing. Originally
 developed as a test harness to run TCK test suites, it has since evolved into a
 general purpose test platform.
(new) libjtharness-java_4.3.0-MR1-Rel-b23-1_all.deb optional java
jtharness
 The JT harness is a general purpose, fully-featured, flexible, and configurable
 test harness very well suited for most types of unit testing. Originally
 developed as a test harness to run TCK test suites, it has since evolved into a
 general purpose test platform.
Changes: jtharness (4.3.0-MR1-Rel-b23-1) unstable; urgency=low
 .
  * Initial release (Closes: #628857).


Override entries for your package:

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


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
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of jtharness_4.3.0-MR1-Rel-b23-1_amd64.changes

2011-06-07 Thread Debian FTP Masters
jtharness_4.3.0-MR1-Rel-b23-1_amd64.changes uploaded successfully to localhost
along with the files:
  jtharness_4.3.0-MR1-Rel-b23-1.dsc
  jtharness_4.3.0-MR1-Rel-b23.orig.tar.bz2
  jtharness_4.3.0-MR1-Rel-b23-1.debian.tar.gz
  libjtharness-java_4.3.0-MR1-Rel-b23-1_all.deb
  libjtharness-java-doc_4.3.0-MR1-Rel-b23-1_all.deb

Greetings,

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r13765 - trunk/libjtharness-java/debian

2011-06-07 Thread Sylvestre Ledru
Author: sylvestre
Date: 2011-06-07 21:35:20 + (Tue, 07 Jun 2011)
New Revision: 13765

Added:
   trunk/libjtharness-java/debian/orig-tar.sh
   trunk/libjtharness-java/debian/watch
Log:
add a watch and repack script

Added: trunk/libjtharness-java/debian/orig-tar.sh
===
--- trunk/libjtharness-java/debian/orig-tar.sh  (rev 0)
+++ trunk/libjtharness-java/debian/orig-tar.sh  2011-06-07 21:35:20 UTC (rev 
13765)
@@ -0,0 +1,21 @@
+#!/bin/sh
+SOURCE=$(dpkg-parsechangelog | sed -ne 's,Source: \(.*\),\1,p')
+VERSION=$(dpkg-parsechangelog | sed -ne 's,^Version: \(.*\)-.*,\1,p')
+echo $VERSION
+UNDERSCOREVERSION=$( echo $VERSION | sed 's/\./_/g')
+FILE=$3
+TAR=../${SOURCE}_${VERSION}.orig.tar.bz2
+DIR=$SOURCE-$VERSION
+
+svn co 
https://svn.java.net/svn/jtharness~svn/tags/$SOURCE-$UNDERSCOREVERSION/code/ 
$DIR
+tar -jcf  $TAR  --exclude '*.svn*' $DIR
+rm -rf $DIR $FILE
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+  . .svn/deb-layout
+  mv $TAR $origDir
+  echo "moved $TAR to $origDir"
+fi
+
+exit 0
\ No newline at end of file


Property changes on: trunk/libjtharness-java/debian/orig-tar.sh
___
Added: svn:executable
   + *

Added: trunk/libjtharness-java/debian/watch
===
--- trunk/libjtharness-java/debian/watch(rev 0)
+++ trunk/libjtharness-java/debian/watch2011-06-07 21:35:20 UTC (rev 
13765)
@@ -0,0 +1,4 @@
+version=3
+opts=uversionmangle=s/_([^-]+)/.$1.0/;s/bin/Rel/ \
+http://download.java.net/jtharness/download.html .*/jtharness-(.*)-.*\.zip \
+debian debian/orig-tar.sh


___
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: pending upload

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

> unblock 558708 by 478762
Bug #558708 [omegat] upgrade to 2.2.3
Was blocked by: 478762 506294
Removed blocking bug(s) of 558708: 478762
> unblock 558708 by 506294
Bug #558708 [omegat] upgrade to 2.2.3
Was blocked by: 506294
Removed blocking bug(s) of 558708: 506294
> tags 558708 pending
Bug #558708 [omegat] upgrade to 2.2.3
Added tag(s) pending.
> thanks
Stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#558708: pending upload

2011-06-07 Thread Tiago Saboga
unblock 558708 by 478762
unblock 558708 by 506294
tags 558708 pending
thanks

Subject: Re: omegat to 2.05
Followup-For: Bug #558708
Package: omegat

Problems fixed. Jaxb is in fact available on openjdk since version 6b4
(shame on me!).

Tiago Saboga.

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (600, 'testing'), (550, 'unstable'), (500, 'oldstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages omegat depends on:
ii  libaccess-bridge-ja 1.26.2-5 Java Access Bridge for GNOME (jni 
ii  libhtmlparser-java  1.6.20060610.dfsg0-4 java library to parse html
ii  libswing-layout-jav 1.0.4-1  Extensions to Swing layout
ii  libvldocking-java   2.1.4-3  Java components for building appli
ii  openjdk-6-jre   6b18-1.8.7-3 OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre   6.25-2   Sun Java(TM) Runtime Environment (

Versions of packages omegat recommends:
ii  libhunspell-1.2-0 1.2.14-4   spell checker and morphological an
ii  libjna-java   3.2.7-1Dynamic access of native libraries

omegat suggests no packages.

-- no debconf information



__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#627567: Auto-updates from non-Debian source

2011-06-07 Thread Andrew Ross
On 22/05/11 01:04, Ben Hutchings wrote:
> In the default configuration, Vuze appears to download updates for the
> packaged plugins from upstream into the user's home directory.
> Packages should not update themselves automatically but should leave
> this to the package manager.  Of course, plugins that *aren't* part of
> the package could be updated in this way.
> 
> Ben.
> 

Hi Ben,

Thanks for the report. Would you like to see updates permanently
disabled, or would it be sufficient to have them disabled by default,
and still permit the user to enable them if they wish?

Thanks,
Andy



__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[SCM] omegat packaging branch, master, updated. upstream/2.2.3_beta4-32-ge85689d

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The branch, master has been updated
   via  e85689d451335078d9838d3a16f93e30c26fc7de (commit)
   via  55a0f5d2142f35f43c00836b35029a24ea72b3e1 (commit)
   via  67197e3410f377a031b33837b6945755fdb04337 (commit)
  from  56f0b94fcdf12d2eb644bb138a89d08d2fc50425 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit e85689d451335078d9838d3a16f93e30c26fc7de
Author: Tiago Saboga 
Date:   Tue Jun 7 17:46:15 2011 -0300

Document quilt patches.

commit 55a0f5d2142f35f43c00836b35029a24ea72b3e1
Author: Tiago Saboga 
Date:   Tue Jun 7 17:21:43 2011 -0300

Put back empty watch file to satisfy lintian.

commit 67197e3410f377a031b33837b6945755fdb04337
Author: Tiago Saboga 
Date:   Tue Jun 7 17:17:33 2011 -0300

Bump debian policy.

---

Summary of changes:
 debian/changelog   |5 +++--
 debian/control |2 +-
 debian/patches/08-use-java-swingworker.patch   |7 +++
 debian/patches/10-do-not-load-jmyspell.patch   |7 +++
 debian/patches/12-generate-files-with-xjc.patch|7 +++
 debian/patches/14-fix-deprecated-global.patch  |7 +++
 .../15-do-not-use-sun-proprietary-dtds.patch   |8 
 debian/watch   |5 +
 8 files changed, 45 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 32d288d..4f82250 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,7 +3,7 @@ omegat (2.2.3~beta4+dfsg-1) unstable; urgency=low
   * New upstream release (Closes: #558708).
   * Move debian packaging to git.
   * State copyright for source file src/schemas/srx20.xsd.
-  * Remove debian/watch: unable to follow upstream naming scheme.
+  * Disable debian/watch: unable to follow upstream naming scheme.
   * Do not use sun java: we are using jaxb from openjdk.
   * javahelp-filters: Remove sun proprietary dtds.
   * Use openjdk swingworker.
@@ -22,8 +22,9 @@ omegat (2.2.3~beta4+dfsg-1) unstable; urgency=low
 - (Homepage): Point to main OmegaT page.
 - Package::omegat
   + Move libaccess-bridge-java-jni to Suggests.
+  * Bump debian policy (no changes needed).
 
- -- Tiago Saboga   Tue, 07 Jun 2011 16:47:57 -0300
+ -- Tiago Saboga   Tue, 07 Jun 2011 17:21:02 -0300
 
 omegat (1.8.1.2+dfsg-1.1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index f8bbddb..c4258ba 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Build-Depends-Indep: docbook-to-man, imagemagick, 
libvldocking-java,
 Homepage: http://www.omegat.org
 Vcs-Git: git://git.debian.org/pkg-java/omegat.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/omegat.git
-Standards-Version: 3.9.1
+Standards-Version: 3.9.2
 
 Package: omegat
 Architecture: all
diff --git a/debian/patches/08-use-java-swingworker.patch 
b/debian/patches/08-use-java-swingworker.patch
index 69f5af6..404c385 100644
--- a/debian/patches/08-use-java-swingworker.patch
+++ b/debian/patches/08-use-java-swingworker.patch
@@ -1,3 +1,10 @@
+Description: Use SwingWorker from openjdk.
+
+Upstream is still bound to java 5 compatibility, what maked this patch
+unacceptable.
+
+Author: Tiago Saboga 
+Last-Update: 2011-06-07
 --- a/src/org/omegat/gui/main/ProjectUICommands.java
 +++ b/src/org/omegat/gui/main/ProjectUICommands.java
 @@ -28,8 +28,8 @@
diff --git a/debian/patches/10-do-not-load-jmyspell.patch 
b/debian/patches/10-do-not-load-jmyspell.patch
index 1bbea76..a81ef3c 100644
--- a/debian/patches/10-do-not-load-jmyspell.patch
+++ b/debian/patches/10-do-not-load-jmyspell.patch
@@ -1,3 +1,10 @@
+Description: Disable JMySpell loading.
+
+JMySpell is not available on Debian. Ideally, we should patch upstream
+to use it only if available, but for now we disable it entirely.
+
+Author: Tiago Saboga 
+Last-Update: 2011-06-07
 --- a/src/org/omegat/core/spellchecker/SpellChecker.java
 +++ b/src/org/omegat/core/spellchecker/SpellChecker.java
 @@ -151,13 +151,6 @@
diff --git a/debian/patches/12-generate-files-with-xjc.patch 
b/debian/patches/12-generate-files-with-xjc.patch
index 585c6ec..5fa88f4 100644
--- a/debian/patches/12-generate-files-with-xjc.patch
+++ b/debian/patches/12-generate-files-with-xjc.patch
@@ -1,3 +1,10 @@
+Description: Regenerate jaxb files with xjc.
+
+Upstream build system uses ant task, which is not working for us for
+unknown reasons.
+
+Author: Tiago Saboga 
+Last-Update: 2011-06-07
 --- a/build.xml
 +++ b/build.xml
 @@ -314,14 +314,27 @@
diff --git a/debian/patches/14-fix-deprecated-global.patch

[SCM] omegat packaging branch, master, updated. upstream/2.2.3_beta4-29-g56f0b94

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The branch, master has been updated
   via  56f0b94fcdf12d2eb644bb138a89d08d2fc50425 (commit)
  from  8809ec2fe611b3faf52c50eaf665ed087c510579 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 56f0b94fcdf12d2eb644bb138a89d08d2fc50425
Author: Tiago Saboga 
Date:   Tue Jun 7 16:49:21 2011 -0300

Move debian packaging to git.

---

Summary of changes:
 debian/changelog |3 ++-
 debian/control   |4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 2f4c119..32d288d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 omegat (2.2.3~beta4+dfsg-1) unstable; urgency=low
 
   * New upstream release (Closes: #558708).
+  * Move debian packaging to git.
   * State copyright for source file src/schemas/srx20.xsd.
   * Remove debian/watch: unable to follow upstream naming scheme.
   * Do not use sun java: we are using jaxb from openjdk.
@@ -22,7 +23,7 @@ omegat (2.2.3~beta4+dfsg-1) unstable; urgency=low
 - Package::omegat
   + Move libaccess-bridge-java-jni to Suggests.
 
- -- Tiago Saboga   Tue, 07 Jun 2011 12:03:11 -0300
+ -- Tiago Saboga   Tue, 07 Jun 2011 16:47:57 -0300
 
 omegat (1.8.1.2+dfsg-1.1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index b078c8d..f8bbddb 100644
--- a/debian/control
+++ b/debian/control
@@ -7,8 +7,8 @@ Build-Depends: debhelper (>= 7), openjdk-6-jdk, ant
 Build-Depends-Indep: docbook-to-man, imagemagick, libvldocking-java,
  libhtmlparser-java, libjna-java, libswing-layout-java, tofrodos
 Homepage: http://www.omegat.org
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/omegat
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/omegat
+Vcs-Git: git://git.debian.org/pkg-java/omegat.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/omegat.git
 Standards-Version: 3.9.1
 
 Package: omegat


hooks/post-receive
-- 
omegat 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


[pkg-java] r13764 - branches

2011-06-07 Thread Guillaume Mazoyer
Author: gmazoyer-guest
Date: 2011-06-07 19:21:10 + (Tue, 07 Jun 2011)
New Revision: 13764

Added:
   branches/libjtharness-java/
Log:
Added jtharness-java branches.



___
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] r13763 - tags

2011-06-07 Thread Guillaume Mazoyer
Author: gmazoyer-guest
Date: 2011-06-07 19:20:29 + (Tue, 07 Jun 2011)
New Revision: 13763

Added:
   tags/libjtharness-java/
Log:
Added jtharness-java tags.



___
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] r13762 - in trunk: . libjtharness-java libjtharness-java/debian libjtharness-java/debian/patches libjtharness-java/debian/source

2011-06-07 Thread Guillaume Mazoyer
Author: gmazoyer-guest
Date: 2011-06-07 19:18:54 + (Tue, 07 Jun 2011)
New Revision: 13762

Added:
   trunk/libjtharness-java/
   trunk/libjtharness-java/debian/
   trunk/libjtharness-java/debian/changelog
   trunk/libjtharness-java/debian/compat
   trunk/libjtharness-java/debian/control
   trunk/libjtharness-java/debian/copyright
   trunk/libjtharness-java/debian/libjtharness-java-doc.install
   trunk/libjtharness-java/debian/libjtharness-java-doc.javadoc
   trunk/libjtharness-java/debian/libjtharness-java.jlibs
   trunk/libjtharness-java/debian/patches/
   trunk/libjtharness-java/debian/patches/dependencies.diff
   trunk/libjtharness-java/debian/patches/rxtx.diff
   trunk/libjtharness-java/debian/patches/series
   trunk/libjtharness-java/debian/rules
   trunk/libjtharness-java/debian/source/
   trunk/libjtharness-java/debian/source/format
Log:
Added jtharness-java package.


Added: trunk/libjtharness-java/debian/changelog
===
--- trunk/libjtharness-java/debian/changelog(rev 0)
+++ trunk/libjtharness-java/debian/changelog2011-06-07 19:18:54 UTC (rev 
13762)
@@ -0,0 +1,5 @@
+jtharness (4.3.0-MR1-Rel-b23-1) unstable; urgency=low
+
+  * Initial release (Closes: #628857).
+
+ -- Guillaume Mazoyer   Tue, 31 May 2011 12:56:01 -0500

Added: trunk/libjtharness-java/debian/compat
===
--- trunk/libjtharness-java/debian/compat   (rev 0)
+++ trunk/libjtharness-java/debian/compat   2011-06-07 19:18:54 UTC (rev 
13762)
@@ -0,0 +1 @@
+7

Added: trunk/libjtharness-java/debian/control
===
--- trunk/libjtharness-java/debian/control  (rev 0)
+++ trunk/libjtharness-java/debian/control  2011-06-07 19:18:54 UTC (rev 
13762)
@@ -0,0 +1,43 @@
+Source: jtharness
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers 

+Uploaders: Guillaume Mazoyer 
+Build-Depends: debhelper (>= 7.0.50~), javahelper
+Build-Depends-Indep: default-jdk,
+ default-jdk-doc,
+ ant,
+ junit4,
+ javahelp2,
+ librxtx-java,
+ libasm3-java,
+ libservlet3.0-java
+Standards-Version: 3.9.2
+Homepage: http://jtharness.java.net/
+
+Package: libjtharness-java
+Architecture: all
+Depends: junit4,
+ librxtx-java,
+ libasm3-java,
+ libservlet3.0-java,
+ ${java:Depends},
+ ${misc:Depends}
+Description: jtharness
+ The JT harness is a general purpose, fully-featured, flexible, and 
configurable
+ test harness very well suited for most types of unit testing. Originally
+ developed as a test harness to run TCK test suites, it has since evolved into 
a
+ general purpose test platform.
+
+Package: libjtharness-java-doc
+Section: doc
+Architecture: all
+Depends: ${java:Depends}, ${misc:Depends}
+Suggests: libjtharness-java
+Description: jtharness (documentation)
+ This is the javadoc for the libjtharness-java package.
+ .
+ The JT harness is a general purpose, fully-featured, flexible, and 
configurable
+ test harness very well suited for most types of unit testing. Originally
+ developed as a test harness to run TCK test suites, it has since evolved into 
a
+ general purpose test platform.

Added: trunk/libjtharness-java/debian/copyright
===
--- trunk/libjtharness-java/debian/copyright(rev 0)
+++ trunk/libjtharness-java/debian/copyright2011-06-07 19:18:54 UTC (rev 
13762)
@@ -0,0 +1,72 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: jtharness
+Source: http://jtharness.java.net/
+
+Files: *
+Copyright: Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights 
reserved.
+License:
+ This code is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License version 2 only, as
+ published by the Free Software Foundation.  Oracle designates this
+ particular file as subject to the "Classpath" exception as provided
+ by Oracle in the LICENSE file that accompanied this code.
+ .
+ This code 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 General Public License
+ version 2 for more details (a copy is included in the LICENSE file that
+ accompanied this code).
+ .
+ You should have received a copy of the GNU General Public License version
+ 2 along with this work; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ .
+ Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ or visit www.oracle.com if you need additional information 

[SCM] omegat packaging annotated tag, upstream/2.2.3_beta4, created. upstream/2.2.3_beta4

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The annotated tag, upstream/2.2.3_beta4 has been created
at  4cb53997e4cd93f423361ff3aaf52f9f7f93f81c (tag)
   tagging  8bc9dc9b2586ca90b97674ad62ce78bd8df64b05 (commit)
  replaces  upstream/2.0.5.2+dfsg
 tagged by  Tiago Saboga
on  Mon May 30 22:35:41 2011 -0300

- Log -
Upstream version 2.2.3~beta4

Tiago Saboga (1):
  Imported Upstream version 2.2.3~beta4

---


hooks/post-receive
-- 
omegat 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] omegat packaging annotated tag, upstream/2.0.5.2+dfsg, created. upstream/2.0.5.2+dfsg

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The annotated tag, upstream/2.0.5.2+dfsg has been created
at  ef5f7607def909726f13bfdb5f5d00cdb96af68f (tag)
   tagging  2806653a1e138387a7f94128543b5752c6102c8e (commit)
  replaces  upstream/1.8.1.2+dfsg
 tagged by  Tiago Saboga
on  Mon May 30 13:16:08 2011 -0300

- Log -
Upstream version 2.0.5.2+dfsg

Tiago Saboga (1):
  Imported Upstream version 2.0.5.2+dfsg

---


hooks/post-receive
-- 
omegat 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] omegat packaging tag, upstream/2.2.3_beta4+dfsg, created. upstream/2.2.3_beta4-4-g5d88586

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The tag, upstream/2.2.3_beta4+dfsg has been created
at  5d88586e0472f772ef2a445ee25e0ebb72fc7ab1 (commit)

- Log -
commit 5d88586e0472f772ef2a445ee25e0ebb72fc7ab1
Author: Tiago Saboga 
Date:   Tue Jun 7 10:44:15 2011 -0300

javahelp-filters: Remove Sun proprietary dtds.
---


hooks/post-receive
-- 
omegat 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] omegat packaging annotated tag, upstream/1.8.1.2+dfsg, created. upstream/1.8.1.2+dfsg

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The annotated tag, upstream/1.8.1.2+dfsg has been created
at  41fffbb94bbba21da9db8f51526329bd8f44e63f (tag)
   tagging  1fab1a961c76eec490038aa6fdd85eafb17adf9b (commit)
 tagged by  Tiago Saboga
on  Mon May 30 13:09:02 2011 -0300

- Log -
Upstream version 1.8.1.2+dfsg

Tiago Saboga (2):
  Initial upstream branch.
  Imported Upstream version 1.8.1.2+dfsg

---


hooks/post-receive
-- 
omegat 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] omegat packaging tag, 1.8.1.2+dfsg-1.1, created. 2e32a54caf07e29cbb285fa4bfadaa799c2496a3

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The tag, 1.8.1.2+dfsg-1.1 has been created
at  2e32a54caf07e29cbb285fa4bfadaa799c2496a3 (commit)

- Log -
commit 2e32a54caf07e29cbb285fa4bfadaa799c2496a3
Author: Tiago Saboga 
Date:   Mon May 30 10:51:06 2011 -0300

Importing 1.8.1.2+dfsg-1.1 nmu.
---


hooks/post-receive
-- 
omegat 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] omegat packaging tag, 1.8.1.2+dfsg-1, created. ed1959c15de5e33ed641912634d2fff1862c2f0a

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The tag, 1.8.1.2+dfsg-1 has been created
at  ed1959c15de5e33ed641912634d2fff1862c2f0a (commit)

- Log -
commit ed1959c15de5e33ed641912634d2fff1862c2f0a
Author: Tiago Saboga 
Date:   Tue Feb 10 23:54:10 2009 +

omegat (1.8.1.2+dfsg-1) unstable; urgency=low

  [ Tiago Saboga ]
  * New upstream version.
  * Move to main.
  * Return to standard version number.
  * debian/repack-source.sh
- Remove hunspell libraries.
  * Bump policy version (no changes needed).
  * Bump debhelper compatibility level.
  * Ship our own version of shell wrapper, instead of patching upstream.
  * debian/copyright - fix lintian warnings:
- Point to GPL-2 instead of GPL.
- Replace (C) by Copyright.
  * debian/rules
- Install upstream changelog.

  [ Onkar Shinde  ]
  * debian/control
- Use openjdk-6-jdk as build dependency.
- Use 'openjdk-6-jre | sun-java5-jre | sun-java6-jre' as runtime
  dependency.
  * debian/rules
- Set JAVA_HOME corresponding to openjdk-6-jdk.
  * debian/ant.properties
- Set default source and target values to 1.4.
  * debian/watch
- Fix expression to match only release versions. Do not directly use
  specific sourceforge mirror.

 -- Tiago Saboga   Tue, 10 Feb 2009 16:05:37 -0200


git-svn-id: svn+ssh://svn.debian.org/svn/pkg-java/trunk/omegat@7951 
d4c0bf3d-bfd5-0310-91ca-af900d1bad9e
---


hooks/post-receive
-- 
omegat 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] omegat packaging tag, 1.7.3.u2+dfsg-1, created. 0fba2db9ab52fe617bc7ece31f56dbb16442e25c

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The tag, 1.7.3.u2+dfsg-1 has been created
at  0fba2db9ab52fe617bc7ece31f56dbb16442e25c (commit)

- Log -
commit 0fba2db9ab52fe617bc7ece31f56dbb16442e25c
Author: Tiago Saboga 
Date:   Sat May 3 19:17:30 2008 +

Fix doc-base section.


git-svn-id: svn+ssh://svn.debian.org/svn/pkg-java/trunk/omegat@6401 
d4c0bf3d-bfd5-0310-91ca-af900d1bad9e
---


hooks/post-receive
-- 
omegat 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] omegat packaging tag, 1.7.3.u1+dfsg-1, created. b14472eff24fd2d31329875d47ea62e51816004b

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The tag, 1.7.3.u1+dfsg-1 has been created
at  b14472eff24fd2d31329875d47ea62e51816004b (commit)

- Log -
commit b14472eff24fd2d31329875d47ea62e51816004b
Author: Tiago Saboga 
Date:   Wed Mar 5 00:04:43 2008 +

Reduce length of version number and update watchfile
and repacksource accordingly.


git-svn-id: svn+ssh://svn.debian.org/svn/pkg-java/trunk/omegat@5947 
d4c0bf3d-bfd5-0310-91ca-af900d1bad9e
---


hooks/post-receive
-- 
omegat 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] omegat packaging branch, upstream, created. 5d88586e0472f772ef2a445ee25e0ebb72fc7ab1

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The branch, upstream has been created
at  5d88586e0472f772ef2a445ee25e0ebb72fc7ab1 (commit)

- Log -
---


hooks/post-receive
-- 
omegat 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] omegat packaging branch, master, created. 8809ec2fe611b3faf52c50eaf665ed087c510579

2011-06-07 Thread Tiago Saboga
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "omegat packaging".

The branch, master has been created
at  8809ec2fe611b3faf52c50eaf665ed087c510579 (commit)

- Log -
commit 8809ec2fe611b3faf52c50eaf665ed087c510579
Author: Tiago Saboga 
Date:   Tue Jun 7 12:09:45 2011 -0300

debian/control: Move libaccess-bridge-java-jni to Suggests.

commit d5c68add5eda38ff24981d271b357d3cf68d0325
Author: Tiago Saboga 
Date:   Tue Jun 7 12:05:25 2011 -0300

State copyright for srx20.xsd.

commit 2ab67154a9a2eeba1c5e0c58fea5910fe3c724cd
Author: Tiago Saboga 
Date:   Tue Jun 7 11:52:22 2011 -0300

Remove debian/repack-source.sh.

Update changelog and README.Debian.

commit 3d32e0fb7bed1da36b4a42a14769fae56b1c4787
Author: Tiago Saboga 
Date:   Tue Jun 7 11:44:57 2011 -0300

Remove debian/watch.

commit 399585b35c92dd57ae94128b445cba5c614adf84
Author: Tiago Saboga 
Date:   Tue Jun 7 11:20:46 2011 -0300

Remove debian/README.source

commit 82b7e788d564592998b47be36793151476d6d9a7
Author: Tiago Saboga 
Date:   Tue Jun 7 11:07:11 2011 -0300

Update changelog

commit 83b8439e98d99d31ba80910a3348c42a790702c0
Author: Tiago Saboga 
Date:   Tue Jun 7 10:48:20 2011 -0300

patch: do not use sun proprietary dtds

commit 78124f55c261c003c3bdd146e0a096611c3f045b
Merge: d41bb2d 5d88586
Author: Tiago Saboga 
Date:   Tue Jun 7 10:44:57 2011 -0300

Merge branch 'upstream'

commit 5d88586e0472f772ef2a445ee25e0ebb72fc7ab1
Author: Tiago Saboga 
Date:   Tue Jun 7 10:44:15 2011 -0300

javahelp-filters: Remove Sun proprietary dtds.

commit d41bb2d445297ff1099849aae0ba83a1a6e2ee06
Merge: c2a3300 e70d0bd
Author: Tiago Saboga 
Date:   Tue Jun 7 09:09:05 2011 -0300

Merge commit 'upstream/2.2.3_beta4+dfsg'

commit e70d0bd14f7db7b8aabac2befa54e47f406502ac
Author: Tiago Saboga 
Date:   Tue Jun 7 09:07:21 2011 -0300

Remove third-party libraries source and licenses, test data.

Test data may have license issues.

commit c2a33008550a536bd712c553a05bd1f5bdb9c31d
Author: Tiago Saboga 
Date:   Tue Jun 7 08:53:50 2011 -0300

Update debian/copyright.

commit 285768d43e2f886e20d935a6c973d927147c638e
Author: Tiago Saboga 
Date:   Tue Jun 7 00:15:15 2011 -0300

patch: fix deprecated global (thanks lurdan)

commit 87301d095c040cf449889dfec56b33196b630198
Author: Tiago Saboga 
Date:   Mon Jun 6 23:00:51 2011 -0300

Use jaxb from openjdk.

commit 480313d6a759bd488b3ba168abca0325656c8e3e
Author: Tiago Saboga 
Date:   Mon Jun 6 22:54:12 2011 -0300

Refresh patches

commit 54cefd1fd7ead1d537e0abc7247f5c2aed9df3aa
Author: Tiago Saboga 
Date:   Mon Jun 6 22:52:45 2011 -0300

Remove unneeded libs from classpath.

commit 2b93a82e2c030dc94286b51aa5769fb90668d3a5
Author: Tiago Saboga 
Date:   Sun Jun 5 23:11:04 2011 -0300

update changelog and control

commit de7a9102c0bf6fe1825e27db32c1bf7e547ed853
Author: Tiago Saboga 
Date:   Sun Jun 5 22:37:37 2011 -0300

Generate all files in src/gen while building.

commit bbc4f3c61e08fa13457d23c2ab4580784e9475c2
Author: Tiago Saboga 
Date:   Sun Jun 5 22:22:12 2011 -0300

debian/patches: Generate java classes from srx20 with xjc

Conflicts:

debian/patches/12-generate-files-with-xjc.patch
debian/patches/series

commit b860e88d33dfeed666b10ba395461f0382950e41
Author: Tiago Saboga 
Date:   Sun Jun 5 22:23:17 2011 -0300

ant.properties: build for 1.6

commit 70b94cf022d6c1144d98bd320a00c3acd0c09c9d
Author: Tiago Saboga 
Date:   Tue May 31 23:11:40 2011 -0300

debian/changelog: bump upstream version

commit 5f93bc0f299ce2a5309447de4c7bd98e504b8ad2
Merge: 29d344f bf844e1
Author: Tiago Saboga 
Date:   Tue May 31 23:01:54 2011 -0300

Merge branch 'upstream' into 2.2.3.beta4

commit bf844e1acb96c1095827bf4b37589b7cbfac4a13
Author: Tiago Saboga 
Date:   Tue May 31 23:00:25 2011 -0300

Remove MRJAdapter source (MACOS specific)

commit 29d344f1c6ac748a862aeb902b26c2f7264cb66a
Merge: 353b8ee 03cd1d4
Author: Tiago Saboga 
Date:   Mon May 30 22:52:14 2011 -0300

Merge branch 'upstream' into 2.2.3.beta4

commit 03cd1d45846708956c726da2b3d55987a1f3730c
Author: Tiago Saboga 
Date:   Mon May 30 22:41:44 2011 -0300

Remove binary files

commit 8bc9dc9b2586ca90b97674ad62ce78bd8df64b05
Author: Tiago Saboga 
Date:   Mon May 30 22:35:41 2011 -0300

Imported Upstream version 2.2.3~beta4

commit 353b8eedea49845e84e48193de96d8ba9e564701
Author: Tiago Saboga 
Date:   Mon May 30 22:32:43 2011 -0300

Update debian/patches.

commit 2806653a1e138387a7f94128543b5752c6102c8e
Author: Tiago Saboga 
Date:   Mon May 30 13:16:08 2011 -0300

Imported Upstream version 2.0.5.2+dfsg

commit c03e4e8bc31b73fd0c15e804385ac8cd674a2812
Merge: 0ddd69d 2806653
Author: Tiago Saboga 
Date:   Mon May 30 13:16:08 2011 -0300

Merge commit 'upstream/2.0.

[SCM] jcaptcha packaging branch, master, updated. upstream/2.0_alpha1-4-g2dad00c

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The branch, master has been updated
   via  2dad00c131e7ef60d2c1a63447a5ffaa3f390ca9 (commit)
  from  c5c777102f929f2156dd6aff0f051c23fe19826e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 2dad00c131e7ef60d2c1a63447a5ffaa3f390ca9
Author: James Page 
Date:   Tue Jun 7 16:06:23 2011 +0100

Removed site-skins modules from packaging - not required

---

Summary of changes:
 debian/libjcaptcha-java.lintian-overrides |3 ---
 debian/libjcaptcha-java.poms  |2 +-
 debian/patches/build.patch|   14 +-
 3 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/debian/libjcaptcha-java.lintian-overrides 
b/debian/libjcaptcha-java.lintian-overrides
deleted file mode 100644
index e8532cf..000
--- a/debian/libjcaptcha-java.lintian-overrides
+++ /dev/null
@@ -1,3 +0,0 @@
-# This jar file contains graphic assets for use across
-# JCaptcha modules so this warning can be overrride.
-libjcaptcha-java binary: codeless-jar 
usr/share/maven-repo/com/octo/captcha/jcaptcha-site-skin/2.0-alpha-1/jcaptcha-site-skin-2.0-alpha-1.jar
diff --git a/debian/libjcaptcha-java.poms b/debian/libjcaptcha-java.poms
index 5118184..91536c3 100644
--- a/debian/libjcaptcha-java.poms
+++ b/debian/libjcaptcha-java.poms
@@ -24,7 +24,7 @@
 # temporarily for certain artifacts such as Javadoc jars.
 #
 pom.xml 
-site-skin/pom.xml 
+site-skin/pom.xml  --ignore
 api/pom.xml
 common-test/pom.xml 
 jcaptcha/pom.xml
diff --git a/debian/patches/build.patch b/debian/patches/build.patch
index 567b5a9..3a6804d 100644
--- a/debian/patches/build.patch
+++ b/debian/patches/build.patch
@@ -2,11 +2,15 @@ Description: Disable un-buildable modules for Debian/Ubuntu
 Author: James Page 
 Forwarded: not-needed
 
-Index: jcaptcha/pom.xml
+Index: jcaptcha-debian/pom.xml
 ===
 jcaptcha.orig/pom.xml  2011-05-31 10:01:55.408405000 +0100
-+++ jcaptcha/pom.xml   2011-06-07 10:21:04.882954098 +0100
-@@ -20,13 +20,7 @@
+--- jcaptcha-debian.orig/pom.xml   2011-06-07 15:57:41.552968330 +0100
 jcaptcha-debian/pom.xml2011-06-07 16:04:46.342968630 +0100
+@@ -16,17 +16,10 @@
+ http://www.jcaptcha.net/
+ 
+ 
+-  site-skin
api
common-test
jcaptcha
@@ -20,7 +24,7 @@ Index: jcaptcha/pom.xml


  
-@@ -256,7 +250,6 @@
+@@ -256,7 +249,6 @@
  5
  false
  true


hooks/post-receive
-- 
jcaptcha 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] jcaptcha packaging annotated tag, upstream/2.0_alpha1, created. upstream/2.0_alpha1

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The annotated tag, upstream/2.0_alpha1 has been created
at  f918e746f7b6e73a78708de31ad1e1bc6a8eb20c (tag)
   tagging  181ca0a3162ab4ea4ce21e250e4c895b1c25865b (commit)
 tagged by  James Page
on  Tue Jun 7 13:52:54 2011 +0100

- Log -
Upstream version 2.0~alpha1

James Page (1):
  Imported Upstream version 2.0~alpha1

---


hooks/post-receive
-- 
jcaptcha 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] jcaptcha packaging branch, upstream, created. 181ca0a3162ab4ea4ce21e250e4c895b1c25865b

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The branch, upstream has been created
at  181ca0a3162ab4ea4ce21e250e4c895b1c25865b (commit)

- Log -
---


hooks/post-receive
-- 
jcaptcha 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] jcaptcha packaging branch, master, created. c5c777102f929f2156dd6aff0f051c23fe19826e

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The branch, master has been created
at  c5c777102f929f2156dd6aff0f051c23fe19826e (commit)

- Log -
commit c5c777102f929f2156dd6aff0f051c23fe19826e
Author: James Page 
Date:   Tue Jun 7 13:57:46 2011 +0100

Tweaked clean rules

commit 161316a2925f320906bdc55641d4e55c9dd4c78e
Author: James Page 
Date:   Tue Jun 7 13:53:30 2011 +0100

Sorted -doc depends

commit a3d2ee0bed4e39ecfe6ab59091fbfd25ad2d3159
Author: James Page 
Date:   Tue Jun 7 13:52:54 2011 +0100

Initial Debian Packaging

---


hooks/post-receive
-- 
jcaptcha 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] jcaptcha packaging branch, pristine-tar, created. 3cb5eee75a5475a70090adcf6b5a5a2b15434201

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The branch, pristine-tar has been created
at  3cb5eee75a5475a70090adcf6b5a5a2b15434201 (commit)

- Log -
commit 3cb5eee75a5475a70090adcf6b5a5a2b15434201
Author: James Page 
Date:   Tue Jun 7 13:52:54 2011 +0100

pristine-tar data for jcaptcha_2.0~alpha1.orig.tar.gz

---


hooks/post-receive
-- 
jcaptcha 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] jcaptcha packaging annotated tag, upstream/2.0_alpha1, created. upstream/2.0_alpha1

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The annotated tag, upstream/2.0_alpha1 has been created
at  e660ada343d5fcc09b894f375155d6e5b29fa5b2 (tag)
   tagging  5eaaf634b35fbeb9480089cd92e622616d249ab8 (commit)
 tagged by  James Page
on  Tue Jun 7 14:59:59 2011 +0100

- Log -
Upstream version 2.0~alpha1

James Page (1):
  Imported Upstream version 2.0~alpha1

---


hooks/post-receive
-- 
jcaptcha 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] jcaptcha packaging branch, upstream, created. 5eaaf634b35fbeb9480089cd92e622616d249ab8

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The branch, upstream has been created
at  5eaaf634b35fbeb9480089cd92e622616d249ab8 (commit)

- Log -
---


hooks/post-receive
-- 
jcaptcha 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] jcaptcha packaging branch, master, created. aa2bcd68d3a2c2de8304592602ddbc76860279cb

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The branch, master has been created
at  aa2bcd68d3a2c2de8304592602ddbc76860279cb (commit)

- Log -
commit aa2bcd68d3a2c2de8304592602ddbc76860279cb
Author: James Page 
Date:   Tue Jun 7 14:59:59 2011 +0100

Initial Debian Packaging

---


hooks/post-receive
-- 
jcaptcha 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] jcaptcha packaging branch, pristine-tar, created. b5fd15eff5b8e865d4900f579dea09c15e930b19

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "jcaptcha packaging".

The branch, pristine-tar has been created
at  b5fd15eff5b8e865d4900f579dea09c15e930b19 (commit)

- Log -
commit b5fd15eff5b8e865d4900f579dea09c15e930b19
Author: James Page 
Date:   Tue Jun 7 14:59:59 2011 +0100

pristine-tar data for jcaptcha_2.0~alpha1.orig.tar.gz

---


hooks/post-receive
-- 
jcaptcha 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] robust-http-client packaging annotated tag, upstream/1.1, created. upstream/1.1

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "robust-http-client packaging".

The annotated tag, upstream/1.1 has been created
at  a3debafb4937f10bcac18b96cffbeb9c58970adc (tag)
   tagging  d70d0dc4ec753423bd041902ecbe3fa78dd40b6f (commit)
 tagged by  James Page
on  Tue Jun 7 09:58:32 2011 +0100

- Log -
Upstream version 1.1

James Page (1):
  Imported Upstream version 1.1

---


hooks/post-receive
-- 
robust-http-client 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] robust-http-client packaging branch, pristine-tar, created. 8f9cb1e1e3506627d56cdf79a75399f5ff282a83

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "robust-http-client packaging".

The branch, pristine-tar has been created
at  8f9cb1e1e3506627d56cdf79a75399f5ff282a83 (commit)

- Log -
commit 8f9cb1e1e3506627d56cdf79a75399f5ff282a83
Author: James Page 
Date:   Tue Jun 7 09:58:32 2011 +0100

pristine-tar data for robust-http-client_1.1.orig.tar.gz

---


hooks/post-receive
-- 
robust-http-client 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] robust-http-client packaging branch, upstream, created. d70d0dc4ec753423bd041902ecbe3fa78dd40b6f

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "robust-http-client packaging".

The branch, upstream has been created
at  d70d0dc4ec753423bd041902ecbe3fa78dd40b6f (commit)

- Log -
---


hooks/post-receive
-- 
robust-http-client 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] robust-http-client packaging branch, master, created. e6cfae0a45e14fcb49b9f6fe658cb06eb729815e

2011-06-07 Thread James Page
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "robust-http-client packaging".

The branch, master has been created
at  e6cfae0a45e14fcb49b9f6fe658cb06eb729815e (commit)

- Log -
commit e6cfae0a45e14fcb49b9f6fe658cb06eb729815e
Author: James Page 
Date:   Tue Jun 7 09:58:32 2011 +0100

Initial Debian Packaging

---


hooks/post-receive
-- 
robust-http-client 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