You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by km...@apache.org on 2018/09/01 21:24:13 UTC

svn commit: r1839855 - in /spamassassin/trunk/build: README update_stable

Author: kmcgrail
Date: Sat Sep  1 21:24:13 2018
New Revision: 1839855

URL: http://svn.apache.org/viewvc?rev=1839855&view=rev
Log:
More SHA256/512issues identified

Modified:
    spamassassin/trunk/build/README
    spamassassin/trunk/build/update_stable

Modified: spamassassin/trunk/build/README
URL: http://svn.apache.org/viewvc/spamassassin/trunk/build/README?rev=1839855&r1=1839854&r2=1839855&view=diff
==============================================================================
--- spamassassin/trunk/build/README (original)
+++ spamassassin/trunk/build/README Sat Sep  1 21:24:13 2018
@@ -38,7 +38,9 @@ APACHE SPAMASSASSIN RELEASE PROCEDURE
   - You need ~/sabuildtools/bin with a symlink to gpg
 
   - You need ~/sabuildtoosl/sasigningkey with chmod 700 
- 
+
+  - You need the passphrase to the sasigning key
+
 - Ensure ExtUtils::MakeMaker is version 6.46 or later, to create
   a detailed-enough META.yml 
 
@@ -256,14 +258,13 @@ APACHE SPAMASSASSIN RELEASE PROCEDURE
 
   - For a maintainance release candidate(x.y.1-rc1), pre-release (x.y.1-preZ) or alpha (x.y.1-alphaZ):
 
-    vers=3_4_2_pre_4
+    vers=3_4_2_pre_5
 
     #Then run:
 
     repo=https://svn.apache.org/repos/asf/spamassassin
     svn delete -m "replaced old tag" $repo/tags/spamassassin_release_$vers
-    svn copy -m "creating tag for release $vers" \
-        $repo/branches/3.4 $repo/tags/spamassassin_release_$vers
+    svn copy -m "creating tag for release $vers" $repo/branches/3.4 $repo/tags/spamassassin_release_$vers
 
 
   - For a trunk release (x.y.0):
@@ -283,8 +284,7 @@ APACHE SPAMASSASSIN RELEASE PROCEDURE
 
     repo=https://svn.apache.org/repos/asf/spamassassin
     svn delete -m "replaced old tag" $repo/tags/spamassassin_release_$vers
-    svn copy -m "creating tag for release $vers" \
-        $repo/trunk $repo/tags/spamassassin_release_$vers
+    svn copy -m "creating tag for release $vers" $repo/trunk $repo/tags/spamassassin_release_$vers
 
     
   This will do a completely server-side tagging (which is the same as
@@ -312,7 +312,13 @@ APACHE SPAMASSASSIN RELEASE PROCEDURE
 
 - run "./build/update_stable" to build the tar.gz, tar.bz2 and zip files.
 
+    NOTE: link rules, t.rules and rulesrc to a trunk checkout if needed!
+
     killall gpg-agent
+    #THESE ARE NOT NEEDED FOR A TRUNK RELEASE
+    ln -s ~/usr/src/Mail-SpamAssassin/trunk/rules
+    ln -s ~/usr/src/Mail-SpamAssassin/trunk/rulesrc
+    ln -s ~/usr/src/Mail-SpamAssassin/trunk/t.rules
     ./build/update_stable
 
   NOTE: running gpg-agent with the proper homedir is needed for

Modified: spamassassin/trunk/build/update_stable
URL: http://svn.apache.org/viewvc/spamassassin/trunk/build/update_stable?rev=1839855&r1=1839854&r2=1839855&view=diff
==============================================================================
--- spamassassin/trunk/build/update_stable (original)
+++ spamassassin/trunk/build/update_stable Sat Sep  1 21:24:13 2018
@@ -14,13 +14,16 @@ tar cf - --exclude='.#*' doc | ( cd $WEB
 set +x
 echo
 
-echo "md5sum of archive files:"
 echo
-cat $RELDIR/$MAINDISTVNAME.*.md5 | sed -e 's/^/  /'
-cat $RELDIR/$DISTVNAME.*.md5 | sed -e 's/^/  /'
+echo "sha256sum of archive files:"
 echo
-echo "sha1sum of archive files:"
+cat $RELDIR/$MAINDISTVNAME.*.sha256 | sed -e 's/^/  /'
+cat $RELDIR/$DISTVNAME.*.sha256 | sed -e 's/^/  /'
+
+echo
+echo "sha512sum of archive files:"
 echo
-cat $RELDIR/$MAINDISTVNAME.*.sha1 | sed -e 's/^/  /'
-cat $RELDIR/$DISTVNAME.*.sha1 | sed -e 's/^/  /'
+cat $RELDIR/$MAINDISTVNAME.*.sha512 | sed -e 's/^/  /'
+cat $RELDIR/$DISTVNAME.*.sha512 | sed -e 's/^/  /'
+