You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2021/10/05 08:41:26 UTC

svn commit: r1893909 - in /httpd/dev-tools/release: README common-lib.sh r5-commit-staged-release.sh

Author: icing
Date: Tue Oct  5 08:41:26 2021
New Revision: 1893909

URL: http://svn.apache.org/viewvc?rev=1893909&view=rev
Log:
 * update local checkout before applying changes in r4 and commit in r5
 * adding recommended manual checks to README


Modified:
    httpd/dev-tools/release/README
    httpd/dev-tools/release/common-lib.sh
    httpd/dev-tools/release/r5-commit-staged-release.sh

Modified: httpd/dev-tools/release/README
URL: http://svn.apache.org/viewvc/httpd/dev-tools/release/README?rev=1893909&r1=1893908&r2=1893909&view=diff
==============================================================================
--- httpd/dev-tools/release/README (original)
+++ httpd/dev-tools/release/README Tue Oct  5 08:41:26 2021
@@ -33,8 +33,7 @@ Usage overview:
    > $DEV_TOOLS/release/r6-announce.sh
      # announce it to the world by mail (well, tell you how to do it)
      # Set release CVEs to READY on the cveprocess site
-     # (Maybe an option to automate that in the future?)
-
+   # Check that the website works. Check the download page, the vulnerabilities page.
 
  On vote failure or when aborting for other reasons:
    > $DEV_TOOLS/release/reset-candidate.sh version

Modified: httpd/dev-tools/release/common-lib.sh
URL: http://svn.apache.org/viewvc/httpd/dev-tools/release/common-lib.sh?rev=1893909&r1=1893908&r2=1893909&view=diff
==============================================================================
--- httpd/dev-tools/release/common-lib.sh (original)
+++ httpd/dev-tools/release/common-lib.sh Tue Oct  5 08:41:26 2021
@@ -421,6 +421,8 @@ add_changes_entry() {
 }
 
 stage_checkout_release() {
+  # make sure we are up-to-date
+  svn up
   # calculate the next patch version
   is_int ${v_patch} || fail "version patch '${v_patch}' is not a number"
   next_patch=`expr ${v_patch} + 1`

Modified: httpd/dev-tools/release/r5-commit-staged-release.sh
URL: http://svn.apache.org/viewvc/httpd/dev-tools/release/r5-commit-staged-release.sh?rev=1893909&r1=1893908&r2=1893909&view=diff
==============================================================================
--- httpd/dev-tools/release/r5-commit-staged-release.sh (original)
+++ httpd/dev-tools/release/r5-commit-staged-release.sh Tue Oct  5 08:41:26 2021
@@ -47,6 +47,8 @@ AO_DIST_RELEASE_PATH="${AO_DIST_PATH}/re
 SVN_SITE_CONTENT_URL="${SVN_SITE_URL}/${PROJECT}/site/trunk/content/"
 DIST_SITEPATH="${DIST_DIR}/site"
 
+echo "updating local checkout"
+svn up
 
 test -d "${AO_DIST_RELEASE_PATH}" ||
   fail "staged changes for dist.apache.org not found in ${AO_DIST_RELEASE_PATH}"