Update to wsmancli-2.2.5
This commit is contained in:
parent
f8d96bbf5d
commit
ebab77ca87
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
wsmancli-2.2.3.tar.bz2
|
wsmancli-2.2.3.tar.bz2
|
||||||
/wsmancli-2.2.4.tar.bz2
|
/wsmancli-2.2.4.tar.bz2
|
||||||
|
/wsmancli-2.2.5.tar.bz2
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
67d6bc77f8ee25dc18c1ad86f81205c5 wsmancli-2.2.4.tar.bz2
|
2c0e22050d10afab1225ca0bb4d7b10e wsmancli-2.2.5.tar.bz2
|
||||||
|
@ -1,42 +0,0 @@
|
|||||||
diff -up wsmancli-2.2.4/src/wsman.c.orig wsmancli-2.2.4/src/wsman.c
|
|
||||||
--- wsmancli-2.2.4/src/wsman.c.orig 2011-02-22 14:55:27.434453808 +0100
|
|
||||||
+++ wsmancli-2.2.4/src/wsman.c 2011-02-22 14:56:56.969682549 +0100
|
|
||||||
@@ -57,7 +57,7 @@
|
|
||||||
extern char *getpass (const char *__prompt);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
-static int server_port = 0;
|
|
||||||
+static long int server_port = 0;
|
|
||||||
static char *cainfo = NULL;
|
|
||||||
static char *cert = NULL;
|
|
||||||
static char *sslkey = NULL;
|
|
||||||
@@ -71,15 +71,15 @@ static char *authentication_method = NUL
|
|
||||||
static char noverify_peer = 0;
|
|
||||||
static char noverify_host = 0;
|
|
||||||
|
|
||||||
-static int transport_timeout = 0;
|
|
||||||
+static long int transport_timeout = 0;
|
|
||||||
static char *proxy = NULL;
|
|
||||||
static char *proxy_upwd = NULL;
|
|
||||||
|
|
||||||
|
|
||||||
-static int debug_level = -1;
|
|
||||||
+static long int debug_level = -1;
|
|
||||||
static char *encoding = NULL;
|
|
||||||
static char *test_case = NULL;
|
|
||||||
-static int enum_max_elements = 0;
|
|
||||||
+static long int enum_max_elements = 0;
|
|
||||||
char enum_optimize = 0;
|
|
||||||
char enum_estimate = 0;
|
|
||||||
char dump_request = 0;
|
|
||||||
@@ -92,8 +92,8 @@ static char *enum_context = NULL;
|
|
||||||
static char *event_delivery_mode = NULL;
|
|
||||||
static char *event_delivery_sec_mode = NULL;
|
|
||||||
static char *event_delivery_uri = NULL;
|
|
||||||
-static int event_subscription_expire = 0;
|
|
||||||
-static int event_heartbeat = 0;
|
|
||||||
+static long int event_subscription_expire = 0;
|
|
||||||
+static long int event_heartbeat = 0;
|
|
||||||
static int event_sendbookmark =0;
|
|
||||||
static char *event_subscription_id = NULL;
|
|
||||||
static char *event_reference_properties = NULL;
|
|
@ -1,6 +1,6 @@
|
|||||||
Name: wsmancli
|
Name: wsmancli
|
||||||
Version: 2.2.4
|
Version: 2.2.5
|
||||||
Release: 3%{dist}
|
Release: 1%{dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
Url: http://www.openwsman.org/
|
Url: http://www.openwsman.org/
|
||||||
Source: http://downloads.sourceforge.net/project/openwsman/%{name}/%{version}/%{name}-%{version}.tar.bz2
|
Source: http://downloads.sourceforge.net/project/openwsman/%{name}/%{version}/%{name}-%{version}.tar.bz2
|
||||||
@ -12,8 +12,6 @@ Group: Applications/System
|
|||||||
BuildRequires: openwsman-devel >= 2.1.0 pkgconfig curl-devel
|
BuildRequires: openwsman-devel >= 2.1.0 pkgconfig curl-devel
|
||||||
Requires: openwsman curl
|
Requires: openwsman curl
|
||||||
Patch0: missing-pthread-symbols.patch
|
Patch0: missing-pthread-symbols.patch
|
||||||
# Patch1: reported to the upstream through mailing list, accepted
|
|
||||||
Patch1: wsmancli-2.2.4-big-endian.patch
|
|
||||||
Summary: WS-Management-Command line Interface
|
Summary: WS-Management-Command line Interface
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -23,7 +21,6 @@ systems using Web Services Management protocol.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%patch1 -p1 -b .big-endian
|
|
||||||
cp -fp %SOURCE1 %SOURCE2 %SOURCE3 .;
|
cp -fp %SOURCE1 %SOURCE2 %SOURCE3 .;
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -44,6 +41,9 @@ rm -rf %{buildroot}
|
|||||||
%doc COPYING README AUTHORS
|
%doc COPYING README AUTHORS
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 23 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.2.5-1
|
||||||
|
- Update to wsmancli-2.2.5
|
||||||
|
|
||||||
* Tue Feb 22 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.2.4-3
|
* Tue Feb 22 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.2.4-3
|
||||||
- Fix option issue on big endian architectures
|
- Fix option issue on big endian architectures
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user