[med-svn] r13698 - trunk/packages/neobio/trunk/debian

Gregor Herrmann gregoa at alioth.debian.org
Wed May 22 17:00:05 UTC 2013


Author: gregoa
Date: 2013-05-22 17:00:05 +0000 (Wed, 22 May 2013)
New Revision: 13698

Modified:
   trunk/packages/neobio/trunk/debian/changelog
   trunk/packages/neobio/trunk/debian/control
   trunk/packages/neobio/trunk/debian/rules
Log:
* Non-maintainer upload.
* Fix "Transition package to default java implementation":
  apply patch from Ubuntu / James Page:
* Transition package to default java implementation:
  - d/control: BD on default-jdk (>= 1:1.6), switch runtime dependency
    to default-jre | java6-runtime.
  - d/rules: Specify source/target = 1.5 to ensure that backwards
    compatible bytecode is built.
  (Closes: #684162)

Modified: trunk/packages/neobio/trunk/debian/changelog
===================================================================
--- trunk/packages/neobio/trunk/debian/changelog	2013-05-22 13:13:45 UTC (rev 13697)
+++ trunk/packages/neobio/trunk/debian/changelog	2013-05-22 17:00:05 UTC (rev 13698)
@@ -1,9 +1,23 @@
-neobio (0.0.20030929-2) UNRELEASED; urgency=low
+neobio (0.0.20030929-1.1) unstable; urgency=low
 
+  [ Andreas Tille ]
   * Enhanced short description
 
- -- Andreas Tille <tille at debian.org>  Wed, 30 May 2012 16:22:34 +0200
+  [ gregor herrmann ]
+  * Non-maintainer upload.
+  * Fix "Transition package to default java implementation":
+    apply patch from Ubuntu / James Page:
 
+  * Transition package to default java implementation:
+    - d/control: BD on default-jdk (>= 1:1.6), switch runtime dependency
+      to default-jre | java6-runtime.
+    - d/rules: Specify source/target = 1.5 to ensure that backwards
+      compatible bytecode is built.
+
+    (Closes: #684162)
+
+ -- gregor herrmann <gregoa at debian.org>  Wed, 22 May 2013 18:53:39 +0200
+
 neobio (0.0.20030929-1) unstable; urgency=low
 
   * Initial release (Closes: #647543)

Modified: trunk/packages/neobio/trunk/debian/control
===================================================================
--- trunk/packages/neobio/trunk/debian/control	2013-05-22 13:13:45 UTC (rev 13697)
+++ trunk/packages/neobio/trunk/debian/control	2013-05-22 17:00:05 UTC (rev 13698)
@@ -4,7 +4,7 @@
 Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
 Uploaders: Christoph Gille <christophgil at googlemail.com>,
  Andreas Tille <tille at debian.org>
-Build-Depends: debhelper (>= 8), openjdk-6-jdk | sun-java6-jdk, javahelper (>=0.25)
+Build-Depends: debhelper (>= 8), default-jdk (>= 1:1.6), javahelper (>=0.25)
 Standards-Version: 3.9.3
 Homepage: http://neobio.sourceforge.net/
 Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/neobio/trunk/
@@ -12,7 +12,7 @@
 
 Package: neobio
 Architecture: all
-Depends: openjdk-6-jre | sun-java6-jre, java-wrappers, ${misc:Depends}, ${java:Depends}
+Depends: default-jre | java6-runtime, java-wrappers, ${misc:Depends}, ${java:Depends}
 Suggests: strap
 Enhances: strap
 Description: computes alignments of amino acid and nucleotide sequences

Modified: trunk/packages/neobio/trunk/debian/rules
===================================================================
--- trunk/packages/neobio/trunk/debian/rules	2013-05-22 13:13:45 UTC (rev 13697)
+++ trunk/packages/neobio/trunk/debian/rules	2013-05-22 17:00:05 UTC (rev 13698)
@@ -12,7 +12,7 @@
 
 override_dh_auto_build:
 	mkdir -p classes
-	javac -cp src -d  classes   $(shell find src -name "*.java")
+	javac -cp src -source 1.5 -target 1.5 -d  classes   $(shell find src -name "*.java")
 	jar -cf neobio-$(VERSION).jar -C classes neobio -C bin neobio/gui/icons
 
 override_dh_clean:




More information about the debian-med-commit mailing list