Bug#874276: ca-certificates-java: fails to install on armhf: Error: missing `server' JVM at `/usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/server/libjvm.so'

2017-09-29 Thread Gianfranco Costamagna
Hello,
>Thank you, could you just do a team upload and push the changes to Git
>please? The latest nmu needs to be merged too.


sure, I'll do
(I'm assuming you actually like the patch :p)

G.

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


Bug#874276: ca-certificates-java: fails to install on armhf: Error: missing `server' JVM at `/usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/server/libjvm.so'

2017-09-29 Thread Gianfranco Costamagna
control: tags -1 patch pending
On Wed, 27 Sep 2017 17:21:34 +0200 Rico Tzschichholz  wrote:
> The attached patch should fix the issue.
> 

uploaded in deferred/1, hopefully somebody in java team will ack/nack in the 
meanwhile.

I did some little changes in changelog, attached
diff -Nru ca-certificates-java-20170531+nmu1/debian/changelog ca-certificates-java-20170531+nmu2/debian/changelog
--- ca-certificates-java-20170531+nmu1/debian/changelog	2017-06-15 17:33:00.0 +0200
+++ ca-certificates-java-20170531+nmu2/debian/changelog	2017-09-27 17:17:59.0 +0200
@@ -1,3 +1,11 @@
+ca-certificates-java (20170531+nmu2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix temporary jvm-*.cfg generation on armhf (Closes: #874276)
+- the armhf installation path is different from other architectures.
+
+ -- Rico Tzschichholz   Wed, 27 Sep 2017 17:17:59 +0200
+
 ca-certificates-java (20170531+nmu1) unstable; urgency=high
 
   * Non-maintainer upload.
diff -Nru ca-certificates-java-20170531+nmu1/debian/jks-keystore.hook.in ca-certificates-java-20170531+nmu2/debian/jks-keystore.hook.in
--- ca-certificates-java-20170531+nmu1/debian/jks-keystore.hook.in	2017-05-31 14:39:26.0 +0200
+++ ca-certificates-java-20170531+nmu2/debian/jks-keystore.hook.in	2017-09-27 17:17:59.0 +0200
@@ -53,7 +53,11 @@
 # the jre is not yet configured, but jvm.cfg is needed to run it
 temp_jvm_cfg=/etc/${jvm%-$arch}/jvm-$arch.cfg
 mkdir -p /etc/${jvm%-$arch}
-printf -- "-server KNOWN\n" > $temp_jvm_cfg
+if [ "$arch" == "armhf" ]; then
+printf -- "-client KNOWN\n-server ALIASED_TO -client\n" > $temp_jvm_cfg
+else
+printf -- "-server KNOWN\n" > $temp_jvm_cfg
+fi
 fi
 
 if dpkg-query --version >/dev/null; then
diff -Nru ca-certificates-java-20170531+nmu1/debian/postinst.in ca-certificates-java-20170531+nmu2/debian/postinst.in
--- ca-certificates-java-20170531+nmu1/debian/postinst.in	2017-05-31 14:39:26.0 +0200
+++ ca-certificates-java-20170531+nmu2/debian/postinst.in	2017-09-27 17:17:59.0 +0200
@@ -100,7 +100,11 @@
 # the jre is not yet configured, but jvm.cfg is needed to run it
 temp_jvm_cfg=/etc/${jvm%-$arch}/jvm-$arch.cfg
 mkdir -p /etc/${jvm%-$arch}
-printf -- "-server KNOWN\n" > $temp_jvm_cfg
+if [ "$arch" == "armhf" ]; then
+	printf -- "-client KNOWN\n-server ALIASED_TO -client\n" > $temp_jvm_cfg
+else
+	printf -- "-server KNOWN\n" > $temp_jvm_cfg
+fi
 fi
 
 trap do_cleanup EXIT


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

Bug#874434: severity is grave

2017-09-18 Thread Gianfranco Costamagna
severity 874434 grave
thanks



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

Bug#874494: rebuilding libsambox-java generates unmet dependency on libsejda-io-java (>= 1.1.3.RELEASE)

2017-09-09 Thread Gianfranco Costamagna
control: tags -1 patch

> >>> - remove the suffix from the version in the pom
> >>
> >> doesn't work

it worked to me, and the bootstrap in Ubuntu is now complete.

This is the patch:
--- libsejda-io-java-1.1.3/debian/patches/fix-broken-version.patch  
1970-01-01 00:00:00.0 +
+++ libsejda-io-java-1.1.3/debian/patches/fix-broken-version.patch  
2017-09-09 13:33:44.0 +
@@ -0,0 +1,15 @@
+Description: This breaks reverse-dependencies, fix version up
+Author: Gianfranco Costamagna <locutusofb...@debian.org>
+Last-Update: 2017-09-09
+
+--- libsejda-io-java-1.1.3.orig/pom.xml
 libsejda-io-java-1.1.3/pom.xml
+@@ -5,7 +5,7 @@
+   sejda-io
+   jar
+   sejda-io
+-  1.1.3.RELEASE
++  1.1.3
+ 
+   An Input/Output layer built on top of Java standard io and 
nio packages
+   http://www.sejda.org

G.



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

Bug#739999: (no subject)

2014-02-26 Thread Gianfranco Costamagna
Oh... this has been reproduce on trusty machine, I asked for a sync request of 
tomcat7, and the buildd failed to build from source
https://launchpadlibrarian.net/167631874/buildlog_ubuntu-trusty-i386.tomcat7_7.0.52-1_FAILEDTOBUILD.txt.gz

I don't know the rationale of this problem, because I cannot reproduce in my 
local pbuilder environment


Gianfranco 
__
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#681726: Kepler has been released.

2013-07-26 Thread Gianfranco Costamagna
According to wiki

There is also a 3.8 release of Eclipse, but it is not promoted anywhere on 
their web site, directing interested users to 4.2. Eclipse 3.8 provides 
bugfixes for Indigo  adds Java 7 support, but is not a 'packaged distribution' 
release, and will not be 
maintained after 4.3 Kepler is released. Features and plugins 
equivalent to a packaged distribution may be added from within the IDE.


Kepler has been released one month ago.

So please consider updating eclipse to kepler.

Thanks



Gianfranco


__
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: I: tomcat7 uploaded to mentors.debian.net

2013-06-27 Thread Gianfranco Costamagna
the first one has been addressed in git, for the second one I don't know how to 
deal...

would be nice to have tomcat-native updated too, since the .27 release seems to 
be out


for #710806 should we just remove servlet-api  from fop launcher or add a 
simlink to the java library?

bests


Gianfranco




 Da: tony mancill tmanc...@debian.org
A: Gianfranco Costamagna costamagnagianfra...@yahoo.it 
Cc: pkg-java-maintainers@lists.alioth.debian.org 
pkg-java-maintainers@lists.alioth.debian.org 
Inviato: Giovedì 27 Giugno 2013 7:10
Oggetto: Re: I: tomcat7 uploaded to mentors.debian.net
 

Hi Gianfranco,

I will try to take a look at the package by (or during) this weekend.  I
want to take a look at #712638 (and perhaps #710806 as well) for this
next upload.

Cheers,
tony

On 06/25/2013 05:32 AM, Gianfranco Costamagna wrote:

 Tomcat 7.0.41 is available to mentors.
 
 Does anybody feel good about uploading it?
 
 
 many thanks
 
 Gianfranco
 
 
 - Messaggio inoltrato -
 Da: mentors.debian.net supp...@mentors.debian.net
 A: costamagnagianfra...@yahoo.it 
 Inviato: Martedì 25 Giugno 2013 10:14
 Oggetto: tomcat7 uploaded to mentors.debian.net


 Hi.

 Your upload of the package 'tomcat7' to mentors.debian.net was
 successful. Others can now see it. The URL of your package is:
 http://mentors.debian.net/package/tomcat7

 The respective dsc file can be found at:
 http://mentors.debian.net/debian/pool/main/t/tomcat7/tomcat7_7.0.41-1.dsc

 If you do not yet have a sponsor for your package you may want to go to
 http://mentors.debian.net/sponsors/rfs-howto/tomcat7
 and set the Seeking a sponsor option to highlight your package on the
 welcome page.

 You can also send an RFS (request for sponsorship) to the debian-mentors
 mailing list. Your package page will give your suggestions on how to
 send that mail.

 Good luck in finding a sponsor!

 Thanks,

 -- 
 mentors.debian.net






__
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: I: tomcat7 uploaded to mentors.debian.net

2013-06-27 Thread Gianfranco Costamagna
FYI
https://mentors.debian.net/package/tomcat-native


I didn't find an easy way for committing into svn, maybe my proxy bloks it or 
the connection refused is part of some policies on my machine... 


cheers

Gianfranco




 Da: Gianfranco Costamagna costamagnagianfra...@yahoo.it
A: tony mancill tmanc...@debian.org 
Cc: pkg-java-maintainers@lists.alioth.debian.org 
pkg-java-maintainers@lists.alioth.debian.org 
Inviato: Giovedì 27 Giugno 2013 8:59
Oggetto: Re: I: tomcat7 uploaded to mentors.debian.net
 


the first one has been addressed in git, for the second one I don't know how 
to deal...

would be nice to have tomcat-native updated too, since the .27 release seems 
to be out


for #710806 should we just remove servlet-api  from fop launcher or add a 
simlink to the java library?

bests


Gianfranco




 Da: tony mancill tmanc...@debian.org
A: Gianfranco Costamagna costamagnagianfra...@yahoo.it 
Cc: pkg-java-maintainers@lists.alioth.debian.org 
pkg-java-maintainers@lists.alioth.debian.org 
Inviato: Giovedì 27 Giugno 2013 7:10
Oggetto: Re: I: tomcat7 uploaded to mentors.debian.net
 

Hi Gianfranco,

I will try to take a look at the package by (or during) this weekend.  I
want to take a look at #712638 (and perhaps #710806 as well) for this
next upload.

Cheers,
tony

On 06/25/2013 05:32 AM, Gianfranco Costamagna wrote:

 Tomcat 7.0.41 is available to mentors.
 
 Does anybody feel good about uploading it?
 
 
 many thanks
 
 Gianfranco
 
 
 - Messaggio inoltrato -
 Da:
 mentors.debian.net supp...@mentors.debian.net
 A: costamagnagianfra...@yahoo.it 
 Inviato: Martedì 25 Giugno 2013 10:14
 Oggetto: tomcat7 uploaded to mentors.debian.net


 Hi.

 Your upload of the package 'tomcat7' to mentors.debian.net was
 successful. Others can now see it. The URL of your package is:
 http://mentors.debian.net/package/tomcat7

 The respective dsc file can be found at:
 http://mentors.debian.net/debian/pool/main/t/tomcat7/tomcat7_7.0.41-1.dsc

 If you do not yet have a sponsor for your package you may want to go to
 http://mentors.debian.net/sponsors/rfs-howto/tomcat7
 and set the Seeking a sponsor option to highlight your package on the
 welcome page.

 You can also send an RFS (request for sponsorship) to the debian-mentors
 mailing list. Your package page will give your suggestions on how to
 send that mail.

 Good luck in finding a sponsor!

 Thanks,

 -- 
 mentors.debian.net








__
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: tomcat7 uploaded to mentors.debian.net

2013-06-25 Thread Gianfranco Costamagna


Tomcat 7.0.41 is available to mentors.

Does anybody feel good about uploading it?


many thanks

Gianfranco


- Messaggio inoltrato -
Da: mentors.debian.net supp...@mentors.debian.net
A: costamagnagianfra...@yahoo.it 
Inviato: Martedì 25 Giugno 2013 10:14
Oggetto: tomcat7 uploaded to mentors.debian.net
 

Hi.

Your upload of the package 'tomcat7' to mentors.debian.net was
successful. Others can now see it. The URL of your package is:
http://mentors.debian.net/package/tomcat7

The respective dsc file can be found at:
http://mentors.debian.net/debian/pool/main/t/tomcat7/tomcat7_7.0.41-1.dsc

If you do not yet have a sponsor for your package you may want to go to
http://mentors.debian.net/sponsors/rfs-howto/tomcat7
and set the Seeking a sponsor option to highlight your package on the
welcome page.

You can also send an RFS (request for sponsorship) to the debian-mentors
mailing list. Your package page will give your suggestions on how to
send that mail.

Good luck in finding a sponsor!

Thanks,

-- 
mentors.debian.net




__
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#712978: tomcat7: New tomcat 7.0.41 is available

2013-06-21 Thread Gianfranco Costamagna
Package: tomcat7
Version: 7.0.40-2
Severity: wishlist

Dear Maintainer,

I write here because a new tomcat7 is available for download.

I have already imported it here [1] and built correctly.

Thanks for your attention

[1] http://anonscm.debian.org/gitweb/?p=pkg-java/tomcat7.git;a=summary

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

New tomcat6 and tomcat7 release are out

2013-06-19 Thread Gianfranco Costamagna
I write here because new tomcat releases are out for both 6 and 7 release 
series.

Does anybody plans to update tomcat*/unstable?

I'm a new DM, so I think I can help in packaging if needed.

Let me know
(and please cc me since I'm not subscribed to this list)

thanks

Gianfranco

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