OSDN Git Service

* scripts/release/tarball_upload.sh: Since v1.0 directive files will
authorDavid Cantrell <dcantrell@redhat.com>
Fri, 6 Oct 2006 18:15:41 +0000 (18:15 +0000)
committerDavid Cantrell <dcantrell@redhat.com>
Fri, 6 Oct 2006 18:15:41 +0000 (18:15 +0000)
   no longer be supported by ftp-upload.gnu.org after 2006, modified the
   upload script to use the v1.1 format.

git-svn-id: svn://svn.debian.org/svn/parted/upstream/trunk@839 2d424fd7-7fe2-0310-af74-8bc65edeb173

ChangeLog
scripts/release/tarball_upload.sh

index a4c915b..bc25e27 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,11 @@ See libparted/ChangeLog and parted/ChangeLog.
 
 ==============================================================================
 2006-10-06  David Cantrell  <dcantrell@redhat.com>
+       * scripts/release/tarball_upload.sh: Since v1.0 directive files will
+       no longer be supported by ftp-upload.gnu.org after 2006, modified the
+       upload script to use the v1.1 format.
+
+2006-10-06  David Cantrell  <dcantrell@redhat.com>
        * scripts/release/tarball_upload.sh: Support the -a (or --alpha) switch
        on the tarball upload script. This switch will upload the release to
        alpha.gnu.org rather than ftp.gnu.org.
index 0737935..abd39bd 100755 (executable)
@@ -134,7 +134,8 @@ echo -e "\t-> success"
 
 DIRECTIVE=$TARBALL.directive
 message "* creating and clearsigning directive file to $DIRECTIVE.asc" 
-echo -n 'Directory: parted' > $DIRECTIVE
+echo "version: $VERSION" > $DIRECTIVE
+echo "directory: parted" >> $DIRECTIVE
 if [ $? -ne 0 ]; then
         kill $GPGAPID; echo creation FAILED; exit
 fi