Hello community, here is the log from the commit of package icedtea-web for openSUSE:Factory checked in at 2014-10-11 19:26:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/icedtea-web (Old) and /work/SRC/openSUSE:Factory/.icedtea-web.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "icedtea-web" Changes: -------- --- /work/SRC/openSUSE:Factory/icedtea-web/icedtea-web.changes 2014-09-24 13:10:19.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.icedtea-web.new/icedtea-web.changes 2014-10-11 19:27:29.000000000 +0200 @@ -1,0 +2,14 @@ +Thu Oct 9 18:54:04 UTC 2014 - [email protected] + +- Modify icedtea-web-suse-desktop-files.patch to add + X-GNOME-Sundry to list of categories for policyeditor.desktop + and itweb.desktop, so that both items are included in the + Sundry app-folder in GNOME. + +------------------------------------------------------------------- +Fri Oct 3 07:25:10 UTC 2014 - [email protected] + +- Add patch: icedtea-web-1.5.1-java9.patch + * Allow building against java9 + +------------------------------------------------------------------- java-1_7_0-openjdk-plugin.changes: same change java-1_8_0-openjdk-plugin.changes: same change New: ---- icedtea-web-1.5.1-java9.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ java-1_7_0-openjdk-plugin.spec ++++++ --- /var/tmp/diff_new_pack.Sknd9b/_old 2014-10-11 19:27:30.000000000 +0200 +++ /var/tmp/diff_new_pack.Sknd9b/_new 2014-10-11 19:27:30.000000000 +0200 @@ -33,13 +33,17 @@ Group: Development/Languages/Java Url: http://icedtea.classpath.org Source0: http://icedtea.classpath.org/download/source/icedtea-web-%{version}.tar.gz +Patch1: icedtea-web-1.5.1-java9.patch Patch1000: icedtea-web-suse-desktop-files.patch BuildRequires: %{java_name}-devel >= %{javaver} +BuildRequires: autoconf +BuildRequires: automake BuildRequires: fdupes BuildRequires: gcc-c++ # IcedTeaPlugin build requirements. BuildRequires: glib2-devel BuildRequires: libX11-devel +BuildRequires: libtool BuildRequires: pkgconfig >= 0.9.0 BuildRequires: procps BuildRequires: rhino @@ -75,9 +79,12 @@ %prep %setup -q -n icedtea-web-%{version} +%patch1 -p1 %patch1000 -p1 %build +libtoolize --force --copy --install +autoreconf -fi %configure \ --with-jdk-home=%{_jvmdir}/%{sdkdir} \ --with-jre-home=%{_jvmdir}/%{sdkdir}/jre \ java-1_8_0-openjdk-plugin.spec: same change ++++++ icedtea-web-1.5.1-java9.patch ++++++ --- icedtea-web-1.5.1/configure.ac 2014-08-14 12:15:46.950832174 +0200 +++ icedtea-web-1.5.1/configure.ac 2014-10-03 08:22:48.577781547 +0200 @@ -62,7 +62,6 @@ dnl IT570 - NetX depends on sun.applet.AppletViewPanel dnl IT571 - NetX depends on com.sun.net.ssl.internal.ssl.X509ExtendedTrustManager.java dnl IT573 - Plugin depends on sun.awt,X11.XEmbeddedFrame.java -dnl IT574 - Plugin depends on sun.misc.Ref dnl IT575 - Plugin depends on com.sun/jndi.toolkit.url.UrlUtil dnl IT576 - Plugin depends on sun.applet.AppletImageRef dnl IT578 - Remove need for patching AppletPanel for Plugin/Webstart @@ -81,7 +80,6 @@ IT_CHECK_FOR_CLASS(SUN_NET_WWW_PROTOCOL_JAR_URLJARFILE, [sun.net.www.protocol.jar.URLJarFile]) IT_CHECK_FOR_CLASS(SUN_NET_WWW_PROTOCOL_JAR_URLJARFILECALLBACK, [sun.net.www.protocol.jar.URLJarFileCallBack]) IT_CHECK_FOR_CLASS(SUN_AWT_X11_XEMBEDDEDFRAME, [sun.awt.X11.XEmbeddedFrame]) -IT_CHECK_FOR_CLASS(SUN_MISC_REF, [sun.misc.Ref]) IT_CHECK_FOR_CLASS(COM_SUN_JNDI_TOOLKIT_URL_URLUTIL, [com.sun.jndi.toolkit.url.UrlUtil]) IT_CHECK_FOR_CLASS(SUN_APPLET_APPLETIMAGEREF, [sun.applet.AppletImageRef]) IT_CHECK_FOR_SUN_APPLET_ACCESSIBILITY --- icedtea-web-1.5.1/netx/net/sourceforge/jnlp/util/ui/NonEditableTableModel.java 2014-08-14 12:15:46.874831477 +0200 +++ icedtea-web-1.5.1/netx/net/sourceforge/jnlp/util/ui/NonEditableTableModel.java 2014-10-03 08:44:41.162893355 +0200 @@ -94,7 +94,7 @@ * @param rowCount the number of rows the table holds * @see DefaultTableModel#DefaultTableModel(Vector,int) */ - public NonEditableTableModel(final Vector<?> columnNames, final int rowCount) { + public NonEditableTableModel(final Vector columnNames, final int rowCount) { super(columnNames, rowCount); } @@ -106,7 +106,7 @@ * @param columnNames {@code vector} containing the names of the new columns * @see DefaultTableModel#DefaultTableModel(Vector,Vector) */ - public NonEditableTableModel(final Vector<?> data, final Vector<?> columnNames) { + public NonEditableTableModel(final Vector data, final Vector columnNames) { super(data, columnNames); } --- icedtea-web-1.5.1/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java 2014-08-14 12:15:46.956832229 +0200 +++ icedtea-web-1.5.1/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java 2014-10-03 09:22:04.337605844 +0200 @@ -115,7 +115,6 @@ import sun.awt.AppContext; import sun.awt.SunToolkit; import sun.awt.X11.XEmbeddedFrame; -import sun.misc.Ref; import com.sun.jndi.toolkit.url.UrlUtil; import net.sourceforge.jnlp.runtime.JNLPRuntime; @@ -815,7 +814,7 @@ /** * Get an image ref. */ - private synchronized Ref getCachedImageRef(URL url) { + private synchronized AppletImageRef getCachedImageRef(URL url) { PluginDebug.debug("getCachedImageRef() searching for ", url); try { ++++++ icedtea-web-suse-desktop-files.patch ++++++ --- /var/tmp/diff_new_pack.Sknd9b/_old 2014-10-11 19:27:30.000000000 +0200 +++ /var/tmp/diff_new_pack.Sknd9b/_new 2014-10-11 19:27:30.000000000 +0200 @@ -1,7 +1,7 @@ -Index: icedtea-web-1.5/itweb-settings.desktop.in +Index: icedtea-web-1.5.1/itweb-settings.desktop.in =================================================================== ---- icedtea-web-1.5.orig/itweb-settings.desktop.in -+++ icedtea-web-1.5/itweb-settings.desktop.in +--- icedtea-web-1.5.1.orig/itweb-settings.desktop.in ++++ icedtea-web-1.5.1/itweb-settings.desktop.in @@ -1,5 +1,6 @@ [Desktop Entry] Name=IcedTea-Web Control Panel @@ -14,16 +14,16 @@ Terminal=false Type=Application -Categories=Settings; -+Categories=System;DesktopSettings;X-GNOME-SystemSettings; ++Categories=System;DesktopSettings;X-GNOME-SystemSettings;X-GNOME-Sundry; Keywords=IcedTea;IcedTea-Web;java;javaws;web;start;webstart;jnlp; -Index: icedtea-web-1.5/policyeditor.desktop.in +Index: icedtea-web-1.5.1/policyeditor.desktop.in =================================================================== ---- icedtea-web-1.5.orig/policyeditor.desktop.in -+++ icedtea-web-1.5/policyeditor.desktop.in +--- icedtea-web-1.5.1.orig/policyeditor.desktop.in ++++ icedtea-web-1.5.1/policyeditor.desktop.in @@ -5,5 +5,5 @@ Exec=PATH_TO_POLICYEDITOR Icon=javaws Terminal=false Type=Application -Categories=Settings; -+Categories=System;DesktopSettings;X-GNOME-SystemSettings; ++Categories=System;DesktopSettings;X-GNOME-SystemSettings;X-GNOME-Sundry; Keywords=IcedTea;IcedTea-Web;java;javaws;web;start;webstart;jnlp; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
