Your message dated Wed, 26 Jun 2013 15:26:31 +0000
with message-id <e1urrc7-00079y...@franck.debian.org>
and subject line Bug#684165: fixed in openrocket 12.03-1.1
has caused the Debian Bug report #684165,
regarding openrocket: Transition package to default java implementation
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
684165: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684165
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: openrocket
Version: 12.03-1
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu quantal ubuntu-patch openjdk-7-transition
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Dear Maintainer,
In Ubuntu, the attached patch was applied to achieve the following:
* Transition package to use default java implementation:
- d/control: BD on default-jdk, switch runtime dependency to
default-jre | java6-runtime.
- d/rules: Specify source/target = 1.5 to ensure that
backwards compatible bytecode is built.
Ubuntu quantal is transitioning default java from openjdk-6 to openjdk-7. This
patch eases the transition and ensures backwards compatible bytecode is built.
Note that this is not a release goal for wheezy.
Thanks for considering the patch.
- -- System Information:
Debian Release: wheezy/sid
APT prefers quantal-updates
APT policy: (500, 'quantal-updates'), (500, 'quantal-security'), (500,
'quantal')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.5.0-8-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iQIcBAEBCAAGBQJQIRzYAAoJEL/srsug59jD12oP/133guIH7QYezjhi6lgEZ0Pq
+uZ3M3ZGvgLH7De0tlkbK7mKnYXx07F0TWNuLyD1BtDTFOzSS2v9HX9eOTKxtaCT
TANZcf1YaDb5MoeYGwJ2uWDTDRR2txcRnqejDtVlBZLahUeuoUsKJReQoMNPypix
WJByzwMj35jFDNi8QyO+e8llKR3TMcybYkl1eObn6d6bDqsvRQm7djQv+v6tpECP
/MVBrsLIGVxsFbluY7IPLikJ0TyiHRIRH+t83VFm6QgOnutVTOdEg7I8HGeQ73BJ
e6YDCQpx0lHXuYxZlNp7hNAJkI3dnJVs3OTt/7doLsM3hQuM/rrzWNSSgPVcl+eB
VJXVwurEopmMy1zTYDu0ko0XV6URMU3pAQhDfKClvburzb6jIGgWVGaaQKZsyD3D
zJ864ArtYgcKHDvG5eK/deEZsJxrhWtCOgHehLwOq/iLrEFYCxdwptyWm9WpND03
TSqoJv8JQIL5J62PtwMPgK+ZcRRtClsodPLJZcQAHy/gsfFz0iHz13y+FtSxpAhm
9J8nbtMFjZecY7mZPLNK06aCD1EsX6W4fXf7hch+G0j8cbr/hcaK5qnmHsTCalsP
3M7Li0jGur+ntadbYDLub1pHd0OxqJqeBRUr8pE0DYBNiD9Z1KMKLV/03xMUg2CT
HPdJ6nptsdHpuYfNkiAS
=isY8
-----END PGP SIGNATURE-----
diff -Nru openrocket-12.03/debian/changelog openrocket-12.03/debian/changelog
diff -Nru openrocket-12.03/debian/control openrocket-12.03/debian/control
--- openrocket-12.03/debian/control 2012-03-18 23:04:37.000000000 +0000
+++ openrocket-12.03/debian/control 2012-08-07 14:45:48.000000000 +0100
@@ -2,7 +2,7 @@
Section: science
Priority: optional
Maintainer: Bdale Garbee <bd...@gag.com>
-Build-Depends: debhelper (>= 7.0.50~), openjdk-6-jdk, ant, ant-optional, libjcommon-java, libjfreechart-java, libmiglayout-java, junit4, libitext5-java, netpbm
+Build-Depends: debhelper (>= 7.0.50~), default-jdk, ant, ant-optional, libjcommon-java, libjfreechart-java, libmiglayout-java, junit4, libitext5-java, netpbm
Standards-Version: 3.9.3
Homepage: http://openrocket.sourceforge.net/
Vcs-Git: git://git.gag.com/debian/openrocket
@@ -10,7 +10,7 @@
Package: openrocket
Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, openjdk-6-jre | sun-java6-jre, libjcommon-java, libjfreechart-java, libmiglayout-java, libitext5-java
+Depends: ${shlibs:Depends}, ${misc:Depends}, default-jre | java6-runtime, libjcommon-java, libjfreechart-java, libmiglayout-java, libitext5-java
Description: Model Rocket Simulator
OpenRocket is a free, fully featured model rocket simulator that allows
you to design and simulate your rockets before actually building and
diff -Nru openrocket-12.03/debian/rules openrocket-12.03/debian/rules
--- openrocket-12.03/debian/rules 2012-03-18 23:04:37.000000000 +0000
+++ openrocket-12.03/debian/rules 2012-08-07 14:42:17.000000000 +0100
@@ -13,7 +13,9 @@
dh $@
override_dh_auto_build:
- ant -f core/build.xml dist-bin
+ ant -f core/build.xml \
+ -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 \
+ dist-bin
override_dh_auto_install:
cp core/build/jar/* `pwd`/debian/openrocket/usr/share/java/
--- End Message ---
--- Begin Message ---
Source: openrocket
Source-Version: 12.03-1.1
We believe that the bug you reported is fixed in the latest version of
openrocket, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 684...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
ShuxiongYe <yeshuxi...@gmail.com> (supplier of updated openrocket package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Sun, 09 Jun 2013 17:02:47 +0800
Source: openrocket
Binary: openrocket
Architecture: source all
Version: 12.03-1.1
Distribution: unstable
Urgency: low
Maintainer: Bdale Garbee <bd...@gag.com>
Changed-By: ShuxiongYe <yeshuxi...@gmail.com>
Description:
openrocket - Model Rocket Simulator
Closes: 684165
Changes:
openrocket (12.03-1.1) unstable; urgency=low
.
* Non-maintainer upload.
* debian/control:
- Build-Depends: replace openjdk-6-jdk with default-jdk
- Depends: replace openjdk-6-jre with default-jre
Thanks to James Page for the patch (Closes: #684165)
* debian/patches/FTBFS_itext5_4.diff:
- FTBFS because of modification of package path of itext5.4
* debian/rules:
- add auto_clean rules
- Specify source/target = 1.5 to ensure that backwards compatible bytecode
is built.
Checksums-Sha1:
faa44f933e7e532d1d60ab94526ead905b6947ee 1318 openrocket_12.03-1.1.dsc
fe7dbf56ae9556817d41ca9943ed3848a1923a1f 5754
openrocket_12.03-1.1.debian.tar.gz
4e7d06ac06873631c04d2b9ac027cc272c4afbf0 4205342 openrocket_12.03-1.1_all.deb
Checksums-Sha256:
2b6e71f5c94d12553de164005c1d1b2402a295a908601e859e6cb43d22322344 1318
openrocket_12.03-1.1.dsc
073769fcb66adaca70b682f3f389a57a694939d6ddc339681b48f4d55350efea 5754
openrocket_12.03-1.1.debian.tar.gz
1b525e6ef9dbc3e5eddd4b795639982ffc332e6f25d86809448cf93269cdd4cf 4205342
openrocket_12.03-1.1_all.deb
Files:
a4161cac8a4608eebf68e19af094b8e9 1318 science optional openrocket_12.03-1.1.dsc
19aea5228c9cda30f98b20752190760e 5754 science optional
openrocket_12.03-1.1.debian.tar.gz
36c167b86dbbf495ae975799b70a16cc 4205342 science optional
openrocket_12.03-1.1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iEYEARECAAYFAlHEW/AACgkQiOXXM92JlhCingCfd7Dac+2/5jiGsz8yxbf73pND
WqcAn1NV8mTzBpEfFL3DH/ygDORG3SuO
=2Xxq
-----END PGP SIGNATURE-----
--- End Message ---