gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 03/03: maketgz keeps eating RAM. eventually this sh


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 03/03: maketgz keeps eating RAM. eventually this should be fixed, but not this time.
Date: Mon, 27 May 2019 19:25:48 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit e661b4f8796254f4a4178ccc8c57f7ec90a16615
Author: ng0 <address@hidden>
AuthorDate: Mon May 27 17:25:02 2019 +0000

    maketgz keeps eating RAM. eventually this should be fixed, but not this 
time.
---
 maketgz | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

diff --git a/maketgz b/maketgz
index e252e6cd4..b6086949f 100755
--- a/maketgz
+++ b/maketgz
@@ -153,7 +153,7 @@ tarball="gnurl-$version.tar"
 tardir="gnurl-$version"
 # TODO: Here's something we need to fix for nbsd make to work.
 # MAKE=gmake is required.
-gmake dist VERSION=$version
+gmake -sj1 dist VERSION=$version
 
 # Now make an Z archive from the tar.gz original
 
@@ -217,16 +217,13 @@ echo "maketgz report:"
 echo ""
 ls -l $targz $compressfile $paxz
 
-FILES=$targz $compressfile $paxz
-
-echo "Run this:"
-echo "gpg2 -b -a $targz && gpg2 -b -a $compressfile && gpg2 -b -a $paxz"
-if [ -x sha1 ]; then
-  sha1 $FILES
-fi
-if [ -x sum ]; then
-  sum -a SHA512 $FILES
-fi
-if [ -x rmd160 ]; then
-  rmd160 $FILES
-fi
+echo "Signing the files..."
+gpg2 -b -a $targz && gpg2 -b -a $compressfile && gpg2 -b -a $paxz
+# The lines below assume that you are me,
+# in other words you do this on a NetBSD system.
+rm -f gnurl-$version.sum.txt
+sha1 $targz $compressfile $paxz >> gnurl-$version.sum.txt
+sum -a SHA512 $targz $compressfile $paxz >> gnurl-$version.sum.txt
+rmd160 $targz $compressfile $paxz >> gnurl-$version.sum.txt
+echo "Signing the sum file..."
+gpg2 -b -a gnurl-$version.sum.txt

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]