You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2017/12/13 22:24:59 UTC

svn commit: r1818076 - /subversion/trunk/tools/dist/create-minor-release-branch.py

Author: julianfoad
Date: Wed Dec 13 22:24:59 2017
New Revision: 1818076

URL: http://svn.apache.org/viewvc?rev=1818076&view=rev
Log:
* tools/dist/create-minor-release-branch.py
  Update top-of-file comment. Remove unused imports.

Modified:
    subversion/trunk/tools/dist/create-minor-release-branch.py

Modified: subversion/trunk/tools/dist/create-minor-release-branch.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/create-minor-release-branch.py?rev=1818076&r1=1818075&r2=1818076&view=diff
==============================================================================
--- subversion/trunk/tools/dist/create-minor-release-branch.py (original)
+++ subversion/trunk/tools/dist/create-minor-release-branch.py Wed Dec 13 22:24:59 2017
@@ -21,34 +21,13 @@
 
 
 # About this script:
-#   This script is intended to simplify creating Subversion releases for
-#   any of the supported release lines of Subversion.
-#   It works well with our Apache infrastructure, and should make rolling,
-#   posting, and announcing releases dirt simple.
-#
-#   This script may be run on a number of platforms, but it is intended to
-#   be run on people.apache.org.  As such, it may have dependencies (such
-#   as Python version) which may not be common, but are guaranteed to be
-#   available on people.apache.org.
+#   This script is intended to automate steps in creating a new Subversion
+#   minor release.
 
-# It'd be kind of nice to use the Subversion python bindings in this script,
-# but people.apache.org doesn't currently have them installed
-
-# Stuff we need
 import os
 import re
 import sys
-import glob
-import fnmatch
-import shutil
-import urllib2
-import hashlib
-import tarfile
 import logging
-import datetime
-import tempfile
-import operator
-import itertools
 import subprocess
 import argparse       # standard in Python 2.7