From 21495e2c90bf8a0da25672cd39a4f88efb323153 Mon Sep 17 00:00:00 2001 From: basney Date: Fri, 4 Sep 2009 20:02:33 +0000 Subject: [PATCH] Starting with the 4.7 release, we've stopped providing the gsi_openssh_compat package. --- compat/INSTALL | 0 compat/filelist | 36 ----------- compat/make_gpt_dist | 128 ---------------------------------------- compat/pkg_data_src.gpt | 73 ----------------------- 4 files changed, 237 deletions(-) delete mode 100644 compat/INSTALL delete mode 100644 compat/filelist delete mode 100755 compat/make_gpt_dist delete mode 100644 compat/pkg_data_src.gpt diff --git a/compat/INSTALL b/compat/INSTALL deleted file mode 100644 index e69de29..0000000 diff --git a/compat/filelist b/compat/filelist deleted file mode 100644 index 6b938f1..0000000 --- a/compat/filelist +++ /dev/null @@ -1,36 +0,0 @@ -bin/scp -bin/sftp -bin/slogin -bin/ssh -bin/ssh-add -bin/ssh-agent -bin/ssh-keygen -bin/ssh-keyscan -man/man1/scp.1 -man/man1/sftp.1 -man/man1/slogin.1 -man/man1/ssh-add.1 -man/man1/ssh-agent.1 -man/man1/ssh-keygen.1 -man/man1/ssh-keyscan.1 -man/man1/ssh.1 -man/man5/ssh_config.5 -man/man5/sshd_config.5 -man/man8/sftp-server.8 -man/man8/ssh-keysign.8 -man/man8/ssh-rand-helper.8 -man/man8/sshd.8 -man/cat1/scp.1 -man/cat1/sftp.1 -man/cat1/slogin.1 -man/cat1/ssh-add.1 -man/cat1/ssh-agent.1 -man/cat1/ssh-keygen.1 -man/cat1/ssh-keyscan.1 -man/cat1/ssh.1 -man/cat5/ssh_config.5 -man/cat5/sshd_config.5 -man/cat8/sftp-server.8 -man/cat8/ssh-keysign.8 -man/cat8/ssh-rand-helper.8 -man/cat8/sshd.8 diff --git a/compat/make_gpt_dist b/compat/make_gpt_dist deleted file mode 100755 index bc0b2e0..0000000 --- a/compat/make_gpt_dist +++ /dev/null @@ -1,128 +0,0 @@ -#!/usr/bin/env perl -# -# make_gpt_dist - adapted from GPT's make_gpt_dist script -# -# Create a GPT source package after deriving the necessary build files. -# - -# -# You can define the source directory and package names to suit your needs. It's -# important to remember that GPT needs the source package name to be similar to -# the name of the package as defined in the package metadata (pkg_data_src.gpt). -# -# Failing to do this correctly will not affect bundle-creation, but will affect -# globus-build's ability to select and untar the correct package corresponding -# to the name gpt-bundle gives in its 'packaging_list'. -# - -$srcdirname = "gsi_openssh_compat-4.6-src"; -$srcpkgname = $srcdirname; - -# -# uncomment when we've got a better place to get the current version from -# -# determine gpt version number -# -#open (CFG, 'packaging_tools/configure.in'); -# -#my $version; -#for () { -# if (m!AM_INIT_AUTOMAKE\(\w+,([^,\)]+)!) { -# $version = $1; -# $version =~ s!\s+!!g; -# } -#} - -# -# test to make sure we're okay to -# o create/use the $srcdirname directories -# o create the source package -# - -if ( (!defined($srcdirname)) || length($srcdirname) le 0 ) -{ - printf("\$srcdirname must be defined to a usable value!\n"); - die; -} - -if ( (!defined($srcpkgname)) || length($srcpkgname) le 0 ) -{ - printf("\$srcpkgname must be defined to a usable value!\n"); - die; -} - -if ( -e "../$srcdirname" ) -{ - printf("found existing '../$srcdirname'... please remove before continuing\n"); - die; -} - -if ( -e "./$srcdirname" ) -{ - printf("found existing './$srcdirname'... please remove before continuing\n"); - die; -} - -if ( -e "./$srcpkgname.tar" ) -{ - printf("found existing './$srcpkgname.tar'... please remove before continuing\n"); - die; -} - -if ( -e "./$srcpkgname.tar.gz" ) -{ - printf("found existing './$srcpkgname.tar.gz'... please remove before continuing\n"); - die; -} - -# -# prep the source directory by creating a temp directory containing all of the -# required files. -# - -printf("copying files into source directory...\n"); -system("mkdir ../$srcdirname")==0 or die "Unable to create ../$srcdirname: $?"; -system("cp -rf * ../$srcdirname")==0 or die "Unable to copy . into ../$srcdirname: $?"; -system("mv ../$srcdirname ./$srcdirname")==0 or die "Unable to move $srcdirname from ../ to ./: $?"; - -chdir("./$srcdirname"); - -# -# remove any 'unnecessary' files from the source directory. -# - -printf("pruning source directory of extraneous files...\n"); - -system("rm -rf `find . -name CVS -print`")==0 or die "Unable to remove cvs directories: $?"; -system("rm -f ./todo")==0 or die "Unable to remove todo file: $?"; - -# -# # -# # run the standard development tools to get the necessary derived files. -# # -# -# printf("running autoheader...\n"); -# system("autoheader")==0 or die "Could not run autoheader: $?"; -# -# printf("running autoconf...\n"); -# system("autoconf")==0 or die "Could not run autoheader: $?"; -# - -chdir("../"); - -# -# create the source package from the source directory. -# - -printf("creating source tarball '$srcpkgname.tar.gz'...\n"); -system("tar -cf ./$srcpkgname.tar ./$srcdirname")==0 or die "Unable to create $srcpkgname.tar: $?"; -system("gzip -f ./$srcpkgname.tar")==0 or die "Unable to gzip $srcpkgname.tar: $?"; - -printf("cleaning up after myself...\n"); -system("rm -rf ./$srcdirname")==0 or die "Unable to remove ./$srcdirname: $?"; - -# -# done. -# - -printf("done.\n"); diff --git a/compat/pkg_data_src.gpt b/compat/pkg_data_src.gpt deleted file mode 100644 index e3168b9..0000000 --- a/compat/pkg_data_src.gpt +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - GSI-Enabled OpenSSH compat - gsi_openssh - - - - - GSI-OpenSSH 4.6 / OpenSSH 5.2p1 / HPN13v5 - - - - - - mkdir -p INSTALLDIR_GPTMACRO/bin/ - ln -sf ./ssh.d/scp INSTALLDIR_GPTMACRO/bin/scp - ln -sf ./ssh.d/sftp INSTALLDIR_GPTMACRO/bin/sftp - ln -sf ./ssh.d/slogin INSTALLDIR_GPTMACRO/bin/slogin - ln -sf ./ssh.d/ssh INSTALLDIR_GPTMACRO/bin/ssh - ln -sf ./ssh.d/ssh-add INSTALLDIR_GPTMACRO/bin/ssh-add - ln -sf ./ssh.d/ssh-agent INSTALLDIR_GPTMACRO/bin/ssh-agent - ln -sf ./ssh.d/ssh-keygen INSTALLDIR_GPTMACRO/bin/ssh-keygen - ln -sf ./ssh.d/ssh-keyscan INSTALLDIR_GPTMACRO/bin/ssh-keyscan - - mkdir -p INSTALLDIR_GPTMACRO/man/man1/ - ln -sf ./ssh.d/scp.1 INSTALLDIR_GPTMACRO/man/man1/scp.1 - ln -sf ./ssh.d/sftp.1 INSTALLDIR_GPTMACRO/man/man1/sftp.1 - ln -sf ./ssh.d/slogin.1 INSTALLDIR_GPTMACRO/man/man1/slogin.1 - ln -sf ./ssh.d/ssh-add.1 INSTALLDIR_GPTMACRO/man/man1/ssh-add.1 - ln -sf ./ssh.d/ssh-agent.1 INSTALLDIR_GPTMACRO/man/man1/ssh-agent.1 - ln -sf ./ssh.d/ssh-keygen.1 INSTALLDIR_GPTMACRO/man/man1/ssh-keygen.1 - ln -sf ./ssh.d/ssh-keyscan.1 INSTALLDIR_GPTMACRO/man/man1/ssh-keyscan.1 - ln -sf ./ssh.d/ssh.1 INSTALLDIR_GPTMACRO/man/man1/ssh.1 - - mkdir -p INSTALLDIR_GPTMACRO/man/man5/ - ln -sf ./ssh.d/ssh_config.5 INSTALLDIR_GPTMACRO/man/man5/ssh_config.5 - ln -sf ./ssh.d/sshd_config.5 INSTALLDIR_GPTMACRO/man/man5/sshd_config.5 - - mkdir -p INSTALLDIR_GPTMACRO/man/man8/ - ln -sf ./ssh.d/sftp-server.8 INSTALLDIR_GPTMACRO/man/man8/sftp-server.8 - ln -sf ./ssh.d/ssh-keysign.8 INSTALLDIR_GPTMACRO/man/man8/ssh-keysign.8 - ln -sf ./ssh.d/ssh-rand-helper.8 INSTALLDIR_GPTMACRO/man/man8/ssh-rand-helper.8 - ln -sf ./ssh.d/sshd.8 INSTALLDIR_GPTMACRO/man/man8/sshd.8 - - mkdir -p INSTALLDIR_GPTMACRO/man/cat1/ - ln -sf ./ssh.d/scp.1 INSTALLDIR_GPTMACRO/man/cat1/scp.1 - ln -sf ./ssh.d/sftp.1 INSTALLDIR_GPTMACRO/man/cat1/sftp.1 - ln -sf ./ssh.d/slogin.1 INSTALLDIR_GPTMACRO/man/cat1/slogin.1 - ln -sf ./ssh.d/ssh-add.1 INSTALLDIR_GPTMACRO/man/cat1/ssh-add.1 - ln -sf ./ssh.d/ssh-agent.1 INSTALLDIR_GPTMACRO/man/cat1/ssh-agent.1 - ln -sf ./ssh.d/ssh-keygen.1 INSTALLDIR_GPTMACRO/man/cat1/ssh-keygen.1 - ln -sf ./ssh.d/ssh-keyscan.1 INSTALLDIR_GPTMACRO/man/cat1/ssh-keyscan.1 - ln -sf ./ssh.d/ssh.1 INSTALLDIR_GPTMACRO/man/cat1/ssh.1 - - mkdir -p INSTALLDIR_GPTMACRO/man/cat5/ - ln -sf ./ssh.d/ssh_config.5 INSTALLDIR_GPTMACRO/man/cat5/ssh_config.5 - ln -sf ./ssh.d/sshd_config.5 INSTALLDIR_GPTMACRO/man/cat5/sshd_config.5 - - mkdir -p INSTALLDIR_GPTMACRO/man/cat8/ - ln -sf ./ssh.d/sftp-server.8 INSTALLDIR_GPTMACRO/man/cat8/sftp-server.8 - ln -sf ./ssh.d/ssh-keysign.8 INSTALLDIR_GPTMACRO/man/cat8/ssh-keysign.8 - ln -sf ./ssh.d/ssh-rand-helper.8 INSTALLDIR_GPTMACRO/man/cat8/ssh-rand-helper.8 - ln -sf ./ssh.d/sshd.8 INSTALLDIR_GPTMACRO/man/cat8/sshd.8 - - - - - - -- 2.45.1