Skip to content
Commits on Source (6)
icedtea-web (1.7.2-2) unstable; urgency=medium
* Team upload.
* Fixed the installation of the CLI tools alternatives (Closes: #924706)
* Improved the package description (Closes: #706306)
-- Emmanuel Bourg <ebourg@apache.org> Mon, 18 Mar 2019 00:57:12 +0100
icedtea-web (1.7.2-1) unstable; urgency=medium
* Team upload.
......@@ -7,7 +15,7 @@ icedtea-web (1.7.2-1) unstable; urgency=medium
* Added the missing dependency on a Java runtime (Closes: #912464)
* icedtea-netx now provides icedtea-netx-common (Closes: #911995)
* Enabled the enhanced XML parser based on Tagsoup
* Enabled Proxy Auto Config support with Rhino
* Enabled Proxy Auto Config support with Rhino (Closes: #673415)
-- Emmanuel Bourg <ebourg@apache.org> Fri, 15 Mar 2019 23:44:27 +0100
......@@ -27,12 +35,12 @@ icedtea-web (1.7.1-1) unstable; urgency=medium
[ Emmanuel Bourg ]
* No longer integrate icedtea-web with a specific JDK
(Closes: #743922, #642901, #712292)
* Merged icedtea-netx-common into icedtea-netx (Closes: #798946)
* Merged icedtea-netx-common into icedtea-netx (Closes: #798946, #675082)
* Package transferred to the Java Team.
* Removed Damien Raude-Morvan from the uploaders (Closes: #889448)
* Fixed the detection of Java 10+ in the configure script
* No longer generate debian/control from template files
* Updated the .desktop files
* Updated the .desktop files (Closes: #889553)
* Build with the DH sequencer
* Use Breaks/Replaces instead of Conflicts/Replaces in debian/control
* Standards-Version updated to 4.2.1
......
......@@ -28,11 +28,13 @@ Replaces:
openjdk-6-jre (<< 6b18-1.8.7-3),
openjdk-6-jre-headless (<< 6b18-1.8.7-3)
Provides: icedtea-netx-common
Description: NetX - implementation of the Java Network Launching Protocol (JNLP)
Description: Implementation of the Java Network Launching Protocol (JNLP)
NetX provides a drop-in replacement for javaws (Java Web Start). Since
upstream NetX is dormant, IcedTea is hosting and modifying the sources
in the IcedTea-Web directory.
upstream NetX is dead, the IcedTea Web project is hosting a fork of the
original code. However, as icedtea-web has evolved to complex set of tools,
extensions and tests, it has now only a few lines of code shared with the
original implementation.
.
IcedTea's NetX currently supports verification of signed jars, trusted
certificate storing, system certificate store checking, and provides
the services specified by the jnlp API.
the services specified by the JNLP API.
......@@ -21,14 +21,14 @@ configure)
fi
if [ "$update_alternatives" = y ]; then
if [ -f $basedir/bin/javaws ]; then
if [ -f $basedir/bin/javaws.sh ]; then
for tool in $tools; do
unset slave1 || true
if [ -e $basedir/man/man1/$tool.1.gz ]; then
slave1="--slave /usr/share/man/man1/$tool.1.gz $tool.1.gz $basedir/man/man1/$tool.1.gz"
fi
update-alternatives --install /usr/bin/$tool $tool $basedir/bin/$tool $priority $slave1
update-alternatives --set $tool $basedir/bin/$tool
update-alternatives --install /usr/bin/$tool $tool $basedir/bin/$tool.sh $priority $slave1
update-alternatives --set $tool $basedir/bin/$tool.sh
done
fi
fi # update_alternatives
......
......@@ -6,7 +6,7 @@ tools='javaws itweb-settings policyeditor'
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
for tool in $tools; do
update-alternatives --remove $tool /usr/share/icedtea-web/bin/$tool
update-alternatives --remove $tool /usr/share/icedtea-web/bin/$tool.sh
done
fi
......