17
0

48 Commits

Author SHA256 Message Date
448822c9e4 Accepting request 1149162 from systemsmanagement:wbem
- Use %patch -P N instead of deprecated %patchN.

OBS-URL: https://build.opensuse.org/request/show/1149162
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=31
2024-02-22 19:59:59 +00:00
e3b3c7cfaf - Use %patch -P N instead of deprecated %patchN.
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=60
2024-02-22 10:11:11 +00:00
2d6981fbc4 Accepting request 1123500 from systemsmanagement:wbem
OBS-URL: https://build.opensuse.org/request/show/1123500
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=30
2023-11-06 20:14:14 +00:00
bde363870c Accepting request 1123310 from home:fstrba:branches:systemsmanagement:wbem
Do not hardcode java 11 for build

OBS-URL: https://build.opensuse.org/request/show/1123310
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=58
2023-11-06 07:47:47 +00:00
79852d05c2 Accepting request 990871 from systemsmanagement:wbem
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/990871
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=29
2022-07-26 17:44:03 +00:00
Klaus Kämpf
d2058847d2 - Fix build, stay with Java 11
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=56
2022-07-17 09:04:55 +00:00
Klaus Kämpf
f3e313cc67 limit java to 11 or lower
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=55
2022-07-09 18:01:17 +00:00
8cb25867cf Accepting request 554790 from systemsmanagement:wbem
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/554790
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=28
2017-12-08 11:59:07 +00:00
Klaus Kämpf
0015772116 - Fix build with openjdk9: sblim-cim-client2-2.2.5-src.patch
--This line, and those below, will be ignored--

A    sblim-cim-client2-2.2.5-src.patch
M    sblim-cim-client2.changes
M    sblim-cim-client2.spec

Diff for working copy: .
Index: sblim-cim-client2.changes
===================================================================

--- sblim-cim-client2.changes	(revision cbb87c6e6d974af4a5cce9fc7b05012a)
+++ sblim-cim-client2.changes	(working copy)
@@ -1,3 +1,8 @@
+-------------------------------------------------------------------
+Wed Nov 29 12:27:48 UTC 2017 - kkaempf@suse.com
+
+- Fix build with openjdk9: sblim-cim-client2-2.2.5-src.patch
+
 -------------------------------------------------------------------
 Thu Jun 25 13:10:52 UTC 2015 - mvetter@suse.com
 

Index: sblim-cim-client2.spec
===================================================================

--- sblim-cim-client2.spec	(revision cbb87c6e6d974af4a5cce9fc7b05012a)
+++ sblim-cim-client2.spec	(working copy)
@@ -27,6 +27,7 @@
 Url:            http://sourceforge.net/projects/sblim/
 Source:         http://downloads.sourceforge.net/project/sblim/%{name}/%{version}/%{name}-%{version}-src.zip
 Source1:        http://downloads.sourceforge.net/project/sblim/%{name}/%{version}/%{name}-%{version}-doc.zip
+Patch1:         sblim-cim-client2-2.2.5-src.patch
 BuildRequires:  ant >= 1.6
 BuildRequires:  dos2unix
 BuildRequires:  java-devel
@@ -76,7 +77,10 @@
 %setup -q -n %{project_folder}
 dos2unix COPYING NEWS README ChangeLog sblim-cim-client2.properties sblim-slp-client2.properties
 find -type f \( -name "*.java" \) -exec dos2unix {} +
-
+%if 0%{?suse_version} > 1200
+# openjdk9 needs source and target 1.6 or larger
+%patch1 -p1
+%endif
 # -----------------------------------------------------------------------------
 
 %build

Index: sblim-cim-client2-2.2.5-src.patch
===================================================================
--- sblim-cim-client2-2.2.5-src.patch	(revision 0)
+++ sblim-cim-client2-2.2.5-src.patch	(revision 0)
@@ -0,0 +1,39 @@
+diff -ruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-sblim-cim-client2-2.2.5-src/build.xml ./build.xml
+--- ../orig-sblim-cim-client2-2.2.5-src/build.xml	2013-12-13 04:51:22.000000000 +0100
++++ ./build.xml	2017-11-29 13:25:19.277890176 +0100
+@@ -91,7 +91,7 @@
+         <delete dir="${Directory.build.core}" failonerror="false"/>
+         <mkdir dir="${Directory.build.base}"/>
+         <mkdir dir="${Directory.build.core}"/>
+-        <javac srcdir="${Directory.source.core}" destdir="${Directory.build.core}" debug="on" encoding="utf-8" source="1.5" target="1.5" includeantruntime="false">
++        <javac srcdir="${Directory.source.core}" destdir="${Directory.build.core}" debug="on" encoding="utf-8" source="1.6" target="1.6" includeantruntime="false">
+             <classpath>
+             	<pathelement path="${java.class.path}/"/>
+             </classpath>
+@@ -122,7 +122,7 @@
+ 	    <delete dir="${Directory.build.unittest}" failonerror="false"/>
+         <mkdir dir="${Directory.build.base}"/>
+ 	    <mkdir dir="${Directory.build.unittest}"/>
+-	    <javac srcdir="${Directory.source.unittest}" destdir="${Directory.build.unittest}" debug="on" encoding="utf-8" source="1.5" target="1.5" includeantruntime="false">
++	    <javac srcdir="${Directory.source.unittest}" destdir="${Directory.build.unittest}" debug="on" encoding="utf-8" source="1.6" target="1.6" includeantruntime="false">
+ 			<classpath>
+ 		    	<pathelement path="${Directory.build.unittest}/"/>
+ 		    	<pathelement path="${Directory.build.core}/"/>
+@@ -141,7 +141,7 @@
+ 	    <delete dir="${Directory.build.samples}" failonerror="false"/>
+         <mkdir dir="${Directory.build.base}"/>
+ 	    <mkdir dir="${Directory.build.samples}"/>
+-	    <javac srcdir="${Directory.source.samples}" destdir="${Directory.build.samples}" debug="on" encoding="utf-8" source="1.5" target="1.5" includeantruntime="false">
++	    <javac srcdir="${Directory.source.samples}" destdir="${Directory.build.samples}" debug="on" encoding="utf-8" source="1.6" target="1.6" includeantruntime="false">
+ 			<classpath>
+ 		    	<pathelement path="${Directory.build.samples}/"/>
+ 		    	<pathelement path="${Directory.build.core}/"/>
+@@ -190,7 +190,7 @@
+                  charset="utf-8"
+         	     encoding="utf-8"
+                  docencoding="utf-8"
+-                 source ="1.5"
++                 source ="1.6"
+                  additionalparam="-quiet"
+                  overview="${Directory.source.core}/overview.html"
+                  windowtitle="SBLIM CIM Client for Java - ${Manifest.version} - Public API Specification"

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=53
2017-11-29 12:28:09 +00:00
14478677bd Accepting request 313804 from systemsmanagement:wbem
1

OBS-URL: https://build.opensuse.org/request/show/313804
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=27
2015-06-30 08:16:30 +00:00
Klaus Kämpf
de2f034580 Accepting request 313679 from home:jubalh:branches:systemsmanagement:wbem
- Update URL

OBS-URL: https://build.opensuse.org/request/show/313679
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=51
2015-06-26 08:45:25 +00:00
a665f56f26 Accepting request 313255 from systemsmanagement:wbem
1

OBS-URL: https://build.opensuse.org/request/show/313255
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=26
2015-06-24 18:56:16 +00:00
Klaus Kämpf
61f33ee65e Accepting request 313208 from home:jubalh:branches:systemsmanagement:wbem
- Remove self-made dos2unix and replace by standard one
  Convert .java files too.

- Clean up spec file
- Remove java conditionals, when the java version is set correctly
  there wont be an issue

OBS-URL: https://build.opensuse.org/request/show/313208
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=49
2015-06-23 11:25:46 +00:00
Stephan Kulow
fbf1301b0d Accepting request 210821 from systemsmanagement:wbem
Updated to the latest upstream version.

FATE#315790: Update SBLIM JSR48 CIM Client to latest version (sblim-cim-client2)

OBS-URL: https://build.opensuse.org/request/show/210821
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=24
2013-12-17 09:06:03 +00:00
Pawel Wieczorkiewicz
927d97af89 - Update to version 2.2.5
New features
  * Two new Java properties - sblim.wbem.sslClientProtocol and 
    sblim.wbem.sslListenerProtocol - can be used to set the protocol
    used for SSLContext.getInstance(String protocol) by a client or
    listener. (#2647)
  * One new Java property -
    sblim.wbem.cimxmlParser.allowEmptyLocalNameSpacePath - can be
    used to have the client allow LOCALNAMESPACEPATH elements without
    NAMESPACE child elements in incoming responses. (#2711)
  Version 2.2.5 also contains five changes that might affect
  existing applications:
  * Three internal APIs - CIMXMLParserImpl.parseNAMESPACE, 
    parseClassName and parseCLASSNAME - now throw the
    CIMXMLParseException. (#2670)
  * The internal API CIMXMLBuilderImpl.createMETHODCALL now only has 
    three parameters, pParamtype is not needed. (#2689)
  * Two internal APIs - Node.getParamType and
    CIMObjectFactory.getType - now throw the SAXException. (#2693)
  * One internal API - PropertyNode.childValueNodeParsed - now throws
    the SAXException. (#2700)
  * One internal API - PropertyArrayNode.childValueNodeParsed - now 
    throws the SAXException. (#2701)
  Issues closed
   2717 Update detailed release history HTML for 2.2.5
   2716 Sync up javax.* javadoc with JSR48 1.0.0 Final V
   2719 TCK: CIM APIs should not generate NullPointerException
   2594 CR28: Support CIMErrorDescription HTTP field
   2718 Bad CIMStatusCode generates NumberFormatException
   2538 CR14: Support new CORRELATOR element

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=47
2013-12-13 15:41:58 +00:00
Stephan Kulow
6f93e654f3 Accepting request 200806 from systemsmanagement:wbem
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/200806
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=23
2013-09-27 16:29:43 +00:00
Klaus Kämpf
3758a3c4b7 - Update to version 2.2.4
New features
  * Two new Java properties - sblim.wbem.sslClientProtocol and
    sblim.wbem.sslListenerProtocol - can be used to set the protocol
    used for SSLContext.getInstance(String protocol) by a client
    or listener. (#2647)
  * One new Java property - sblim.wbem.socketIdleTimeout - can be
    used to automatically reset (close, then reopen) a socket if
    it is idle for too long. (#2654)
  * One new Java property - sblim.wbem.enableGzipEncoding - can be
    used to enable support for gzip decompression of CIM-XML
    responses, identified by "Content-Encoding: gzip" header. (#2151)
  Version 2.2.4 also contains two changes that might affect
  existing applications:
  * The internal API LogAndTraceBroker.setXmlTraceStream no longer
    closes the previous XML trace stream. (#2652)
  * The JSR48 API CIMObjectPath.equalsModelPath now compares only
    the model path - this may produce different results from
    previous releases. (#2660)
  Issues closed
   2661 Update detailed release history HTML for 2.2.4
   2662 Need the specific SSLHandshakeException during the cim call
   2660 CIMObjectPath.equalsModelPath same as equals
   2657 Potential null pointer exception in handleConnection
   2151 gzip compression not supported
   2655 Content-length must be ignored when Transfer-encoding present
   2651 IOException when tracing the cimxml
   2654 Check jcc idle time with CIMOM keepalive timeout to avoid EOF
   2653 FVT: java.lang.ExceptionInInitializerError during static init
   2652 LogAndTraceBroker.setXmlTraceStream should not close previous stream

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=45
2013-09-16 09:55:21 +00:00
Stephan Kulow
3b5503c12d Accepting request 177116 from systemsmanagement:wbem
- Update to version 2.2.3
  New features
  * A new Java property - sblim.wbem.listenerMaxQueuedEvents - can
    be used to set the maximum number of queued events awaiting
    dispatch to a listener. (#2628)
  * Two new Java properties - sblim.wbem.listenerHttpHeaderTimeout
    and sblim.wbem.listenerHttpMaxAllowedTimeouts - can be used to
    help prevent Denial of Service attacks on an indication listener
    via the slowloris approach (#2635)
  * Two new private APIs - WBEMListenerSBLIM.getBlockedIPs and
    setBlockedIPs can be used to control the IPs of incoming
    connections that are to be ignored by an indication
    listener (#2635)
  * Two new Java properties - sblim.wbem.sslClientCipherSuitesToDisable
    and sblim.wbem.sslListenerCipherSuitesToDisable - can be used
    to disable a list of cipher suites when connecting via an SSL
    socket as either a client or listener. (#2642)
  Version 2.2.3 also contains several changes that might affect
  existing applications:
  * The internal ChunkedInputStream constructors now require a
    second parameter, a String representing the names of the trailer
    fields (from HTTP Trailer header). (#2621)
  * The internal MessageReader constructor now requires a second
    parameter, a long representing the HTTP header timeout (#2635)
  * The internal HttpConnectionHandler constructor now requires
    a second parameter, a WBEMConfiguration representing the
    configuration properties (#2635)
  * The Java property sblim.wbem.sslCipherSuitesToDisable has
    been deleted, use sblim.wbem.sslClientCipherSuitesToDisable
    and/or sblim.wbem.sslListenerCipherSuitesToDisable instead (#2642)

OBS-URL: https://build.opensuse.org/request/show/177116
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=21
2013-06-05 17:35:08 +00:00
Klaus Kämpf
5324cf0bae - Update to version 2.2.3
New features
  * A new Java property - sblim.wbem.listenerMaxQueuedEvents - can
    be used to set the maximum number of queued events awaiting
    dispatch to a listener. (#2628)
  * Two new Java properties - sblim.wbem.listenerHttpHeaderTimeout
    and sblim.wbem.listenerHttpMaxAllowedTimeouts - can be used to
    help prevent Denial of Service attacks on an indication listener
    via the slowloris approach (#2635)
  * Two new private APIs - WBEMListenerSBLIM.getBlockedIPs and
    setBlockedIPs can be used to control the IPs of incoming
    connections that are to be ignored by an indication
    listener (#2635)
  * Two new Java properties - sblim.wbem.sslClientCipherSuitesToDisable
    and sblim.wbem.sslListenerCipherSuitesToDisable - can be used
    to disable a list of cipher suites when connecting via an SSL
    socket as either a client or listener. (#2642)
  Version 2.2.3 also contains several changes that might affect
  existing applications:
  * The internal ChunkedInputStream constructors now require a
    second parameter, a String representing the names of the trailer
    fields (from HTTP Trailer header). (#2621)
  * The internal MessageReader constructor now requires a second
    parameter, a long representing the HTTP header timeout (#2635)
  * The internal HttpConnectionHandler constructor now requires
    a second parameter, a WBEMConfiguration representing the
    configuration properties (#2635)
  * The Java property sblim.wbem.sslCipherSuitesToDisable has
    been deleted, use sblim.wbem.sslClientCipherSuitesToDisable
    and/or sblim.wbem.sslListenerCipherSuitesToDisable instead (#2642)

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=43
2013-06-01 12:54:47 +00:00
Stephan Kulow
9f322e0114 Accepting request 160868 from systemsmanagement:wbem
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/160868
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=20
2013-03-26 06:02:27 +00:00
Klaus Kämpf
04c5deaf3d - Update to Version 2.2.2
New features
  * A new Java property - sblim.wbem.synchronizeNumericKeyDataTypes
    - can be used to synchronize numeric data types of keys in a
    CIMInstance's CIMObjectPath with those in its CIMProperty[]
    FOR CIMOM RESPONSES ONLY. (#3598613)
  * One new internal API - WBEMClientSBLIM.sendIndication
    - can be used to send a CIMInstance representing an indication
      to a specific URI. (#2616)
  * A new Java property - sblim.wbem.sslCipherSuitesToDisable
    - can be used to disable a list of cipher suites when connecting
      via an SSL socket. (#2618)
  Changes
  2624 Update detailed release history HTML for 2.2.2
  2618 Need to add property to disable weak cipher suites for the
       secure indication
  2623 Reflect SourceForge upgrade in documentation
  2616 Add new API WBEMClientSBLIM.sendIndication()
  2621 Not all chunked input has trailers
  2620 Chunked output broken
  2619 Host should contain port when not 5988/5989
  2615 Add Allura links to detailed release history HTML
  2614 Remove redundant code in transmitRequest
  Bugs fixed
  3602604 Clean up SAXException messages
  3601894 Enhance HTTP and CIM-XML tracing
  3598613 different data type in cim instance and cim object path
  3596303 windows http response WWW-Authenticate: Negotiate fails

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=41
2013-03-18 07:58:45 +00:00
Ismail Dönmez
4e590c418b Accepting request 146280 from systemsmanagement:wbem
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/146280
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=18
2012-12-28 21:49:13 +00:00
Klaus Kämpf
a620d9adf8 - Update to Version 2.2.1
New features
  * A new internal API - WBEMConfiguation.getActiveConfigFullURL
    - can be used to obtain the FQDN of the active conguration
      file (#3576396)
  * A new Java property - sblim.wbem.verifyJavaLangDoubleStrings
    - can be used to make the client verify that strings representing
      a Double will not hang the JRE when parsed (#3572993)
  Bugs fixed
  3584119 Update detailed release history HTML for 2.2.1
  3592502 Enhance CIMDataType unit test
  3588558 An enhancement on Java CIM Client logging
  3557283 Print full response when get EOF from CIMOM
  3576396 Improve logging of config file name
  3572993 parseDouble("2.2250738585072012e-308") DoS vulnerability
  3567433 Add links to top of detailed release history HTML

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=39
2012-12-15 15:46:04 +00:00
Klaus Kämpf
5e69d1d9ee fix non-SUSE builds
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=38
2012-09-28 14:04:52 +00:00
Stephan Kulow
4501488cf7 Accepting request 135381 from systemsmanagement:wbem
- Update to Version 2.2.0
  PLEASE NOTE: Version 2.2.0 is fully compliant with the final
  JSR48 1.0.0 specification.  In order to meet this requirement,
  several changes occurred which may be disruptive to applications
  that work with previous (2.1.x) versions.  Please see the following
  for more details:
  http://sblim.sourceforge.net/cim-client2-v22-doc/org/sblim/cimclient/doc-files/history.html
  Detailed changes
  ================
  3567429 Update detailed release history HTML for 2.2.0
  3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV
  3565581 TCK: remove unnecessary overriding methods
  3562235 LogAndTraceBrokerTest breaks unit test tracing
  3536399 Add client/listener peer authentication properties
  3529151 TCK: CIMInstance property APIs include keys from COP
  3536398 Update HTML to reflect secure indication support
  3554738 dump CIM xml by LogAndTraceBroker.trace()
  3553858 Append duplicate HTTP header fields instead of replace
  3535383 HashDoS fix 3498482
  3545797 Support new error code of SFCB
  3529066 Add Jsr48IndicationTester
  3524050 Improve WWW-Authenticate in HTTPClient.java
  3529065 Enable WBEMListener get/setProperty
  3529062 WBEMListenerFactory should return new instance
  3527580 WBEMClient should not throw IllegalArgumentException
  3526681 CIMError valid status codes out-of-date
  3526679 DOM parser ignores ERROR node CODE
  3526675 Unit test fails on Java 7
  3525914 TCK: SetPropertyTest.testSetProperty failing
  3521157 JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1

OBS-URL: https://build.opensuse.org/request/show/135381
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=17
2012-09-23 19:13:47 +00:00
Klaus Kämpf
658368c1db drop sblim-cim-client2-2.2.0-news.txt
--This line, and those below, will be ignored--

D    sblim-cim-client2-2.2.0-news.txt

Diff for working copy: .
Index: sblim-cim-client2-2.2.0-news.txt
===================================================================
--- sblim-cim-client2-2.2.0-news.txt	(revision 41e2852e342e0ce98d42e003919bd4c7)
+++ sblim-cim-client2-2.2.0-news.txt	(working copy)
@@ -1,60 +0,0 @@
-PLEASE NOTE: Version 2.2.0 is fully compliant with the final JSR48 1.0.0
-specification.  In order to meet this requirement, several changes occurred
-which may be disruptive to applications that work with previous (2.1.x)
-versions.  Please see the following for more details:
-
-
-http://sblim.sourceforge.net/cim-client2-v22-doc/org/sblim/cimclient/doc-files/history.html
-
-
-Version 2.2.0
-================
-3567429 Update detailed release history HTML for 2.2.0
-3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV
-3565581 TCK: remove unnecessary overriding methods
-3562235 LogAndTraceBrokerTest breaks unit test tracing
-3536399 Add client/listener peer authentication properties
-3529151 TCK: CIMInstance property APIs include keys from COP
-3536398 Update HTML to reflect secure indication support
-3554738 dump CIM xml by LogAndTraceBroker.trace()
-3553858 Append duplicate HTTP header fields instead of replace
-3535383 HashDoS fix 3498482
-3545797 Support new error code of SFCB
-3529066 Add Jsr48IndicationTester
-3524050 Improve WWW-Authenticate in HTTPClient.java
-3529065 Enable WBEMListener get/setProperty
-3529062 WBEMListenerFactory should return new instance
-3527580 WBEMClient should not throw IllegalArgumentException
-3526681 CIMError valid status codes out-of-date
-3526679 DOM parser ignores ERROR node CODE
-3526675 Unit test fails on Java 7
-3525914 TCK: SetPropertyTest.testSetProperty failing
-3521157 JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1
-3525657 Sync up javax.* javadoc with JSR48 1.0.0 Final III
-3525150 Remove CIMGetClassOp.getPropertyLis
-3525145 Remove CIMDeleteNameSpaceOp.getNamespace
-3525138 Remove WBEMConstants.PROTOCOL_CIMXML
-3525135 Remove CIMResponse.isSuccessul
-3525128 Remove WBEMTransportException/WBEMAuthenticationException
-3523918 "java.io.IOException: Unexpected EOF" returned as HTTP 401
-3522904 Add new API WBEMClientSBLIM.isActive()
-3521328 JSR48 1.0.0: remove WBEMClient associators and references
-3521119 JSR48 1.0.0: remove CIMObjectPath 2/3/4-parm ctors
-3521131 Sync up javax.* javadoc with JSR48 1.0.0 Final II
-3466280 get instance failure for CIM_IndicationSubscription
-3513228 Reliable Indications support can create lots of threads
-3517503 Missing parm in CIMDataType ctor javadoc
-3516848 enumerateNamespaces() method to WBEMClient
-3515180 JSR48 log dir/file should handle UNIX/Win separators
-3514685 TCK: getProperty must return default values
-3514537 TCK: execQueryInstances requires boolean, not Boolean
-3513357 Handle multiple CDATAs in CimXmlSerializer
-3513347 TCK: CIMObjectPath allows empty string
-3513343 TCK: CIMObjectPath must validate XML schema name
-3513349 TCK: CIMDataType must not accept null string
-3513353 TCK: CIMDataType arrays must have length >= 1
-3511454 SAX nodes not reinitialized properly
-3510090 Fix CIMObjectPath.toString() inconsistencies
-3510321 Handle CDATA in CimXmlSerializer
-3505681 Add detailed release history HTML
-3500619 JSR48 1.0.0: CIMClass association/key clean up

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=36
2012-09-22 16:45:38 +00:00
Klaus Kämpf
85c0261540 - Update to Version 2.2.0
PLEASE NOTE: Version 2.2.0 is fully compliant with the final
  JSR48 1.0.0 specification.  In order to meet this requirement,
  several changes occurred which may be disruptive to applications
  that work with previous (2.1.x) versions.  Please see the following
  for more details:
  http://sblim.sourceforge.net/cim-client2-v22-doc/org/sblim/cimclient/doc-files/history.html
  Detailed changes
  ================
  3567429 Update detailed release history HTML for 2.2.0
  3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV
  3565581 TCK: remove unnecessary overriding methods
  3562235 LogAndTraceBrokerTest breaks unit test tracing
  3536399 Add client/listener peer authentication properties
  3529151 TCK: CIMInstance property APIs include keys from COP
  3536398 Update HTML to reflect secure indication support
  3554738 dump CIM xml by LogAndTraceBroker.trace()
  3553858 Append duplicate HTTP header fields instead of replace
  3535383 HashDoS fix 3498482
  3545797 Support new error code of SFCB
  3529066 Add Jsr48IndicationTester
  3524050 Improve WWW-Authenticate in HTTPClient.java
  3529065 Enable WBEMListener get/setProperty
  3529062 WBEMListenerFactory should return new instance
  3527580 WBEMClient should not throw IllegalArgumentException
  3526681 CIMError valid status codes out-of-date
  3526679 DOM parser ignores ERROR node CODE
  3526675 Unit test fails on Java 7
  3525914 TCK: SetPropertyTest.testSetProperty failing
  3521157 JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1
  3525657 Sync up javax.* javadoc with JSR48 1.0.0 Final III
  3525150 Remove CIMGetClassOp.getPropertyLis
  3525145 Remove CIMDeleteNameSpaceOp.getNamespace
  3525138 Remove WBEMConstants.PROTOCOL_CIMXML
  3525135 Remove CIMResponse.isSuccessul
  3525128 Remove WBEMTransportException/WBEMAuthenticationException
  3523918 "java.io.IOException: Unexpected EOF" returned as HTTP 401
  3522904 Add new API WBEMClientSBLIM.isActive()
  3521328 JSR48 1.0.0: remove WBEMClient associators and references
  3521119 JSR48 1.0.0: remove CIMObjectPath 2/3/4-parm ctors
  3521131 Sync up javax.* javadoc with JSR48 1.0.0 Final II
  3466280 get instance failure for CIM_IndicationSubscription
  3513228 Reliable Indications support can create lots of threads
  3517503 Missing parm in CIMDataType ctor javadoc
  3516848 enumerateNamespaces() method to WBEMClient
  3515180 JSR48 log dir/file should handle UNIX/Win separators
  3514685 TCK: getProperty must return default values
  3514537 TCK: execQueryInstances requires boolean, not Boolean
  3513357 Handle multiple CDATAs in CimXmlSerializer
  3513347 TCK: CIMObjectPath allows empty string
  3513343 TCK: CIMObjectPath must validate XML schema name
  3513349 TCK: CIMDataType must not accept null string
  3513353 TCK: CIMDataType arrays must have length >= 1
  3511454 SAX nodes not reinitialized properly
  3510090 Fix CIMObjectPath.toString() inconsistencies
  3510321 Handle CDATA in CimXmlSerializer
  3505681 Add detailed release history HTML
  3500619 JSR48 1.0.0: CIMClass association/key clean up
--This line, and those below, will be ignored--


D    sblim-cim-client2-2.1.12-doc.zip
D    sblim-cim-client2-2.1.12-src.zip
A    sblim-cim-client2-2.2.0-doc.zip
A    sblim-cim-client2-2.2.0-news.txt
A    sblim-cim-client2-2.2.0-src.zip
M    sblim-cim-client2.changes
M    sblim-cim-client2.spec

Diff for working copy: .
Index: sblim-cim-client2.changes
===================================================================

--- sblim-cim-client2.changes	(revision 08204b8e88aaf8ce60e26f55484830af)
+++ sblim-cim-client2.changes	(working copy)
@@ -1,3 +1,68 @@
+-------------------------------------------------------------------
+Sat Sep 15 10:49:28 UTC 2012 - kkaempf@suse.com
+
+- Update to Version 2.2.0
+
+  PLEASE NOTE: Version 2.2.0 is fully compliant with the final
+  JSR48 1.0.0 specification.  In order to meet this requirement,
+  several changes occurred which may be disruptive to applications
+  that work with previous (2.1.x) versions.  Please see the following
+  for more details:
+
+  http://sblim.sourceforge.net/cim-client2-v22-doc/org/sblim/cimclient/doc-files/history.html
+
+  Detailed changes
+  ================
+  3567429 Update detailed release history HTML for 2.2.0
+  3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV
+  3565581 TCK: remove unnecessary overriding methods
+  3562235 LogAndTraceBrokerTest breaks unit test tracing
+  3536399 Add client/listener peer authentication properties
+  3529151 TCK: CIMInstance property APIs include keys from COP
+  3536398 Update HTML to reflect secure indication support
+  3554738 dump CIM xml by LogAndTraceBroker.trace()
+  3553858 Append duplicate HTTP header fields instead of replace
+  3535383 HashDoS fix 3498482
+  3545797 Support new error code of SFCB
+  3529066 Add Jsr48IndicationTester
+  3524050 Improve WWW-Authenticate in HTTPClient.java
+  3529065 Enable WBEMListener get/setProperty
+  3529062 WBEMListenerFactory should return new instance
+  3527580 WBEMClient should not throw IllegalArgumentException
+  3526681 CIMError valid status codes out-of-date
+  3526679 DOM parser ignores ERROR node CODE
+  3526675 Unit test fails on Java 7
+  3525914 TCK: SetPropertyTest.testSetProperty failing
+  3521157 JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1
+  3525657 Sync up javax.* javadoc with JSR48 1.0.0 Final III
+  3525150 Remove CIMGetClassOp.getPropertyLis
+  3525145 Remove CIMDeleteNameSpaceOp.getNamespace
+  3525138 Remove WBEMConstants.PROTOCOL_CIMXML
+  3525135 Remove CIMResponse.isSuccessul
+  3525128 Remove WBEMTransportException/WBEMAuthenticationException
+  3523918 "java.io.IOException: Unexpected EOF" returned as HTTP 401
+  3522904 Add new API WBEMClientSBLIM.isActive()
+  3521328 JSR48 1.0.0: remove WBEMClient associators and references
+  3521119 JSR48 1.0.0: remove CIMObjectPath 2/3/4-parm ctors
+  3521131 Sync up javax.* javadoc with JSR48 1.0.0 Final II
+  3466280 get instance failure for CIM_IndicationSubscription
+  3513228 Reliable Indications support can create lots of threads
+  3517503 Missing parm in CIMDataType ctor javadoc
+  3516848 enumerateNamespaces() method to WBEMClient
+  3515180 JSR48 log dir/file should handle UNIX/Win separators
+  3514685 TCK: getProperty must return default values
+  3514537 TCK: execQueryInstances requires boolean, not Boolean
+  3513357 Handle multiple CDATAs in CimXmlSerializer
+  3513347 TCK: CIMObjectPath allows empty string
+  3513343 TCK: CIMObjectPath must validate XML schema name
+  3513349 TCK: CIMDataType must not accept null string
+  3513353 TCK: CIMDataType arrays must have length >= 1
+  3511454 SAX nodes not reinitialized properly
+  3510090 Fix CIMObjectPath.toString() inconsistencies
+  3510321 Handle CDATA in CimXmlSerializer
+  3505681 Add detailed release history HTML
+  3500619 JSR48 1.0.0: CIMClass association/key clean up
+
 -------------------------------------------------------------------
 Wed Aug  8 12:08:15 UTC 2012 - kkaempf@suse.com
 

Index: sblim-cim-client2.spec
===================================================================

--- sblim-cim-client2.spec	(revision 08204b8e88aaf8ce60e26f55484830af)
+++ sblim-cim-client2.spec	(working copy)
@@ -21,7 +21,7 @@
 # -----------------------------------------------------------------------------
 
 Name:           sblim-cim-client2
-Version:        2.1.12
+Version:        2.2.0
 Release:        0
 Url:            http://sblim.sourceforge.net/
 Summary:        Java CIM Client library

Index: sblim-cim-client2-2.2.0-news.txt
===================================================================
--- sblim-cim-client2-2.2.0-news.txt	(revision 0)
+++ sblim-cim-client2-2.2.0-news.txt	(revision 0)
@@ -0,0 +1,60 @@
+PLEASE NOTE: Version 2.2.0 is fully compliant with the final JSR48 1.0.0
+specification.  In order to meet this requirement, several changes occurred
+which may be disruptive to applications that work with previous (2.1.x)
+versions.  Please see the following for more details:
+
+
+http://sblim.sourceforge.net/cim-client2-v22-doc/org/sblim/cimclient/doc-files/history.html
+
+
+Version 2.2.0
+================
+3567429 Update detailed release history HTML for 2.2.0
+3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV
+3565581 TCK: remove unnecessary overriding methods
+3562235 LogAndTraceBrokerTest breaks unit test tracing
+3536399 Add client/listener peer authentication properties
+3529151 TCK: CIMInstance property APIs include keys from COP
+3536398 Update HTML to reflect secure indication support
+3554738 dump CIM xml by LogAndTraceBroker.trace()
+3553858 Append duplicate HTTP header fields instead of replace
+3535383 HashDoS fix 3498482
+3545797 Support new error code of SFCB
+3529066 Add Jsr48IndicationTester
+3524050 Improve WWW-Authenticate in HTTPClient.java
+3529065 Enable WBEMListener get/setProperty
+3529062 WBEMListenerFactory should return new instance
+3527580 WBEMClient should not throw IllegalArgumentException
+3526681 CIMError valid status codes out-of-date
+3526679 DOM parser ignores ERROR node CODE
+3526675 Unit test fails on Java 7
+3525914 TCK: SetPropertyTest.testSetProperty failing
+3521157 JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1
+3525657 Sync up javax.* javadoc with JSR48 1.0.0 Final III
+3525150 Remove CIMGetClassOp.getPropertyLis
+3525145 Remove CIMDeleteNameSpaceOp.getNamespace
+3525138 Remove WBEMConstants.PROTOCOL_CIMXML
+3525135 Remove CIMResponse.isSuccessul
+3525128 Remove WBEMTransportException/WBEMAuthenticationException
+3523918 "java.io.IOException: Unexpected EOF" returned as HTTP 401
+3522904 Add new API WBEMClientSBLIM.isActive()
+3521328 JSR48 1.0.0: remove WBEMClient associators and references
+3521119 JSR48 1.0.0: remove CIMObjectPath 2/3/4-parm ctors
+3521131 Sync up javax.* javadoc with JSR48 1.0.0 Final II
+3466280 get instance failure for CIM_IndicationSubscription
+3513228 Reliable Indications support can create lots of threads
+3517503 Missing parm in CIMDataType ctor javadoc
+3516848 enumerateNamespaces() method to WBEMClient
+3515180 JSR48 log dir/file should handle UNIX/Win separators
+3514685 TCK: getProperty must return default values
+3514537 TCK: execQueryInstances requires boolean, not Boolean
+3513357 Handle multiple CDATAs in CimXmlSerializer
+3513347 TCK: CIMObjectPath allows empty string
+3513343 TCK: CIMObjectPath must validate XML schema name
+3513349 TCK: CIMDataType must not accept null string
+3513353 TCK: CIMDataType arrays must have length >= 1
+3511454 SAX nodes not reinitialized properly
+3510090 Fix CIMObjectPath.toString() inconsistencies
+3510321 Handle CDATA in CimXmlSerializer
+3505681 Add detailed release history HTML
+3500619 JSR48 1.0.0: CIMClass association/key clean up

Index: sblim-cim-client2-2.2.0-doc.zip
===================================================================
Binary file 'sblim-cim-client2-2.2.0-doc.zip' added.

Index: sblim-cim-client2-2.2.0-src.zip
===================================================================
Binary file 'sblim-cim-client2-2.2.0-src.zip' added.

Index: sblim-cim-client2-2.1.12-doc.zip
===================================================================
Binary file 'sblim-cim-client2-2.1.12-doc.zip' deleted.

Index: sblim-cim-client2-2.1.12-src.zip
===================================================================
Binary file 'sblim-cim-client2-2.1.12-src.zip' deleted.

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=35
2012-09-15 10:52:56 +00:00
Ismail Dönmez
03c7578e3b Accepting request 130783 from systemsmanagement:wbem
- Fix build failure.
- Fix CentOS, RHEL and Fedora builds
- License is EPL-1.0

OBS-URL: https://build.opensuse.org/request/show/130783
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=16
2012-08-16 12:09:10 +00:00
Wojtek Dziewięcki
c5cb775be2 Fixed build failure.
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=33
2012-08-14 12:32:45 +00:00
Klaus Kämpf
8d05bdb676 fix SLES 10 SP4 build
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=32
2012-08-08 13:53:09 +00:00
Klaus Kämpf
1100511960 - Fix CentOS, RHEL and Fedora builds
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=31
2012-08-08 12:40:34 +00:00
Klaus Kämpf
a1bb247890 - License is EPL-1.0
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=30
2012-08-08 12:09:58 +00:00
Klaus Kämpf
7ed8c2ce37 - Fix CentOS and RHEL build
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=29
2012-08-08 12:08:36 +00:00
Klaus Kämpf
ff7d399e12 fix CentOS build
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=28
2012-08-08 12:08:08 +00:00
Stephan Kulow
5281e8f9d0 Accepting request 111092 from systemsmanagement:wbem
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/111092
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=14
2012-03-27 06:59:05 +00:00
Klaus Kämpf
74e8c65605 - Version 2.1.12
This release contains several new features:
  * A new sample - Jsr48SfcbIndicationSample - demonstrates how to
    receive indications from and generate test indications in the
    sfcb CIMOM (#3480115)
  * Two new internal APIs - LogAndTraceBroker.isLoggableTrace and
    isLoggableMessage - can be used to determine if the specified
    Level will be logged (#3484014)
  * A new internal interface - IndicationListenerSBLIM - along with
    its indicationOccured method and corresponding three new internal
    WBEMListenerSBLIM.addListener methods, can be used to pass the
    InetAddress of the indication sender to the listener (#3477087)
  * A new property - sblim.wbem.listenerIndicationTraceFilter - can
    be used to trace incoming indications at the FINE Level (#3485074)
  * A new property - sblim.wbem.listenerAddSenderIPAddress - can be
    used to add a SBLIMJCC_SenderIPAddress property to indications
    that contains the IP address of the indication sender (#3492214)
  * A new property - sblim.wbem.socketConnectTimeout - can be used
    to set the timeout for socket connect requests when
    sblim.wbem.socketConnectWithTimeout=true (#3492224)
  * Three new JSR48 APIs - CIMObjectPath.getKeyValue,
    WBEMListener.getProperty and WBEMListener.setProperty - have
    been added to support JSR48 1.0.0 (#3496349 and #3496385)
  Version 2.1.12 also contains several changes that might affect existing
  applications:
  * The internal WBEMListenerSBLIM.WBEMListenerImpl and CIMEventDispatcher
    constructors now accept EventListener instead of IndicationListener
    (#3477087)
  * Reliable indication support now allows for the SequenceContext
    and SequenceNumber properties to be present/absent as the CIMOM

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=26
2012-03-15 17:33:01 +00:00
Stephan Kulow
f13cd72db3 Accepting request 97025 from systemsmanagement:wbem
- Version 2.1.11
  Bugfix release
  - 3459036 Linked list for RI queue not efficient for many LDs
  - 3444912 Client delay during SSL handshake
  - 3423064 Add UpdateExpiredPassword Header for Reqs from Java Client
  - 3411944 createJavaObject exception with hex uint
  - 3411879 TCK: CIM element value must match type
  - 3410126 TCK: CIM element name cannot be null

- fix license to be in spdx.org format

OBS-URL: https://build.opensuse.org/request/show/97025
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=13
2012-01-04 06:31:23 +00:00
Klaus Kämpf
d619b948ac - fix license to be in spdx.org format
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=23
2011-12-19 11:11:14 +00:00
Klaus Kämpf
e01afe2667 - Version 2.1.11
Bugfix release
  - 3459036 Linked list for RI queue not efficient for many LDs
  - 3444912 Client delay during SSL handshake
  - 3423064 Add UpdateExpiredPassword Header for Reqs from Java Client
  - 3411944 createJavaObject exception with hex uint
  - 3411879 TCK: CIM element value must match type
  - 3410126 TCK: CIM element name cannot be null

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=22
2011-12-19 10:29:58 +00:00
Lars Vogdt
c5dcf63bfa Accepting request 82295 from systemsmanagement:wbem
- Version 2.1.10
  Bugfix release
  - 3409691 2.1.10 packaging issues: rpmbuild broken on Red Hat
  - 3406275 HEAD branch ONLY: sync with Experimental branch
  - 3400209 Highlighted Static Analysis (PMD) issues
  - 3397922 support OctetString
  - 3390724 Problem with Reliable Indication support in the Listener
  - 3374012 Sblim client CIMObjectPath class defect for LLA format URL
  - 3376657 Get reliable indication properties once
  - 3374206 NullPointerException caused by Indication
  - 3323310 Need the ability to override certain Global Properties

OBS-URL: https://build.opensuse.org/request/show/82295
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=11
2011-09-19 20:57:01 +00:00
Klaus Kämpf
c01588f766 - Version 2.1.10
Bugfix release
  - 3409691 2.1.10 packaging issues: rpmbuild broken on Red Hat
  - 3406275 HEAD branch ONLY: sync with Experimental branch
  - 3400209 Highlighted Static Analysis (PMD) issues
  - 3397922 support OctetString
  - 3390724 Problem with Reliable Indication support in the Listener
  - 3374012 Sblim client CIMObjectPath class defect for LLA format URL
  - 3376657 Get reliable indication properties once
  - 3374206 NullPointerException caused by Indication
  - 3323310 Need the ability to override certain Global Properties

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=19
2011-09-16 08:07:44 +00:00
Sascha Peilicke
e1697701f0 Autobuild autoformatter for 82094
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=10
2011-09-15 12:13:15 +00:00
OBS User buildservice-autocommit
0df6d99175 Updating link to change in openSUSE:Factory/sblim-cim-client2 revision 10.0
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:wbem/sblim-cim-client2?expand=0&rev=a2bb275ce239cfe0b1cded8504c8e68c
2011-09-15 12:13:15 +00:00
Sascha Peilicke
2e170dbf4e Accepting request 82094 from systemsmanagement:wbem
OBS-URL: https://build.opensuse.org/request/show/82094
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=9
2011-09-15 12:13:09 +00:00
OBS User autobuild
291ba3fa7c OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=5 2010-03-18 15:27:38 +00:00
OBS User autobuild
1046607996 Accepting request 29334 from systemsmanagement:wbem
Copy from systemsmanagement:wbem/sblim-cim-client2 based on submit request 29334 from user -miska-

OBS-URL: https://build.opensuse.org/request/show/29334
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=4
2010-01-14 20:34:23 +00:00
OBS User unknown
7a6dd15559 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=2 2009-06-02 11:06:12 +00:00
OBS User unknown
949c9d80a8 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sblim-cim-client2?expand=0&rev=1 2008-09-08 02:53:28 +00:00