Bug#811693: GCC 6 and OpenJDK

2016-02-09 Thread Andrew Hughes
We've just hit the same issue with OpenJDK 8 and the GCC 6 build
now in Fedora rawhide. This error is down to the switch to a default
of C++ 2014. Changing back to the old default allows the build
to succeed.

However, there are other issues with optimisations in the product
builds of OpenJDK on GCC 6, causing an immediate crash.

The following at least gets the build to complete:

https://github.com/gnu-andrew/java-1.8.0-openjdk/commit/b2be771ef60191e6fa24bd7db5b815167ff95f6d

but only armv7hl is successful [0]. On x86_64 and i686 [1,2], the main
build crashes when compiling the simple Java application, TestCryptoLevel
(you can find this in the IcedTea repositories).
The debug build succeeds, so this is something related to optimisations in
GCC 6 which are only enabled in the product build. I've scaled down our
default build flags but to no avail.

+ export 
JAVA_HOME=/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.72-5.b15.fc24.x86_64/openjdk/build/jdk8.build/images/j2sdk-image
+ 
JAVA_HOME=/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.72-5.b15.fc24.x86_64/openjdk/build/jdk8.build/images/j2sdk-image
+ 
/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.72-5.b15.fc24.x86_64/openjdk/build/jdk8.build/images/j2sdk-image/bin/javac
 -d
 . /builddir/build/SOURCES/TestCryptoLevel.java
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x7f6b25ed736b, pid=5973, tid=140097488013056
#
# JRE version: OpenJDK Runtime Environment (8.0_72-b15) (build 1.8.0_72-b15)
# Java VM: OpenJDK 64-Bit Server VM (25.72-b15 mixed mode linux-amd64 
compressed oops)
# Problematic frame:
# V  [libjvm.so+0x88636b]  Node::Node(unsigned int)+0x2b
#
# Failed to write core dump. Core dumps have been disabled. To enable core 
dumping, try "ulimit -c unlimited" before starting \
Java again
#
# An error report file with more information is saved as:
# 
/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.72-5.b15.fc24.x86_64/hs_err_pid5973.log
[thread 140097475966720 also had an error]
[thread 140097474914048 also had an error]
[thread 140097473861376 also had an error]
[thread 140097477019392 also had an error]
[error occurred during error reporting , id 0xb]

[0] http://koji.fedoraproject.org/koji/taskinfo?taskID=12911780
[1] http://koji.fedoraproject.org/koji/taskinfo?taskID=12916611
[2] http://koji.fedoraproject.org/koji/taskinfo?taskID=12916617

-- 
Andrew :)

Senior Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

PGP Key: ed25519/35964222 (hkp://keys.gnupg.net)
Fingerprint = 5132 579D D154 0ED2 3E04  C5A0 CFDA 0F9B 3596 4222

__
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#764988: javahelper: please insert jh_installlibs after dh_link instead of before dh_compress

2014-10-12 Thread Andrew Ayer
Package: javahelper
Version: 0.47
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: toolchain

Hi!

As part of the Reproducible Builds effort [1], we have developed a new
debhelper add-on, dh_strip_nondeterminism, that strips non-deterministic
data from builds to make them reproducible.  It needs to run after files
are installed, but before they are compressed, so we are inserting it
in the dh sequence before dh_compress.

However, javahelper inserts jh_installlibs before dh_compress too,
and consequentially, jh_installlibs runs after dh_strip_nondeterminism,
preventing dh_strip_nondeterminism from stripping non-determinism from
JAR files installed by jh_installlibs.

The attached patch instead inserts jh_installlibs after dh_link, which
currently comes right before dh_compress in the standard dh sequence.
This will ensure the correct ordering vis-a-vis dh_strip_nondeterminism.
Could this patch be applied to javahelper?

(Alternatively, you could insert jh_installlibs after dh_install, which
seems more logical to me and also seems to be popular among other debhelper
add-ons[2], but this is a more radical change so I leave it to your
discretion.)

Thanks,
Andrew


[1] https://wiki.debian.org/ReproducibleBuilds
[2] 
http://codesearch.debian.net/search?q=insert_after\%28[%22%27]dh_install[%22%27]
diff -ruN javatools-0.47.orig/javahelper.pm javatools-0.47/javahelper.pm
--- javatools-0.47.orig/javahelper.pm	2014-09-10 12:33:53.0 -0700
+++ javatools-0.47/javahelper.pm	2014-10-12 12:02:57.860291000 -0700
@@ -8,7 +8,7 @@
 
 use Debian::Debhelper::Dh_Lib;
 
-insert_before('dh_compress', 'jh_installlibs');
+insert_after('dh_link', 'jh_installlibs');
 insert_after('jh_installlibs', 'jh_classpath');
 insert_after('jh_classpath', 'jh_manifest');
 insert_after('jh_manifest', 'jh_exec');
__
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#764988: javahelper: please insert jh_installlibs after dh_link instead of before dh_compress

2014-10-12 Thread Andrew Ayer
On Sun, 12 Oct 2014 21:59:44 +0200
Emmanuel Bourg ebo...@apache.org wrote:

 How does dh_strip_nondeterminism affect the jar files exactly? I
 understand that it normalizes the timestamps of the zip entries, but
 what date is used?

Hi Emmanuel,

dh_strip_nondeterminism does the following:

 * Sets the timestamp of every Zip entry to January 1, 1980 (the
   earliest date that can be represented in a Zip archive).

 * Lexicographically sorts the Zip entries by filename, while keeping
   META-INF/ and META-INF/MANIFEST.MF at the beginning.

 * Removes the timestamp comment from Javadoc-generated .html files
   in the Jar file.

-- Andrew

__
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#725186: [libmetadata-extractor-java] Please, upload 2.6.1 to Debian unstable

2014-01-24 Thread Andrew Shadura
Package: libmetadata-extractor-java
Followup-For: Bug #725186

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hello,

Any news on this? While patching out the newer version from JOSM is
possible, it'd be cool to having 2.6.4 in unstable :)

- -- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.9-1-686-pae (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.UTF-8)
Shell: /bin/sh linked to /bin/mksh

Versions of packages libmetadata-extractor-java depends on:
ii  libxmpcore-java  5.1.2-2

libmetadata-extractor-java recommends no packages.

Versions of packages libmetadata-extractor-java suggests:
ii  libmetadata-extractor-java-doc  2.3.1+dfsg-2

- -- no debconf information

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.15 (GNU/Linux)

iQIcBAEBCAAGBQJS4icvAAoJEG6k0jEaLSaNdZsP/0bIf4XY6xonJtAf7HyHaDcC
IjCR+nx+FzdxkwRz0kzjBMTIzxcpEVnCEV1SBPQStR7PIEKgtNQyWjQoQFwoq6Ey
HcUs4zqk1juN4HbfCf/pxy1USlq1sR0/e7u+1rgOq2+MiHk72WU+07QuValkyURh
wHHuDOwrVlJ7N+hj/sNk6bF+nxY4QFZB8TbkMQc+22k0b47nfurimhD50wOsMgIF
PdXXNovgFszyFUDhKNjJm92R3+fkF9IA2/tfys5GIq+q9v1JGTiVQGQVRsJuyfhI
ppWmZ2/RaqUNduAGZiKRtyfzXj0DMG1VVHYTgQxKve19JmA1nfP6X+HCVHpL73cf
5yMCOvAYvHOo36VPgg5Tf64IicWOnu2E4gf7Y0r/Uz6JXgjfEy4ZioGMvfciAeE2
F1crbTeQQcEFDZFz929MfAQnQzUr18jArrK5AdLezJu0B7HXj0JP8Gbpfy1Dk+1L
62hs78xOYBVuTbuOompRucQYUwH5lhEiPEuA3FNIjgYr2Efehc1yCfhTafEboJu+
v7bk/ozR03wEoaC3VNk6iTA1neK68CEpxKrBD1iIAmAy4shlcvoo49LyYwHrsHGg
zERb3jTTYb0c7H8/gsZ7dOIHmETatxFL52eSrtVGXgQkhkwwuRh7XVPJNHyx6m4E
Fio+aHSxQLBIA4mWHcWY
=umuz
-END PGP 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.


Re: Documentation and other changes for solr

2014-01-12 Thread Andrew Beverley
Following up from my own post:

On Wed, 2014-01-08 at 13:31 +, Andrew Beverley wrote:
 1. Having spent some time grappling with the installation and set up of
 solr, I'd like to add a few things to the Debian documentation.
 Presumably adding to /usr/share/doc/solr-common/README.Debian is the
 best thing to do, or have I missed some other existing documentation?

In the meantime, I've created a Debian wiki page:

https://wiki.debian.org/Solr

 2. I created a multi-instance solr set up.

I've put details in the wiki of how I did this.

 3. I see that dataimporthandler-extras, clustering, extraction and
 velocity are not available due to missing dependencies. Are there any
 plans to include these at a later date? If not, where is the recommended
 path to install them locally? I have used /usr/local/lib, but not sure
 if this is the best place.

In the end I used /usr/local/share/java/. Again, details in the wiki.

Andy



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


Documentation and other changes for solr

2014-01-08 Thread Andrew Beverley
Hi,

Firstly, thank you for the Debian Wheezy solr packages.

1. Having spent some time grappling with the installation and set up of
solr, I'd like to add a few things to the Debian documentation.
Presumably adding to /usr/share/doc/solr-common/README.Debian is the
best thing to do, or have I missed some other existing documentation?

2. I created a multi-instance solr set up. This doesn't work
particularly well with the layout as installed in the package, as
everything needs to be moved to a layer lower within /etc/solr.
Presumably it is too late to change this default behaviour in the
package of a future version?

3. I see that dataimporthandler-extras, clustering, extraction and
velocity are not available due to missing dependencies. Are there any
plans to include these at a later date? If not, where is the recommended
path to install them locally? I have used /usr/local/lib, but not sure
if this is the best place.

Thanks,

Andy



__
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#477689: ITP: python-antlr3 -- antlr 3 python runtime

2013-12-14 Thread Andrew Shadura
Hello,

Are there any news on this? I'm working on a package which
depends on python-antlr3...

-- 
Cheers,
  Andrew


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

Bug#684427: testng: Split library jars into separate package

2013-11-04 Thread Andrew Ross
On 04/11/13 14:44, Emmanuel Bourg wrote:
 testng still depends on bsh which pulls a Java runtime. We probably need
 to split bsh first and create a libbsh-java package, and then make
 testng depend on it.

 Emmanuel Bourg

That sounds like a good approach to me, and one I see you've already done!

Thanks,
Andy

__
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#728398: libnb-javaparser-java: New upstream version 7.4 available

2013-10-31 Thread Andrew Ross
Package: libnb-javaparser-java
Version: 7.3-1
Severity: wishlist

Dear Maintainer,

A new upstream version is available. Please consider packaging it.

__
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#673606: 7.4

2013-10-10 Thread Andrew Ross
Netbeans 7.4 should hopefully be released in a week or so (based on
previous release cycles) and I've managed to get rc1 building OK.
There's a few other updates still required (for which I've got very
rough packaging in place locally) - I've been tracking these on
https://wiki.debian.org/Java/Netbeans.

If you'd like to help with any of this then you're more then welcome,
under the Java Maintainers team. Pick a dependency update you'd like to
work on and let me know so I can share what I've got so far. Equally, if
you've got upload rights and are willing to sponsor uploads then that
would be useful - jchardet for example is awaiting sponsorship, and once
eclipselink-jpa-2.1-spec gets through the new queue then I've got an
eclipselink update which will need looking at.

Thanks,
Andy

__
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#725519: libsimple-validation-java: New upstream version available

2013-10-06 Thread Andrew Ross
Package: libsimple-validation-java
Version: 0.4-3
Severity: normal

Dear Maintainer,

A new upstream version is available for libsimple-validation-java. The 
new version is a dependency of Netbeans, so an update would assist in 
the Netbeans update. I'm happy to work on this (I've got an initial 
update prepared) - this bug report is primarily to let others know I'm 
looking at it.

Thanks,
Andrew

__
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#725375: eclipselink: New upstream version available: 2.5.1

2013-10-04 Thread Andrew Ross
Package: eclipselink
Version: 2.1.3-2
Severity: wishlist

Dear Maintainer,

A new upstream version of Eclipselink is available, version 2.5.1. It
can be found at http://www.eclipse.org/eclipselink/ and is a dependency
of the latest netbeans package.

I am currently preparing such an update - this is a warning to other pkg-java
team members that I'm working on it.

Thanks,
Andrew

__
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#689788: jh_repack: exits with rmdir errors (in certain conditions) and fails to repack

2013-09-16 Thread Andrew Ross
I'm seeing this in a package I'm working on now. Is there a timeframe 
for the fix to be released? I see it's been solved in the git 
repository, but presumably testing is currently taking place before a 
release?


Thanks,
Andy

__
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#722518: icu4j: Please install Maven metadata

2013-09-11 Thread Andrew Ross
Package: icu4j
Version: 4.2.1.1-1
Severity: normal

Dear Maintainer,

Please install a Maven pom for this package to assist with the 
packaging of dependent packages.

A suitable pom follows this report.

Thanks,
Andrew

project xmlns=http://maven.apache.org/POM/4.0.0;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;
  modelVersion4.0.0/modelVersion
  groupIdcom.ibm.icu/groupId
  artifactIdicu4j/artifactId
  version4.2.1.1/version
  packagingjar/packaging
  nameICU4J/name
  urlhttp://www.icu-project.org//url
  descriptionThe International Component for Unicode (ICU) is a
  mature, portable set of C/C++ and Java libraries for Unicode
  support, software internationalization (I18N) and globalization
  (G11N), giving applications the same results on all
  platforms./description
/project

__
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#712003: libgluegen2-rt-java: Install maven metadata

2013-06-12 Thread Andrew Ross
Package: libgluegen2-rt-java
Version: 2.0-rc11-1
Severity: wishlist

Dear Maintainer,

Please consider installing maven metadata for the jars in this
package to allow building of maven based projects where this 
package is a dependency.

Thanks,
Andrew

__
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#708441: trove: Install maven metadata

2013-05-15 Thread Andrew Ross
Package: trove
Version: 2.1.0-2
Severity: wishlist

Dear Maintainer,

Please consider installation of maven metadata for this package. A sample
POM is given below.

Thanks,
Andrew Ross

project xmlns=http://maven.apache.org/POM/4.0.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;
  modelVersion4.0.0/modelVersion
  groupIdgnu.trove/groupId
  artifactIdtrove/artifactId
  version2.1.0/version
  descriptionGNU Trove is a fast, lightweight implementations of the
  java.util Collections API. These implementations are designed to be
  pluggable replacements for their JDK equivalents./description
/project

__
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#708437: beansbinding: Install maven pom

2013-05-15 Thread Andrew Ross
Package: beansbinding
Version: 1.2.1-1
Severity: wishlist

Dear Maintainer,

Please consider installing a maven pom alongside this package. This 
could be achieved using jh_maven_repo_helper - a sample pom is 
included below.

Thanks,
Andy

project xmlns=http://maven.apache.org/POM/4.0.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;
  modelVersion4.0.0/modelVersion
  groupIdorg.jdesktop/groupId
  artifactIdbeansbinding/artifactId
  version1.2.1/version
  packagingjar/packaging
  nameorg.jdesktop - Beans Binding/name
  description
In essence, Beans Binding (JSR 295) is about keeping two
properties (typically of two objects) in sync. An additional
emphasis is placed on the ability to bind to Swing components, and
easy integration with IDEs such as NetBeans. This project provides
the reference implementation.
  /description
/project

__
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#704009: libmodello-maven-plugin1.4-java: Invalid version in plugin descriptor

2013-03-26 Thread Andrew Ross
Package: libmodello-maven-plugin1.4-java
Version: 1.4.1-1
Severity: important

Dear Maintainer,

Whilst building a new package depending on 
libmodello-maven-plugin1.4-java I encountered the 
following build error:

Internal error in the plugin manager getting plugin 
'org.codehaus.modello:modello-maven-plugin': Plugin 
'org.codehaus.modello:modello-maven-plugin:1.4.x' has 
an invalid descriptor:
1) Plugin's descriptor contains the wrong version: 1.4.1


maven-plugin versions should't be changed using 
debian/maven.rules as the decriptor has to have matching
data. 

I fixed the problem locally by recompiling this package
having removed the following from debian/maven.rules:

org.codehaus.modello modello-maven-plugin maven-plugin s/.*/1.4.x/ * *

As it stands I don't believe the plugin is useable.

Thanks,
Andrew

__
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#702363: should not depend on libmaven-plugin-tools-java

2013-03-05 Thread Andrew Ross
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hi Thomas,

I just noticed this, and thought it might help you that I've got a
version of maven-plugin-tools3 (version 3.2) which builds OK in my PPA
at https://launchpad.net/~rockclimb/+archive/ppa

Note that I think I used the current maven-plugin-tools package during
my build process though, which might not really be the best plan if
you can manage without.

I've not been able to properly test all of it though, and I'd be
interested to see how you go about getting it working. I can't
remember if there was anything else I had to update, but it should all
be in that PPA if there was.

Once I've checked the packages I'm working on are functioning OK then
I'll start trying to get them uploaded to experimental.

Thanks,
Andy

On 05/03/13 18:17, Thomas Koch wrote:
 Package: libplexus-containers1.5-java Version: 1.5.5-2 Severity:
 normal
 
 Hi,
 
 I'm trying to update the libmaven-plugin-tools-java package which
 in the newer version depends on libplexus-containers1.5-java.
 However the latter already depends on the former for no apparent
 reason. Please drop the dependency or explain why it was
 introduced.
 
 Thank you, Thomas Koch
 
 
 __ 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.
 

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBAgAGBQJRNkTnAAoJEJ0xLSYlIEOZZFwQAK0+dXnBMjPOA03IauBN86oz
FqTAcnHW/5akgu3hUIYjKyIpBgligg4mvgx7pWWlLeEEW5CApfyAsecBSruF3veb
08qg7arph3DhgXti+vLftABHOrM5TI8XGZt+nQ4gefas/LvR3XP/+w7/CwBUVRp6
K61hWOBPFR12MNaYZPgSH4Fov8KcHoMDaATLvTzBubNEX1cVLOGRlr3lpfikN/UG
WCT4UgqfdhwVPXwwTjZy9vBF9moUYyGZRq/bs4tQU6V5RAPKxH6GOAjfBFv3IRW7
WOn5cwijaVqSRgS10jeoAd6EiPs9DzDTDpdOPXbTut3MKH1C9kJeLxVBeDPnI+pH
p6CGU+c2LVpPtnMT6TEv3rXFSJF4A8KifDluPAqKEWNXYURlHhsO1ZNj9kOfffHy
GbeXxbFb4wmFuIIDhOOUKhUW+5ONQlmu0osHgA00OtExhmbpp4oqvxsgFYzbyRre
qI6VNmzZG1mNp1zn1KKOH+k1ILIznp6bdQZfByhYlvhJHc3br3qGXzH/9KMR/ybZ
1t9sO/wP2SFnj6YZWdhQ1VH35l+Bpm1ZWVlGVOgxi5hei40v/vTnv7IGEkeCvpF8
nSJNjbRIxssY7wXn2NOUp98zqvSq004e6xlwL/GEYfZcdPO5a6Ykmz4VWcZDKWk9
tgbHHjRWG1AQGkyA8D2F
=KkNW
-END PGP 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.


Bug#698975: maven: Install 3.x poms

2013-01-25 Thread Andrew Ross
Package: maven
Version: 3.0.4-5
Severity: normal

Dear Maintainer,

It would be very helpful for packaging of dependent packages if the poms for 
this package could also install 3.x symlinks where possible. This would avoid 
the potential need to update dependent packages when maven gets updated.

Thanks,
Andy

__
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#673606: +1

2013-01-01 Thread Andrew Ross
I've got an initial attempt at a Netbeans 7.2 package in my Ubuntu PPA
at [1] however there are a few things not working right now.

I've separated the Netbeans Platform back into its own package, and
added versions to the package names, because it can be desirable to have
more than one version of the platform installed simultaneously.

Sadly, for a reliable install then probably the best thing would be to
write a netbeans-installer-nonfree package which grabs the binaries from
the Netbeans download site, and lays them out appropriately on the
filesystem. I'd guess it shouldn't be too hard to write. This would need
to go into contrib though, rather than main, and isn't something I'm
that interested in working on.

I'll try and take a look at the dependency tree for Netbeans 7.3 and see
what libraries need packaging - perhaps if people want to help then they
could start with those? For Netbeans 7.2 then most of the libraries in
my PPA [1] are probably needed, and I've only done very rough packages
for them.

Andy

[1] https://launchpad.net/~rockclimb/+archive/netbeans



On 28/12/12 23:35, Vedran Miletić wrote:
 NetBeans 7.3 will soon be out. Is there anything we can do to help
 with getting it at least into experimental?
 
 Regards,
 Vedran
 
 __
 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.
 

__
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#691202: Bug#691203: Missing B-D to ant

2012-10-25 Thread Andrew Ross
tags 691202 + unreproducible
tags 691203 + unreproducible
thanks

I've just built this package in both stable and testing using pbuilder
with no problems. I'm marking as unreproducible and will close unless
anyone else can confirm it.

Andy


__
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#691202:

2012-10-23 Thread Andrew Ross
On 22/10/12 21:49, Mathieu Malaterre wrote:
 Actually it looks like ant and javahelper are missing too.
 
 Thanks
 
 __
 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.
 

I'm slightly confused, because according to [1] the package already
build-depends on cdbs, ant, and javahelper.

[1] http://packages.debian.org/source/testing/libswingx1-java

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


Bug#687206: libjcommander-java: Please install jar in /usr/share/java

2012-09-10 Thread Andrew Ross
Package: libjcommander-java
Version: 1.26-1
Severity: normal


libjcommander-java should install its jar file in /usr/share/java/ with
symlinks in the maven repository.

__
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#684427: testng: Split library jars into separate package

2012-08-09 Thread Andrew Ross
Package: testng
Version: 5.11+dfsg-3
Severity: normal


Please split the testng jar file into a separate libtestng-java package which 
does not pull in 
multiple versions of java, bsh, etc. Some java applications make use of testng 
but do not 
require the entire framework, and currently installing testng pulls in gcj-4.7 
etc.

Thanks,
Andy

__
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#683631: please install maven artifacts

2012-08-04 Thread Andrew Ross
On 02/08/12 13:00, Thomas Koch wrote:
 Package: libpostgresql-jdbc-java
 Version: 9.1-901-1
 Severity: normal

 Hi,

 please install the maven artifacts to /usr/share/maven-repo.

 I'd be willing to work on this. But may I switch the packaging to Git
 in that
 case? Upstream also uses Git.

 Regards,

 Thomas Koch


Thomas,

As far as I'm concerned you are welcome to work on the libpgjava
package, and I don't have a problem with you moving it over to git. I'm
currently waiting for someone to sponsor some changes to add
transitional packages, and the latest revision isn't tagged in SVN for
that release yet, in case that affects anything during the conversion
process.

Andy

__
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#683631: please install maven artifacts

2012-08-04 Thread Andrew Ross
On 04/08/12 19:19, Thomas Koch wrote:
 Andrew Ross:
 On 02/08/12 13:00, Thomas Koch wrote:
 Package: libpostgresql-jdbc-java
 Version: 9.1-901-1
 Severity: normal

 Hi,

 please install the maven artifacts to /usr/share/maven-repo.

 I'd be willing to work on this. But may I switch the packaging to Git
 in that
 case? Upstream also uses Git.

 Regards,

 Thomas Koch

 Thomas,

 As far as I'm concerned you are welcome to work on the libpgjava
 package, and I don't have a problem with you moving it over to git. I'm
 currently waiting for someone to sponsor some changes to add
 transitional packages, and the latest revision isn't tagged in SVN for
 that release yet, in case that affects anything during the conversion
 process.

 Andy
 
 Hi Andy,
 
 would it make sense, if you'd withdraw your current sponsor request and we 
 prepare a new upload with the maven stuff included? Thus the sponsor does not 
 need to review two uploads.
 
 Regards,
 
 Thomas Koch, http://www.koch.ro
 

The plan is to get the upload I've prepared into Wheezy, since it
provides transitional packages to ease the move to the new package
names. To maximise the chance it'll be accepted I'd rather not include
any other changes for now. After Wheezy is released then there's also a
new upstream minor version to update to, since it fixes some performance
issues too.

Andy

__
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#677125: netbeans: java gui editor fails due to incompatible class definitions

2012-06-11 Thread Andrew Ross
Package: netbeans
Version: 7.0.1+dfsg1-5
Severity: important


When trying to use the java swing editor of netbeans, a java exception 
occurs due to incompatible class definitions:

java.lang.LinkageError: loader constraint violation: loader (instance of 
org/netbeans/StandardModule$OneModuleClassLoader) previously initiated loading 
for a different type with name org/w3c/dom/DocumentFragment
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:634)
at org.netbeans.JarClassLoader.doLoadClass(Unknown Source)
at org.netbeans.ProxyClassLoader.selfLoadClass(Unknown Source)
at org.netbeans.ProxyClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
at org.apache.xerces.parsers.AbstractDOMParser.startDocument(Unknown 
Source)
at org.apache.xerces.impl.dtd.XMLDTDValidator.startDocument(Unknown 
Source)
at org.apache.xerces.impl.XMLDocumentScannerImpl.startEntity(Unknown 
Source)
at 
org.apache.xerces.impl.XMLVersionDetector.startDocumentParsing(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at 
org.netbeans.modules.form.GandalfPersistenceManager.canLoadForm(Unknown Source)
at 
org.netbeans.modules.form.FormDesigner$PreLoadTask.getPersistenceManager(Unknown
 Source)
at org.netbeans.modules.form.FormDesigner$PreLoadTask.run(Unknown 
Source)
[catch] at org.openide.util.RequestProcessor$Task.run(Unknown Source)
at org.openide.util.RequestProcessor$Processor.run(Unknown Source)

java.lang.LinkageError: loader constraint violation in interface itable 
initialization: when resolving method 
org.apache.xerces.dom.CoreDocumentImpl.createDocumentFragment()Lorg/w3c/dom/DocumentFragment;
 the class loader (instance of 
org/netbeans/StandardModule$OneModuleClassLoader) of the current class, 
org/apache/xerces/dom/CoreDocumentImpl, and the class loader (instance of 
bootloader) for interface org/w3c/dom/Document have different Class objects 
for the type org/w3c/dom/DocumentFragment used in the signature
at org.apache.xerces.parsers.AbstractDOMParser.startDocument(Unknown 
Source)
at org.apache.xerces.impl.dtd.XMLDTDValidator.startDocument(Unknown 
Source)
at org.apache.xerces.impl.XMLDocumentScannerImpl.startEntity(Unknown 
Source)
at 
org.apache.xerces.impl.XMLVersionDetector.startDocumentParsing(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at 
org.netbeans.modules.form.GandalfPersistenceManager.canLoadForm(Unknown Source)
at 
org.netbeans.modules.form.FormDesigner$PreLoadTask.getPersistenceManager(Unknown
 Source)
at org.netbeans.modules.form.FormDesigner$PreLoadTask.run(Unknown 
Source)
[catch] at org.openide.util.RequestProcessor$Task.run(Unknown Source)
at org.openide.util.RequestProcessor$Processor.run(Unknown Source)



__
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#659324: libpgjava: package libpg-java removed - no upgrade path in Debian 7.0

2012-04-03 Thread Andrew Ross
On 13/02/12 09:43, Teodor MICU wrote:
 2012/2/11 tony mancill tmanc...@debian.org:
 Would there be a problem with simply addressing all of the rdepends
 prior to the release?  I believe Andrew Ross has filed bugs on the
 affected packages.
 
 That's the think, I believe this won't be enough. I just noticed on my
 workstation that libpg-java is one of the packages removed from Debian
 archives (candidate for removal in synaptic and 'aptitude purge ~o').
 At this point I noticed that other packages depend on it and would
 also be removed. I searched Debian PTS and found that it was renamed.
 
 I manually installed the new package and than I could simply remove
 libpg-java *without* removing the r-deps. Thus no upgrade path from
 Debian 6.0 to 7.0.
 
 Thanks
 

Actually I think you're right for any dependency which declares a
specific version of libpg-java that it requires. I'll look at adding a
transitional package.

Andy



__
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#653915: netbeans: Netbeans GUI editor is not loading The problem isn't fixed

2012-03-02 Thread Andrew Ross
On 02/03/12 18:33, Francesco Muzio wrote:
 The problem isn't fixed, the GUI editor must be in working with the
 launch of netbeans without any parameters
 
 
 
 __
 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.

Hi Francesco,

I just tried it in a Debian Unstable install, having removed my
~/.netbeans/ folder, and it worked OK, at least in a new project. Any
chance you could try that please?

Thanks,
Andy



__
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] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-4-6-g7141084

2012-02-19 Thread Andrew Ross
The following commit has been merged in the master branch:
commit fc5ebc75d73e3a91f3f7008e87ef8b624e561b2e
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sun Feb 19 21:12:04 2012 +

updates to fix various bugs

diff --git a/debian/changelog b/debian/changelog
index ae9b6af..a23eec5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,11 @@ netbeans (7.0.1+dfsg1-5) unstable; urgency=low
   * Include junit library definitions.
   * Make libnb-platform13-java depend on antlr3. (Closes: #651214)
   * Avoid including javadoc twice in libnb-platform13-java-doc.
+  * Replace dependency libpg-java with libpostgresql-jdbc-java
+  (Closes: #659397)
+  * Add symlink to jaxp-1.4.jar (Closes: #653915)
 
- -- Andrew Ross ubu...@rossfamily.co.uk  Thu, 22 Dec 2011 20:36:14 +
+ -- Andrew Ross ubu...@rossfamily.co.uk  Wed, 15 Feb 2012 20:36:14 +
 
 netbeans (7.0.1+dfsg1-4) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 0d24406..ce0b7f7 100644
--- a/debian/control
+++ b/debian/control
@@ -19,7 +19,7 @@ Build-Depends: debhelper (= 7.0.50~), javahelper, ant (= 
1.7.0),
  liblucene2-java (= 2.4.1), libxml-commons-resolver1.1-java (= 1.2-3),
  libsac-java, libservlet2.5-java, libsvnclientadapter-java, libsvn-java,
  libsvnkit-java, libswingx1-java, libtrilead-ssh2-java,
- libsimple-validation-java, libxerces2-java, libpg-java,
+ libsimple-validation-java, libxerces2-java, libpostgresql-jdbc-java,
  libmysql-java,
  libbetter-appframework-java,  libbeansbinding-java, libcglib-java,
  libnb-javaparser-java (= 7.0.1~), junit
@@ -140,7 +140,7 @@ Depends: ${java:Depends}, ${misc:Depends}, 
libnb-platform13-java (= 7.0),
  libxml-commons-resolver1.1-java (= 1.2-3), libsac-java,
  libservlet2.5-java, libsvnclientadapter-java, libsvn-java,
  libsvnkit-java, libswingx1-java, libtrilead-ssh2-java,
- libsimple-validation-java, libxerces2-java, libpg-java,
+ libsimple-validation-java, libxerces2-java, libpostgresql-jdbc-java,
  libmysql-java
 Description: Common Integrated Development Environment Libraries for NetBeans
  The NetBeans Platform is a set of modules, each providing their own 
diff --git a/debian/linked-jars b/debian/linked-jars
index c5ec2e8..5fa3baa 100644
--- a/debian/linked-jars
+++ b/debian/linked-jars
@@ -39,6 +39,7 @@ $JAVADIR/swingx1.jar libs.swingx/external ide/modules/ext 
swingx-0.9.5.jar
 $JAVADIR/trilead-ssh2.jar libs.svnClientAdapter.svnkit/external 
ide/modules/ext trilead.jar
 $JAVADIR/simple-validation.jar swing.validation/external ide/modules/ext 
ValidationAPI.jar
 $JAVADIR/xercesImpl.jar libs.xerces/external ide/modules/ext xerces-2.8.0.jar
+$JAVADIR/jaxp-1.4.jar libs.xerces/external ide/modules/ext jaxp-1.4.jar
 $JAVADIR/postgresql-jdbc3.jar db.drivers/external ide/modules/ext 
postgresql-8.3-603.jdbc3.jar
 $JAVADIR/mysql-connector-java.jar db.drivers/external ide/modules/ext 
mysql-connector-java-5.1.13-bin.jar
 
diff --git a/debian/patches/netbeans~xerces.patch 
b/debian/patches/netbeans~xerces.patch
new file mode 100644
index 000..097df48
--- /dev/null
+++ b/debian/patches/netbeans~xerces.patch
@@ -0,0 +1,26 @@
+Index: netbeans-7.0.1+dfsg1/libs.xerces/nbproject/project.properties
+===
+--- netbeans-7.0.1+dfsg1.orig/libs.xerces/nbproject/project.properties 
2011-08-10 19:12:58.0 +0100
 netbeans-7.0.1+dfsg1/libs.xerces/nbproject/project.properties  
2012-02-10 21:16:23.432574294 +
+@@ -42,5 +42,6 @@
+ 
+ is.autoload=true
+ release.external/xerces-2.8.0.jar=modules/ext/xerces-2.8.0.jar
++release.external/jaxp-1.4.jar=modules/ext/jaxp-1.4.jar
+ module.jar.verifylinkageignores=org.apache.xerces.util.XMLCatalogResolver
+ spec.version.base=1.22.1
+Index: netbeans-7.0.1+dfsg1/libs.xerces/nbproject/project.xml
+===
+--- netbeans-7.0.1+dfsg1.orig/libs.xerces/nbproject/project.xml
2011-08-10 19:12:58.0 +0100
 netbeans-7.0.1+dfsg1/libs.xerces/nbproject/project.xml 2012-02-10 
21:16:59.008126975 +
+@@ -56,6 +56,10 @@
+ 
runtime-relative-pathext/xerces-2.8.0.jar/runtime-relative-path
+ binary-originexternal/xerces-2.8.0.jar/binary-origin
+ /class-path-extension
++class-path-extension
++
runtime-relative-pathext/jaxp-1.4.jar/runtime-relative-path
++binary-originexternal/jaxp-1.4.jar/binary-origin
++/class-path-extension
+ /data
+ /configuration
+ /project
diff --git a/debian/patches/series b/debian/patches/series
index 94b0dd8..ca75a42 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -23,3 +23,4 @@ netbeans~xsl.patch
 netbeans~db.patch
 netbeans-platform~osgi-4.3.patch
 netbeans~include-junit.patch
+netbeans~xerces.patch

-- 
netbeans packaging

___
pkg-java-commits mailing list
pkg-java-comm

[SCM] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-4-6-g7141084

2012-02-19 Thread Andrew Ross
The following commit has been merged in the master branch:
commit b4d403eb6e6e3af5eb91f1230940c8514d7ab7fc
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sun Feb 19 21:13:02 2012 +

update changelog

diff --git a/debian/changelog b/debian/changelog
index a23eec5..900ef7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ netbeans (7.0.1+dfsg1-5) unstable; urgency=low
   * Include junit library definitions.
   * Make libnb-platform13-java depend on antlr3. (Closes: #651214)
   * Avoid including javadoc twice in libnb-platform13-java-doc.
+  * Include definitions for junit libraries.
   * Replace dependency libpg-java with libpostgresql-jdbc-java
   (Closes: #659397)
   * Add symlink to jaxp-1.4.jar (Closes: #653915)

-- 
netbeans 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] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-4-6-g7141084

2012-02-19 Thread Andrew Ross
The following commit has been merged in the master branch:
commit 7141084895acfd30f88b290527e39c9b2d58da41
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sun Feb 19 21:50:59 2012 +

Add patch description

diff --git a/debian/patches/netbeans~xerces.patch 
b/debian/patches/netbeans~xerces.patch
index 097df48..fae494f 100644
--- a/debian/patches/netbeans~xerces.patch
+++ b/debian/patches/netbeans~xerces.patch
@@ -1,3 +1,5 @@
+We need jaxp too since it's not part of the xerces jar in Debian.
+
 Index: netbeans-7.0.1+dfsg1/libs.xerces/nbproject/project.properties
 ===
 --- netbeans-7.0.1+dfsg1.orig/libs.xerces/nbproject/project.properties 
2011-08-10 19:12:58.0 +0100

-- 
netbeans 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] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-4-7-g2a369d4

2012-02-19 Thread Andrew Ross
The following commit has been merged in the master branch:
commit 2a369d4559c3b72d835767fc7926c23a9a83706c
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sun Feb 19 22:17:16 2012 +

Fix changelog

diff --git a/debian/changelog b/debian/changelog
index 900ef7c..a23eec5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,7 +3,6 @@ netbeans (7.0.1+dfsg1-5) unstable; urgency=low
   * Include junit library definitions.
   * Make libnb-platform13-java depend on antlr3. (Closes: #651214)
   * Avoid including javadoc twice in libnb-platform13-java-doc.
-  * Include definitions for junit libraries.
   * Replace dependency libpg-java with libpostgresql-jdbc-java
   (Closes: #659397)
   * Add symlink to jaxp-1.4.jar (Closes: #653915)

-- 
netbeans 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] netbeans packaging annotated tag, debian/7.0.1+dfsg1-5, created. debian/7.0.1+dfsg1-5

2012-02-19 Thread Andrew Ross
The annotated tag, debian/7.0.1+dfsg1-5 has been created
at  df828813d27e71ead87b0a0774142e82d2b46fd2 (tag)
   tagging  2a369d4559c3b72d835767fc7926c23a9a83706c (commit)
  replaces  debian/7.0.1+dfsg1-4
 tagged by  Damien Raude-Morvan
on  Mon Feb 20 00:20:15 2012 +0100

- Shortlog 
Debian release 7.0.1+dfsg1-5

Andrew Ross (7):
  Fix dependencies
  Include junit support
  Include junit library definitions
  updates to fix various bugs
  update changelog
  Add patch description
  Fix changelog

---

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


Bug#659397: libnb-ide14-java: Replace dependency libpg-java with libpostgresql-jdbc-java (package renamed)

2012-02-10 Thread Andrew Ross
Package: libnb-ide14-java
Version: 7.0.1+dfsg1-4
Severity: normal


The package libpg-java is a dependency of this package and has been renamed 
to libpostgresql-jdbc-java. Please update the package dependencies.



__
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#659398: libopenjpa-java: Replace dependency libpg-java with libpostgresql-jdbc-java (package renamed)

2012-02-10 Thread Andrew Ross
Package: libopenjpa-java
Version: 2.0.0-1
Severity: normal


The package libpg-java is a dependency of this package and has been renamed 
to libpostgresql-jdbc-java. Please update the package dependencies.



__
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#657903: libxerces2-java: Invalid classpath

2012-01-30 Thread Andrew Ross
Package: libxerces2-java
Version: 2.11.0-4
Severity: normal


The Class-Path line in the manifest of /usr/share/java/xercesImpl.jar 
is incorrect as it is comma separated rather than space separated. It 
is set in debian/patches/04_manifest_classpath.patch, so should be 
corrected there.

Thanks,
Andy



__
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#653915: netbeans: Netbeans GUI editor is not loading

2012-01-30 Thread Andrew Ross
On 05/01/12 08:39, Andrii Borovyi wrote:
 While googling, I discovered, this problem may be overpassed with the
 installed libbatik-java package and running netbeans from command line
 with the following parameters:
 
 $ netbeans -cp:a /usr/share/java/batik-ext.jar
 

Hi,

I just wanted to let you know that I've been able to reproduce this and
I'm looking into it. In the meantime, you should be able to achieve the
same thing as you have but without installing extra packages, by using
the line:

$ netbeans -cp:a /usr/share/java/xercesImpl.jar

I haven't yet worked out why it's not already on the classpath, but
hopefully I'll get to the bottom of it in the next few days.

Thanks,
Andy



__
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] libpjl-comp-filter-java packaging branch, upstream, created. e4f37cca1240f0431f47166a9242d25cb7580885

2012-01-21 Thread Andrew Harvey
The branch, upstream has been created
at  e4f37cca1240f0431f47166a9242d25cb7580885 (commit)

- Shortlog 
---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, master, created. 41f3f96a281c3cd29472d149689cafcdc3513039

2012-01-21 Thread Andrew Harvey
The branch, master has been created
at  41f3f96a281c3cd29472d149689cafcdc3513039 (commit)

- Shortlog 
commit 41f3f96a281c3cd29472d149689cafcdc3513039
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Tue Feb 21 15:00:00 2012 +1100

Imported Debian patch 1.7+dfsg-1

---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, pristine-tar, created. 3e4d73a49bc76ad9a11518aae66e1d1ebcabd714

2012-01-21 Thread Andrew Harvey
The branch, pristine-tar has been created
at  3e4d73a49bc76ad9a11518aae66e1d1ebcabd714 (commit)

- Shortlog 
commit 3e4d73a49bc76ad9a11518aae66e1d1ebcabd714
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sat Jan 21 22:11:29 2012 +1100

pristine-tar data for pjl-comp-filter_1.7+dfsg.orig.tar.gz

---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging annotated tag, debian/1.7+dfsg-1, created. debian/1.7+dfsg-1

2012-01-21 Thread Andrew Harvey
The annotated tag, debian/1.7+dfsg-1 has been created
at  501cc3c9df1eff0444c69a9408046de5cfd00aff (tag)
   tagging  41f3f96a281c3cd29472d149689cafcdc3513039 (commit)
  replaces  upstream/1.7+dfsg
 tagged by  Andrew Harvey
on  Sat Jan 21 22:11:30 2012 +1100

- Shortlog 
Debian release 1.7+dfsg-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAABCAAGBQJPGp1iAAoJEDiTg7zdt+By41sP/RlSqPr0rKgUdyzsHvZ4xySc
x9r/lJeUoclso0uMY8W7zacGZn3GObciaz4Qkj0bmG7/h/MshQ7cfcDyY+36/zto
ma1qQkODYrxF2p6+t41e1VVSVnQiKs9STbxFPEJTaoe/5iYmzQ5xZjKfJzzvMARq
TLzaULh9Prf/kmWoRUYl9MaSfN9CfrMDBDtqXBOi//rK8p0JS+pqwZ1+AKRaRrhL
NNp5ymcGFTHb4QXrpJ5LgniCNxQEuH7yqjytTAUu2yh7ItFnK/FWzKwwqMvPZHs2
hAlwtG9RNSIvPC+Jaw/7LCFcKIIGVoI3HD9CaLQQj3j5TnrstzY8V6P+cGECWPXS
lyrb5N5TBH2kc8iZKmtMfeABBDXQLU5ZN19lfJ2WsJsDlo38MwhOqunyHatqfAc6
jjcPAzOaj01Hseu1tJWboBiDlbrC3eNqUsYBkSJDw3obMgHrGQfW+8Eg2ngFpXwd
L5lb8KPy6/ellXjAyogG8QiVTjD/GtMmN4K8ftd3Ds26zVBuMIA8EbVssq3Hj8XK
SO/RP8fTtag+nh9AtxiX+EnD1O5EoZWmWweFBHAbNLanjum4tXFjoz6THYI+aF8J
1pYX1tNv7yY491YQzCVTXvkBNhnRPuCAqBhEcHGVdocXUqY9nwOaG3UjqvDcZmT4
tGmPuMNiwmFJ9kZFnu/W
=Eehn
-END PGP SIGNATURE-

Andrew Harvey (1):
  Imported Debian patch 1.7+dfsg-1

---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging annotated tag, upstream/1.7+dfsg, created. upstream/1.7+dfsg

2012-01-21 Thread Andrew Harvey
The annotated tag, upstream/1.7+dfsg has been created
at  b4092b6faffadd209e140db95953af9f88296ac8 (tag)
   tagging  e4f37cca1240f0431f47166a9242d25cb7580885 (commit)
 tagged by  Andrew Harvey
on  Sat Jan 21 22:11:29 2012 +1100

- Shortlog 
Upstream version 1.7+dfsg
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAABCAAGBQJPGp1hAAoJEDiTg7zdt+ByKUgP/0dbCSPYf8jYkK7dRdBSoR6S
0rbsfKkDodQM1dS9JiOUgAQhsffX/yLCZoLmnEHO2ARAxVoGl3GhdpSdFAvxmdcy
GwF0hdWwkkIiFGF0Nv5aAZ53c9i2SSiZ03Z7t6a8gwTFVBeTCeJoaL2Zu+mTxQAl
7XhMuPv55RUy2jx7xd3r6FeSJTWFuDZPkpEn4+/8jcVfKO+e6+iQ4Ngk3VK3lq9i
SsBq4L4+Fnc7PpDu0nJwq3qwsxxMleQvRqrAF313Ki/3b6cY/tqIDVDKvPzMaXXC
UNd6WjRcYlDI1ljpZRZPpnLwQ/T7jsdpxOoETLlAJVYNl0M8JhMmwjZ8mO4KFnsx
7iNyeZsb1mu0J/s3/fUWfwBU4q+Pm3OR2WDY67znf5eUtCdG26xi1U7vCHXchjS1
1LsPbZafDxL3BJp+ndFbUKOL9rwoUKtI0thaU31aZE7k9DWSsKZa06W534ZWkgL1
fZeYMIcA/yxyAGujEIq2tQk7GZ22EdAxyou9Ir25Rwhis5Fd97/9M2Lko2nGt32K
506NuiC+z232GF7HrAfdOICvawhPI/PkJYLq1t+xn5AAi77EEowp0Tqapc6QXalQ
EQqaqAVB1wmZafC0wl5Or2RcIrT7zzILB88uH5juHP9fMtlDon9mGhkgtQISSKfQ
5lura2mK7xA7SyIOHgQt
=ff35
-END PGP SIGNATURE-

Andrew Harvey (1):
  Imported Upstream version 1.7+dfsg

---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, master, updated. debian/1.7+dfsg-1-1-g82aed81

2012-01-21 Thread Andrew Harvey
The following commit has been merged in the master branch:
commit 82aed81da47f53592f148f6fd4e911c9df9b7721
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sun Jan 22 08:35:03 2012 +1100

add Vcs fields to debian/control

diff --git a/debian/control b/debian/control
index 16b08f5..bb8c7ea 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,8 @@ Build-Depends:
  , default-jdk
  , junit
 Standards-Version: 3.9.2
+Vcs-Git: git://git.debian.org/pkg-java/libpjl-comp-filter-java.git
+Vcs-Browser: http://git.debian.org/?p=pkg-java/libpjl-comp-filter-java.git
 
 Package: libpjl-comp-filter-java
 Architecture: all

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, pristine-tar, deleted. 3e4d73a49bc76ad9a11518aae66e1d1ebcabd714

2012-01-21 Thread Andrew Harvey
The branch, pristine-tar has been deleted
   was  3e4d73a49bc76ad9a11518aae66e1d1ebcabd714

---
3e4d73a49bc76ad9a11518aae66e1d1ebcabd714 pristine-tar data for 
pjl-comp-filter_1.7+dfsg.orig.tar.gz
---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, upstream, deleted. upstream/1.7+dfsg

2012-01-21 Thread Andrew Harvey
The branch, upstream has been deleted
   was  e4f37cca1240f0431f47166a9242d25cb7580885

---
e4f37cca1240f0431f47166a9242d25cb7580885 Imported Upstream version 1.7+dfsg
---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging annotated tag, debian/1.7+dfsg-1, deleted. upstream/1.7+dfsg-1-g41f3f96

2012-01-21 Thread Andrew Harvey
The annotated tag, debian/1.7+dfsg-1 has been deleted
   was  501cc3c9df1eff0444c69a9408046de5cfd00aff

---
tag debian/1.7+dfsg-1

Debian release 1.7+dfsg-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAABCAAGBQJPGp1iAAoJEDiTg7zdt+By41sP/RlSqPr0rKgUdyzsHvZ4xySc
x9r/lJeUoclso0uMY8W7zacGZn3GObciaz4Qkj0bmG7/h/MshQ7cfcDyY+36/zto
ma1qQkODYrxF2p6+t41e1VVSVnQiKs9STbxFPEJTaoe/5iYmzQ5xZjKfJzzvMARq
TLzaULh9Prf/kmWoRUYl9MaSfN9CfrMDBDtqXBOi//rK8p0JS+pqwZ1+AKRaRrhL
NNp5ymcGFTHb4QXrpJ5LgniCNxQEuH7yqjytTAUu2yh7ItFnK/FWzKwwqMvPZHs2
hAlwtG9RNSIvPC+Jaw/7LCFcKIIGVoI3HD9CaLQQj3j5TnrstzY8V6P+cGECWPXS
lyrb5N5TBH2kc8iZKmtMfeABBDXQLU5ZN19lfJ2WsJsDlo38MwhOqunyHatqfAc6
jjcPAzOaj01Hseu1tJWboBiDlbrC3eNqUsYBkSJDw3obMgHrGQfW+8Eg2ngFpXwd
L5lb8KPy6/ellXjAyogG8QiVTjD/GtMmN4K8ftd3Ds26zVBuMIA8EbVssq3Hj8XK
SO/RP8fTtag+nh9AtxiX+EnD1O5EoZWmWweFBHAbNLanjum4tXFjoz6THYI+aF8J
1pYX1tNv7yY491YQzCVTXvkBNhnRPuCAqBhEcHGVdocXUqY9nwOaG3UjqvDcZmT4
tGmPuMNiwmFJ9kZFnu/W
=Eehn
-END PGP SIGNATURE-
41f3f96a281c3cd29472d149689cafcdc3513039 Imported Debian patch 1.7+dfsg-1
---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, master, created. 487ef1185333b5808bd723921e3c383e98c1d53f

2012-01-21 Thread Andrew Harvey
The branch, master has been created
at  487ef1185333b5808bd723921e3c383e98c1d53f (commit)

- Shortlog 
commit 487ef1185333b5808bd723921e3c383e98c1d53f
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Tue Feb 21 15:00:00 2012 +1100

Imported Debian patch 1.7+dfsg-1

---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, upstream, created. d99e3586fca44f4cdbc574b5051a9191b0cdd3d7

2012-01-21 Thread Andrew Harvey
The branch, upstream has been created
at  d99e3586fca44f4cdbc574b5051a9191b0cdd3d7 (commit)

- Shortlog 
---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, pristine-tar, created. 94e01b835a6ad990e6ddf0b75da5736c8683b818

2012-01-21 Thread Andrew Harvey
The branch, pristine-tar has been created
at  94e01b835a6ad990e6ddf0b75da5736c8683b818 (commit)

- Shortlog 
commit 94e01b835a6ad990e6ddf0b75da5736c8683b818
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sun Jan 22 08:44:51 2012 +1100

pristine-tar data for pjl-comp-filter_1.7+dfsg.orig.tar.gz

---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging annotated tag, upstream/1.7+dfsg, created. upstream/1.7+dfsg

2012-01-21 Thread Andrew Harvey
The annotated tag, upstream/1.7+dfsg has been created
at  263a190ab7e5a86ea74eb5ee23b3db9bee040961 (tag)
   tagging  d99e3586fca44f4cdbc574b5051a9191b0cdd3d7 (commit)
 tagged by  Andrew Harvey
on  Sun Jan 22 08:44:35 2012 +1100

- Shortlog 
Upstream version 1.7+dfsg
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAABCAAGBQJPGzHDAAoJEDiTg7zdt+ByH8QP/AwFtOXBYo2th2E3F7aHw2c8
Xbe/Zd9qdkwiDgaQ2YMUrWsjy/5MZUmS1A2zKKLlxybHBikAvFhDE/CcAVKyaIOZ
+7w7xdgDcIyhO0AIXTixi9S0ptgWAy9n7bO+fJDcD3Fm6razyUcpP2tkGqJAwF6W
e3kz/GE0ZgODlLXkup2JUUlhD8jy0Odjltb4AThK5tnXhEjZbT97peIWYPx7cbtV
5eE3AxHazOv6/R4LNJK2+U63puGBJE2qBtmXf6xCOdidL+e0DEphfjncokr8S1s6
WvlkZIvGUiaKFJTfXKRQ8rOMLNEzViDlOsRsp6NXnvxjT7EipC/+fsSdujB+krHY
boYIPkVHU7v9Pz1avm3Q6kfBxyAETifaV9Xkb7NKgZKp5x82W0pkb25e6Yv0tQvf
g7h9pc7GJVZotdH5Q2PIyT40/71jzvOGYLOThjuXDyLnjBmT9HURm8dgz7HwhRyT
4zzX7Eek04mzXk8v6CZShNmtn62A/imcEkKMxJGTRhdnbWvoACjNecWr1iC0LU7i
tX/FedluYLp9tiZOH7joeHVlzLyClGAwZNPgs2mCpiHFyGCgxhC3aN7puHTeha3U
4vS+oiS1gIRfJwUPuNzLlKczuVyxLFI69aD8GkPCQgB/ImNsMm6X08csM6xB6s8b
tAIZj2HUwG5Gkd9ssjXM
=vhD4
-END PGP SIGNATURE-

Andrew Harvey (1):
  Imported Upstream version 1.7+dfsg

---

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, master, updated. upstream/1.7+dfsg-2-g0e68156

2012-01-21 Thread Andrew Harvey
The following commit has been merged in the master branch:
commit 0e681560e47589bca8ae7058c0207e3c5a066c75
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sun Jan 22 08:48:12 2012 +1100

add Vcs fields to debian/control

diff --git a/debian/control b/debian/control
index 16b08f5..bb8c7ea 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,8 @@ Build-Depends:
  , default-jdk
  , junit
 Standards-Version: 3.9.2
+Vcs-Git: git://git.debian.org/pkg-java/libpjl-comp-filter-java.git
+Vcs-Browser: http://git.debian.org/?p=pkg-java/libpjl-comp-filter-java.git
 
 Package: libpjl-comp-filter-java
 Architecture: all

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, master, updated. upstream/1.7+dfsg-5-g48fb2bd

2012-01-21 Thread Andrew Harvey
The following commit has been merged in the master branch:
commit af2e802a6d933a86451bfffb212ac9e3e0edce8b
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sun Jan 22 09:35:25 2012 +1100

fix depends as per lintian warnings

diff --git a/debian/control b/debian/control
index 865a0fb..1167858 100644
--- a/debian/control
+++ b/debian/control
@@ -17,11 +17,10 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-java/libpjl-comp-filter-java.git
 Package: libpjl-comp-filter-java
 Architecture: all
 Depends:
- default-jre
+ ${misc:Depends}
  , libservlet2.5-java
  , libcommons-logging-java
  , libservlet2.5-java
- , ${misc:depends}
 Description: PJL Compression Filter
  A J2EE servlet filter which compresses response data.
  .
@@ -31,7 +30,7 @@ Description: PJL Compression Filter
 Package: libpjl-comp-filter-java-doc
 Architecture: all
 Depends:
- ${misc:depends}
+ ${misc:Depends}
 Section: doc
 Recommends:
  libpjl-comp-filter-java

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, master, updated. upstream/1.7+dfsg-5-g48fb2bd

2012-01-21 Thread Andrew Harvey
The following commit has been merged in the master branch:
commit 48fb2bd302fc1c27821980c176a148f7b8a8db36
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sun Jan 22 13:16:40 2012 +1100

change to cdbs

diff --git a/debian/control b/debian/control
index 1167858..43eb5e4 100644
--- a/debian/control
+++ b/debian/control
@@ -4,12 +4,15 @@ Priority: extra
 Maintainer: Andrew Harvey andrew.harv...@gmail.com
 DM-Upload-Allowed: yes
 Build-Depends:
- ant
- , debhelper (= 8~)
+ debhelper (= 7),
+ , cdbs (= 0.4.5.3),
  , default-jdk
- , junit
- , maven-repo-helper
- , maven-ant-helper
+Build-Depends-Indep:
+ maven-repo-helper ( 0.5)
+ , maven-ant-helper ( 4)
+ , ant
+ , libservlet2.5-java
+ , libcommons-logging-java
 Standards-Version: 3.9.2
 Vcs-Git: git://git.debian.org/pkg-java/libpjl-comp-filter-java.git
 Vcs-Browser: http://git.debian.org/?p=pkg-java/libpjl-comp-filter-java.git
@@ -20,7 +23,6 @@ Depends:
  ${misc:Depends}
  , libservlet2.5-java
  , libcommons-logging-java
- , libservlet2.5-java
 Description: PJL Compression Filter
  A J2EE servlet filter which compresses response data.
  .
diff --git a/debian/rules b/debian/rules
index 10f4717..f721a9c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,24 +1,20 @@
 #!/usr/bin/make -f
 
-DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: 
([^+]+).*,\1,p')
-
-%:
-   dh $@
-
-override_dh_auto_build:
-   dh_auto_build -- jar javadoc
-
-override_dh_auto_install:
-   dh_auto_install
-   install -m 644 $(CURDIR)/pjl-comp-filter-${DEB_UPSTREAM_VERSION}.jar 
$(CURDIR)/debian/libpjl-comp-filter-java/usr/share/java/pjl-comp-filter-${DEB_UPSTREAM_VERSION}.jar
-   dh_link usr/share/java/pjl-comp-filter-${DEB_UPSTREAM_VERSION}.jar 
usr/share/java/pjl-comp-filter.jar
-   
-   install -d 
$(CURDIR)/debian/libpjl-comp-filter-java-doc/usr/share/doc/libpjl-comp-filter-java-doc
-   cp -r docs/ 
$(CURDIR)/debian/libpjl-comp-filter-java-doc/usr/share/doc/libpjl-comp-filter-java-doc/api
-
-binary-post-install/libpjl-comp-filter-java::
-   mh_installpoms -plibpjl-comp-filter-java
-   mh_installjar -plibpjl-comp-filter-java -l 
debian/libpjl-comp-filter-java.pom pjl-comp-filter-${DEB_UPSTREAM_VERSION}.jar
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+PACKAGE  := $(DEB_SOURCE_PACKAGE)
+VERSION  := $(shell echo $(DEB_UPSTREAM_VERSION) | sed -e 
s/\+dfsg.*//)
+JAVA_HOME:= /usr/lib/jvm/default-java
+DEB_JARS := pjl-comp-filter-$(DEB_UPSTREAM_VERSION).jar
+DEB_ANT_BUILD_TARGET := jar javadoc
+DEB_ANT_BUILDFILE:= build.xml
+DEB_ANT_ARGS := -Dbasedir=$(realpath .) -Dpackage=$(PACKAGE)
+API_DOCS := docs
+
+binary-post-install/lib$(PACKAGE)-java::
+   mh_installpoms -plib$(PACKAGE)-java
+   mh_installjar -plib$(PACKAGE)-java -l debian/lib$(PACKAGE)-java.pom 
$(PACKAGE)-$(VERSION).jar
 
 clean::
mh_clean

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, master, updated. upstream/1.7+dfsg-5-g48fb2bd

2012-01-21 Thread Andrew Harvey
The following commit has been merged in the master branch:
commit 74f59f99e013631d680a0aa0642a8df2dc108e4f
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sun Jan 22 09:29:37 2012 +1100

install to maven-repo

diff --git a/debian/control b/debian/control
index bb8c7ea..865a0fb 100644
--- a/debian/control
+++ b/debian/control
@@ -8,6 +8,8 @@ Build-Depends:
  , debhelper (= 8~)
  , default-jdk
  , junit
+ , maven-repo-helper
+ , maven-ant-helper
 Standards-Version: 3.9.2
 Vcs-Git: git://git.debian.org/pkg-java/libpjl-comp-filter-java.git
 Vcs-Browser: http://git.debian.org/?p=pkg-java/libpjl-comp-filter-java.git
diff --git a/debian/libpjl-comp-filter-java.pom 
b/debian/libpjl-comp-filter-java.pom
new file mode 100644
index 000..2fa7295
--- /dev/null
+++ b/debian/libpjl-comp-filter-java.pom
@@ -0,0 +1,48 @@
+!--
+   This file is in the public domain, furnished “as is”, without technical
+   support, and with no warranty, express or implied, as to its usefulness 
for
+   any purpose.
+--
+project xmlns=http://maven.apache.org/POM/4.0.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;
+   modelVersion4.0.0/modelVersion
+   groupIdnet.sourceforge/groupId
+   artifactIdpjl-comp-filter/artifactId
+   version1.7/version
+   packagingjar/packaging
+
+   namePJL Compressing Filter/name
+   descriptionPJL Compressing Filter/description
+   urlhttp://sourceforge.net/projects/pjl-comp-filter//url
+
+   licenses
+   license
+   nameApache 2/name
+   
urlhttp://www.apache.org/licenses/LICENSE-2.0.txt/url
+   distributionrepo/distribution
+   /license
+   /licenses
+
+   dependencies
+   dependency
+   groupIdjunit/groupId
+   artifactIdjunit/artifactId
+   version3.8.2/version
+   scopetest/scope
+   /dependency
+   dependency
+   groupIdcommons-logging/groupId
+   artifactIdcommons-logging-api/artifactId
+   version1.1.1/version
+   /dependency
+   dependency
+   groupIdjavax.servlet.jsp/groupId
+   artifactIdjsp-api/artifactId
+   version2.1/version
+   /dependency
+   dependency
+   groupIdjavax.servlet/groupId
+   artifactIdservlet-api/artifactId
+   version2.5/version
+   /dependency
+   /dependencies
+/project
diff --git a/debian/libpjl-comp-filter-java.poms 
b/debian/libpjl-comp-filter-java.poms
new file mode 100644
index 000..9ed0402
--- /dev/null
+++ b/debian/libpjl-comp-filter-java.poms
@@ -0,0 +1 @@
+debian/libpjl-comp-filter-java.pom
diff --git a/debian/patches/02-addpom.patch b/debian/patches/02-addpom.patch
deleted file mode 100644
index 576041b..000
--- a/debian/patches/02-addpom.patch
+++ /dev/null
@@ -1,51 +0,0 @@
 /dev/null
-+++ b/pom.xml
-@@ -0,0 +1,48 @@
-+!--
-+  This file is in the public domain, furnished “as is”, without technical
-+  support, and with no warranty, express or implied, as to its usefulness 
for
-+  any purpose.
-+--
-+project xmlns=http://maven.apache.org/POM/4.0.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;
-+  modelVersion4.0.0/modelVersion
-+  groupIdnet.sourceforge/groupId
-+  artifactIdpjl-comp-filter/artifactId
-+  version1.7/version
-+  packagingjar/packaging
-+
-+  namePJL Compressing Filter/name
-+  descriptionPJL Compressing Filter/description
-+  urlhttp://sourceforge.net/projects/pjl-comp-filter//url
-+
-+  licenses
-+  license
-+  nameApache 2/name
-+  
urlhttp://www.apache.org/licenses/LICENSE-2.0.txt/url
-+  distributionrepo/distribution
-+  /license
-+  /licenses
-+
-+  dependencies
-+  dependency
-+  groupIdjunit/groupId
-+  artifactIdjunit/artifactId
-+  version3.8.2/version
-+  scopetest/scope
-+  /dependency
-+  dependency
-+  groupIdcommons-logging/groupId
-+  artifactIdcommons-logging-api/artifactId
-+  version1.1.1/version
-+  /dependency
-+  dependency
-+  groupIdjavax.servlet.jsp/groupId
-+  artifactIdjsp-api/artifactId
-+  version2.1/version
-+  /dependency
-+  dependency
-+  groupIdjavax.servlet

[SCM] libpjl-comp-filter-java packaging branch, master, updated. upstream/1.7+dfsg-7-g62e9114

2012-01-21 Thread Andrew Harvey
The following commit has been merged in the master branch:
commit 62e91148b96563938dbde4c264457d78d5b81b24
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sun Jan 22 14:04:02 2012 +1100

make debian/compat consistant with debhelper dependency

diff --git a/debian/compat b/debian/compat
index 45a4fb7..7f8f011 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-8
+7

-- 
libpjl-comp-filter-java 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] libpjl-comp-filter-java packaging branch, master, updated. upstream/1.7+dfsg-7-g62e9114

2012-01-21 Thread Andrew Harvey
The following commit has been merged in the master branch:
commit c9656601a96cae2812ae875d35d3d69c69ebbf0b
Author: Andrew Harvey andrew.harv...@gmail.com
Date:   Sun Jan 22 14:01:04 2012 +1100

update deb_jars

diff --git a/debian/rules b/debian/rules
index f721a9c..978b7bf 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,7 +6,7 @@ include /usr/share/cdbs/1/class/ant.mk
 PACKAGE  := $(DEB_SOURCE_PACKAGE)
 VERSION  := $(shell echo $(DEB_UPSTREAM_VERSION) | sed -e 
s/\+dfsg.*//)
 JAVA_HOME:= /usr/lib/jvm/default-java
-DEB_JARS := pjl-comp-filter-$(DEB_UPSTREAM_VERSION).jar
+DEB_JARS := servlet-api-2.5 commons-logging
 DEB_ANT_BUILD_TARGET := jar javadoc
 DEB_ANT_BUILDFILE:= build.xml
 DEB_ANT_ARGS := -Dbasedir=$(realpath .) -Dpackage=$(PACKAGE)

-- 
libpjl-comp-filter-java 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] r15648 - trunk/libpgjava/debian

2012-01-06 Thread Andrew Ross
Author: rockclimb-guest
Date: 2012-01-06 21:54:10 + (Fri, 06 Jan 2012)
New Revision: 15648

Modified:
   trunk/libpgjava/debian/control
Log:
conflict with libpg-java-doc

Modified: trunk/libpgjava/debian/control
===
--- trunk/libpgjava/debian/control  2012-01-05 23:37:25 UTC (rev 15647)
+++ trunk/libpgjava/debian/control  2012-01-06 21:54:10 UTC (rev 15648)
@@ -30,6 +30,9 @@
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}
 Recommends: ${java:Recommends}
+Conflicts: libpg-java-doc (= 8.4-702-1)
+Provides: libpg-java-doc
+Replaces: libpg-java-doc
 Description: Java database (JDBC) driver for PostgreSQL (documentation)
  Java classes for communication with the PostgreSQL 7.2 up to 8.4 database
  backend (local or remote) using JDBC. This package contains two Java archives


___
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] r15638 - trunk/libpgjava/debian

2012-01-03 Thread Andrew Ross
Author: rockclimb-guest
Date: 2012-01-03 22:46:10 + (Tue, 03 Jan 2012)
New Revision: 15638

Modified:
   trunk/libpgjava/debian/changelog
   trunk/libpgjava/debian/control
Log:
Update libpgjava


Modified: trunk/libpgjava/debian/changelog
===
--- trunk/libpgjava/debian/changelog2012-01-03 14:41:00 UTC (rev 15637)
+++ trunk/libpgjava/debian/changelog2012-01-03 22:46:10 UTC (rev 15638)
@@ -3,6 +3,7 @@
   * New upstream release. (closes: #645854)
   * Change binary package name to libpostgresql-jdbc-java.
   (closes: #336245)
+  * Remove Michael Koch from Uploaders. (closes: #654090)
   * Bump standards version to 3.9.2 (no changes).
 
  -- Andrew Ross ubu...@rossfamily.co.uk  Sat, 24 Dec 2011 23:33:56 +

Modified: trunk/libpgjava/debian/control
===
--- trunk/libpgjava/debian/control  2012-01-03 14:41:00 UTC (rev 15637)
+++ trunk/libpgjava/debian/control  2012-01-03 22:46:10 UTC (rev 15638)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Arnaud Vandyck av...@debian.org, Matthias Klose 
d...@ubuntu.com, 
- Michael Koch konque...@gmx.de, Andrew Ross ubu...@rossfamily.co.uk
+ Andrew Ross ubu...@rossfamily.co.uk
 Build-Depends: debhelper (= 7.0.50~), java-gcj-compat-dev, ant, javahelper 
(=0.32~) 
 Build-Depends-Indep: libxerces2-java, default-jdk, default-jdk-doc
 Standards-Version: 3.9.2


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


[pkg-java] r15609 - trunk/libpgjava/debian

2011-12-28 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-12-28 18:35:37 + (Wed, 28 Dec 2011)
New Revision: 15609

Added:
   trunk/libpgjava/debian/libpostgresql-jdbc-java-doc.javadoc
   trunk/libpgjava/debian/libpostgresql-jdbc-java.docs
   trunk/libpgjava/debian/libpostgresql-jdbc-java.jlibs
Removed:
   trunk/libpgjava/debian/libpg-java-doc.javadoc
   trunk/libpgjava/debian/libpg-java.dirs
   trunk/libpgjava/debian/libpg-java.docs
   trunk/libpgjava/debian/libpg-java.jlibs
Modified:
   trunk/libpgjava/debian/changelog
   trunk/libpgjava/debian/control
   trunk/libpgjava/debian/watch
Log:
Updated for 9.1-901


Modified: trunk/libpgjava/debian/changelog
===
--- trunk/libpgjava/debian/changelog2011-12-28 03:07:16 UTC (rev 15608)
+++ trunk/libpgjava/debian/changelog2011-12-28 18:35:37 UTC (rev 15609)
@@ -1,3 +1,12 @@
+libpgjava (9.1-901-1) unstable; urgency=low
+
+  * New upstream release. (closes: #645854)
+  * Change binary package name to libpostgresql-jdbc-java.
+  (closes: #336245)
+  * Bump standards version to 3.9.2 (no changes).
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Sat, 24 Dec 2011 23:33:56 +
+
 libpgjava (8.4-702-1) unstable; urgency=low
 
   * New upstream release (closes: #612643)

Modified: trunk/libpgjava/debian/control
===
--- trunk/libpgjava/debian/control  2011-12-28 03:07:16 UTC (rev 15608)
+++ trunk/libpgjava/debian/control  2011-12-28 18:35:37 UTC (rev 15609)
@@ -6,26 +6,26 @@
  Michael Koch konque...@gmx.de, Andrew Ross ubu...@rossfamily.co.uk
 Build-Depends: debhelper (= 7.0.50~), java-gcj-compat-dev, ant, javahelper 
(=0.32~) 
 Build-Depends-Indep: libxerces2-java, default-jdk, default-jdk-doc
-Standards-Version: 3.9.1
+Standards-Version: 3.9.2
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libpgjava
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libpgjava
 Homepage: http://jdbc.postgresql.org/
 
-Package: libpg-java
+Package: libpostgresql-jdbc-java
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}
 Recommends: ${java:Recommends}
 Suggests: postgresql (= 8.2)
-Conflicts: libpgjava (= 7.4.7-3)
-Provides: libpgjava
-Replaces: libpgjava
+Conflicts: libpgjava (= 7.4.7-3), libpg-java (= 8.4-702-1)
+Provides: libpgjava, libpg-java
+Replaces: libpgjava, libpg-java
 Description: Java database (JDBC) driver for PostgreSQL
- Java classes for communication with the PostgreSQL 7.2 up to 8.4 database
+ Java classes for communication with the PostgreSQL 7.2 up to 9.1 database
  backend (local or remote) using JDBC. This package contains two Java archives
  (JARs), one that supports JDBC 3.0 and SSL (for JDK 1.4 and up) and one that 
  supports JDBC 4.0 and SSL (for JDK 1.6 and up).
 
-Package: libpg-java-doc
+Package: libpostgresql-jdbc-java-doc
 Section: doc
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}

Deleted: trunk/libpgjava/debian/libpg-java-doc.javadoc
===
--- trunk/libpgjava/debian/libpg-java-doc.javadoc   2011-12-28 03:07:16 UTC 
(rev 15608)
+++ trunk/libpgjava/debian/libpg-java-doc.javadoc   2011-12-28 18:35:37 UTC 
(rev 15609)
@@ -1 +0,0 @@
-build/publicapi /usr/share/doc/libpg-java-doc/api
\ No newline at end of file

Deleted: trunk/libpgjava/debian/libpg-java.dirs
===
--- trunk/libpgjava/debian/libpg-java.dirs  2011-12-28 03:07:16 UTC (rev 
15608)
+++ trunk/libpgjava/debian/libpg-java.dirs  2011-12-28 18:35:37 UTC (rev 
15609)
@@ -1 +0,0 @@
-usr/share/java

Deleted: trunk/libpgjava/debian/libpg-java.docs
===
--- trunk/libpgjava/debian/libpg-java.docs  2011-12-28 03:07:16 UTC (rev 
15608)
+++ trunk/libpgjava/debian/libpg-java.docs  2011-12-28 18:35:37 UTC (rev 
15609)
@@ -1 +0,0 @@
-README

Deleted: trunk/libpgjava/debian/libpg-java.jlibs
===
--- trunk/libpgjava/debian/libpg-java.jlibs 2011-12-28 03:07:16 UTC (rev 
15608)
+++ trunk/libpgjava/debian/libpg-java.jlibs 2011-12-28 18:35:37 UTC (rev 
15609)
@@ -1,2 +0,0 @@
-postgresql-jdbc3.jar
-postgresql-jdbc4.jar

Added: trunk/libpgjava/debian/libpostgresql-jdbc-java-doc.javadoc
===
--- trunk/libpgjava/debian/libpostgresql-jdbc-java-doc.javadoc  
(rev 0)
+++ trunk/libpgjava/debian/libpostgresql-jdbc-java-doc.javadoc  2011-12-28 
18:35:37 UTC (rev 15609)
@@ -0,0 +1 @@
+build/publicapi /usr/share/doc/libpostgresql-jdbc-java-doc/api

Added: trunk/libpgjava/debian/libpostgresql-jdbc-java.docs
===
--- trunk/libpgjava/debian/libpostgresql-jdbc-java.docs 
(rev 0)
+++ trunk/libpgjava/debian/libpostgresql-jdbc

[SCM] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-4-3-g2562835

2011-12-22 Thread Andrew Ross
The following commit has been merged in the master branch:
commit d3260ac08b1b8f2aa6e4aeaf7a0cdb2ac0c851a0
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sun Dec 18 14:15:25 2011 +

Fix dependencies

diff --git a/debian/control b/debian/control
index cd35522..ef96a97 100644
--- a/debian/control
+++ b/debian/control
@@ -33,7 +33,7 @@ Architecture: all
 Depends: ${misc:Depends}, ${java:Depends}, javahelp2, 
  libswing-layout-java (= 1.0.3), libjna-java(= 3.2.7-2~), junit4 (= 4.6),
  libfelix-framework-java, libfelix-main-java, libosgi-core-java,
- libosgi-compendium-java, libnb-org-openide-util-java,
+ libosgi-compendium-java, libnb-org-openide-util-java, antlr3 (= 3.2),
  libnb-org-openide-util-lookup-java, libnb-org-openide-modules-java
 Suggests: libnb-platform13-java-doc
 Provides: netbeans-platform
diff --git a/debian/rules b/debian/rules
index c1871af..7077223 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,7 +45,7 @@ NB_PLATFORM_BUILD_DIR := $(shell 
pwd)/nbbuild/netbeans/platform
 
 DEB_UPSTREAM_VERSION = $(shell dpkg-parsechangelog | \
   grep -e '^Version' | \
-   perl -pi -e 
's/^Version:\s+(.*)\+dfsg\d+-\d+$$/$$1/')
+   perl -pi -e 
's/^Version:\s+(.*)\+dfsg\d+-\d+.*$$/$$1/')
 
 # Defined function to be used to create symlinks
 define symlink

-- 
netbeans 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] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-4-3-g2562835

2011-12-22 Thread Andrew Ross
The following commit has been merged in the master branch:
commit 2562835dd84fee2fa99fdafea58e722d6d4f5bab
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Thu Dec 22 20:41:27 2011 +

Include junit library definitions

diff --git a/debian/changelog b/debian/changelog
index 62e7c1d..ae9b6af 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+netbeans (7.0.1+dfsg1-5) unstable; urgency=low
+
+  * Include junit library definitions.
+  * Make libnb-platform13-java depend on antlr3. (Closes: #651214)
+  * Avoid including javadoc twice in libnb-platform13-java-doc.
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Thu, 22 Dec 2011 20:36:14 +
+
 netbeans (7.0.1+dfsg1-4) unstable; urgency=low
 
   * Patch core.osgi to use osgi-core 4.3. (Closes: #649750)
diff --git a/debian/control b/debian/control
index ef96a97..0d24406 100644
--- a/debian/control
+++ b/debian/control
@@ -22,7 +22,7 @@ Build-Depends: debhelper (= 7.0.50~), javahelper, ant (= 
1.7.0),
  libsimple-validation-java, libxerces2-java, libpg-java,
  libmysql-java,
  libbetter-appframework-java,  libbeansbinding-java, libcglib-java,
- libnb-javaparser-java (= 7.0.1~)
+ libnb-javaparser-java (= 7.0.1~), junit
 Standards-Version: 3.9.2
 Homepage: http://netbeans.org/
 Vcs-Browser: http://git.debian.org/?p=pkg-java/netbeans.git
@@ -151,7 +151,7 @@ Package: libnb-java5-java
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends},
  libnb-platform13-java (= 7.0), libnb-ide14-java (= ${binary:Version}),
- libnb-absolutelayout-java,
+ libnb-absolutelayout-java, junit, junit-doc, junit4-doc,
  libbetter-appframework-java,  libbeansbinding-java, libcglib-java,
  libnb-javaparser-java (= 7.0.1~), ant (= 1.7.0), ant-optional (= 1.7.0)
 Description: Common Java Related Libraries for NetBeans
diff --git a/debian/libnb-java5-java.lintian-overrides 
b/debian/libnb-java5-java.lintian-overrides
index c3bbbd7..579a139 100644
--- a/debian/libnb-java5-java.lintian-overrides
+++ b/debian/libnb-java5-java.lintian-overrides
@@ -4,8 +4,3 @@ libnb-java5-java: codeless-jar
 # It is a library of sorts, although it installs as a netbeans cluster rather
 # than in /usr/share/java
 libnb-java5-java: javalib-but-no-public-jars
-
-# Netbeans creates this empty directory, and we include it to avoid unneeded
-# changes.
-libnb-java5-java: package-contains-empty-directory
-
diff --git a/debian/patches/netbeans~include-junit.patch 
b/debian/patches/netbeans~include-junit.patch
index 83e1c32..619c840 100644
--- a/debian/patches/netbeans~include-junit.patch
+++ b/debian/patches/netbeans~include-junit.patch
@@ -1,38 +1,12 @@
-Description: Upstream changes introduced in version 7.0.1+dfsg1-4
- This patch has been created by dpkg-source during the package build.
- Here's the last changelog entry, hopefully it gives details on why
- those changes were made:
- .
- netbeans (7.0.1+dfsg1-4) unstable; urgency=low
- .
-   * Patch core.osgi to use osgi-core 4.3. (Closes: #649750)
-   * Correct binary package names and install locations.
-   (Closes: #646856)
-   * Install AbsoluteLayout.jar in a separate package.
-   (Closes: #646857)
- .
- The person named in the Author field signed this changelog entry.
-Author: Andrew Ross ubu...@rossfamily.co.uk
-Bug-Debian: http://bugs.debian.org/646856
-Bug-Debian: http://bugs.debian.org/646857
-Bug-Debian: http://bugs.debian.org/649750
-

-The information above should follow the Patch Tagging Guidelines, please
-checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
-are templates for supplementary fields that you might want to add:
-
-Origin: vendor|upstream|other, url of original patch
-Bug: url in upstream bugtracker
-Bug-Debian: http://bugs.debian.org/bugnumber
-Forwarded: no|not-needed|url proving that it has been forwarded
-Reviewed-By: name and email of someone who approved the patch
-Last-Update: -MM-DD
+Include the junitlib module as part of the java cluster. This provides the 
+necessary references to the junit jars (junit.jar and junit4.jar) in order 
+to use the junit testing framework. This module would otherwise have to be 
+downloaded from the Netbeans site.
 
 Index: netbeans/nbbuild/cluster.properties
 ===
 netbeans.orig/nbbuild/cluster.properties   2011-12-18 17:43:17.0 
+
-+++ netbeans/nbbuild/cluster.properties2011-12-18 17:43:17.0 
+
+--- netbeans.orig/nbbuild/cluster.properties   2011-12-22 19:48:15.312713133 
+
 netbeans/nbbuild/cluster.properties2011-12-22 19:48:15.472713052 
+
 @@ -426,6 +426,7 @@
  jellytools,\
  jellytools.java,\
@@ -52,7 +26,7 @@ Index: netbeans/nbbuild/cluster.properties
 Index: netbeans/junitlib/build.xml
 ===
 --- /dev/null  1970-01-01 00:00:00.0 +
-+++ netbeans/junitlib/build.xml2011-12-18 17:43:17.0 +
 netbeans

[SCM] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-4-3-g2562835

2011-12-22 Thread Andrew Ross
The following commit has been merged in the master branch:
commit 29637475d8867ab2f58a6c47edf4bd50045bcf5a
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sun Dec 18 23:18:21 2011 +

Include junit support

diff --git a/debian/linked-jars b/debian/linked-jars
index c75e721..c5ec2e8 100644
--- a/debian/linked-jars
+++ b/debian/linked-jars
@@ -48,3 +48,4 @@ $JAVADIR/cglib.jar libs.cglib/external java/modules/ext 
cglib-2.2.jar
 $JAVADIR/javac-api.jar libs.javacapi/external java/modules/ext 
javac-api-nb-7.0-b07.jar
 $JAVADIR/javac-impl.jar libs.javacimpl/external java/modules/ext 
javac-impl-nb-7.0-b07.jar
 $JAVA_HOME/jre/lib/rt.jar swingapp/external java/modules/ext 
swing-worker-1.1.jar
+$JAVADIR/junit.jar junitlib/external java/modules/ext junit-3.8.2.jar
diff --git a/debian/patches/netbeans~include-junit.patch 
b/debian/patches/netbeans~include-junit.patch
new file mode 100644
index 000..83e1c32
--- /dev/null
+++ b/debian/patches/netbeans~include-junit.patch
@@ -0,0 +1,681 @@
+Description: Upstream changes introduced in version 7.0.1+dfsg1-4
+ This patch has been created by dpkg-source during the package build.
+ Here's the last changelog entry, hopefully it gives details on why
+ those changes were made:
+ .
+ netbeans (7.0.1+dfsg1-4) unstable; urgency=low
+ .
+   * Patch core.osgi to use osgi-core 4.3. (Closes: #649750)
+   * Correct binary package names and install locations.
+   (Closes: #646856)
+   * Install AbsoluteLayout.jar in a separate package.
+   (Closes: #646857)
+ .
+ The person named in the Author field signed this changelog entry.
+Author: Andrew Ross ubu...@rossfamily.co.uk
+Bug-Debian: http://bugs.debian.org/646856
+Bug-Debian: http://bugs.debian.org/646857
+Bug-Debian: http://bugs.debian.org/649750
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: vendor|upstream|other, url of original patch
+Bug: url in upstream bugtracker
+Bug-Debian: http://bugs.debian.org/bugnumber
+Forwarded: no|not-needed|url proving that it has been forwarded
+Reviewed-By: name and email of someone who approved the patch
+Last-Update: -MM-DD
+
+Index: netbeans/nbbuild/cluster.properties
+===
+--- netbeans.orig/nbbuild/cluster.properties   2011-12-18 17:43:17.0 
+
 netbeans/nbbuild/cluster.properties2011-12-18 17:43:17.0 
+
+@@ -426,6 +426,7 @@
+ jellytools,\
+ jellytools.java,\
+ junit,\
++junitlib,\
+ libs.cglib,\
+ libs.javacapi,\
+ libs.javacimpl,\
+@@ -867,7 +868,6 @@
+ jira,\
+ jmx,\
+ jmx.common,\
+-junitlib,\
+ kenai,\
+ kenai.ui,\
+ libs.jira,\
+Index: netbeans/junitlib/build.xml
+===
+--- /dev/null  1970-01-01 00:00:00.0 +
 netbeans/junitlib/build.xml2011-12-18 17:43:17.0 +
+@@ -0,0 +1,6 @@
++?xml version=1.0 encoding=UTF-8?
++project basedir=. default=netbeans name=junitlib
++property name=license.file location=../nbbuild/licenses/CPL-1.0/
++target name=-create-license.file/
++import file=../nbbuild/templates/projectized.xml/
++/project
+Index: netbeans/junitlib/manifest.mf
+===
+--- /dev/null  1970-01-01 00:00:00.0 +
 netbeans/junitlib/manifest.mf  2011-12-18 17:43:17.0 +
+@@ -0,0 +1,6 @@
++Manifest-Version: 1.0
++OpenIDE-Module: org.netbeans.modules.junitlib
++OpenIDE-Module-Layer: org/netbeans/modules/junitlib/layer.xml
++OpenIDE-Module-Localizing-Bundle: 
org/netbeans/modules/junitlib/Bundle.properties
++OpenIDE-Module-Specification-Version: 1.0
++
+Index: netbeans/junitlib/src/org/netbeans/modules/junitlib/junit-3.8.2.xml
+===
+--- /dev/null  1970-01-01 00:00:00.0 +
 netbeans/junitlib/src/org/netbeans/modules/junitlib/junit-3.8.2.xml
2011-12-18 17:43:17.0 +
+@@ -0,0 +1,26 @@
++?xml version=1.0 encoding=UTF-8?
++!DOCTYPE library PUBLIC -//NetBeans//DTD Library Declaration 1.0//EN 
http://www.netbeans.org/dtds/library-declaration-1_0.dtd;
++library version=1.0
++namejunit/name
++typej2se/type
++
localizing-bundleorg.netbeans.modules.junitlib.Bundle/localizing-bundle
++volume
++typeclasspath/type
++
resourcejar:nbinst://org.netbeans.modules.junitlib/modules/ext/junit-3.8.2.jar!//resource
++/volume
++volume
++typejavadoc/type
++
resourcejar:nbinst://org.netbeans.modules.junitlib/docs/junit-3.8.2-api.zip!//resource
++/volume
++!-- Not currently bundled:
++volume
++typesrc/type
++
resourcejar:nbinst

[pkg-java] r15547 - trunk/libjcalendar-java/debian

2011-12-16 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-12-16 19:01:33 + (Fri, 16 Dec 2011)
New Revision: 15547

Modified:
   trunk/libjcalendar-java/debian/changelog
Log:
update jcalendar

Modified: trunk/libjcalendar-java/debian/changelog
===
--- trunk/libjcalendar-java/debian/changelog2011-12-14 23:36:37 UTC (rev 
15546)
+++ trunk/libjcalendar-java/debian/changelog2011-12-16 19:01:33 UTC (rev 
15547)
@@ -6,7 +6,7 @@
   * Update Vcs-Svn locations.
   * Add descriptions to patches.
 
- -- Andrew Ross ubu...@rossfamily.co.uk  Tue, 25 Oct 2011 22:56:34 +0100
+ -- Andrew Ross ubu...@rossfamily.co.uk  Fri, 16 Dec 2011 17:56:34 +
 
 libjcalendar-java (1.3.3-2) 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


[pkg-java] r15548 - in trunk/colorpicker/debian: . source

2011-12-16 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-12-16 19:18:21 + (Fri, 16 Dec 2011)
New Revision: 15548

Added:
   trunk/colorpicker/debian/source/lintian-overrides
Removed:
   trunk/colorpicker/debian/docs
Modified:
   trunk/colorpicker/debian/changelog
   trunk/colorpicker/debian/control
   trunk/colorpicker/debian/copyright
Log:
Fix lintian warnings in colorpicker

Modified: trunk/colorpicker/debian/changelog
===
--- trunk/colorpicker/debian/changelog  2011-12-16 19:01:33 UTC (rev 15547)
+++ trunk/colorpicker/debian/changelog  2011-12-16 19:18:21 UTC (rev 15548)
@@ -1,5 +1,10 @@
-colorpicker (1.0.0-2) UNRELEASED; urgency=low
+colorpicker (1.0.0-2) unstable; urgency=low
 
+  [ Andrew Ross ]
+  * Update synopsis and d/copyright to fix linitian warnings.
+  * Add lintian override file since it's not possible to write 
+a useful watch file.
+
   [ Miguel Landaeta ]
   * Team upload.
   * Bump Standards-Version to 3.9.2. No changes were required.
@@ -10,7 +15,7 @@
   javac and javadoc commands to ensure backwards compatibility and 
   work around Java 7 encoding errors.
 
- -- Miguel Landaeta mig...@miguel.cc  Tue, 13 Dec 2011 22:14:24 -0430
+ -- Andrew Ross ubu...@rossfamily.co.uk  Fri, 16 Dec 2011 18:49:12 +
 
 colorpicker (1.0.0-1) unstable; urgency=low
 

Modified: trunk/colorpicker/debian/control
===
--- trunk/colorpicker/debian/control2011-12-16 19:01:33 UTC (rev 15547)
+++ trunk/colorpicker/debian/control2011-12-16 19:18:21 UTC (rev 15548)
@@ -14,16 +14,17 @@
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}
 Recommends: ${java:Recommends}
-Description: A Java control to allow color selection
+Description: Java control to allow color selection
  A java package containing a color wheel picker for selecting
- a color.
+ a color. It can be customized, but out of the box it offers 
+ a great interface if you're dealing with a power user.
  
 Package: libcolorpicker-java-doc
 Section: doc
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}
 Recommends: ${java:Recommends}
-Description: A Java control to allow color selection (documentation)
+Description: Java control to allow color selection (documentation)
  A java package containing a color wheel picker for selecting
  a color. 
  .

Modified: trunk/colorpicker/debian/copyright
===
--- trunk/colorpicker/debian/copyright  2011-12-16 19:01:33 UTC (rev 15547)
+++ trunk/colorpicker/debian/copyright  2011-12-16 19:18:21 UTC (rev 15548)
@@ -12,7 +12,7 @@
 
 It was downloaded from https://javagraphics.dev.java.net/
 
-Upstream Author(s):
+Upstream Author:
 Jeremy Wood
 
 Copyright:

Deleted: trunk/colorpicker/debian/docs
===
--- trunk/colorpicker/debian/docs   2011-12-16 19:01:33 UTC (rev 15547)
+++ trunk/colorpicker/debian/docs   2011-12-16 19:18:21 UTC (rev 15548)
@@ -1 +0,0 @@
-License.html

Added: trunk/colorpicker/debian/source/lintian-overrides
===
--- trunk/colorpicker/debian/source/lintian-overrides   
(rev 0)
+++ trunk/colorpicker/debian/source/lintian-overrides   2011-12-16 19:18:21 UTC 
(rev 15548)
@@ -0,0 +1,3 @@
+# There is no versioning on the upstream site, so it's not 
+# possible to create a useful watch file.
+colorpicker source: debian-watch-file-is-missing


___
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] r15546 - trunk/colorpicker/debian

2011-12-14 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-12-14 23:36:37 + (Wed, 14 Dec 2011)
New Revision: 15546

Modified:
   trunk/colorpicker/debian/
Log:
Update properties to fix svn-buildpackage building.



Property changes on: trunk/colorpicker/debian
___
Added: mergeWithUpstream
   + 1


___
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#651214: libnb-platform13-java should depend on antlr3

2011-12-06 Thread Andrew Ross
Package: libnb-platform13-java
Version: 7.0.1+dfsg1-4
Severity: normal


libnb-platform13-java includes a symlink to /usr/share/java/antlr3.jar so 
should depend on the antlr3 package.



__
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] netbeans packaging annotated tag, debian/7.0.1+dfsg1-4, created. debian/7.0.1+dfsg1-4

2011-12-02 Thread Andrew Ross
The annotated tag, debian/7.0.1+dfsg1-4 has been created
at  04a08ee192793b1ac9624b05d996a93ca2898803 (tag)
   tagging  e746516aa3c617f2becaf3b9b0359e2c0e32d751 (commit)
  replaces  debian/7.0.1+dfsg1-3
 tagged by  Damien Raude-Morvan
on  Sat Dec 3 02:02:19 2011 +0100

- Shortlog 
Debian release 7.0.1+dfsg1-4

Andrew Ross (2):
  Updates to fix build with latest osgi-core
  Updated for 7.0.1+dfsg1-4

---

-- 
netbeans 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] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-3-2-ge746516

2011-12-01 Thread Andrew Ross
The following commit has been merged in the master branch:
commit e746516aa3c617f2becaf3b9b0359e2c0e32d751
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Fri Dec 2 00:05:26 2011 +

Updated for 7.0.1+dfsg1-4

diff --git a/debian/changelog b/debian/changelog
index 1d7f046..62e7c1d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+netbeans (7.0.1+dfsg1-4) unstable; urgency=low
+
+  * Patch core.osgi to use osgi-core 4.3. (Closes: #649750)
+  * Correct binary package names and install locations.
+  (Closes: #646856)
+  * Install AbsoluteLayout.jar in a separate package.
+  (Closes: #646857)
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Thu, 01 Dec 2011 21:59:37 +
+
 netbeans (7.0.1+dfsg1-3) unstable; urgency=low
 
   * Use libosgi-core-java and libosgi-compendium-java for osgi.
diff --git a/debian/control b/debian/control
index a3dd3ea..cd35522 100644
--- a/debian/control
+++ b/debian/control
@@ -104,13 +104,22 @@ Description: Utility classes for modules from the 
NetBeans Platform
  APIs and working together or in a standalone mode. This package provides
  some utility functions for managing NetBeans modules.
 
+Package: libnb-absolutelayout-java
+Architecture: all
+Depends: ${misc:Depends}, ${java:Depends}
+Description: Java LayoutManager to allow placement in absolute positions
+ This library is part of the Netbeans platform and provides an 
+ implementation of the java.awt.LayoutManager interface. This 
+ implementation allows you to position components by their 
+ absolute position.
+
 Package: netbeans
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}, libnb-platform13-java (= 7.0),
  openjdk-6-jdk | java6-sdk | java7-sdk,
- libnb-ide13-java (= ${binary:Version}), 
- libnb-java4-java (= ${binary:Version}),
- libnb-apisupport2-java (= ${binary:Version})
+ libnb-ide14-java (= ${binary:Version}), 
+ libnb-java5-java (= ${binary:Version}),
+ libnb-apisupport3-java (= ${binary:Version})
 Conflicts: netbeans5.5, netbeans-ide
 Replaces: netbeans5.5, netbeans-ide
 Provides: netbeans-ide
@@ -120,7 +129,7 @@ Description: Extensible Java IDE
  includes the Base IDE, Java Development Tools and Plug-in Development Tools. 
  Support for PHP, Ruby, C/C++, Java EE and others can be added.
 
-Package: libnb-ide13-java
+Package: libnb-ide14-java
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}, libnb-platform13-java (= 7.0),
  antlr3 (= 3.2), libcommons-codec-java, libbytelist-java,
@@ -138,10 +147,11 @@ Description: Common Integrated Development Environment 
Libraries for NetBeans
  APIs and working together or in a standalone mode. This package contains 
  independent libraries for use in the NetBeans IDE.
 
-Package: libnb-java4-java
+Package: libnb-java5-java
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends},
- libnb-platform13-java (= 7.0), libnb-ide13-java (= ${binary:Version}),
+ libnb-platform13-java (= 7.0), libnb-ide14-java (= ${binary:Version}),
+ libnb-absolutelayout-java,
  libbetter-appframework-java,  libbeansbinding-java, libcglib-java,
  libnb-javaparser-java (= 7.0.1~), ant (= 1.7.0), ant-optional (= 1.7.0)
 Description: Common Java Related Libraries for NetBeans
@@ -149,11 +159,11 @@ Description: Common Java Related Libraries for NetBeans
  APIs and working together or in a standalone mode. This package contains 
  common libraries for the NetBeans Java IDE.
 
-Package: libnb-apisupport2-java
+Package: libnb-apisupport3-java
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}, libnb-platform13-java (= 7.0),
- libnb-platform-devel-java (= 7.0), libnb-ide13-java (= ${binary:Version}),
- libnb-java4-java (= ${binary:Version})
+ libnb-platform-devel-java (= 7.0), libnb-ide14-java (= ${binary:Version}),
+ libnb-java5-java (= ${binary:Version})
 Description: Common NetBeans Platform Development Related Libraries for 
NetBeans
  The NetBeans Platform is a set of modules, each providing their own 
  APIs and working together or in a standalone mode. This package contains 
diff --git a/debian/libnb-apisupport2-java.lintian-overrides 
b/debian/libnb-apisupport2-java.lintian-overrides
deleted file mode 100644
index 914fe9a..000
--- a/debian/libnb-apisupport2-java.lintian-overrides
+++ /dev/null
@@ -1,10 +0,0 @@
-# Netbeans builds lots of codeless jars on purpose, so don't warn us about them
-libnb-apisupport2-java: codeless-jar
-
-# Netbeans has it's own way to set the classpath, and it breaks things if we 
-# set it separately.
-libnb-apisupport2-java: missing-classpath
-
-# It is a library of sorts, although it installs as a netbeans cluster rather
-# than in /usr/share/java
-libnb-apisupport2-java: javalib-but-no-public-jars
diff --git a/debian/libnb-apisupport3-java.lintian-overrides 
b/debian/libnb-apisupport3-java.lintian-overrides
new file mode 100644
index 000..853fcef
--- /dev/null
+++ b/debian/libnb-apisupport3-java.lintian-overrides
@@ -0,0 +1,10 @@
+# Netbeans builds lots of codeless jars on purpose, so

[SCM] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-3-1-g9dbae9e

2011-11-30 Thread Andrew Ross
The following commit has been merged in the master branch:
commit 9dbae9e703da3cb220caf14377d8d1caf2c19793
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Wed Nov 30 21:27:58 2011 +

Updates to fix build with latest osgi-core

diff --git a/debian/patches/netbeans-platform~osgi-4.3.patch 
b/debian/patches/netbeans-platform~osgi-4.3.patch
new file mode 100644
index 000..11389d5
--- /dev/null
+++ b/debian/patches/netbeans-platform~osgi-4.3.patch
@@ -0,0 +1,28 @@
+Handle minor changes to the osgi core API from 4.2 to 4.3.
+
+Index: netbeans/core.netigso/src/org/netbeans/core/netigso/Netigso.java
+===
+--- netbeans.orig/core.netigso/src/org/netbeans/core/netigso/Netigso.java  
2011-11-29 21:14:05.244675984 +
 netbeans/core.netigso/src/org/netbeans/core/netigso/Netigso.java   
2011-11-29 21:21:41.413842638 +
+@@ -112,7 +112,7 @@
+ if (framework == null) {
+ readBundles();
+ 
+-MapString, Object configMap = new HashMapString, Object();
++Map configMap = new HashMap();
+ final String cache = getNetigsoCache().getPath();
+ configMap.put(Constants.FRAMEWORK_STORAGE, cache);
+ activator = new NetigsoActivator();
+Index: netbeans/core.osgi/src/org/netbeans/core/osgi/Activator.java
+===
+--- netbeans.orig/core.osgi/src/org/netbeans/core/osgi/Activator.java  
2011-11-30 20:54:52.197734467 +
 netbeans/core.osgi/src/org/netbeans/core/osgi/Activator.java   
2011-11-30 20:59:13.197733746 +
+@@ -324,7 +324,7 @@
+ }
+ BundleContext context = 
bundle.getBundleContext();
+ if (context != null) {
+-
context.registerService(URLStreamHandlerService.class.getName(), new Svc(), 
props);
++
context.registerService(URLStreamHandlerService.class.getName(), new Svc(), 
(Dictionary)props);
+ } else {
+ LOG.log(Level.WARNING, no context 
for {0} in state {1}, new Object[] {bundle.getSymbolicName(), 
bundle.getState()});
+ }
diff --git a/debian/patches/series b/debian/patches/series
index 679a67a..3d6427b 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -21,3 +21,4 @@ netbeans~small-ide.patch
 netbeans~debugger.jpda.ui.patch
 netbeans~xsl.patch
 netbeans~db.patch
+netbeans-platform~osgi-4.3.patch
diff --git a/debian/rules b/debian/rules
index b4a6433..0fe5929 100755
--- a/debian/rules
+++ b/debian/rules
@@ -75,8 +75,8 @@ override_dh_auto_build:
 #TODO  $(call symlink, /usr/share/ant/lib, 
o.apache.tools.ant.module/external/lib)

# Build the Windows launcher
-   cd o.n.bootstrap/launcher/windows  make .build-impl nbexec.exe
-   cd apisupport.harness/windows-launcher-src  make
+   cd o.n.bootstrap/launcher/windows  LDFLAGS= make .build-impl 
nbexec.exe
+   cd apisupport.harness/windows-launcher-src  LDFLAGS= make

# Build the ide. DISPLAY must be unset to avoid build failures.
unset DISPLAY; ant \

-- 
netbeans 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] r15435 - tags

2011-11-23 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-11-23 21:49:43 + (Wed, 23 Nov 2011)
New Revision: 15435

Added:
   tags/flute/
Log:
[svn-inject] Creating flute/ directory.


___
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] r15436 - trunk

2011-11-23 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-11-23 21:50:05 + (Wed, 23 Nov 2011)
New Revision: 15436

Added:
   trunk/flute/
Log:
Creating trunk directory


___
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] r15437 - in trunk/flute: . debian debian/patches debian/source

2011-11-23 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-11-23 21:50:31 + (Wed, 23 Nov 2011)
New Revision: 15437

Added:
   trunk/flute/debian/
   trunk/flute/debian/changelog
   trunk/flute/debian/compat
   trunk/flute/debian/control
   trunk/flute/debian/copyright
   trunk/flute/debian/libflute-java-doc.javadoc
   trunk/flute/debian/libflute-java.jlibs
   trunk/flute/debian/patches/
   trunk/flute/debian/patches/Parser-SPACE.diff
   trunk/flute/debian/patches/series
   trunk/flute/debian/rules
   trunk/flute/debian/source/
   trunk/flute/debian/source/format
   trunk/flute/debian/watch
Log:
[svn-inject] Applying Debian modifications (1:1.1.6-3) to trunk


Property changes on: trunk/flute/debian
___
Added: mergeWithUpstream
   + 1

Added: trunk/flute/debian/changelog
===
--- trunk/flute/debian/changelog(rev 0)
+++ trunk/flute/debian/changelog2011-11-23 21:50:31 UTC (rev 15437)
@@ -0,0 +1,87 @@
+flute (1:1.1.6-3) unstable; urgency=low
+
+  * Update vcs location. (Closes: #649323).
+  * Fix watch file.
+  * Fix package name in suggests.
+  * Define lib.dir correctly (Closes: #648740).
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Mon, 21 Nov 2011 23:15:34 +
+
+flute (1:1.1.6-2) unstable; urgency=low
+
+  * merge libbase 1.1.6-2 changes 
+
+ -- Rene Engelhard r...@debian.org  Tue, 01 Nov 2011 14:48:16 +
+
+flute (1:1.1.6-1) unstable; urgency=low
+
+  * new upstream release
+  * add me to Uploaders
+  * remove -1.3-jfree-* again and build just libflute-java-* 
+
+ -- Rene Engelhard r...@debian.org  Sun, 25 Sep 2011 21:29:27 +
+
+flute-1.3-jfree (20061107-8) unstable; urgency=low
+
+  * Adopt package by Debian Java Maintainers
+pkg-java-maintainers@lists.alioth.debian.org (Closes: #636836).
+  * Switch to source format 3 (quilt)
+  * Use javahelper.
+  * Bump standards version to 3.9.2 (no changes required).
+  * Fix lintian warnings.
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Wed, 24 Aug 2011 20:54:36 +0100
+
+flute-1.3-jfree (20061107-7) unstable; urgency=low
+
+  * Team upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Sat, 06 Aug 2011 10:07:41 +0200
+
+flute-1.3-jfree (20061107-6) unstable; urgency=low
+
+  * (Build-)Depends on default-jdk.
+  * Build Java5 compatible class files.
+  * Build-Depends on debhelper = 7.
+  * Build-Depend on javacc = 5.0.
+  * Converted debian/copyright to UTF-8 and improved
+license reference.
+  * Moved to section 'java'.
+  * Replaced dh_clean -b by dh_prep.
+  * Delete build/ directory in clean target.
+  * Updated Standards-Version to 3.8.3.
+
+ -- Michael Koch konque...@gmx.de  Thu, 24 Sep 2009 20:28:07 +0200
+
+flute-1.3-jfree (20061107-5) unstable; urgency=low
+
+  * export JAVA_HOME=/usr/lib/jvm/java-gcj (closes: #543080) 
+
+ -- Rene Engelhard r...@debian.org  Tue, 25 Aug 2009 15:47:28 +0200
+
+flute-1.3-jfree (20061107-4) unstable; urgency=low
+
+  * build-depend on ant-optional (closes: #453190) 
+
+ -- Rene Engelhard r...@debian.org  Wed, 28 Nov 2007 10:27:00 +0100
+
+flute-1.3-jfree (20061107-3) unstable; urgency=low
+
+  * build-depend on ant (closes: #451418) 
+
+ -- Rene Engelhard r...@debian.org  Fri, 16 Nov 2007 19:42:08 +0100
+
+flute-1.3-jfree (20061107-2) unstable; urgency=low
+
+  * fix parser rebuilding - thanks Paul Cager. Rebuild it.
+  * upload to unstable
+
+ -- Rene Engelhard r...@debian.org  Mon, 05 Nov 2007 00:29:44 +0100
+
+flute-1.3-jfree (20061107-1) experimental; urgency=low
+
+  * Initial release
+
+ -- Rene Engelhard r...@debian.org  Sun, 14 Oct 2007 23:51:01 +0200
+

Added: trunk/flute/debian/compat
===
--- trunk/flute/debian/compat   (rev 0)
+++ trunk/flute/debian/compat   2011-11-23 21:50:31 UTC (rev 15437)
@@ -0,0 +1 @@
+7

Added: trunk/flute/debian/control
===
--- trunk/flute/debian/control  (rev 0)
+++ trunk/flute/debian/control  2011-11-23 21:50:31 UTC (rev 15437)
@@ -0,0 +1,34 @@
+Source: flute
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
+Uploaders: Andrew Ross ubu...@rossfamily.co.uk, Rene Engelhard 
r...@debian.org
+Build-Depends: debhelper (= 7.0.50~), default-jdk, libsac-java, 
+ javacc (= 5.0), ant, ant-optional, javahelper, ant-contrib
+Standards-Version: 3.9.2
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/flute
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/flute/
+
+Package: libflute-java
+Architecture: all
+Depends: ${java:Depends}, ${misc:Depends}
+Recommends: ${java:Recommends}
+Suggests: libflute-java-doc
+Description: Java CSS parser using SAC (JFree version)
+ Flute is a CSS2 parser written in Java that implements SAC.
+ SAC is a standard event-based API for CSS parsers

Bug#646856: netbeans: Correct binary package names

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


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

java4 - java5
apisupport2 - apisupport3
ide13 - ide14



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


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

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


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



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


[pkg-java] r15266 - in trunk/libjcalendar-java/debian: . patches

2011-10-26 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-10-26 17:11:27 + (Wed, 26 Oct 2011)
New Revision: 15266

Modified:
   trunk/libjcalendar-java/debian/changelog
   trunk/libjcalendar-java/debian/control
   trunk/libjcalendar-java/debian/patches/01_build_xml_rm_looks.patch
   trunk/libjcalendar-java/debian/patches/02_build_xml_jar_versioned.patch
   trunk/libjcalendar-java/debian/patches/03_demo_html_applet.patch
Log:
Update packaging.


Modified: trunk/libjcalendar-java/debian/changelog
===
--- trunk/libjcalendar-java/debian/changelog2011-10-25 23:29:32 UTC (rev 
15265)
+++ trunk/libjcalendar-java/debian/changelog2011-10-26 17:11:27 UTC (rev 
15266)
@@ -1,3 +1,13 @@
+libjcalendar-java (1.3.3-3) unstable; urgency=low
+
+  * Update Standards-Version: 3.9.2 (no changes).
+  * Add myself to uploaders.
+  * Remove Eric Lavarde from uploaders.
+  * Update Vcs-Svn locations.
+  * Add descriptions to patches.
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Tue, 25 Oct 2011 22:56:34 +0100
+
 libjcalendar-java (1.3.3-2) unstable; urgency=low
 
   * Switch to default-jdk.

Modified: trunk/libjcalendar-java/debian/control
===
--- trunk/libjcalendar-java/debian/control  2011-10-25 23:29:32 UTC (rev 
15265)
+++ trunk/libjcalendar-java/debian/control  2011-10-26 17:11:27 UTC (rev 
15266)
@@ -1,13 +1,13 @@
 Source: libjcalendar-java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Eric Lavarde d...@zorglub.s.bawue.de, Torsten Werner 
twer...@debian.org
+Uploaders: Torsten Werner twer...@debian.org, Andrew Ross 
ubu...@rossfamily.co.uk
 Build-Depends: debhelper (= 5), cdbs (= 0.4.8), default-jdk, ant
 Section: java
-Standards-Version: 3.8.4
+Standards-Version: 3.9.2
 Homepage: http://www.toedter.com/en/jcalendar/
-Vcs-Svn: https://bollin.googlecode.com/svn/libjcalendar-java/trunk
-Vcs-Browser: http://bollin.googlecode.com/svn/libjcalendar-java/trunk
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjcalendar-java
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/libjcalendar-java
 
 Package: libjcalendar-java
 Architecture: all
@@ -27,7 +27,13 @@
 Section: doc
 Depends: ${misc:Depends}
 Suggests: libjcalendar-java
-Recommends: mozilla | www-browser
-Description: API documentation for libjcalendar-java
- The javadoc for JCalendar, a Java date chooser bean for graphically picking
- a date.
+Description: Java date chooser bean for picking a date (documentation)
+ JCalendar is composed of several other Java beans, a JDayChooser, a
+ JMonthChooser and a JYearChooser. All these beans have a locale property,
+ provide several icons (Color 16x16, Color 32x32, Mono 16x16 and Mono 32x32)
+ and their own locale property editor. So they can easily be used in GUI
+ builders. Also part of the package is a JDateChooser, a bean composed of an
+ IDateEditor (for direct date editing) and a button for opening a JCalendar for
+ selecting the date.
+ .
+ This package contains the javadoc documentation.

Modified: trunk/libjcalendar-java/debian/patches/01_build_xml_rm_looks.patch
===
--- trunk/libjcalendar-java/debian/patches/01_build_xml_rm_looks.patch  
2011-10-25 23:29:32 UTC (rev 15265)
+++ trunk/libjcalendar-java/debian/patches/01_build_xml_rm_looks.patch  
2011-10-26 17:11:27 UTC (rev 15266)
@@ -1,3 +1,9 @@
+Description: Remove relative classpath entries which are available in the
+ default classpath on Debian
+Forwarded: not-needed
+Author: Eric Lavarde d...@zorglub.s.bawue.de
+Last-Update: 2010-04-13
+
 diff -Nur libjcalendar-java/src/build.xml libjcalendar-java.new/src/build.xml
 --- libjcalendar-java/src/build.xml2007-05-26 17:18:06.0 +0200
 +++ libjcalendar-java.new/src/build.xml2007-05-26 17:20:17.0 
+0200

Modified: 
trunk/libjcalendar-java/debian/patches/02_build_xml_jar_versioned.patch
===
--- trunk/libjcalendar-java/debian/patches/02_build_xml_jar_versioned.patch 
2011-10-25 23:29:32 UTC (rev 15265)
+++ trunk/libjcalendar-java/debian/patches/02_build_xml_jar_versioned.patch 
2011-10-26 17:11:27 UTC (rev 15266)
@@ -1,3 +1,8 @@
+Description: Adds the versioned jar-file instead of the symlink to the 
classpath
+Forwarded: not-needed
+Author: Eric Lavarde d...@zorglub.s.bawue.de
+Last-Update: 2010-04-13
+
 diff -Nur libjcalendar-java/src/build.xml libjcalendar-java.new/src/build.xml
 --- libjcalendar-java/src/build.xml2007-05-26 17:21:24.0 +0200
 +++ libjcalendar-java.new/src/build.xml2007-05-26 17:22:04.0 
+0200

Modified: trunk/libjcalendar-java/debian/patches/03_demo_html_applet.patch
===
--- trunk/libjcalendar-java/debian/patches/03_demo_html_applet.patch
2011-10-25

Bug#646514: javahelper: jh_repack fails if folders *.jar exist

2011-10-25 Thread Andrew Ross
On 25/10/11 08:47, Matthew Johnson wrote:
 On Mon Oct 24 18:46, Andrew Ross wrote:
 If a package contains folders whose names match *.jar then jh_repack 
 fails with messages like:

 rm: cannot remove `./branding/core/core.jar': Is a directory

 The find command should probably be changed to:
 find . -name '*.jar' -type f -print0 | xargs -0 rm -f
 I was not expecting anyone to have directories named like that. 

 Fair enough, that seems like a sensible change.

 Matt
No, neither was I - it surprised me when I found it! I've tried the
change locally and it appears to be OK.

Thanks,
Andy



__
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#646514: javahelper: jh_repack fails if folders *.jar exist

2011-10-24 Thread Andrew Ross
Package: javahelper
Version: 0.37
Severity: normal


If a package contains folders whose names match *.jar then jh_repack 
fails with messages like:

rm: cannot remove `./branding/core/core.jar': Is a directory

The find command should probably be changed to:
find . -name '*.jar' -type f -print0 | xargs -0 rm -f

Thanks,
Andy



__
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] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-2-1-g656bf87

2011-10-23 Thread Andrew Ross
The following commit has been merged in the master branch:
commit 656bf870ce96e913f1f7a98b6d71c663355d98eb
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Mon Oct 17 23:01:17 2011 +0100

Update dependencies.

diff --git a/debian/changelog b/debian/changelog
index 1ffd709..1d7f046 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+netbeans (7.0.1+dfsg1-3) unstable; urgency=low
+
+  * Use libosgi-core-java and libosgi-compendium-java for osgi.
+  * Use libflute-java instead of libflute-1.3-jfree-java.
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Sun, 16 Oct 2011 20:53:51 +0100
+
 netbeans (7.0.1+dfsg1-2) unstable; urgency=low
 
   * Handle rename of libcommons-net-java to libcommons-net1-java.
diff --git a/debian/control b/debian/control
index 7ea97d5..a3dd3ea 100644
--- a/debian/control
+++ b/debian/control
@@ -9,12 +9,13 @@ Build-Depends: debhelper (= 7.0.50~), javahelper, ant (= 
1.7.0),
  w3c-dtd-xhtml, javacc,
  libjemmy2-java, javahelp2, libbindex-java,
  libswing-layout-java (= 1.0.3), libjna-java (= 3.2.7-2~),
- libfelix-framework-java, libfelix-main-java, libequinox-osgi-java,
- antlr3 (= 3.2), libstringtemplate-java, junit4 (= 4.6), libhamcrest-java,
+ libfelix-framework-java, libfelix-main-java, libosgi-core-java,
+ libosgi-compendium-java, antlr3 (= 3.2), libstringtemplate-java,
+ junit4 (= 4.6), libhamcrest-java,
  libcommons-codec-java, libbytelist-java, libcommons-logging-java,
- libcommons-net1-java, libflute-1.3-jfree-java, libfreemarker-java,
+ libcommons-net1-java, libflute-java, libfreemarker-java,
  libini4j-java (=0.5), liboro-java, libjsch-java (= 0.1.42),
- libjvyamlb-java (= 0.2.5-2~), libjzlib-java (= 1.0.7), 
+ libjvyamlb-java (= 0.2.5-2~), libjzlib-java (= 1.0.7),
  liblucene2-java (= 2.4.1), libxml-commons-resolver1.1-java (= 1.2-3),
  libsac-java, libservlet2.5-java, libsvnclientadapter-java, libsvn-java,
  libsvnkit-java, libswingx1-java, libtrilead-ssh2-java,
@@ -31,9 +32,9 @@ Package: libnb-platform13-java
 Architecture: all
 Depends: ${misc:Depends}, ${java:Depends}, javahelp2, 
  libswing-layout-java (= 1.0.3), libjna-java(= 3.2.7-2~), junit4 (= 4.6),
- libfelix-framework-java, libfelix-main-java, libequinox-osgi-java,
- libnb-org-openide-util-java, libnb-org-openide-util-lookup-java, 
- libnb-org-openide-modules-java
+ libfelix-framework-java, libfelix-main-java, libosgi-core-java,
+ libosgi-compendium-java, libnb-org-openide-util-java,
+ libnb-org-openide-util-lookup-java, libnb-org-openide-modules-java
 Suggests: libnb-platform13-java-doc
 Provides: netbeans-platform
 Replaces: netbeans-platform
@@ -123,7 +124,7 @@ Package: libnb-ide13-java
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}, libnb-platform13-java (= 7.0),
  antlr3 (= 3.2), libcommons-codec-java, libbytelist-java,
- libcommons-logging-java, libcommons-net1-java, libflute-1.3-jfree-java,
+ libcommons-logging-java, libcommons-net1-java, libflute-java,
  libfreemarker-java, libini4j-java (= 0.5), liboro-java,
  libjsch-java (= 0.1.42), libjvyamlb-java (= 0.2.5-2~),
  libjzlib-java (= 1.0.7), liblucene2-java (= 2.4.1),
diff --git a/debian/linked-jars b/debian/linked-jars
index ab02977..c75e721 100644
--- a/debian/linked-jars
+++ b/debian/linked-jars
@@ -8,7 +8,8 @@ $JAVADIR/jna.jar libs.jna/external platform/modules/ext 
jna-3.2.7.jar
 $JAVADIR/jna-platform.jar core.nativeaccess/external platform/modules/ext 
platform-3.2.7.jar
 $JAVADIR/org.apache.felix.framework.jar libs.felix/external 
platform/modules/ext felix-2.0.3.jar
 $JAVADIR/org.apache.felix.main.jar libs.felix/external platform/modules/ext 
felix-main-2.0.2.jar
-$JAVADIR/org.eclipse.osgi.services.jar libs.osgi/external platform/modules/ext 
osgi.cmpn-4.2.jar
+$JAVADIR/osgi.compendium.jar libs.osgi/external platform/modules/ext 
osgi.cmpn-4.2.jar
+$JAVADIR/osgi.core.jar libs.osgi/external platform/modules/ext 
osgi.core-4.2.jar
 $JAVADIR/antlr3.jar libs.antlr3.devel/external platform/modules/ext 
antlr-3.1.3.jar
 $JAVADIR/stringtemplate.jar libs.antlr3.devel/external platform/modules/ext 
stringtemplate-3.2.jar
 $JAVADIR/junit4.jar libs.junit4/external platform/modules/ext junit-4.8.2.jar
@@ -19,7 +20,7 @@ $JAVADIR/commons-codec.jar libs.commons_codec/external 
ide/modules/ext apache-co
 $JAVADIR/bytelist.jar libs.bytelist/external ide/modules/ext bytelist-0.1.jar
 $JAVADIR/commons-logging.jar libs.commons_logging/external ide/modules/ext 
commons-logging-1.1.jar
 $JAVADIR/commons-net.jar libs.commons_net/external ide/modules/ext 
commons-net-1.4.1.jar
-$JAVADIR/flute-1.3-jfree.jar css.visual/external ide/modules/ext flute-1.3.jar
+$JAVADIR/flute.jar css.visual/external ide/modules/ext flute-1.3.jar
 $JAVADIR/freemarker.jar libs.freemarker/external ide/modules/ext 
freemarker-2.3.8.jar
 $JAVADIR/ini4j.jar libs.ini4j/external ide/modules/ext ini4j-0.5.1.jar
 $JAVADIR/oro.jar libs.jakarta_oro/external ide/modules/ext 
jakarta-oro-2.0.8.jar
diff --git a/debian/rules b/debian/rules
index 02cfc8d..b4a6433 100755

[SCM] netbeans packaging annotated tag, debian/7.0.1+dfsg1-3, created. debian/7.0.1+dfsg1-3

2011-10-23 Thread Andrew Ross
The annotated tag, debian/7.0.1+dfsg1-3 has been created
at  2d5c06d428c06ff50c950b9a816b319c156bdb04 (tag)
   tagging  656bf870ce96e913f1f7a98b6d71c663355d98eb (commit)
  replaces  debian/7.0.1+dfsg1-2
 tagged by  Damien Raude-Morvan
on  Sun Oct 23 19:44:28 2011 +0200

- Shortlog 
Debian release 7.0.1+dfsg1-3

Andrew Ross (1):
  Update dependencies.

---

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


Bug#643598: netbeans: Use new flute package to provide flute library

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


A new package flute is now in unstable and could be used to 
provide the flute jar rather than flute-1.3-jfree.



__
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] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-1-3-gbeacec8

2011-09-21 Thread Andrew Ross
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 netbeans packaging.

The branch, master has been updated
   via  beacec81eac51f5c82b80d0a32ac2c5bb0f0c655 (commit)
  from  5b8b9779169e0ad69e447e2568f8e428368934ce (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 beacec81eac51f5c82b80d0a32ac2c5bb0f0c655
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Wed Sep 21 23:23:41 2011 +0100

Update latest changes.

---

Summary of changes:
 debian/changelog   |   11 ++-
 debian/control |7 +++
 debian/libnb-java4-java.lintian-overrides  |2 --
 debian/libnb-platform-devel-java.lintian-overrides |3 ---
 debian/libnb-platform13-java.lintian-overrides |4 
 5 files changed, 5 insertions(+), 22 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 79535e6..1ffd709 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,16 +1,9 @@
 netbeans (7.0.1+dfsg1-2) unstable; urgency=low
 
   * Handle rename of libcommons-net-java to libcommons-net1-java.
-  * Platform should depend on a JRE.
-  * Java IDE should depend on a JDK.
+  * Netbeans should depend on a JDK.
   (Closes: #499870)
-  * Provide netbeans-ide and netbeans-platform and close fixed bugs
-  in those packages.
-  (Closes: #493152)
-  (Closes: #474465)
-  (Closes: #483757)
-  (Closes: #518941)
-  (Closes: #478762)
+  * Provide netbeans-ide and netbeans-platform.
 
  -- Andrew Ross ubu...@rossfamily.co.uk  Sun, 11 Sep 2011 22:45:45 +0100
 
diff --git a/debian/control b/debian/control
index 083ea4c..7ea97d5 100644
--- a/debian/control
+++ b/debian/control
@@ -30,7 +30,6 @@ Vcs-Git: git://git.debian.org/git/pkg-java/netbeans.git
 Package: libnb-platform13-java
 Architecture: all
 Depends: ${misc:Depends}, ${java:Depends}, javahelp2, 
- default-jre | java6-runtime,
  libswing-layout-java (= 1.0.3), libjna-java(= 3.2.7-2~), junit4 (= 4.6),
  libfelix-framework-java, libfelix-main-java, libequinox-osgi-java,
  libnb-org-openide-util-java, libnb-org-openide-util-lookup-java, 
@@ -50,8 +49,7 @@ Description: NetBeans Platform for building rich desktop 
applications in Java
 Package: libnb-platform-devel-java
 Architecture: all
 Depends: ${misc:Depends}, ${java:Depends}, libnb-platform13-java,
- default-jdk | java6-sdk, ant,
- libjemmy2-java, javahelp2, libbindex-java,
+ ant, libjemmy2-java, javahelp2, libbindex-java,
 Replaces: libnb-platform8-devel-java, libnb-platform7-devel-java
 Conflicts: libnb-platform8-devel-java, libnb-platform7-devel-java
 Description: Build harness for NetBeans Platform
@@ -108,6 +106,7 @@ Description: Utility classes for modules from the NetBeans 
Platform
 Package: netbeans
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}, libnb-platform13-java (= 7.0),
+ openjdk-6-jdk | java6-sdk | java7-sdk,
  libnb-ide13-java (= ${binary:Version}), 
  libnb-java4-java (= ${binary:Version}),
  libnb-apisupport2-java (= ${binary:Version})
@@ -140,7 +139,7 @@ Description: Common Integrated Development Environment 
Libraries for NetBeans
 
 Package: libnb-java4-java
 Architecture: all
-Depends: ${java:Depends}, ${misc:Depends}, default-jdk | java6-sdk,
+Depends: ${java:Depends}, ${misc:Depends},
  libnb-platform13-java (= 7.0), libnb-ide13-java (= ${binary:Version}),
  libbetter-appframework-java,  libbeansbinding-java, libcglib-java,
  libnb-javaparser-java (= 7.0.1~), ant (= 1.7.0), ant-optional (= 1.7.0)
diff --git a/debian/libnb-java4-java.lintian-overrides 
b/debian/libnb-java4-java.lintian-overrides
index ebefaea..6cb405e 100644
--- a/debian/libnb-java4-java.lintian-overrides
+++ b/debian/libnb-java4-java.lintian-overrides
@@ -9,5 +9,3 @@ libnb-java4-java: javalib-but-no-public-jars
 # changes.
 libnb-java4-java: package-contains-empty-directory
 
-# We do actually need a jre (actually we need a jdk).
-libnb-java4-java: needless-dependency-on-jre
diff --git a/debian/libnb-platform-devel-java.lintian-overrides 
b/debian/libnb-platform-devel-java.lintian-overrides
index 042dc5e..c371f7c 100644
--- a/debian/libnb-platform-devel-java.lintian-overrides
+++ b/debian/libnb-platform-devel-java.lintian-overrides
@@ -6,6 +6,3 @@ libnb-platform-devel-java: codeless-jar
 # specific to the NetBeans platform and need to live in a cluster
 libnb-platform-devel-java: javalib-but-no-public-jars
 
-# It's not needless, as we need a jre (and in fact jdk) to build a Netbeans 
-# Platform based application.
-libnb-platform-devel-java: needless-dependency-on-jre
diff --git a/debian/libnb-platform13-java.lintian-overrides 
b/debian

[SCM] netbeans packaging branch, master, updated. debian/7.0.1+dfsg1-1-1-g04a113f

2011-09-11 Thread Andrew Ross
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 netbeans packaging.

The branch, master has been updated
   via  04a113f4a4133113503c90af35aec4dcf01a6faa (commit)
  from  0a53bbbac5fc7db13822e2edecf3ceff2f22b6d1 (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 04a113f4a4133113503c90af35aec4dcf01a6faa
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sun Sep 11 22:44:55 2011 +0100

Handle rename of libcommons-net-java to libcommons-net1-java

---

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

diff --git a/debian/changelog b/debian/changelog
index 434e9e4..0cd163e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+netbeans (7.0.1+dfsg1-2) unstable; urgency=low
+
+  * Handle rename of libcommons-net-java to libcommons-net1-java.
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Sun, 11 Sep 2011 22:45:45 +0100
+
 netbeans (7.0.1+dfsg1-1) unstable; urgency=low
 
   * New upstream release
diff --git a/debian/control b/debian/control
index 2316a5c..f0f0435 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends: debhelper (= 7.0.50~), javahelper, ant (= 
1.7.0),
  libfelix-framework-java, libfelix-main-java, libequinox-osgi-java,
  antlr3 (= 3.2), libstringtemplate-java, junit4 (= 4.6), libhamcrest-java,
  libcommons-codec-java, libbytelist-java, libcommons-logging-java,
- libcommons-net-java, libflute-1.3-jfree-java, libfreemarker-java,
+ libcommons-net1-java, libflute-1.3-jfree-java, libfreemarker-java,
  libini4j-java (=0.5), liboro-java, libjsch-java (= 0.1.42),
  libjvyamlb-java (= 0.2.5-2~), libjzlib-java (= 1.0.7), 
  liblucene2-java (= 2.4.1), libxml-commons-resolver1.1-java (= 1.2-3),
@@ -118,7 +118,7 @@ Package: libnb-ide13-java
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}, libnb-platform13-java (= 7.0),
  antlr3 (= 3.2), libcommons-codec-java, libbytelist-java,
- libcommons-logging-java, libcommons-net-java, libflute-1.3-jfree-java,
+ libcommons-logging-java, libcommons-net1-java, libflute-1.3-jfree-java,
  libfreemarker-java, libini4j-java (= 0.5), liboro-java,
  libjsch-java (= 0.1.42), libjvyamlb-java (= 0.2.5-2~),
  libjzlib-java (= 1.0.7), liblucene2-java (= 2.4.1),


hooks/post-receive
-- 
netbeans 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] netbeans packaging branch, master, updated. upstream/7.0.1+dfsg1-21-g0a53bbb

2011-09-10 Thread Andrew Ross
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 netbeans packaging.

The branch, master has been updated
   via  0a53bbbac5fc7db13822e2edecf3ceff2f22b6d1 (commit)
  from  2205f8858eb60ca622817dcc98d165d6658070a2 (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 0a53bbbac5fc7db13822e2edecf3ceff2f22b6d1
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sat Sep 10 12:24:37 2011 +0100

Use swingx1 and build the db modules.

---

Summary of changes:
 debian/control   |   12 +++--
 debian/linked-jars   |4 +-
 debian/patches/netbeans~cluster-properties.patch |   60 ++---
 debian/patches/netbeans~db.patch |   42 +++
 debian/patches/series|1 +
 5 files changed, 70 insertions(+), 49 deletions(-)

diff --git a/debian/control b/debian/control
index 24cbca2..2316a5c 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Uploaders: Yulia Novozhilova yulia.novozhil...@sun.com,
  Andres Mejia mcita...@gmail.com, Andrew Ross ubu...@rossfamily.co.uk
 Build-Depends: debhelper (= 7.0.50~), javahelper, ant (= 1.7.0),
  ant-optional (= 1.7.0), default-jdk, mingw32, maven-repo-helper,
- w3c-dtd-xhtml,
+ w3c-dtd-xhtml, javacc,
  libjemmy2-java, javahelp2, libbindex-java,
  libswing-layout-java (= 1.0.3), libjna-java (= 3.2.7-2~),
  libfelix-framework-java, libfelix-main-java, libequinox-osgi-java,
@@ -17,8 +17,9 @@ Build-Depends: debhelper (= 7.0.50~), javahelper, ant (= 
1.7.0),
  libjvyamlb-java (= 0.2.5-2~), libjzlib-java (= 1.0.7), 
  liblucene2-java (= 2.4.1), libxml-commons-resolver1.1-java (= 1.2-3),
  libsac-java, libservlet2.5-java, libsvnclientadapter-java, libsvn-java,
- libsvnkit-java, libswingx-java (=0.9.5), libtrilead-ssh2-java,
- libsimple-validation-java, libxerces2-java,
+ libsvnkit-java, libswingx1-java, libtrilead-ssh2-java,
+ libsimple-validation-java, libxerces2-java, libpg-java,
+ libmysql-java,
  libbetter-appframework-java,  libbeansbinding-java, libcglib-java,
  libnb-javaparser-java (= 7.0.1~)
 Standards-Version: 3.9.2
@@ -123,8 +124,9 @@ Depends: ${java:Depends}, ${misc:Depends}, 
libnb-platform13-java (= 7.0),
  libjzlib-java (= 1.0.7), liblucene2-java (= 2.4.1),
  libxml-commons-resolver1.1-java (= 1.2-3), libsac-java,
  libservlet2.5-java, libsvnclientadapter-java, libsvn-java,
- libsvnkit-java, libswingx-java (=0.9.5), libtrilead-ssh2-java,
- libsimple-validation-java, libxerces2-java
+ libsvnkit-java, libswingx1-java, libtrilead-ssh2-java,
+ libsimple-validation-java, libxerces2-java, libpg-java,
+ libmysql-java
 Description: Common Integrated Development Environment Libraries for NetBeans
  The NetBeans Platform is a set of modules, each providing their own 
  APIs and working together or in a standalone mode. This package contains 
diff --git a/debian/linked-jars b/debian/linked-jars
index e9ed3b4..ab02977 100644
--- a/debian/linked-jars
+++ b/debian/linked-jars
@@ -34,10 +34,12 @@ $JAVADIR/svnClientAdapter.jar 
libs.svnClientAdapter/external ide/modules/ext svn
 $JAVADIR/svn-javahl.jar libs.svnClientAdapter.javahl/external ide/modules/ext 
svnjavahl-1.6.0.jar
 $JAVADIR/svnkit.jar libs.svnClientAdapter.svnkit/external ide/modules/ext 
svnkit-1.3.4.jar
 $JAVADIR/svnkit-javahl.jar libs.svnClientAdapter.svnkit/external 
ide/modules/ext svnkit-javahl.jar
-$JAVADIR/swingx.jar libs.swingx/external ide/modules/ext swingx-0.9.5.jar
+$JAVADIR/swingx1.jar libs.swingx/external ide/modules/ext swingx-0.9.5.jar
 $JAVADIR/trilead-ssh2.jar libs.svnClientAdapter.svnkit/external 
ide/modules/ext trilead.jar
 $JAVADIR/simple-validation.jar swing.validation/external ide/modules/ext 
ValidationAPI.jar
 $JAVADIR/xercesImpl.jar libs.xerces/external ide/modules/ext xerces-2.8.0.jar
+$JAVADIR/postgresql-jdbc3.jar db.drivers/external ide/modules/ext 
postgresql-8.3-603.jdbc3.jar
+$JAVADIR/mysql-connector-java.jar db.drivers/external ide/modules/ext 
mysql-connector-java-5.1.13-bin.jar
 
 $JAVADIR/bsaf.jar swingapp/external java/modules/ext appframework-1.0.3.jar
 $JAVADIR/beansbinding.jar o.jdesktop.beansbinding/external java/modules/ext 
beansbinding-1.2.1.jar
diff --git a/debian/patches/netbeans~cluster-properties.patch 
b/debian/patches/netbeans~cluster-properties.patch
index 828574c..8908580 100644
--- a/debian/patches/netbeans~cluster-properties.patch
+++ b/debian/patches/netbeans~cluster-properties.patch
@@ -2,8 +2,8 @@ Modify the list of modules included in the Debian package.
 
 Index: netbeans/nbbuild/cluster.properties

[SCM] netbeans packaging branch, master, updated. upstream/7.0.1+dfsg1-20-g2205f88

2011-09-07 Thread Andrew Ross
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 netbeans packaging.

The branch, master has been updated
   via  2205f8858eb60ca622817dcc98d165d6658070a2 (commit)
  from  b3abc5ba2d0ce48e62b023b40432c5976bd3d873 (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 2205f8858eb60ca622817dcc98d165d6658070a2
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Wed Sep 7 19:03:32 2011 +0100

Don't insist on the windows launcher

---

Summary of changes:
 debian/patches/netbeans-platform~suitebuild.patch |   16 
 debian/patches/series |1 +
 2 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/debian/patches/netbeans-platform~suitebuild.patch 
b/debian/patches/netbeans-platform~suitebuild.patch
new file mode 100644
index 000..8bc7853
--- /dev/null
+++ b/debian/patches/netbeans-platform~suitebuild.patch
@@ -0,0 +1,16 @@
+Don't fail if we can't find the Windows exe launcher. This lets us build for 
older netbeans platforms where the
+package didn't contain Windows launchers.
+
+Index: netbeans/apisupport.harness/release/suite.xml
+===
+--- netbeans.orig/apisupport.harness/release/suite.xml 2011-09-07 
19:01:15.75876 +0100
 netbeans/apisupport.harness/release/suite.xml  2011-09-07 
19:01:43.127877804 +0100
+@@ -322,7 +322,7 @@
+ condition property=app.exe.prefix value= else=pre7_
+ isset property=nbexec.dll.found/
+ /condition
+-copy file=${harness.dir}/launchers/${app.exe.prefix}app.exe 
tofile=${build.launcher.dir}/bin/${app.name}.exe overwrite=true/
++copy file=${harness.dir}/launchers/${app.exe.prefix}app.exe 
tofile=${build.launcher.dir}/bin/${app.name}.exe failonerror=false 
overwrite=true/
+ copy file=${harness.dir}/launchers/${app.exe.prefix}app_w.exe 
tofile=${build.launcher.dir}/bin/${app.name}_w.exe failonerror=false 
overwrite=true/
+ 
+ copy file=${harness.dir}/launchers/app.sh 
tofile=${build.launcher.dir}/bin/${app.name}/
diff --git a/debian/patches/series b/debian/patches/series
index 91b3fa0..99ea0d8 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -5,6 +5,7 @@ netbeans-platform~windowslauncher.patch
 netbeans-platform~include-extras.patch
 netbeans-platform~nbi.patch
 netbeans-platform~properties.patch
+netbeans-platform~suitebuild.patch
 netbeans~nocopy.patch
 netbeans~no-rhino.patch
 netbeans~svnclient.patch


hooks/post-receive
-- 
netbeans 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] r14653 - trunk/libswingx1-java/debian

2011-09-01 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-09-01 20:51:15 + (Thu, 01 Sep 2011)
New Revision: 14653

Modified:
   trunk/libswingx1-java/debian/watch
Log:
Update watch file.


Modified: trunk/libswingx1-java/debian/watch
===
--- trunk/libswingx1-java/debian/watch  2011-09-01 14:52:36 UTC (rev 14652)
+++ trunk/libswingx1-java/debian/watch  2011-09-01 20:51:15 UTC (rev 14653)
@@ -1,3 +1,4 @@
 version=3
-http://swinglabs.org/downloads.jsp .*/swingx-([\d.]+)-src.zip \
+opts=downloadurlmangle=s/(1.0[\d.]*)\//$1\/swingx-$1-src.zip/,filenamemangle=s/(1.0[\d.]*)\//swingx-$1-src.zip/
 \
+http://java.net/downloads/swingx/releases/ (1.0[\d.]*)/ \
   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


[SCM] netbeans packaging branch, master, updated. upstream/7.0.1+dfsg1-18-ga71c2be

2011-08-29 Thread Andrew Ross
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 netbeans packaging.

The branch, master has been updated
   via  a71c2be9372c057e04c14bd13c112dc3272a1496 (commit)
   via  b546ae9cf0b6b750b3f4d3a48ae3a9063941d74d (commit)
   via  835255581ef3d52e81678bb3d4260f30647db2db (commit)
  from  bffc68b2f1f25a86272aa007687c10fc7a24168b (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 a71c2be9372c057e04c14bd13c112dc3272a1496
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Mon Aug 29 14:51:33 2011 +0100

Rename XSL patch.

commit b546ae9cf0b6b750b3f4d3a48ae3a9063941d74d
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Mon Aug 29 14:47:15 2011 +0100

Avoid using the httpserver from the xsl module.

commit 835255581ef3d52e81678bb3d4260f30647db2db
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Sat Aug 27 22:24:24 2011 +0100

Re-added some modules to the build.

---

Summary of changes:
 debian/patches/netbeans~cluster-properties.patch |   63 ++-
 debian/patches/netbeans~small-ide.patch  |   93 --
 debian/patches/netbeans~xsl.patch|   24 ++
 debian/patches/series|1 +
 4 files changed, 63 insertions(+), 118 deletions(-)

diff --git a/debian/patches/netbeans~cluster-properties.patch 
b/debian/patches/netbeans~cluster-properties.patch
index fa69e9e..828574c 100644
--- a/debian/patches/netbeans~cluster-properties.patch
+++ b/debian/patches/netbeans~cluster-properties.patch
@@ -1,9 +1,9 @@
 Modify the list of modules included in the Debian package.
 
-Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
+Index: netbeans/nbbuild/cluster.properties
 ===
 netbeans-7.0.1+dfsg1.orig/nbbuild/cluster.properties   2011-08-02 
23:37:32.884164057 +0100
-+++ netbeans-7.0.1+dfsg1/nbbuild/cluster.properties2011-08-02 
23:49:51.693331403 +0100
+--- netbeans.orig/nbbuild/cluster.properties   2011-08-27 23:01:51.690452903 
+0100
 netbeans/nbbuild/cluster.properties2011-08-27 23:06:54.480457554 
+0100
 @@ -95,9 +95,7 @@
  clusters.config.java.list=\
  ${clusters.config.platform.list},\
@@ -14,7 +14,7 @@ Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
  nb.cluster.nb
  
  clusters.config.enterprise.list=\
-@@ -218,29 +216,17 @@
+@@ -218,23 +216,13 @@
  api.debugger,\
  api.java.classpath,\
  api.xml,\
@@ -38,13 +38,7 @@ Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
  dbapi,\
  defaults,\
  derby,\
- diff,\
--dlight.nativeexecution,\
--dlight.terminal,\
- editor,\
- editor.actions,\
- editor.bookmarks,\
-@@ -266,7 +252,6 @@
+@@ -266,7 +254,6 @@
  editor.util,\
  extbrowser,\
  extexecution,\
@@ -52,7 +46,7 @@ Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
  glassfish.common,\
  gototest,\
  gsf.codecoverage,\
-@@ -275,18 +260,11 @@
+@@ -275,18 +262,11 @@
  html.editor,\
  html.editor.lib,\
  html.lexer,\
@@ -71,7 +65,7 @@ Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
  jellytools.ide,\
  jumpto,\
  languages,\
-@@ -298,8 +276,6 @@
+@@ -298,8 +278,6 @@
  lib.cvsclient,\
  lib.terminalemulator,\
  libs.antlr3.runtime,\
@@ -80,7 +74,7 @@ Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
  libs.bytelist,\
  libs.commons_codec,\
  libs.commons_logging,\
-@@ -307,12 +283,10 @@
+@@ -307,12 +285,10 @@
  libs.freemarker,\
  libs.ini4j,\
  libs.jakarta_oro,\
@@ -93,7 +87,7 @@ Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
  libs.svnClientAdapter,\
  libs.svnClientAdapter.javahl,\
  libs.svnClientAdapter.svnkit,\
-@@ -321,7 +295,6 @@
+@@ -321,7 +297,6 @@
  localhistory,\
  mercurial,\
  o.apache.xml.resolver,\
@@ -101,7 +95,7 @@ Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
  o.n.swing.dirchooser,\
  o.openidex.util,\
  options.editor,\
-@@ -344,7 +317,6 @@
+@@ -344,7 +319,6 @@
  spellchecker.apimodule,\
  spellchecker.bindings.htmlxml,\
  spellchecker.bindings.properties,\
@@ -109,7 +103,7 @@ Index: netbeans-7.0.1+dfsg1/nbbuild/cluster.properties
  spellchecker.kit,\
  spi.debugger.ui,\
  spi.editor.hints,\
-@@ -373,7 +345,6 @@
+@@ -373,7 +347,6 @@
  xml.axi,\
  xml.catalog,\
  xml.core,\
@@ -117,17

[SCM] netbeans packaging branch, master, updated. upstream/7.0.1+dfsg1-19-gb3abc5b

2011-08-29 Thread Andrew Ross
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 netbeans packaging.

The branch, master has been updated
   via  b3abc5ba2d0ce48e62b023b40432c5976bd3d873 (commit)
  from  a71c2be9372c057e04c14bd13c112dc3272a1496 (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 b3abc5ba2d0ce48e62b023b40432c5976bd3d873
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Mon Aug 29 20:45:24 2011 +0100

Add description to patch.

---

Summary of changes:
 debian/patches/netbeans~xsl.patch |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/debian/patches/netbeans~xsl.patch 
b/debian/patches/netbeans~xsl.patch
index bf494a3..4a11952 100644
--- a/debian/patches/netbeans~xsl.patch
+++ b/debian/patches/netbeans~xsl.patch
@@ -1,3 +1,5 @@
+Don't require an httpserver for the XSL module.
+
 Index: netbeans/xsl/manifest.mf
 ===
 --- netbeans.orig/xsl/manifest.mf  2011-08-29 13:15:37.285484472 +0100


hooks/post-receive
-- 
netbeans 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] r14513 - tags

2011-08-28 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-28 10:33:20 + (Sun, 28 Aug 2011)
New Revision: 14513

Added:
   tags/libswingx1-java/
Log:
[svn-inject] Creating libswingx1-java/ directory.


___
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] r14514 - trunk

2011-08-28 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-28 10:34:07 + (Sun, 28 Aug 2011)
New Revision: 14514

Added:
   trunk/libswingx1-java/
Log:
Creating trunk directory


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

2011-08-28 Thread Andrew Ross
 (no changes needed).
+  * Switch to source format 3.0 (quilt).
+  * Don't install maven repo to avoid conflicts with libswingx-java.
+  * Use javahelper to install jars and javadoc.
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Sun, 28 Aug 2011 09:15:06 +0100
+
+libswingx-java (1:1.0-1~orig) unstable; urgency=low
+
+  * New upstream release.
+  * New libswingx-java-doc package:
+- contains API javadoc documentation
+  * Bump Standards-Version to 3.8.3
+- Change section to java
+- Rename debian/README.Debian-source to debian/README.source
+- Describe quilt patch system in debian/README.source
+  * Bump debhelper version to = 7
+  * Remove unused Depends on ${shlibs:Depends}
+  * Default JRE:
+- Build-Depends on default-jdk
+- Use /usr/lib/jvm/default-java as JAVA_HOME
+  * Add myself to Uploaders
+  * Use DEP5 format for debian/copyright
+  * Maven POMs:
+- Add a Build-Depends-Indep dependency on maven-repo-helper
+- Use mh_installpoms and mh_installjar to install the POM and the jar to 
the
+  Maven repository
+- Remove unneeded dependencies in pom.diff patch
+  * Maven ant helper (build system):
+- Add a Build-Depends dependency on maven-ant-helper
+- Update debian/build.xml to use 
/usr/share/maven-ant-helper/maven-build.xml
+- Build classpath is now defined in debian/build.properties
+
+ -- Damien Raude-Morvan draz...@debian.org  Mon, 02 Nov 2009 00:17:00 +0100
+
+libswingx-java (1:0.9.5-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Torsten Werner twer...@debian.org  Tue, 17 Feb 2009 21:22:38 +0100
+
+libswingx-java (1:0.9.4-1) experimental; urgency=low
+
+  * New upstream release
+  * Move package to main because batik is in main now.
+  * Build with source=target=1.5 and change Depends accordingly.
+
+ -- Torsten Werner twer...@debian.org  Sun, 09 Nov 2008 19:51:21 +0100
+
+libswingx-java (1:0.9.3-2) unstable; urgency=low
+
+  * Switch to OpenJDK for building the package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 11 Aug 2008 21:03:43 +0200
+
+libswingx-java (1:0.9.3-1) unstable; urgency=low
+
+  * New upstream release
+  * Bump Standards-Version to 3.8.0
+
+ -- Varun Hiremath va...@debian.org  Tue, 08 Jul 2008 19:32:43 +0530
+
+libswingx-java (1:0.9.2-1) unstable; urgency=low
+
+  * new upstream release
+
+ -- Torsten Werner twer...@debian.org  Sat, 08 Mar 2008 16:18:24 +0100
+
+libswingx-java (1:0.9.1-1) unstable; urgency=low
+
+  [ Torsten Werner ]
+  * New upstream release
+  * Change Standards-Version: 3.7.3.
+
+  [ Varun Hiremath ]
+  * debian/rules: install versioned jar and create symlink
+
+ -- Varun Hiremath va...@debian.org  Mon, 17 Dec 2007 03:12:34 +0530
+
+libswingx-java (20070722-2) unstable; urgency=low
+
+  * Include the *.properties files and images in the jars.
+  * debian/control: Add XS-Vcs-{Svn,Browser} headers.
+  * Add debian/README.Debian-source file.
+
+ -- Varun Hiremath varunhirem...@gmail.com  Wed, 08 Aug 2007 00:20:45 +0530
+
+libswingx-java (20070722-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/control: Add myself to Uploaders
+  * Update patches/swingworker.diff patch file.
+
+ -- Varun Hiremath varunhirem...@gmail.com  Sat, 04 Aug 2007 00:54:49 +0530
+
+libswingx-java (20070513-1) unstable; urgency=low
+
+  * Initial release (Closes: #420344)
+
+ -- Torsten Werner twer...@debian.org  Sat, 21 Apr 2007 14:39:02 +0200

Added: trunk/libswingx1-java/debian/compat
===
--- trunk/libswingx1-java/debian/compat (rev 0)
+++ trunk/libswingx1-java/debian/compat 2011-08-28 10:34:23 UTC (rev 14515)
@@ -0,0 +1 @@
+7

Added: trunk/libswingx1-java/debian/control
===
--- trunk/libswingx1-java/debian/control(rev 0)
+++ trunk/libswingx1-java/debian/control2011-08-28 10:34:23 UTC (rev 
14515)
@@ -0,0 +1,56 @@
+Source: libswingx1-java
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
+Uploaders: Andrew Ross ubu...@rossfamily.co.uk
+Build-Depends: cdbs, debhelper (= 7), default-jdk, ant, maven-ant-helper, 
javahelper
+Build-Depends-Indep: libbatik-java, maven-repo-helper
+Standards-Version: 3.9.2
+Homepage: https://swingx.dev.java.net/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libswingx1-java/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libswingx1-java/
+
+Package: libswingx1-java
+Architecture: all
+Depends: ${misc:Depends}
+Description: extensions to the Swing GUI toolkit, version 1
+ This package contains extensions to the Swing GUI toolkit, including new and
+ enhanced components that provide functionality commonly required by rich
+ client applications. Highlights include:
+  - Sorting, filtering, highlighting for tables, trees, and lists
+  - Find/search
+  - Auto-completion
+  - Login/authentication framework
+  - TreeTable component

[SCM] netbeans packaging branch, master, updated. upstream/7.0.1+dfsg1-15-gbffc68b

2011-08-24 Thread Andrew Ross
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 netbeans packaging.

The branch, master has been updated
   via  bffc68b2f1f25a86272aa007687c10fc7a24168b (commit)
  from  47d45cc3a341c8f9edb1004513d8db314d39f7d2 (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 bffc68b2f1f25a86272aa007687c10fc7a24168b
Author: Andrew Ross ubu...@rossfamily.co.uk
Date:   Wed Aug 24 20:49:23 2011 +0100

Provide libopenide-util-java.

---

Summary of changes:
 debian/control |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/debian/control b/debian/control
index 701034d..24cbca2 100644
--- a/debian/control
+++ b/debian/control
@@ -73,6 +73,7 @@ Description: NetBeans Platform javadoc
 Package: libnb-org-openide-util-java
 Architecture: all
 Depends: ${misc:Depends}, ${java:Depends}, libnb-org-openide-util-lookup-java
+Provides: libopenide-util-java
 Replaces: libopenide-util-java
 Conflicts: libopenide-util-java
 Description: Utility classes from the NetBeans Platform


hooks/post-receive
-- 
netbeans 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] r14448 - tags

2011-08-24 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-24 19:52:41 + (Wed, 24 Aug 2011)
New Revision: 14448

Added:
   tags/flute-1.3-jfree/
Log:
[svn-inject] Creating flute-1.3-jfree/ directory.


___
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] r14449 - trunk

2011-08-24 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-24 19:53:23 + (Wed, 24 Aug 2011)
New Revision: 14449

Added:
   trunk/flute-1.3-jfree/
Log:
Creating trunk directory


___
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] r14450 - in trunk/flute-1.3-jfree: . debian debian/patches

2011-08-24 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-24 19:53:36 + (Wed, 24 Aug 2011)
New Revision: 14450

Added:
   trunk/flute-1.3-jfree/debian/
   trunk/flute-1.3-jfree/debian/README.source
   trunk/flute-1.3-jfree/debian/changelog
   trunk/flute-1.3-jfree/debian/compat
   trunk/flute-1.3-jfree/debian/control
   trunk/flute-1.3-jfree/debian/copyright
   trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.docs
   trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.install
   trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.links
   trunk/flute-1.3-jfree/debian/patches/
   trunk/flute-1.3-jfree/debian/patches/00list
   trunk/flute-1.3-jfree/debian/patches/01_libdir.dpatch
   trunk/flute-1.3-jfree/debian/patches/02_javacc_dir.dpatch
   trunk/flute-1.3-jfree/debian/patches/03_target-source-1.5.dpatch
   trunk/flute-1.3-jfree/debian/patches/04_javacc-5.0.dpatch
   trunk/flute-1.3-jfree/debian/rules
   trunk/flute-1.3-jfree/debian/watch
Log:
[svn-inject] Applying Debian modifications (20061107-7) to trunk


Property changes on: trunk/flute-1.3-jfree/debian
___
Added: mergeWithUpstream
   + 1

Added: trunk/flute-1.3-jfree/debian/README.source
===
--- trunk/flute-1.3-jfree/debian/README.source  (rev 0)
+++ trunk/flute-1.3-jfree/debian/README.source  2011-08-24 19:53:36 UTC (rev 
14450)
@@ -0,0 +1,6 @@
+This package uses dpatch to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+See /usr/share/doc/dpatch/README.source.gz for a detailed explanation.
+

Added: trunk/flute-1.3-jfree/debian/changelog
===
--- trunk/flute-1.3-jfree/debian/changelog  (rev 0)
+++ trunk/flute-1.3-jfree/debian/changelog  2011-08-24 19:53:36 UTC (rev 
14450)
@@ -0,0 +1,53 @@
+flute-1.3-jfree (20061107-7) unstable; urgency=low
+
+  * Team upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Sat, 06 Aug 2011 10:07:41 +0200
+
+flute-1.3-jfree (20061107-6) unstable; urgency=low
+
+  * (Build-)Depends on default-jdk.
+  * Build Java5 compatible class files.
+  * Build-Depends on debhelper = 7.
+  * Build-Depend on javacc = 5.0.
+  * Converted debian/copyright to UTF-8 and improved
+license reference.
+  * Moved to section 'java'.
+  * Replaced dh_clean -b by dh_prep.
+  * Delete build/ directory in clean target.
+  * Updated Standards-Version to 3.8.3.
+
+ -- Michael Koch konque...@gmx.de  Thu, 24 Sep 2009 20:28:07 +0200
+
+flute-1.3-jfree (20061107-5) unstable; urgency=low
+
+  * export JAVA_HOME=/usr/lib/jvm/java-gcj (closes: #543080) 
+
+ -- Rene Engelhard r...@debian.org  Tue, 25 Aug 2009 15:47:28 +0200
+
+flute-1.3-jfree (20061107-4) unstable; urgency=low
+
+  * build-depend on ant-optional (closes: #453190) 
+
+ -- Rene Engelhard r...@debian.org  Wed, 28 Nov 2007 10:27:00 +0100
+
+flute-1.3-jfree (20061107-3) unstable; urgency=low
+
+  * build-depend on ant (closes: #451418) 
+
+ -- Rene Engelhard r...@debian.org  Fri, 16 Nov 2007 19:42:08 +0100
+
+flute-1.3-jfree (20061107-2) unstable; urgency=low
+
+  * fix parser rebuilding - thanks Paul Cager. Rebuild it.
+  * upload to unstable
+
+ -- Rene Engelhard r...@debian.org  Mon, 05 Nov 2007 00:29:44 +0100
+
+flute-1.3-jfree (20061107-1) experimental; urgency=low
+
+  * Initial release
+
+ -- Rene Engelhard r...@debian.org  Sun, 14 Oct 2007 23:51:01 +0200
+

Added: trunk/flute-1.3-jfree/debian/compat
===
--- trunk/flute-1.3-jfree/debian/compat (rev 0)
+++ trunk/flute-1.3-jfree/debian/compat 2011-08-24 19:53:36 UTC (rev 14450)
@@ -0,0 +1 @@
+7

Added: trunk/flute-1.3-jfree/debian/control
===
--- trunk/flute-1.3-jfree/debian/control(rev 0)
+++ trunk/flute-1.3-jfree/debian/control2011-08-24 19:53:36 UTC (rev 
14450)
@@ -0,0 +1,27 @@
+Source: flute-1.3-jfree
+Section: java
+Priority: optional
+Maintainer: Debian QA Group packa...@qa.debian.org
+Build-Depends: debhelper (= 7), default-jdk, libsac-java, javacc (= 5.0), 
dpatch, ant-optional
+Standards-Version: 3.8.3
+
+Package: libflute-1.3-jfree-java
+Architecture: all
+Depends: default-jre-headless | java2-runtime
+Suggests: libflute-1.3-jfree-java-doc
+Description: Java CSS parser using SAC (JFree version)
+ Flute is a CSS2 parser written in Java that implements SAC.
+ SAC is a standard event-based API for CSS parsers, closely
+ modelled on the SAX API for XML parsers.
+ .
+ This package contains the library.
+
+Package: libflute-1.3-jfree-java-doc
+Section: doc
+Architecture: all
+Description: Java CSS parser using SAC (JFree version) -- documentation
+ Flute is a CSS2 parser written in 

[pkg-java] r14451 - in trunk/flute-1.3-jfree/debian: . patches source

2011-08-24 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-24 20:20:54 + (Wed, 24 Aug 2011)
New Revision: 14451

Added:
   trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.javadoc
   trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.jlibs
   trunk/flute-1.3-jfree/debian/patches/01_libdir.patch
   trunk/flute-1.3-jfree/debian/patches/02_javacc_dir.patch
   trunk/flute-1.3-jfree/debian/patches/03_target-source-1.5.patch
   trunk/flute-1.3-jfree/debian/patches/04_javacc-5.0.patch
   trunk/flute-1.3-jfree/debian/patches/series
   trunk/flute-1.3-jfree/debian/source/
   trunk/flute-1.3-jfree/debian/source/format
Removed:
   trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.docs
   trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.install
   trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.links
   trunk/flute-1.3-jfree/debian/patches/00list
   trunk/flute-1.3-jfree/debian/patches/01_libdir.dpatch
   trunk/flute-1.3-jfree/debian/patches/02_javacc_dir.dpatch
   trunk/flute-1.3-jfree/debian/patches/03_target-source-1.5.dpatch
   trunk/flute-1.3-jfree/debian/patches/04_javacc-5.0.dpatch
Modified:
   trunk/flute-1.3-jfree/debian/changelog
   trunk/flute-1.3-jfree/debian/control
   trunk/flute-1.3-jfree/debian/rules
Log:
Initial updates to use javahelper.


Modified: trunk/flute-1.3-jfree/debian/changelog
===
--- trunk/flute-1.3-jfree/debian/changelog  2011-08-24 19:53:36 UTC (rev 
14450)
+++ trunk/flute-1.3-jfree/debian/changelog  2011-08-24 20:20:54 UTC (rev 
14451)
@@ -1,3 +1,13 @@
+flute-1.3-jfree (20061107-8) unstable; urgency=low
+
+  * Adopt package by Debian Java Maintainers 
+   pkg-java-maintainers@lists.alioth.debian.org
+  * Switch to source format 3 (quilt)
+  * Bump standards version to 3.9.2 (no changes required).
+  * Fix lintian warnings.
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Wed, 24 Aug 2011 20:54:36 +0100
+
 flute-1.3-jfree (20061107-7) unstable; urgency=low
 
   * Team upload.

Modified: trunk/flute-1.3-jfree/debian/control
===
--- trunk/flute-1.3-jfree/debian/control2011-08-24 19:53:36 UTC (rev 
14450)
+++ trunk/flute-1.3-jfree/debian/control2011-08-24 20:20:54 UTC (rev 
14451)
@@ -1,13 +1,18 @@
 Source: flute-1.3-jfree
 Section: java
 Priority: optional
-Maintainer: Debian QA Group packa...@qa.debian.org
-Build-Depends: debhelper (= 7), default-jdk, libsac-java, javacc (= 5.0), 
dpatch, ant-optional
-Standards-Version: 3.8.3
+Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
+Uploaders: Andrew Ross ubu...@rossfamily.co.uk
+Build-Depends: debhelper (= 7.0.50~), default-jdk, libsac-java, 
+ javacc (= 5.0), ant-optional, javahelper
+Standards-Version: 3.9.2
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/flute-1.3-jfree
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/flute-1.3-jfree/
 
 Package: libflute-1.3-jfree-java
 Architecture: all
-Depends: default-jre-headless | java2-runtime
+Depends: ${java:Depends}, ${misc:Depends}
+Recommends: ${java:Recommends}
 Suggests: libflute-1.3-jfree-java-doc
 Description: Java CSS parser using SAC (JFree version)
  Flute is a CSS2 parser written in Java that implements SAC.
@@ -17,8 +22,10 @@
  This package contains the library.
 
 Package: libflute-1.3-jfree-java-doc
+Architecture: all
+Depends: ${java:Depends}, ${misc:Depends}
+Recommends: ${java:Recommends}
 Section: doc
-Architecture: all
 Description: Java CSS parser using SAC (JFree version) -- documentation
  Flute is a CSS2 parser written in Java that implements SAC.
  SAC is a standard event-based API for CSS parsers, closely

Deleted: trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.docs
===
--- trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.docs   
2011-08-24 19:53:36 UTC (rev 14450)
+++ trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.docs   
2011-08-24 20:20:54 UTC (rev 14451)
@@ -1 +0,0 @@
-javadoc

Added: trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.javadoc
===
--- trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.javadoc
(rev 0)
+++ trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java-doc.javadoc
2011-08-24 20:20:54 UTC (rev 14451)
@@ -0,0 +1 @@
+javadoc /usr/share/doc/libflute-1.3-jfree-java/api

Deleted: trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.install
===
--- trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.install
2011-08-24 19:53:36 UTC (rev 14450)
+++ trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.install
2011-08-24 20:20:54 UTC (rev 14451)
@@ -1 +0,0 @@
-flute-1.3-jfree-20061107.jar usr/share/java

Added: trunk/flute-1.3-jfree/debian/libflute-1.3-jfree-java.jlibs

[pkg-java] r14455 - in trunk/flute-1.3-jfree/debian: . patches

2011-08-24 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-24 20:50:46 + (Wed, 24 Aug 2011)
New Revision: 14455

Modified:
   trunk/flute-1.3-jfree/debian/patches/01_libdir.patch
   trunk/flute-1.3-jfree/debian/patches/02_javacc_dir.patch
   trunk/flute-1.3-jfree/debian/patches/03_target-source-1.5.patch
   trunk/flute-1.3-jfree/debian/patches/04_javacc-5.0.patch
   trunk/flute-1.3-jfree/debian/rules
Log:
Updated packaging



Property changes on: trunk/flute-1.3-jfree/debian/patches/01_libdir.patch
___
Deleted: svn:executable
   - *


Property changes on: trunk/flute-1.3-jfree/debian/patches/02_javacc_dir.patch
___
Deleted: svn:executable
   - *


Property changes on: 
trunk/flute-1.3-jfree/debian/patches/03_target-source-1.5.patch
___
Deleted: svn:executable
   - *


Property changes on: trunk/flute-1.3-jfree/debian/patches/04_javacc-5.0.patch
___
Deleted: svn:executable
   - *

Modified: trunk/flute-1.3-jfree/debian/rules
===
--- trunk/flute-1.3-jfree/debian/rules  2011-08-24 20:48:54 UTC (rev 14454)
+++ trunk/flute-1.3-jfree/debian/rules  2011-08-24 20:50:46 UTC (rev 14455)
@@ -9,12 +9,13 @@
dh $@ --with javahelper
 
 override_dh_auto_build:
+   cd source/org/w3c/flute/parser  javacc Parser.jj
cd ant  ant compile-jj compile javadoc
 
 override_dh_auto_clean:
for i in TokenMgrError.java Token.java CharStream.java \
Parser.java ParserConstants.java ParserTokenManager.java \
-   Token.java TokenMgrError.java ParseException.java; do \
+   Token.java TokenMgrError.java; do \
rm -f source/org/w3c/flute/parser/$$i; \
done
rm -f flute-1.3-jfree-20061107.jar


___
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] r14458 - trunk/flute-1.3-jfree/debian

2011-08-24 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-24 21:12:13 + (Wed, 24 Aug 2011)
New Revision: 14458

Modified:
   trunk/flute-1.3-jfree/debian/changelog
   trunk/flute-1.3-jfree/debian/copyright
Log:
Finalise packaging


Modified: trunk/flute-1.3-jfree/debian/changelog
===
--- trunk/flute-1.3-jfree/debian/changelog  2011-08-24 21:11:32 UTC (rev 
14457)
+++ trunk/flute-1.3-jfree/debian/changelog  2011-08-24 21:12:13 UTC (rev 
14458)
@@ -1,8 +1,9 @@
 flute-1.3-jfree (20061107-8) unstable; urgency=low
 
-  * Adopt package by Debian Java Maintainers 
+  * Adopt package by Debian Java Maintainers
pkg-java-maintainers@lists.alioth.debian.org
   * Switch to source format 3 (quilt)
+  * Use javahelper.
   * Bump standards version to 3.9.2 (no changes required).
   * Fix lintian warnings.
 

Modified: trunk/flute-1.3-jfree/debian/copyright
===
--- trunk/flute-1.3-jfree/debian/copyright  2011-08-24 21:11:32 UTC (rev 
14457)
+++ trunk/flute-1.3-jfree/debian/copyright  2011-08-24 21:12:13 UTC (rev 
14458)
@@ -74,5 +74,6 @@
 on Debian systems the full text of the LGPL can be found at
 /usr/share/common-licenses/LGPL.
 
-The Debian packaging is (C) 2007, Rene Engelhard r...@debian.org and
-is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+The Debian packaging is copyright (C) 2007, Rene Engelhard 
+r...@debian.org and is licensed under the GPL, see 
+`/usr/share/common-licenses/GPL'.


___
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] r14460 - trunk/flute-1.3-jfree/debian

2011-08-24 Thread Andrew Ross
Author: rockclimb-guest
Date: 2011-08-24 21:20:24 + (Wed, 24 Aug 2011)
New Revision: 14460

Modified:
   trunk/flute-1.3-jfree/debian/changelog
Log:
Close ITA.


Modified: trunk/flute-1.3-jfree/debian/changelog
===
--- trunk/flute-1.3-jfree/debian/changelog  2011-08-24 21:14:21 UTC (rev 
14459)
+++ trunk/flute-1.3-jfree/debian/changelog  2011-08-24 21:20:24 UTC (rev 
14460)
@@ -2,6 +2,7 @@
 
   * Adopt package by Debian Java Maintainers
pkg-java-maintainers@lists.alioth.debian.org
+   (Closes: #636836).
   * Switch to source format 3 (quilt)
   * Use javahelper.
   * Bump standards version to 3.9.2 (no changes required).


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


  1   2   3   >