From 4aad9f7d0c87afa621b5b34eb9cd4ac25df368f9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 1 May 2009 20:43:26 +0000 Subject: [PATCH 1/6] Initialize branch EL-5 for ykclient --- 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 bf7bbb4fe6c98a419450d43508d8ed8654c57115 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 1 May 2009 21:26:59 +0000 Subject: [PATCH 2/6] initial import --- sources | 1 + ykclient.spec | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 ykclient.spec diff --git a/sources b/sources index e69de29..a8b5f94 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +65ae386f79597429995a1ce980ab19a3 ykclient-2.2.tar.gz diff --git a/ykclient.spec b/ykclient.spec new file mode 100644 index 0000000..e42269b --- /dev/null +++ b/ykclient.spec @@ -0,0 +1,60 @@ +Name: ykclient +Version: 2.2 +Release: 1%{?dist} +Summary: Yubikey management library and client + +Group: Applications/System +License: BSD +URL: http://yubico-c-client.googlecode.com/ +Source0: http://yubico-c-client.googlecode.com/files/ykclient-2.2.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: curl-devel, chrpath + +%description +commandline for yubikeys + +%package devel + +Summary: Development headers and libraries for ykclient +Group: Development/System +Requires: %{name} = %{version}-%{release} + +%description devel +development bits + +%prep +%setup -q + +%build +%configure --enable-static=no +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT +rm $RPM_BUILD_ROOT%{_libdir}/libykclient.la +chrpath -d $RPM_BUILD_ROOT%{_bindir}/ykclient + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc COPYING AUTHORS NEWS README +%{_bindir}/ykclient +%{_libdir}/libykclient.so.3* + +%files devel +%defattr(-,root,root,-) +%doc README COPYING NEWS AUTHORS +%{_includedir}/ykclient.h +%{_libdir}/libykclient.so + +%changelog +* Wed Apr 29 2009 Dennis Gilmore - 2.2-1 +- initial packaging From 90a83206c24dfa70ab1f420d1177c8e4413c23fe Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 21 Jun 2009 18:30:12 +0000 Subject: [PATCH 3/6] update to 2.3 release --- sources | 2 +- ykclient.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index a8b5f94..80c9458 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -65ae386f79597429995a1ce980ab19a3 ykclient-2.2.tar.gz +7de70fb19e1a1857689afaec74def7fb ykclient-2.3.tar.gz diff --git a/ykclient.spec b/ykclient.spec index e42269b..a15fe26 100644 --- a/ykclient.spec +++ b/ykclient.spec @@ -1,5 +1,5 @@ Name: ykclient -Version: 2.2 +Version: 2.3 Release: 1%{?dist} Summary: Yubikey management library and client @@ -21,7 +21,8 @@ Group: Development/System Requires: %{name} = %{version}-%{release} %description devel -development bits +development files for ykclient needed to build applications to +take advantage of yubikey authentication. %prep %setup -q @@ -56,5 +57,8 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libykclient.so %changelog +* Sun Jun 21 2009 Dennis Gilmore - 2.3-1 +- update to 2.3 release + * Wed Apr 29 2009 Dennis Gilmore - 2.2-1 - initial packaging From 2c313e4124791ecde9fc519f627fa2e153103bac Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 21 Jun 2009 19:31:41 +0000 Subject: [PATCH 4/6] use %{version} in source --- ykclient.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ykclient.spec b/ykclient.spec index a15fe26..758ff24 100644 --- a/ykclient.spec +++ b/ykclient.spec @@ -6,7 +6,7 @@ Summary: Yubikey management library and client Group: Applications/System License: BSD URL: http://yubico-c-client.googlecode.com/ -Source0: http://yubico-c-client.googlecode.com/files/ykclient-2.2.tar.gz +Source0: http://yubico-c-client.googlecode.com/files/ykclient-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: curl-devel, chrpath From 339851bcc1c7ed53a190a8ea3d4c636693d67ea4 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:12:25 +0000 Subject: [PATCH 5/6] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79550fa..327f6a7 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := ykclient 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 d8b1971167c5cb0eb5214fd4f3d1533612dd3581 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 16:21:38 +0000 Subject: [PATCH 6/6] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch 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 327f6a7..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: ykclient -# $Id$ -NAME := ykclient -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