From 9a5f2e1ca675912aaf7a5a398d5796ab9fb34ec6 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:14 +0000 Subject: [PATCH 1/5] Initialize branch EL-5 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..42f697a --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-5 From 024c67f60520f65c99da609ce79b41db8e81940a Mon Sep 17 00:00:00 2001 From: srinivas ramanatha Date: Sat, 1 Nov 2008 11:07:48 +0000 Subject: [PATCH 2/5] Initial Import to EL-5 --- .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..ec76634 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +wsmancli-2_1_0-1_fc9:EL-5:wsmancli-2.1.0-1.fc9.src.rpm:1225537637 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 bd89ce7279640a578bc7f1ae7eb5006bf7fcb472 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:19:08 +0000 Subject: [PATCH 3/5] 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 cc2422b8521a64b821c7de60b54a3b295a171f3b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:27:11 +0000 Subject: [PATCH 4/5] 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 42f697a..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-5 diff --git a/import.log b/import.log deleted file mode 100644 index ec76634..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -wsmancli-2_1_0-1_fc9:EL-5:wsmancli-2.1.0-1.fc9.src.rpm:1225537637 From d22c1ad0479975cad46ee5ac682cb51008b9bf08 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Wed, 17 Dec 2014 22:35:51 +0100 Subject: [PATCH 5/5] 2014-12-17: Retired orphaned package, because it was orphaned for more than six weeks. Reference: https://fedorahosted.org/epel/ticket/7 --- .gitignore | 1 - dead.package | 3 +++ sources | 1 - wsmancli.spec | 41 ----------------------------------------- 4 files changed, 3 insertions(+), 43 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 wsmancli.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 4e353e9..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -wsmancli-2.1.0.tar.bz2 diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..8d8263d --- /dev/null +++ b/dead.package @@ -0,0 +1,3 @@ +2014-12-17: Retired orphaned package, because it was orphaned for more than six weeks. +Reference: https://fedorahosted.org/epel/ticket/7 + diff --git a/sources b/sources deleted file mode 100644 index 20e7482..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -6377cc8c015f669f710cd9eadb00f43f wsmancli-2.1.0.tar.bz2 diff --git a/wsmancli.spec b/wsmancli.spec deleted file mode 100644 index 675a925..0000000 --- a/wsmancli.spec +++ /dev/null @@ -1,41 +0,0 @@ -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. -