diff -Nru jd-gui-1.4.0/debian/changelog jd-gui-1.4.1/debian/changelog --- jd-gui-1.4.0/debian/changelog 2017-07-06 15:18:54.000000000 +0000 +++ jd-gui-1.4.1/debian/changelog 2019-03-30 18:41:20.000000000 +0000 @@ -1,3 +1,9 @@ +jd-gui (1.4.1-0backbox1) xenial; urgency=high + + * New upstream version + + -- Raffaele Forte Sat, 30 Mar 2019 19:30:00 +0100 + jd-gui (1.4.0-0backbox1) xenial; urgency=high * Initial release diff -Nru jd-gui-1.4.0/debian/control jd-gui-1.4.1/debian/control --- jd-gui-1.4.0/debian/control 2015-10-05 13:17:53.000000000 +0000 +++ jd-gui-1.4.1/debian/control 2019-03-30 18:31:36.000000000 +0000 @@ -4,7 +4,7 @@ Maintainer: Raffaele Forte Build-Depends: debhelper (>= 9) Standards-Version: 3.9.6 -Homepage: http://jd.benow.ca/ +Homepage: http://java-decompiler.github.io/ Package: jd-gui Architecture: all diff -Nru jd-gui-1.4.0/debian/copyright jd-gui-1.4.1/debian/copyright --- jd-gui-1.4.0/debian/copyright 2015-03-28 11:10:17.000000000 +0000 +++ jd-gui-1.4.1/debian/copyright 2019-03-30 18:35:20.000000000 +0000 @@ -1,13 +1,13 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: jd-gui -Source: https://github.com/java-decompiler/jd-gui/raw/master/dist/jd-gui-1.0.0-RC2.jar +Source: https://github.com/java-decompiler/jd-gui Files: * -Copyright: 2011-2015 Emmanuel Dupuy +Copyright: 2008-2019 Emmanuel Dupuy License: GPL-3.0+ Files: debian/* -Copyright: 2013-2015 Raffaele Forte +Copyright: 2013-2019 Raffaele Forte License: GPL-3.0+ License: GPL-3.0+ diff -Nru jd-gui-1.4.0/debian/helper-script/jd-gui.sh jd-gui-1.4.1/debian/helper-script/jd-gui.sh --- jd-gui-1.4.0/debian/helper-script/jd-gui.sh 2015-10-05 13:16:25.000000000 +0000 +++ jd-gui-1.4.1/debian/helper-script/jd-gui.sh 2019-03-30 18:44:52.000000000 +0000 @@ -1,81 +1,3 @@ #!/usr/bin/env bash -# Extract and check the Java version -JAVA_OUTPUT=$(java -version 2>&1) - -# Catch warning: Unable to find a $JAVA_HOME at "/usr", continuing with system-provided Java -if [ "`echo ${JAVA_OUTPUT} | grep "continuing with system-provided Java"`" ] ; then - echo "WARNING, \$JAVA_HOME could be set incorrectly, Java's error is:" - echo " " $JAVA_OUTPUT - echo "Unsetting JAVA_HOME and continuing with JD-GUI start-up" - unset JAVA_HOME - JAVA_OUTPUT=$(java -version 2>&1) -fi - -JAVA_VERSION=$(echo ${JAVA_OUTPUT} | awk -F\" 'NR == 1 { print $2 }') - -JAVA_MAJOR_VERSION=${JAVA_VERSION%%.*} -JAVA_MINOR_VERSION=$(echo $JAVA_VERSION | awk -F\. '{ print $2 }') - -if [ $JAVA_MAJOR_VERSION -ge 1 ] && [ $JAVA_MINOR_VERSION -ge 7 ]; then - echo "Found Java version $JAVA_VERSION" -else - echo "Exiting: JD-GUI requires a minimum of Java 7 to run, found $JAVA_VERSION" - exit 1 -fi - -#Dereference from link to the real directory -SCRIPTNAME="$0" - -#While name of this script is symbolic link -while [ -L "${SCRIPTNAME}" ] ; do - cd "`dirname "${SCRIPTNAME}"`" > /dev/null - SCRIPTNAME="$(readlink "`basename "${SCRIPTNAME}"`")" -done -cd "`dirname "${SCRIPTNAME}"`" > /dev/null - -#Base directory where JD-GUI is installed -BASEDIR="`pwd -P`" - -#Switch to the directory where JD-GUI is installed -cd "$BASEDIR" - -#Get Operating System -OS=$(uname -s) - -#Work out best memory options -if [ "$OS" = "Linux" ]; then - MEM=$(expr $(sed -n 's/MemTotal:[ ]\{1,\}\([0-9]\{1,\}\) kB/\1/p' /proc/meminfo) / 1024) -elif [ "$OS" = "Darwin" ]; then - MEM=$(system_profiler SPMemoryDataType | sed -n -e 's/.*Size: \([0-9]\{1,\}\) GB/\1/p' | awk '{s+=$0} END {print s*1024}') -fi - -if [ -z $MEM ] -then - echo "Failed to obtain current memory, using jmv default memory settings" -else - echo "Available memory: " $MEM "MB" - if [ $MEM -gt 1500 ] - then - JMEM="-Xmx512m" - else - if [ $MEM -gt 900 ] - then - JMEM="-Xmx256m" - else - if [ $MEM -gt 512 ] - then - JMEM="-Xmx128m" - fi - fi - fi -fi - -if [ -n "$JMEM" ] -then - echo "Setting jvm heap size: $JMEM" -fi - -#Start JD-GUI - -exec java ${JMEM} -XX:PermSize=256M -jar "${BASEDIR}/jd-gui-1.4.0.jar" "$@" +java -jar /usr/share/jd-gui/jd-gui-1.4.1.jar $1 diff -Nru jd-gui-1.4.0/debian/install jd-gui-1.4.1/debian/install --- jd-gui-1.4.0/debian/install 2015-10-05 13:17:53.000000000 +0000 +++ jd-gui-1.4.1/debian/install 2019-03-30 18:35:33.000000000 +0000 @@ -1,4 +1,4 @@ -jd-gui-1.4.0.jar usr/share/jd-gui +jd-gui-1.4.1.jar usr/share/jd-gui debian/helper-script/jd-gui.sh usr/share/jd-gui diff -Nru jd-gui-1.4.0/debian/source/format jd-gui-1.4.1/debian/source/format --- jd-gui-1.4.0/debian/source/format 2013-01-21 21:51:22.000000000 +0000 +++ jd-gui-1.4.1/debian/source/format 2019-03-30 18:49:14.000000000 +0000 @@ -1 +1 @@ -3.0 (quilt) +3.0 (native) \ No newline at end of file diff -Nru jd-gui-1.4.0/debian/source/include-binaries jd-gui-1.4.1/debian/source/include-binaries --- jd-gui-1.4.0/debian/source/include-binaries 2013-01-21 23:41:42.000000000 +0000 +++ jd-gui-1.4.1/debian/source/include-binaries 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -debian/pixmaps/zap-icon.png Binary files /tmp/tmpRnpvZk/RJVg24A7Og/jd-gui-1.4.0/jd-gui-1.4.0.jar and /tmp/tmpRnpvZk/1f_JQE_o47/jd-gui-1.4.1/jd-gui-1.4.0.jar differ Binary files /tmp/tmpRnpvZk/RJVg24A7Og/jd-gui-1.4.0/jd-gui-1.4.1.jar and /tmp/tmpRnpvZk/1f_JQE_o47/jd-gui-1.4.1/jd-gui-1.4.1.jar differ diff -Nru jd-gui-1.4.0/.pc/.quilt_patches jd-gui-1.4.1/.pc/.quilt_patches --- jd-gui-1.4.0/.pc/.quilt_patches 1970-01-01 00:00:00.000000000 +0000 +++ jd-gui-1.4.1/.pc/.quilt_patches 2019-03-30 18:14:27.000000000 +0000 @@ -0,0 +1 @@ +debian/patches diff -Nru jd-gui-1.4.0/.pc/.quilt_series jd-gui-1.4.1/.pc/.quilt_series --- jd-gui-1.4.0/.pc/.quilt_series 1970-01-01 00:00:00.000000000 +0000 +++ jd-gui-1.4.1/.pc/.quilt_series 2019-03-30 18:14:27.000000000 +0000 @@ -0,0 +1 @@ +series diff -Nru jd-gui-1.4.0/.pc/.version jd-gui-1.4.1/.pc/.version --- jd-gui-1.4.0/.pc/.version 1970-01-01 00:00:00.000000000 +0000 +++ jd-gui-1.4.1/.pc/.version 2019-03-30 18:14:27.000000000 +0000 @@ -0,0 +1 @@ +2