From: fuzzyray Date: Wed, 9 Dec 2009 20:07:50 +0000 (-0000) Subject: Updated README.dev, with gentoo specific instructions X-Git-Tag: gentoolkit-0.3.0_rc10~42 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=eef92c84d6f9915f864de969d0d25018c428daf4;p=gentoolkit.git Updated README.dev, with gentoo specific instructions svn path=/trunk/gentoolkit/; revision=709 --- diff --git a/README.dev b/README.dev index 7a33d1c..feefe47 100644 --- a/README.dev +++ b/README.dev @@ -12,14 +12,29 @@ pylint --rcfile=pylintrc yourfile.py Creating a release: =================== +Note: We are using VERSION="0.3.0" simply as an example. + - Run Gentoolkit's test suite, make sure it passes: +Note: requires dev-python/snakeoil ./setup.py test + - Create a tag for the release +svn copy svn+ssh://@svn.gentoo.org/var/svnroot/gentoolkit/trunk \ + svn+ssh://@svn.gentoo.org/var/svnroot/gentoolkit/tags/gentoolkit-0.3.0 \ + -m "Tagging the release of gentoolkit." +svn update to pull the tag from subversion +cd to the local tags/gentoolkit-0.3.0 directory + - Set the version of the release: -VERSION="0.3.0" ./setup set_version +VERSION="0.3.0" ./setup.py set_version + - Create a source distribution (you need to add VERSION here, too): VERSION="0.3.0" ./setup.py sdist +Transfer dist/gentoolkit-0.3.0.tar.gz to dev.gentoo.org:/space/distfiles-local + - Reset svn version to 'svn' (default): ./setup.py set_version + - Clean up temporary files: -./setup clean -a +./setup.py clean -a +