Hello community,

here is the log from the commit of package openwsman for openSUSE:Factory 
checked in at 2013-10-21 15:12:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openwsman (Old)
 and      /work/SRC/openSUSE:Factory/.openwsman.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openwsman"

Changes:
--------
--- /work/SRC/openSUSE:Factory/openwsman/openwsman.changes      2013-09-12 
14:33:37.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.openwsman.new/openwsman.changes 2013-10-21 
15:13:00.000000000 +0200
@@ -1,0 +2,8 @@
+Mon Oct 14 08:15:10 UTC 2013 - kkae...@suse.com
+
+- Update to 2.4.2
+  - Fix crash in redirect module (typo)
+  - Honor WS-Management 1.1.1 standard (line 739):
+    disable multiple MessageID checks   
+
+-------------------------------------------------------------------

Old:
----
  openwsman-2.4.1.tar.bz2

New:
----
  openwsman-2.4.2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openwsman.spec ++++++
--- /var/tmp/diff_new_pack.wce9jF/_old  2013-10-21 15:13:01.000000000 +0200
+++ /var/tmp/diff_new_pack.wce9jF/_new  2013-10-21 15:13:01.000000000 +0200
@@ -114,7 +114,7 @@
 %endif
 
 Requires(pre):  sed coreutils grep /bin/hostname
-Version:        2.4.1
+Version:        2.4.2
 Release:        0
 # Mandriva:
 # Release %mkrel 1
@@ -187,6 +187,13 @@
 Requires(pre):  sed coreutils grep diffutils /bin/hostname
 %if 0%{?suse_version}
 Requires(pre):  fillup
+%ifarch x86_64
+Requires:       pam_pwcheck.so()(64bit)
+Requires:       pam_unix2.so()(64bit)
+%else
+Requires:       pam_pwcheck.so()
+Requires:       pam_unix2.so()
+%endif
 %endif
 Summary:        Openwsman Server and service libraries
 Group:          System/Management

++++++ openwsman-2.4.1.tar.bz2 -> openwsman-2.4.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openwsman-2.4.1/ChangeLog 
new/openwsman-2.4.2/ChangeLog
--- old/openwsman-2.4.1/ChangeLog       2013-09-11 15:00:06.000000000 +0200
+++ new/openwsman-2.4.2/ChangeLog       2013-09-23 11:31:43.000000000 +0200
@@ -1,3 +1,6 @@
+2.4.2
+  - Fix crash in redirect module (typo)
+
 2.4.1
 - Build fixes
   - Builds now on SLES11 (cmake 2.4), Fedora 18
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openwsman-2.4.1/VERSION.cmake 
new/openwsman-2.4.2/VERSION.cmake
--- old/openwsman-2.4.1/VERSION.cmake   2013-09-11 11:03:36.000000000 +0200
+++ new/openwsman-2.4.2/VERSION.cmake   2013-09-23 11:31:13.000000000 +0200
@@ -44,10 +44,10 @@
 #    set COMPATMINOR to MINOR. (binary incompatible change)
 #
 
-# Package version 2.4.1
+# Package version 2.4.2
 SET(OPENWSMAN_MAJOR "2")
 SET(OPENWSMAN_MINOR "4")
-SET(OPENWSMAN_PATCH "1")
+SET(OPENWSMAN_PATCH "2")
 
 # Plugin API 2.2
 SET(OPENWSMAN_PLUGIN_API_MAJOR "2")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openwsman-2.4.1/bindings/wsman-client.i 
new/openwsman-2.4.2/bindings/wsman-client.i
--- old/openwsman-2.4.1/bindings/wsman-client.i 2013-09-03 16:54:51.000000000 
+0200
+++ new/openwsman-2.4.2/bindings/wsman-client.i 2013-09-20 09:24:42.000000000 
+0200
@@ -139,7 +139,7 @@
    * Send a (raw) SOAP request to the client
    *
    * call-seq:
-   *   result = client.send_request(XmlDoc.new("<xml ...>...</xml>"))
+   *   client.send_request(XmlDoc.new("<xml ...>...</xml>")) -> Integer
    *
    */
   int send_request(WsXmlDocH request) {
@@ -147,6 +147,17 @@
   }
 
   /*
+   * Build envelope from response
+   *
+   * call-seq:
+   *   client.build_envelope_from_response() -> XmlDoc
+   *
+   */
+  WsXmlDocH build_envelope_from_response() {
+    return wsmc_build_envelope_from_response($self);
+  }
+
+  /*
    * Get client encoding
    *
    * call-seq:
@@ -180,7 +191,7 @@
    * identify: Sends an identify request
    *
    * call-seq:
-   *   result = client.identify(options)
+   *   client.identify(options) -> XmlDoc
    *
    */
   WsXmlDocH identify( client_opt_t *options ) {
@@ -199,6 +210,9 @@
    *
    * get_from_epr: Get a resource via an endpoint reference
    *
+   * call-seq:
+   *   client.get_from_epr(options, end_point_reference) -> XmlDoc
+   *
    */
   WsXmlDocH get_from_epr( client_opt_t *options , epr_t *epr) {
 #if RUBY_VERSION > 18 /* YARV */
@@ -217,6 +231,9 @@
    *
    * delete_from_epr: Remove a resource via an endpoint reference
    *
+   * call-seq:
+   *   client.delete_from_epr(options, end_point_reference) -> XmlDoc
+   *
    */
   WsXmlDocH delete_from_epr( client_opt_t *options , epr_t *epr) {
 #if RUBY_VERSION > 18 /* YARV */
@@ -246,7 +263,7 @@
    * affecting performance.
    *
    * call-seq:
-   *   result = client.enumerate(options, filter, uri)
+   *   client.enumerate(options, filter, uri) -> XmlDoc
    *
    */
   WsXmlDocH enumerate( client_opt_t *options , filter_t *filter, char 
*resource_uri) {
@@ -268,7 +285,7 @@
    * pull: Get resources from enumeration context
    *
    * call-seq:
-   *   result = client.pull(options, filter, uri, context)
+   *   client.pull(options, filter, uri, context) -> XmlDoc
    *
    */
   WsXmlDocH pull( client_opt_t *options , filter_t *filter, const char 
*resource_uri, const char *context) {
@@ -291,7 +308,7 @@
    * create: Create a resource
    *
    * call-seq:
-   *   result = client.create(options, uri, xml, xml.size, "utf-8")
+   *   client.create(options, uri, xml, xml.size, "utf-8") -> XmlDoc
    *
    */
   WsXmlDocH create( client_opt_t *options, const char *resource_uri, const 
char *data, size_t size, const char *encoding = "utf-8") {
@@ -315,7 +332,7 @@
    * put: Change a resource
    *
    * call-seq:
-   *   result = client.put(options, uri, xml, xml.size, "utf-8")
+   *   client.put(options, uri, xml, xml.size, "utf-8") -> XmlDoc
    *
    */
   WsXmlDocH put( client_opt_t *options, const char *resource_uri, const char 
*data, size_t size, const char *encoding = "utf-8") {
@@ -339,7 +356,7 @@
    * release: Release enumeration context
    *
    * call-seq:
-   *   result = client.release(options, uri, context)
+   *   client.release(options, uri, context) -> XmlDoc
    *
    */
   WsXmlDocH release( client_opt_t *options, const char *resource_uri, const 
char *context) {
@@ -361,7 +378,7 @@
    * get: Get a resource
    *
    * call-seq:
-   *   result = client.get(options, uri)
+   *   client.get(options, uri) -> XmlDoc
    *
    */
   WsXmlDocH get( client_opt_t *options, const char *resource_uri) {
@@ -382,7 +399,7 @@
    * delete: Delete a resource
    *
    * call-seq:
-   *   result = client.delete(options, uri)
+   *   client.delete(options, uri) -> XmlDoc
    *
    */
   WsXmlDocH delete( client_opt_t *options, const char *resource_uri) {
@@ -403,8 +420,8 @@
    * invoke: Invoke a resource function
    *
    * call-seq:
-   *   result = client.invoke(options, uri, "method-name")
-   *   result = client.invoke(options, uri, "method-name", xml_doc)
+   *   client.invoke(options, uri, "method-name") -> XmlDoc
+   *   client.invoke(options, uri, "method-name", xml_doc) -> XmlDoc
    *
    */
   WsXmlDocH invoke( client_opt_t *options, const char *resource_uri, const 
char *method, WsXmlDocH data = NULL) {
@@ -427,7 +444,7 @@
    * subscribe: Subscribe a listener to events
    *
    * call-seq:
-   *   result = client.subscribe(options, filter, uri)
+   *   client.subscribe(options, filter, uri) -> XmlDoc
    *
    */
   WsXmlDocH subscribe(client_opt_t *options, filter_t *filter, const char 
*resource_uri) {
@@ -449,7 +466,7 @@
    * unsubscribe: Remove a listener from events
    *
    * call-seq:
-   *   result = client.unsubscribe(options, filter, uri, identifier)
+   *   client.unsubscribe(options, filter, uri, identifier) -> XmlDoc
    *
    */
   WsXmlDocH unsubscribe(client_opt_t *options, filter_t *filter, const char 
*resource_uri, const char *identifier) {
@@ -472,7 +489,7 @@
    * renew: Renew a subscription
    *
    * call-seq:
-   *   result = client.renew(options, uri, identifier)
+   *   client.renew(options, uri, identifier) -> XmlDoc
    *
    */
   WsXmlDocH renew(client_opt_t *options , char *resource_uri, char 
*identifier) {
@@ -492,7 +509,7 @@
    * Get a string representation of the last fault
    *
    * call-seq:
-   *   client.fault_string
+   *   client.fault_string -> String
    *
    */
   char *fault_string() {
@@ -503,7 +520,7 @@
    * Get a numeric representation of the last fault
    *
    * call-seq:
-   *   client.last_error
+   *   client.last_error -> Integer
    *
    */
    int last_error() {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openwsman-2.4.1/etc/owsmangencert.sh.in 
new/openwsman-2.4.2/etc/owsmangencert.sh.in
--- old/openwsman-2.4.1/etc/owsmangencert.sh.in 2012-01-03 08:54:48.000000000 
+0100
+++ new/openwsman-2.4.2/etc/owsmangencert.sh.in 2013-09-23 10:12:44.000000000 
+0200
@@ -18,7 +18,7 @@
           FQDN=localhost.localdomain
         fi
 echo
-echo creating selfsingned certificate
+echo creating selfsigned certificate
 echo "replace it with one signed by a certification authority (CA)"
 echo
 #echo enter your ServerName at the Common Name prompt
@@ -42,4 +42,3 @@
 
  
 chmod 600 $KEYFILE
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openwsman-2.4.1/package/openwsman.spec.in 
new/openwsman-2.4.2/package/openwsman.spec.in
--- old/openwsman-2.4.1/package/openwsman.spec.in       2013-09-11 
11:32:15.000000000 +0200
+++ new/openwsman-2.4.2/package/openwsman.spec.in       2013-09-23 
10:45:46.000000000 +0200
@@ -187,6 +187,13 @@
 Requires(pre):  sed coreutils grep diffutils /bin/hostname
 %if 0%{?suse_version}
 Requires(pre):  fillup
+%ifarch x86_64
+Requires:       pam_pwcheck.so()(64bit)
+Requires:       pam_unix2.so()(64bit)
+%else
+Requires:       pam_pwcheck.so()
+Requires:       pam_unix2.so()
+%endif
 %endif
 Summary:        Openwsman Server and service libraries
 Group:          System/Management
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openwsman-2.4.1/src/plugins/redirect/redirect.c 
new/openwsman-2.4.2/src/plugins/redirect/redirect.c
--- old/openwsman-2.4.1/src/plugins/redirect/redirect.c 2013-08-05 
11:47:23.000000000 +0200
+++ new/openwsman-2.4.2/src/plugins/redirect/redirect.c 2013-09-23 
11:29:49.000000000 +0200
@@ -280,7 +280,7 @@
         }
 
        if (get_remote_cl_cert()){
-               wsman_transport_set_cert(cl, get_remote_cert());
+               wsman_transport_set_cert(cl, get_remote_cl_cert());
                if (!get_remote_cainfo())
                         debug("Warning: cainfo not set to enable SSL operation 
in Redirect Plugin\n");
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openwsman-2.4.1/tests/client/CMakeLists.txt 
new/openwsman-2.4.2/tests/client/CMakeLists.txt
--- old/openwsman-2.4.1/tests/client/CMakeLists.txt     2013-09-11 
16:35:52.000000000 +0200
+++ new/openwsman-2.4.2/tests/client/CMakeLists.txt     2013-09-20 
09:19:59.000000000 +0200
@@ -5,7 +5,6 @@
 include_directories(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR} 
${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_BINARY_DIR} )
 
 SET( TEST_LIBS wsman wsman_client ${LIBXML2_LIBRARIES} ${CURL_LIBRARIES} 
"pthread")
-SET( CTEST_ENVIRONMENT "LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/src/lib" )
 
 SET( test_references_SOURCES test_references.c )
 SET( test_transfer_get_SOURCES test_transfer_get.c )

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to