From c54529f83cdc9ed58c856079224a36e07d312032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jason=20=E3=83=86=E3=82=A3=E3=83=93=E3=83=84?= Date: Wed, 29 Jul 2009 21:02:57 +0000 Subject: [PATCH 1/4] Initialize branch F-11 for uberftp --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..25c7708 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-11 From cd5f886ff0a460aefe889e9f87d3a5f5dd698939 Mon Sep 17 00:00:00 2001 From: stevetraylen Date: Thu, 30 Jul 2009 07:24:10 +0000 Subject: [PATCH 2/4] Add to el4,5 and f10,11 --- sources | 1 + uberftp.spec | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 uberftp.spec diff --git a/sources b/sources index e69de29..b7a8150 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +14ec224f9661a0f565835e29137405f7 uberftp-client-2.4.tar.gz diff --git a/uberftp.spec b/uberftp.spec new file mode 100644 index 0000000..d2b03dc --- /dev/null +++ b/uberftp.spec @@ -0,0 +1,69 @@ +%ifarch alpha ia64 ppc64 s390x sparc64 x86_64 +%global flavor gcc64pthr +%else +%global flavor gcc32pthr +%endif + + +Name: uberftp +Version: 2.4 +Release: 4%{?dist} +Summary: GridFTP-enabled ftp client + +Group: Applications/Internet + +License: NCSA +URL: http://dims.ncsa.illinois.edu/set/uberftp/ +Source0: http://dims.ncsa.illinois.edu/set/uberftp/download/uberftp-client-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: grid-packaging-tools, globus-gssapi-gsi-devel + +%description +UberFTP is the first interactive, GridFTP-enabled ftp client. +It supports GSI authentication, parallel data channels and +third party transfers. + +%prep +%setup -q -n uberftp-client-%{version} +iconv -f iso8859-1 -t utf-8 copyright > copyright.conv && mv -f copyright.conv copyright + + +%build +mkdir pkgdata +sed -e 's!-I$globus_location/include/$globus_flavor! -I%{_includedir}/globus -I%{_libdir}/globus/include!' -i configure.ac + +%{_datadir}/globus/globus-bootstrap.sh + +%configure --with-globus-flavor=%{flavor} --with-globus=%{_usr} --with-gpt=%{_usr} +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%{_bindir}/uberftp +%{_mandir}/man1/uberftp.1.gz +%doc Changelog.mssftp Changelog copyright + +%changelog +* Wed Jul 22 2009 Steve Traylen 2.4-4 +- Update source to version 2.4 +- Include copyright file in package. + +* Tue Jun 23 2009 Steve Traylen 2.3-3 +- Better inclusion of globus header files. +* Fri Jun 19 2009 Steve Traylen - 2.3-2 +- Remove my debugging. +* Fri Jun 19 2009 Steve Traylen - 2.3-1 +- Initial version. + + From cd6fd05a47702f9243fd6343293a90cbdadf73d5 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:13:14 +0000 Subject: [PATCH 3/4] 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 e39872c..67504f0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := uberftp 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 f9a92e8ab3ad316ccd4b3b3703eb0b911f91ca0e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:36:10 +0000 Subject: [PATCH 4/4] 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 67504f0..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: uberftp -# $Id$ -NAME := uberftp -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 25c7708..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-11