From 6236ecb18893e8e8027d96c3148d314fbf5e8d53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toshio=20=E3=81=8F=E3=82=89=E3=81=A8=E3=81=BF?= Date: Sat, 11 Oct 2008 00:15:11 +0000 Subject: [PATCH 1/4] Initialize branch F-8 for wsmancli --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..e9e7ccd --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-8 From f34abd4fb2635c9ebdf16315b7829b030c4f21de Mon Sep 17 00:00:00 2001 From: srinivas ramanatha Date: Sat, 1 Nov 2008 11:11:14 +0000 Subject: [PATCH 2/4] Initial Import to F-8 --- .cvsignore | 1 + import.log | 1 + sources | 1 + wsmancli.spec | 41 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 44 insertions(+) create mode 100644 import.log create mode 100644 wsmancli.spec diff --git a/.cvsignore b/.cvsignore index e69de29..4e353e9 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +wsmancli-2.1.0.tar.bz2 diff --git a/import.log b/import.log new file mode 100644 index 0000000..e972278 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +wsmancli-2_1_0-1_fc9:F-8:wsmancli-2.1.0-1.fc9.src.rpm:1225537844 diff --git a/sources b/sources index e69de29..20e7482 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +6377cc8c015f669f710cd9eadb00f43f wsmancli-2.1.0.tar.bz2 diff --git a/wsmancli.spec b/wsmancli.spec new file mode 100644 index 0000000..675a925 --- /dev/null +++ b/wsmancli.spec @@ -0,0 +1,41 @@ +Name: wsmancli +Version: 2.1.0 +Release: 1%{dist} +License: BSD +Url: http://www.openwsman.org/ +Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXXX) +Group: Applications/System +BuildRequires: openwsman-devel >= 2.1.0 pkgconfig curl-devel +Requires: openwsman curl +Summary: WS-Management-Command line Interface + +%description +Command line interface for managing +systems using Web Services Management protocol. + +%prep +%setup -q + +%build +%configure --disable-more-warnings +make %{?_smp_flags} + +%install +rm -rf %{buildroot} +make DESTDIR=%{buildroot} install + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root) +%{_bindir}/wsman +%{_bindir}/wseventmgr +%doc COPYING README + +%changelog + +* Tue Sep 30 2008 - 2.1.0-1%{?dist} +- Modified the spec file to adhere to fedora packaging guidelines. + From 2fc9a06ab1fdea61bb6aae1e322203c3ff800d29 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:19:10 +0000 Subject: [PATCH 3/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 402db64..c888df5 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: wsmancli -# $Id$ +# $Id: Makefile,v 1.1 2008/10/11 00:15:09 toshio Exp $ NAME := wsmancli SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 3ec46ea82205d4bc3b96d409e0376f49f2f87d0f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:27:09 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index c888df5..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wsmancli -# $Id: Makefile,v 1.1 2008/10/11 00:15:09 toshio Exp $ -NAME := wsmancli -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index e9e7ccd..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-8 diff --git a/import.log b/import.log deleted file mode 100644 index e972278..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -wsmancli-2_1_0-1_fc9:F-8:wsmancli-2.1.0-1.fc9.src.rpm:1225537844