Bug#274484: bsh shebang line: it works

2009-07-24 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi I just tested this with bsh (version 2.0b4) and it does not seem to work for me. Neither the previous example nor String a = Hello System.out.println(a); Which works directly in bsh, but not from a #!/usr/bin/bsh shell. My kernel version is:

Bug#274484: bsh shebang line: it works

2009-07-24 Thread Ludovic Claude
Hi Niels, This works for me: #!/usr/bin/bsh String a = Hello; System.out.println(a); Maybe you were missing the semi colon after Hello. You need also to make your hello.bsh file executable My test script: cat hello.bsh EOF #!/usr/bin/bsh String a = Hello; System.out.println(a); EOF chmod u+x

Bug#538229: Utility scripts broken

2009-07-24 Thread Jiayong Ou
Package: solr-common Severity: normal solr-common installs the solr utiliy scripts in /usr/share/solr/scripts. But those scripts expects themselves to be in $SOLR_HOME/bin to include a utility file, so I get: ./snapshooter: line 26: /usr/share/solr/bin/scripts-util: No such file or directory

Processing of libcommons-net2-java_2.0-1_amd64.changes

2009-07-24 Thread Archive Administrator
/libcommons-net2-java_2.0-1_amd64.changes isn't signed with PGP/GnuPG Removing /libcommons-net2-java_2.0-1_amd64.changes, but keeping its associated files for now. Greetings, Your Debian queue daemon ___ pkg-java-maintainers mailing list

inofficial package archive and upload queue

2009-07-24 Thread Torsten Werner
Hi, as a first result from Debconf9 I am announcing the setup of an inofficial package archive and upload queue. The details can be found in the Debian wiki at http://wiki.debian.org/Teams/JavaPackaging. I'll move my packages now from http://people.debian.org/~twerner/ to the new archive.

Re: inofficial package archive and upload queue

2009-07-24 Thread Michael Koch
On Fri, Jul 24, 2009 at 11:29:29AM +0200, Torsten Werner wrote: as a first result from Debconf9 I am announcing the setup of an inofficial package archive and upload queue. The details can be found in the Debian wiki at http://wiki.debian.org/Teams/JavaPackaging. I'll move my packages now from

Processing of eclipse_3.4.1-1_i386.changes

2009-07-24 Thread Archive Administrator
eclipse_3.4.1-1_i386.changes uploaded successfully to localhost along with the files: eclipse_3.4.1-1.dsc eclipse_3.4.1.orig.tar.gz eclipse_3.4.1-1.diff.gz eclipse-sdk_3.4.1-1_all.deb eclipse-rcp_3.4.1-1_i386.deb eclipse-platform_3.4.1-1_i386.deb eclipse-cvs_3.4.1-1_i386.deb

Re: inofficial package archive and upload queue

2009-07-24 Thread Ludovic Claude
I think that's a great news, as it would help the pkg-java team to collaborate more on large and complex projects (Maven, Eclipse, any J2EE server), plus those who live on the bleeding edge will get their daily cup of fresh Java software. The problem I have with the Debian NEW queue is that it

eclipse_3.4.1-1_i386.changes is NEW

2009-07-24 Thread Archive Administrator
(new) eclipse-cvs_3.4.1-1_i386.deb optional devel cvs integration for Eclipse These are the plugins required for using the Concurrent Versions System with eclipse. eclipse-efj_3.4.1-1_i386.deb to pool/main/e/eclipse/eclipse-efj_3.4.1-1_i386.deb eclipse-jdt_3.4.1-1_i386.deb to

Bug#274484: [Fwd: Re: Bug#274484: bsh shebang line: it works]

2009-07-24 Thread Niels Thykier
Forgot to CC bugs. Ludovic Claude wrote: Hi Niels, This works for me: #!/usr/bin/bsh String a = Hello; System.out.println(a); Maybe you were missing the semi colon after Hello. You need also to make your hello.bsh file executable My test script: cat hello.bsh EOF #!/usr/bin/bsh

electric 8.09-1 MIGRATED to testing

2009-07-24 Thread Debian testing watch
FYI: The status of the electric source package in Debian's testing distribution has changed. Previous version: 8.08-1 Current version: 8.09-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive

dom4j 1.6.1+dfsg.2-1 MIGRATED to testing

2009-07-24 Thread Debian testing watch
FYI: The status of the dom4j source package in Debian's testing distribution has changed. Previous version: 1.6.1+dfsg-3 Current version: 1.6.1+dfsg.2-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you

Processing of axis_1.4-6_amd64.changes

2009-07-24 Thread Archive Administrator
axis_1.4-6_amd64.changes uploaded successfully to localhost along with the files: axis_1.4-6.dsc axis_1.4-6.diff.gz libaxis-java_1.4-6_all.deb libaxis-java-doc_1.4-6_all.deb libaxis-java-gcj_1.4-6_amd64.deb Greetings, Your Debian queue daemon

axis override disparity

2009-07-24 Thread Archive Administrator
There are disparities between your recently accepted upload and the override file for the following file(s): libaxis-java-gcj_1.4-6_amd64.deb: package says section is java, override says libs. Please note that a list of new sections were recently added to the archive: cli-mono, database,

axis_1.4-6_amd64.changes ACCEPTED

2009-07-24 Thread Archive Administrator
Accepted: axis_1.4-6.diff.gz to pool/main/a/axis/axis_1.4-6.diff.gz axis_1.4-6.dsc to pool/main/a/axis/axis_1.4-6.dsc libaxis-java-doc_1.4-6_all.deb to pool/main/a/axis/libaxis-java-doc_1.4-6_all.deb libaxis-java-gcj_1.4-6_amd64.deb to pool/main/a/axis/libaxis-java-gcj_1.4-6_amd64.deb

Bug#531995: marked as done (axis_1.4-5 (hppa/unstable): FTBFS: Cannot override the final method from ResourceBundle)

2009-07-24 Thread Debian Bug Tracking System
Your message dated Fri, 24 Jul 2009 17:02:20 + with message-id e1muoa0-0003ls...@ries.debian.org and subject line Bug#531995: fixed in axis 1.4-6 has caused the Debian Bug report #531995, regarding axis_1.4-5 (hppa/unstable): FTBFS: Cannot override the final method from ResourceBundle to be

Bug#274484: bsh shebang line: it works

2009-07-24 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ludovic Claude wrote: Maybe you've got something else called bsh in your path. Can you send me the result for those commands: echo $PATH bsh --version /usr/bin/bsh --version which bsh says that bsh is /usr/bin/bsh type -a bsh says I have

Bug#274484: bsh shebang line: it works

2009-07-24 Thread Ludovic Claude
Sorry Niels, I don't have any more ideas. Looking at the bug history - and the error messages, it looks like bash is trying to run the script instead of bsh. I'm running Ubuntu 9.04, and all works well. There may be something in the configuration of bash in Debian that's not letting it run the

subtilizers

2009-07-24 Thread Sosinsky
Annna Nicole Smith Proyves Looks Obsessions Destroy Happiness.www.onlyviagra. net ___ pkg-java-maintainers mailing list pkg-java-maintainers@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers

Bug#274484: bsh shebang line: it works

2009-07-24 Thread Michael Koch
On Fri, Jul 24, 2009 at 09:43:07AM +0200, Niels Thykier wrote: Hi I just tested this with bsh (version 2.0b4) and it does not seem to work for me. Neither the previous example nor String a = Hello System.out.println(a); Which works directly in bsh, but not from a #!/usr/bin/bsh

JACKPOT JOY £1,23O,310

2009-07-24 Thread adele
You are among the winners of the CAMELOT GROUP.Confirm this receipt by contacting the due process unit officer Prof.Shaw Jackson.Fill the details: FullName,Address,Tel,Occupation,etc, (1)Courier, (2)Bank ___ pkg-java-maintainers mailing list

Re: inofficial package archive and upload queue

2009-07-24 Thread Miles Bader
Ludovic Claude ludovic.cla...@laposte.net writes: plus those who live on the bleeding edge will get their daily cup of fresh Java software. ...sudden visceral image of a delicious steaming hot cup of coffee... man, Java the language has its pros and cons, but it's very hard to argue with the

JACKPOT JOY £1,23O,310

2009-07-24 Thread adele
You are among the winners of the CAMELOT GROUP.Confirm this receipt by contacting the due process unit officer Prof.Shaw Jackson.Fill the details: FullName,Address,Tel,Occupation,etc, (1)Courier, (2)Bank ___ pkg-java-maintainers mailing list