commit java-12-openjdk for openSUSE:Factory

2019-10-08 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2019-10-08 20:00:03

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new.2352 (New)


Package is "java-12-openjdk"

Tue Oct  8 20:00:03 2019 rev:10 rq:736264 version:12.0.2.0

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2019-09-05 12:47:13.271470140 +0200
+++ 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.2352/java-12-openjdk.changes
2019-10-08 20:00:08.283806393 +0200
@@ -1,0 +2,6 @@
+Tue Oct  8 15:29:36 UTC 2019 - Fridrich Strba 
+
+- Do not fail installation when the manpages are not present
+  (bsc#1115375)
+
+---



Other differences:
--
++ java-12-openjdk.spec ++
--- /var/tmp/diff_new_pack.a0HHR6/_old  2019-10-08 20:00:13.727792219 +0200
+++ /var/tmp/diff_new_pack.a0HHR6/_new  2019-10-08 20:00:13.731792208 +0200
@@ -1133,14 +1133,26 @@
 fi
 
 %post javadoc
-update-alternatives \
+# in some settings, the %{_javadocdir}/%{sdklnk}/api does not exist
+# and the update-alternatives call ends up in error. So, filter this
+# cases out.
+if [ -d %{_javadocdir}/%{sdklnk}/api ]
+then
+  update-alternatives \
   --install %{_javadocdir}/java javadocdir %{_javadocdir}/%{sdklnk}/api \
   %{priority}
+fi
 
 %postun javadoc
 if [ $1 -eq 0 ]
 then
+# in some settings, the %{_javadocdir}/%{sdklnk}/api does not exist
+# and the update-alternatives call ends up in error. So, filter this
+# cases out.
+  if [ -d %{_javadocdir}/%{sdklnk}/api ]
+  then
   update-alternatives --remove javadocdir %{_javadocdir}/%{sdklnk}/api
+  fi
 fi
 
 %files




commit java-12-openjdk for openSUSE:Factory

2019-09-05 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2019-09-05 12:47:05

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new.7948 (New)


Package is "java-12-openjdk"

Thu Sep  5 12:47:05 2019 rev:9 rq:728444 version:12.0.2.0

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2019-04-18 09:56:26.961342227 +0200
+++ 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.7948/java-12-openjdk.changes
2019-09-05 12:47:13.271470140 +0200
@@ -1,0 +2,130 @@
+Thu Aug 29 07:27:04 UTC 2019 - Fridrich Strba 
+
+- Upgrade to jdk-12.0.2+10 (Oracle July 2019 CPU)
+  * Security fixes:
++ S8212328, CVE-2019-2762, bsc#1141782: Exceptional throw cases
++ S8213431, CVE-2019-2766, bsc#1141789: Improve file protocol
+  handling
++ S8213432, CVE-2019-2769, bsc#1141783: Better copies of
+  CopiesList
++ S8216381, CVE-2019-2786, bsc#1141787: More limited privilege
+  usage
++ S8217563: Improve realm maintenance
++ S8218863: Better endpoint checks
++ S8218873: Improve JSSE endpoint checking
++ S8218876, CVE-2019-7317, bsc#1141780: Improve PNG support
+  options
++ S8219775: Certificate validation improvements
++ S8220517: Enhanced GIF support
++ S8221345, CVE-2019-2818, bsc#1141788: Better Poly1305 support
++ S8221518, CVE-2019-2816, bsc#1141785: Normalize normalization
++ S8222678, CVE-2019-2821, bsc#1141781: Improve TLS negotiation
+  * Fixes:
++ S8170494: JNI exception pending in PlainDatagramSocketImpl.c
++ S8188133: C2: Static field accesses in clinit can trigger
+  deoptimizations
++ S8203627: Swing applications with JRadioButton and JCheckbox
+  fail to render correctly when using GTK3 and the GTK L&F
++ S8205432: Replace the placeholder Japanese era name
++ S8209901: Canonical file handling
++ S8210782: Upgrade HarfBuzz to the latest 2.3.1
++ S8211936: Better String parsing
++ S8214235: arm32: assertion in collectedHeap.cpp: attempt to
+  clean empty remainder
++ S8215367: Better Collection of References
++ S8215472: (zipfs) Cleanups in implementation classes of
+  jdk.zipfs and tests
++ S8215982: (tz) Upgrade time-zone data to tzdata2018i
++ S8217647: JFR: recordings on 32-bit systems unreadable
++ S8217737: Change the milestone to ea for jdk-12.0.2+1 build
++ S8217737: Change the release version from 12.0.1 to 12.0.2
++ S8217879: hs_err should print more instructions in hex dump
++ S8218152: [javac] fails and exits with no error if a bad
+  annotation processor provided
++ S8218453: More dynamic RMI interactions
++ S8218469: JSlider display issue with slider for GTKLookAndFeel
++ S8218470: JScrollBar display issue with GTKLookAndFeel
++ S8218472: JProgressBar display issue with GTKLookAndFeel
++ S8218473: JOptionPane display issue with GTKLookAndFeel
++ S8218479: JTextPane display issue with GTKLookAndFeel
++ S8218781: Localized names for Japanese era Reiwa in COMPAT
+  provider
++ S8219448: split-if update_uses accesses stale idom data
++ S8220166: Performance regression in deserialization (4-6% in
+  SPECjbb)
++ S8220495: Update GIFlib library to the 5.1.8
++ S8220625: tools/javac/classreader/8171132/BadConstantValue.java
+  failed with "did not see expected error"
++ S8221437: assert(java_lang_invoke_ResolvedMethodName::vmtarget(
+  resolved_method()) == m()) failed: Should not change after
+  link resolution
++ S8221530: Caller sensitive methods not handling caller = null
+  when invoked by JNI code with no java frames on stack
++ S8221639: [i386] expand_exec_shield_cs_limit workaround is
+  undefined code after JDK-8199717
++ S8221880: Better customization for Windows RC properties
+  FileDescription and ProductName
++ S8221924: get(null) on single-entry unmodifiable Map returns
+  null instead of throwing NPE
++ S8222027: java/util/logging/LogManager/TestLoggerNames.java
+  generates intermittent ClassCastException
++ S8222078: test/jdk/java/lang/reflect/exeCallerAccessTest/
+  /exeCallerAccessTest.c build fails after 8221530
++ S8222082: Build of test/jdk/java/lang/reflect/
+  /exeCallerAccessTest/exeCallerAccessTest.c still failing on
+  Windows
++ S8222086: CodeCache::UnloadingScope needs to preserve and
+  restore previous IsUnloadingBehavior
++ S8222111: exeCallerAccessTest.c fails to build: control
+  reaches end of non-void function
++ S8222136: Remove two Comodo root CA certificates that are
+  expiring
++ S8222137: Remove T-Systems root CA certificate
++ S862: change milestone to fcs for j

commit java-12-openjdk for openSUSE:Factory

2019-04-18 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2019-04-18 09:56:23

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new.17052 (New)


Package is "java-12-openjdk"

Thu Apr 18 09:56:23 2019 rev:8 rq:695086 version:12.0.1.0

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2019-03-26 15:45:55.188067526 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.17052/java-12-openjdk.changes   
2019-04-18 09:56:26.961342227 +0200
@@ -1,0 +2,232 @@
+Wed Apr 17 09:21:02 UTC 2019 - Fridrich Strba 
+
+- Upgrade to jdk-12.0.1+12 (Oracle April 2019 CPU)
+  * Security fixes
++ S8211936, CVE-2019-2602, bsc#1132728: Better String parsing
++ S8214809: CDS storage improvements
++ S8218453, CVE-2019-2684, bsc#1132732: More dynamic RMI
+  interactions
+  * Other changes
++ S8079353: [TESTBUG]
+  runtime/CompressedOops/UseCompressedOops.java failed on
+  Windows when getting disjoint instead of zero based coops
++ S8172695: (scanner) java/util/Scanner/ScanTest.java fails
++ S8190361: Incorrect version info in jaccessinspector.exe and
+  jaccesswalker.exe
++ S8200109: NMT: diff_malloc_site assert(early->flags() ==
+  current->flags(), "Must be the same memory type")
++ S8200286: (testbug) MOptionTest test fails with
+  java.lang.AssertionError: Classfiles too old!
++ S8201633: Problems with AES-GCM native acceleration
++ S8203232: Shenandoah: Resolve oops in SATB filter
++ S8203627: Swing applications with JRadioButton and JCheckbox
+  fail to render correctly when using GTK3 and the GTK L&F
++ S8205432: Replace the placeholder Japanese era name
++ S8206107: [x86_32] jck tests for ldc2_w bytecode fail
++ S8210457: JVM crash in
+  ResolvedMethodTable::add_method(Handle)
++ S8211100: hotspot C1 issue with comparing long numbers on
+  x86 32-bit
++ S8211267: StackOverflowError happened by
+  TextField.setFont(...)
++ S8214109: XToolkit is not correctly displayed color on
+  16-bit high color setting
++ S8214111: There is no icon in all JOptionPane target image
++ S8214112: The whole text in target JPasswordField image are
+  not selected
++ S8214122: JDWP is broken on 32 bit Windows: transport
+  library missing onLoad entry
++ S8214252: Expanded & Collapsed nodes of a JTree look the
+  same on GTK3
++ S8214253: Tooltip is transparent rather than having a black
+  background
++ S8215047: Task terminators do not complete termination in
+  consistent state
++ S8215296: do not disable c99 on Solaris
++ S8215299: Remove G1CMTask::should_exit_termination()'s
+  undesirable side-effect
++ S8215330: javax.xml.catalog.CatalogResolverImpl:
+  GroupEntry.matchURI fails to match
++ S8215398: -Xlog option usage => Invalid decorator
+  '\temp\app_cds.log'.
++ S8215549: Shenandoah deduplication cleans up table/queue
+  twice
++ S8215727: Restore JFR thread sampler loop to old / previous
+  behavior
++ S8215790: Delegated task created by SSLEngine throws
+  java.nio.BufferUnderflowException
++ S8215962: Support ThreadPriorityPolicy mode 1 for non-root
+  users on linux/bsd
++ S8216049: stringTable::intern creates redundant String when
+  looking up existing one
++ S8216144: RE changes for new forked repos for JDK 12.0.1
++ S8216302: StackTraceElement::fill_in can use cached
+  Class.name
++ S8216308: StackTraceElement::fill_in can use injected Class
+  source-file
++ S8216486: Possibility of integer overflow in
+  JfrThreadSampler::run()
++ S8216493: VirtualSpaceNodeTest
+  .half_vsn_is_committed_humongous_chunk_is_used_test_vm
+  crashes on local machine
++ S8216559: [JFR] Native libraries not correctly parsed from
+  /proc/self/maps
++ S8216577: Add GlobalSign's R6 Root certificate
++ S8216578: Remove unused/obsolete method in JFR code
++ S8216970: condy causes JVM crash
++ S8216973: Kick up cleanup phases in the right places
++ S8217014: Epsilon should not ignore Metadata GC causes
++ S8217016: Shenandoah: Streamline generation of CAS barriers
++ S8217094: HttpClient SSL race if a socket IOException is
+  raised before ALPN is available
++ S8217213: shenandoahTaskQueue.hpp includes .inline.hpp file
++ S8217263: Automate DashOffset test
++ S8217311: Improve Exception thrown when
+  MulticastSocket.setInterface fails on AIX(Unix)
++ S8217315: Proper units should print more significant digits
++ S8217319: Cleanup Shenandoah includes
++ S8217321: [TESTBUG] utilities/test_globalDefinitions.cpp
+  sho

commit java-12-openjdk for openSUSE:Factory

2019-03-26 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2019-03-26 15:45:46

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new.25356 (New)


Package is "java-12-openjdk"

Tue Mar 26 15:45:46 2019 rev:7 rq:688634 version:12.0.0.0

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2019-03-05 12:21:02.584919724 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.25356/java-12-openjdk.changes   
2019-03-26 15:45:55.188067526 +0100
@@ -1,0 +2,5 @@
+Tue Mar 26 06:18:51 UTC 2019 - Fridrich Strba 
+
+- jdk-12+33 is official OpenJDK 12
+
+---



Other differences:
--
++ java-12-openjdk.spec ++
--- /var/tmp/diff_new_pack.UCYLW5/_old  2019-03-26 15:45:57.916066144 +0100
+++ /var/tmp/diff_new_pack.UCYLW5/_new  2019-03-26 15:45:57.920066142 +0100
@@ -36,8 +36,8 @@
 %global patchver0
 %global datever 2019-03-19
 %global buildver33
-%global hg_project  jdk
-%global hg_repository   jdk12
+%global hg_project  jdk-updates
+%global hg_repository   jdk12u
 %global hg_revision b67884871b5f
 %global icedtea_sound_version 1.0.1
 %global java_atk_wrapper_version 0.33.2
@@ -145,7 +145,7 @@
 %global tapsetdir %{tapsetroot}/tapset/%{_build_cpu}
 %endif
 Name:   java-%{featurever}-openjdk
-Version:
%{featurever}.%{interimver}.%{updatever}.%{patchver}~%{buildver}
+Version:%{featurever}.%{interimver}.%{updatever}.%{patchver}
 Release:0
 Summary:OpenJDK %{featurever} Runtime Environment
 License:Apache-1.1 AND Apache-2.0 AND GPL-1.0-or-later AND 
GPL-2.0-only AND GPL-2.0-only WITH Classpath-exception-2.0 AND LGPL-2.0-only 
AND MPL-1.0 AND MPL-1.1 AND SUSE-Public-Domain AND W3C
@@ -576,9 +576,7 @@
 --with-version-patch=%{patchver} \
 --with-version-date=%{datever} \
 --with-version-build=%{buildver} \
-%if 0
 --with-version-pre="" \
-%endif
 --with-version-opt="suse-%{release}-%{_arch}" \
 --disable-warnings-as-errors \
 %if %{with zero}

++ b67884871b5f.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-12-openjdk/b67884871b5f.tar.bz2 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.25356/b67884871b5f.tar.bz2 
differ: char 11, line 1




commit java-12-openjdk for openSUSE:Factory

2019-03-05 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2019-03-05 12:20:54

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new.28833 (New)


Package is "java-12-openjdk"

Tue Mar  5 12:20:54 2019 rev:6 rq:681243 version:12.0.0.0~33

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2019-02-28 21:43:13.553529648 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.28833/java-12-openjdk.changes   
2019-03-05 12:21:02.584919724 +0100
@@ -1,0 +2,18 @@
+Mon Mar  4 06:34:24 UTC 2019 - Fridrich Strba 
+
+- Upgrade to upstream tag jdk-12+33
+  * Fixes
++ S8219151: Illegal instruction exception on JDK 12 due to
+ incorrect CPU feature bits
+
+---
+Mon Mar  4 06:29:47 UTC 2019 - Fridrich Strba 
+
+- Upgrade to upstream tag jdk-12+32
+  * Fixes:
++ S8218411: JDK 12 L10n resource file update msg drop 20
++ S8218546: Unable to connect to https://google.com using
+  java.net.HttpClient
++ S8218662: Allow 204 responses with Content-Length:0
+
+---

Old:

  b5f7bb57de2f.tar.bz2

New:

  b67884871b5f.tar.bz2



Other differences:
--
++ java-12-openjdk.spec ++
--- /var/tmp/diff_new_pack.YgNz6I/_old  2019-03-05 12:21:05.376918873 +0100
+++ /var/tmp/diff_new_pack.YgNz6I/_new  2019-03-05 12:21:05.380918872 +0100
@@ -35,10 +35,10 @@
 %global updatever   0
 %global patchver0
 %global datever 2019-03-19
-%global buildver31
+%global buildver33
 %global hg_project  jdk
 %global hg_repository   jdk12
-%global hg_revision b5f7bb57de2f
+%global hg_revision b67884871b5f
 %global icedtea_sound_version 1.0.1
 %global java_atk_wrapper_version 0.33.2
 # JavaEE modules

++ b5f7bb57de2f.tar.bz2 -> b67884871b5f.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-12-openjdk/b5f7bb57de2f.tar.bz2 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.28833/b67884871b5f.tar.bz2 
differ: char 11, line 1




commit java-12-openjdk for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2019-02-28 21:43:10

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new.28833 (New)


Package is "java-12-openjdk"

Thu Feb 28 21:43:10 2019 rev:5 rq:679453 version:12.0.0.0~31

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2019-01-21 10:50:34.82912 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.28833/java-12-openjdk.changes   
2019-02-28 21:43:13.553529648 +0100
@@ -1,0 +2,368 @@
+Thu Feb  7 10:23:20 UTC 2019 - Fridrich Strba 
+
+- Upgrade to upsteam tag jdk-12+31
+  * Fixes:
++ S8178798: Two compiler/aot/verification/vmflags tests fail by
+  timeout with UseAVX=3
++ S8214935: Upgrade IANA LSR data
++ S8216541: CompiledICHolders of VM locked unloaded nmethods
+  are released too late
++ S8216546: Support new Japanese era in java.lang.Character for
+  Java SE 11
++ S8217352: Remove EA from version string starting with Initial
+  RC promotion
++ S8217892: Clarify the support for the new Japanese era in
+  java.time.chrono.JapaneseEra
++ S8218020: Fix version number in mesa.md 3rd party legal file
++ S8218025: disable pop_frame and force_early_return caps for
+  Graal
++ S8218079: cleanup hotspot ProblemList files
++ S8218134: Modify the jQuery.md file to reflect the exact
+  jQuery license content
++ S8218162: problem list
+  j/u/s/t/o/o/t/java/util/stream/StreamLinkTest.java on solaris
+  w/ Xcomp
++ S8218168: clean up hotspot ProblemList
++ S8218178: vmTestbase/vm/mlvm/mixed/stress/regression/
+  /b6969574/INDIFY_Test.java fails with -Xcomp
++ S8218197: [failurehandler] parent processes shouldn't be
+  killed till their children are handle
+
+---
+Thu Jan 31 11:39:31 UTC 2019 - Fridrich Strba 
+
+- Upgrade to upstream tag jdk-12+30
+  * Fixes:
++ S8067250: [mlvm] vm/mlvm/mixed/stress/regression/b6969574
+  fails and perf regression
++ S8150757: [TESTBUG] compiler/ciReplay/TestVM.sh and
+  compiler/ciReplay/TestVM_no_comp_level.sh fail when no
+  compilations are happening
++ S8158646: [jittester] generated tests may not compile by javac
++ S8167276: jvmci/compilerToVM/MaterializeVirtualObjectTest.java
+  fails with -XX:-EliminateAllocations
++ S8207922: ctw of jdk.security.auth failed with "Unexpected
+  zero exit codebefore finishing all compilations"
++ S8213231: ThreadSnapshot::_threadObj can become stale
++ S8213825: assert(false) failed: Non-balanced monitor
+  enter/exit! Likely JNI locking
++ S8215921: There is no change when select different Foreground
+  and Background by mouse.
++ S8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java
+  crashed with AOT enabled
++ S8217309: ZGC: Fix ZNMethodTable corruption
++ S8217579: TLS_EMPTY_RENEGOTIATION_INFO_SCSV is disabled after
+  8211883
++ S8217580: Remove tests from problemList as bugs has been
+  closed
++ S8217657: Move the test for default value of
+  jdk.includeInExceptions into own test
++ S8217666: gc/nvdimm/* should not be included any tiers
++ S8217678: [AOT] jck Math/IncrementExact and
+  Math/DecrementExact tests fail when test classes are AOTed
++ S8217699: add java/util/concurrent/CountDownLatch/Basic.java
+  to ProblemList-Xcomp
++ S8217717: ZGC: Broken oop map in C1 load barrier stub
++ S8217770: problem list
+  org.graalvm.compiler.debug.test.DebugContextTest
++ S8217797: ProblemList LongMulOverflowTest.java
++ S8217828: Un-ProblemList LongMulOverflowTest.java
++ S8217852: problem-list ctw of jdk.jconsole and java.desktop
+  on windows
++ S8217854: [TESTBUG] runtime/CompressedOops/
+  /UseCompressedOops.java fails with Shenandoah
+
+---
+Tue Jan 29 08:12:22 UTC 2019 - Fridrich Strba 
+
+- Upgrade to upstream tag jdk-12+29
+  * Fixes:
++ S8203687: javax/net/ssl/compatibility/Compatibility.java
+  supports TLS 1.3
++ S8207404: MulticastSocket tests failing on AIX
++ S8213695: gc/TestAllocateHeapAtMultiple.java is slow in some
+  configs
++ S8215375: [Graal] jck:vm/jvmti/Exception/excp001/excp00101
+  fails in Graal as JIT mode and -Xcomp mode
++ S8216045: The size of key_exchange may be wrong on FFDHE
++ S8216280: Allow later Symantec Policy distrust date for two
+  Apple SubCAs
++ S8216532: tools/launcher/Test7029048.java fails (Solaris)
++ S8216965: crash in freetypeScaler.c CopyBW2Grey8
++ S8217230: assert(t == t_no_spec

commit java-12-openjdk for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2019-01-21 10:50:01

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new.28833 (New)


Package is "java-12-openjdk"

Mon Jan 21 10:50:01 2019 rev:4 rq:664418 version:12.0.0.0~26

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2018-11-10 16:59:03.515776985 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-12-openjdk.new.28833/java-12-openjdk.changes   
2019-01-21 10:50:34.82912 +0100
@@ -1,0 +2,1534 @@
+Thu Jan 10 12:22:24 UTC 2019 - Fridrich Strba 
+
+- Added patch:
+  * loadAssistiveTechnologies.patch
++ Do not crash the whole JVM if assistive technologies crash
+
+---
+Thu Jan 10 12:13:56 UTC 2019 - Fridrich Strba 
+
+- Do not resolve by default the added JavaEE modules (fixes
+  bsc#1120431)
+
+---
+Wed Jan  9 15:06:27 UTC 2019 - Fridrich Strba 
+
+- Upgrade to upstream tag jdk-12+26
+  * Fixes:
++ S8066619: Fix deprecation warnings in java.util.jar
++ S8198526: getAnnotatedOwnerType does not handle static nested
+  classes correctly
++ S8202286: Allocation of old generation of Java heap on
+  alternate memory devices
++ S8205505: Expire and remove remaining support for commercial
+  features
++ S8206107: [x86_32] jck tests for ldc2_w bytecode fail
++ S8208184: IllegalArgumentException while invoking code
+  completion on netbeans IDE
++ S8211343: nsk_jvmti_parseoptions should handle multiple
+  suboptions
++ S8211424: Allocation of old generation of java heap on
+  alternate memory devices - Parallel GC
++ S8211425: Allocation of old generation of java heap on
+  alternate memory devices - G1 GC
++ S8213481: [REDO] Fix incorrect copy constructors in hotspot
++ S8214096: sun.security.util.SignatureUtil passes null
+  parameter, so JCE validation fails
++ S8214097: Rework thread initialization and teardown logic
++ S8214180: Need better granularity for sleeping
++ S8214201: Make PtrQueueSet completed buffer list private
++ S8214532: Update RFC 2459 references in javadoc to RFC 5280
++ S8214567: Use {@systemProperty} for definitions of system
+  properties
++ S8214569: Use {@systemProperty} for definitions of system
+  properties
++ S8214570: Use {@systemProperty} for definitions of system
+  properties
++ S8214687: Optimize Collections.nCopies().hashCode() and
+  equals()
++ S8215100: AArch64: fix compareTo intrinsic with
+  four-character Latin/Unicode
++ S8215202: AArch64: jtreg test
+  test/jdk/sun/nio/cs/FindEncoderBugs.java fails
++ S8215291: Broken links when generating from project without
+  modules
++ S8215296: do not disable c99 on Solaris
++ S8215322: add @file support to jaotc
++ S8215364: JavaFX crashes on Ubuntu 18.04 with Wayland while
+  using Swing-FX interop
++ S8215425: vmTestbase/nsk/jvmti/PopFrame should provide more
+  detailed output
++ S8215445: Enable building for Windows in WSL
++ S8215487: ZGC: ZRuntimeWorkers incorrectly identify
+  themselves as ZWorkers
++ S8215491: ICStubInterface::finalize finds zombie nmethod with
+  ZGC concurrent class unloading
++ S8215492: Rename INTERNAL_EMPTY to something less "internal"
++ S8215500: ICRefillVerifierMark does not set the provided
+  verfier as current
++ S8215516: Move JavadocTester to a named package
++ S8215547: ZGC: Fix incorrect match rule for
+  loadBarrierWeakSlowRegNoVec
++ S8215548: G1PeriodicGCSystemLoadThreshold needs to be a double
++ S8215551: Missing case label in nmethod::reloc_string_for()
++ S821: TieredCompilation C2 threads can excessively block
+  handshakes
++ S8215571: jdb does not include jdk.* in the default class
+  filter
++ S8215635: Pandoc check in Docs.gmk does not work on Windows
++ S8215687: [Graal] unit test CheckGraalIntrinsics failed after
+  8212043
++ S8215707: [macosx] fix pthread_getschedparam and
+  pthread_setschedparam calls
++ S8215716: PopFrame() was unexpectedly done
++ S8215727: Restore JFR thread sampler loop to old / previous
+  behavior
++ S8215759: [test] java/math/BigInteger/ModPow.java can throw
+  an ArithmeticException
++ S8215769: Java cannot probe pkcs12 files exported by Firefox
++ S8215879: AArch64: ReservedStackAccess may leave stack guard
+  in inconsistent state
++ S8215897: Build broken on zero after JDK-8211424
++ S8215898: Build broken on 32-bit after JDK-8211425
++ S8215954: [te

commit java-12-openjdk for openSUSE:Factory

2018-11-10 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2018-11-10 16:58:02

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new (New)


Package is "java-12-openjdk"

Sat Nov 10 16:58:02 2018 rev:3 rq:645612 version:12.0.0.0~16

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2018-10-04 19:03:43.483062499 +0200
+++ /work/SRC/openSUSE:Factory/.java-12-openjdk.new/java-12-openjdk.changes 
2018-11-10 16:59:03.515776985 +0100
@@ -1,0 +2,313 @@
+Thu Oct 25 19:32:05 UTC 2018 - Antoine Belvire 
+
+- Remove hardcoded Java version in jconsole desktop file.
+
+---
+Tue Oct 23 10:31:57 UTC 2018 - Fridrich Strba 
+
+- Merge into the JDK following modules from github.com/javaee:
+  * com.sum.xml.fastinfoset
+  * org.jvnet.staxex
+  * com.sun.istack.runtime
+  * com.sun.xml.txw2
+  * com.sun.xml.bind
++ This provides a default implementation of JAXB-API that
+  existed in JDK before Java 11 and that some applications
+  depend on.
+
+---
+Sun Oct 21 11:23:13 UTC 2018 - Fridrich Strba 
+
+- Added patches:
+  * fix-i586-build.patch
++ S8212616: x86_32 build failures after JDK-8210498 (nmethod
+  entry barriers)
+  * fix-arm32-build.patch
++ S8212617: ARM32 build failures after JDK-7041262 (VM_Version
+  should be called instead of Abstract_VM_Version so that
+  overriding works)
+
+---
+Fri Oct 19 06:38:35 UTC 2018 - Fridrich Strba 
+
+- Upgraded to upstream tag jdk-12+16 (Oracle October 2018 CPU)
+  * Security fixes:
++ S8202936, CVE-2018-3183, bsc#1112148: Improve script engine
+  support
++ S8199226, CVE-2018-3169, bsc#1112146: Improve field accesses
++ S8199177, CVE-2018-3149, bsc#1112144: Enhance JNDI lookups
++ S8208209, CVE-2018-3180, bsc#1112147: Improve TLS connection
+  stability again
++ S8199172, CVE-2018-3150, bsc#1112145: Improve jar attribute
+  checks
++ S8200648, CVE-2018-3157, bsc#1112149: Make midi code more
+  sound
++ S8194534, CVE-2018-3136, bsc#1112142: Manifest better support
++ S8208754, CVE-2018-3136, bsc#1112142: The fix for JDK-8194534
+  needs updates
++ S8196902, CVE-2018-3139, bsc#1112143: Better HTTP Redirection
+  * Security-In-Depth fixes:
++ S8194546: Choosier FileManagers
++ S8195874: Improve jar specification adherence
++ S8196897: Improve PRNG support
++ S8197881: Better StringBuilder support
++ S8201756: Improve cipher inputs
++ S8204497: Better formatting of decimals
++ S8199110: Address Internet Addresses
+  * Fixes
++ S7041262: VM_Version should be called instead of
+  Abstract_VM_Version so that overriding works
++ S8027434: "-XX:OnOutOfMemoryError" uses fork instead of vfork
++ S8048215: [TESTBUG] java/lang/management/ManagementFactory/
+  /ThreadMXBeanProxy.java Expected non-null LockInfo
++ S8058202: AnnotatedType implementations don't override
+  toString(), equals(), hashCode()
++ S8079784: Unexpected IllegalAccessError when trying access
+  InnerClasses attribute
++ S8152910: Get performance improvement with Stable annotation
++ S8186610: move ModuleUtils to top-level testlibrary
++ S8187522: test/sun/net/ftp/FtpURLConnectionLeak.java timed out
++ S8189366: SocketInputStream.available() should check for eof
++ S8191053: Provide a mechanism to make system's security
+  manager immutable
++ S8192939: Remove Finalize methods from FileInputStream and
+  FileOutputStream
++ S8195703: BasicJDWPConnectionTest.java: 'App exited
+  unexpectedly with 2'
++ S8201436: Replace oop_ps_push_contents with oop_iterate and
+  closure
++ S8203850: java.net.http HTTP client should allow specifying
+  Origin and Referer headers
++ S8204667: Resources not freed on exception
++ S8209499: Create test for SwingSet EditorPaneDemo
++ S8209862: CipherCore performance improvement
++ S8210055: Enable different look and feel tests in SwingSet3
+  demo tests
++ S8210064: ZGC: Introduce ZConcurrentRootsIterator for
+  scanning a subset of strong IN_NATIVE roots concurrently
++ S8210215: C2 should optimize trichotomy calculations
++ S8210330: Make CLD claiming allow multiple claim bits
++ S8210389: C2: assert(n->outcnt() != 0 || C->top() == n ||
+  n->is_Proj()) failed: No dead instructions after post-alloc
++ S8210403: Refactor java.util.Locale:i18n shell tests to plain
+  java tests
++ S8210492: PLAB object promotion events report object sizes in
+   

commit java-12-openjdk for openSUSE:Factory

2018-10-04 Thread root
Hello community,

here is the log from the commit of package java-12-openjdk for openSUSE:Factory 
checked in at 2018-10-04 19:03:28

Comparing /work/SRC/openSUSE:Factory/java-12-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-12-openjdk.new (New)


Package is "java-12-openjdk"

Thu Oct  4 19:03:28 2018 rev:2 rq:639959 version:12.0.0.0~14

Changes:

--- /work/SRC/openSUSE:Factory/java-12-openjdk/java-12-openjdk.changes  
2018-09-28 08:52:42.385789407 +0200
+++ /work/SRC/openSUSE:Factory/.java-12-openjdk.new/java-12-openjdk.changes 
2018-10-04 19:03:43.483062499 +0200
@@ -1,0 +2,348 @@
+Thu Oct  4 10:28:18 UTC 2018 - Fridrich Strba 
+
+- Upgraded to upstream tag jdk-12+14
+  * Fixes:
++ S7017058: Malayalam glyph substitution is failing for
+  Malayalam with Windows Kartika font.
++ S7033681: Arrays.asList methods needs better documentation
++ S8039082: [TEST_BUG] Test java/awt/dnd/BadSerializationTest/
+  /BadSerializationTest.java fails
++ S8130655: OS X: keyboard input in textfield is not possible
+  if the window contained textfield is owned by EmbeddedFrame
++ S8146310: [macosx]
+  com.apple.eawt.Application.setDefaultMenuBar does not
+  initialize screen menu bar
++ S8163083: SocketListeningConnector does not allow invocations
+  with port 0
++ S8169718: nsk/jdb/locals/locals002: ERROR: Cannot find
+  boolVar with expected value: false
++ S8170937: Swing apps are slow if displaying from a remote
+  source to many local displays
++ S8188764: Obsolete AssumeMP and then remove all support for
+  non-MP builds
++ S8191130: Sinhala text rendering problem with
+  C+VIRAMA+ZWJ+RA/YA+V
++ S8191178: [macos] Problem with input of yen symbol
++ S8195836: opentype:Bengali: "Khanda Ta" shaping issue with
+  U+09A4 TA, U+09CD virama, U+200D ZWJ
++ S8199885: [Graal]
+  org.graalvm.compiler.core.test.CountedLoopTest fails with
+  "ControlFlowAnchor should never be cloned in the same graph"
++ S8200381: Typos in javadoc - missing verb "be" and alike
++ S8201818: [macosx] Printing attributes break page size set
+  via "java.awt.print.Book" object
++ S8201925: JEditorPane unordered list bullets look pixelated
++ S8202013: JEditorPane shows large HTML unordered list bullets
++ S8202282: [TESTBUG] appcds
+  TestCommon.makeCommandLineForAppCDS() can be removed
++ S8202628: javadoc generates bad links in TestModules.java
++ S8202702: Clearing selection on JTable causes disappearance
+  of a row
++ S8203904: javax/swing/JSplitPane/4816114/bug4816114.java: The
+  divider location is wrong
++ S8203928: [Test] Convert non-JDB scaffolding serviceability
+  shell script tests to java
++ S8204294: [REDO] - JVMFlag::printError missing
+  ATTRIBUTE_PRINTF
++ S8204963: javax.swing.border.TitledBorder has a memory leak
++ S8205479: OS X: requestFocus() does not work properly for
+  embedded frame
++ S8205535: Useless (or buggy) call to Math.round on int input
++ S8205537: Drop of sun.applet package
++ S8206392: [macosx] Cycling through windows (JFrames) does not
+  work with keyboard shortcut
++ S8207003: Miscellaneous changes imported from jsr166 CVS
+  2018-09
++ S8207150: Clip.isRunning() may return true after Clip.stop()
+  was called
++ S8207745: serviceability/sa/TestJmapCore.java times out
+  parsing a 4GB hprof file
++ S8207768: Improve exception messages during manifest parsing
+  of jar archives
++ S8208473: [TESTBUG] nsk/jdb/exclude/exclude001/exclude001.java
+  is timing out on solaris-sparc again
++ S8208531: -javafx mode should be on by default when JavaFX is
+  available
++ S8208996: X11 icon window color handing bug
++ S8209138: Symbol constructor uses u1 as the element type of
+  its name argument
++ S8209332: [TEST] test/jdk/com/sun/jdi/CatchPatternTest.sh is
+  incorrect
++ S8209340: The code which avoids synthetic accessors has
+  become outdated
++ S8209343: Test javax/swing/border/TestTitledBorderLeak.java
+  should be marked as headful
++ S8209454: [error-prone] TypeParameterUnusedInFormals in
+  jdk.net
++ S8209546: Make sun/security/tools/keytool/autotest.sh to
+  support macosx
++ S8209548: Unused and incorrect calls to FT_Get_Char_Index
++ S8209645: Split ClassLoaderData and ClassLoaderDataGraph into
+  separate files
++ S8209946: [TESTBUG] CDS tests should use "@run driver"
++ S8209963: source file mode for JVM should provide a hook to
+  locate the source file
++ S8210052: Enable testing for all the available look and feels
+  in SwingSet3 demo tests
++ S8210274: Source Launcher should work with a security manager
+