diff options
Diffstat (limited to 'doc/RELEASING')
-rw-r--r-- | doc/RELEASING | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/doc/RELEASING b/doc/RELEASING index c5d8195..4bcc131 100644 --- a/doc/RELEASING +++ b/doc/RELEASING | |||
@@ -1,28 +1,34 @@ | |||
1 | NOTES ON RELEASING NEW VERSION OF NAGIOSPLUG | 1 | NOTES ON RELEASING NEW VERSION OF NAGIOSPLUG |
2 | 2 | ||
3 | svn update in main area | 3 | *** Pre-release |
4 | git pull | ||
4 | . tools/devmode, if feeling adventurous | 5 | . tools/devmode, if feeling adventurous |
5 | check compilation, check tinderbox screens | 6 | check compilation, check tinderbox screens |
6 | 7 | ||
8 | *** Prepare and commit files | ||
7 | Update BUGS, NEWS file | 9 | Update BUGS, NEWS file |
8 | Update AUTHORS if new members | 10 | Update AUTHORS if new members |
9 | Update configure.in and package.def with version | 11 | Update configure.in and package.def with version |
10 | Run svn2cl (get from http://ch.tudelft.nl/~arthur/svn2cl): | 12 | Run git2cl (get from http://josefsson.org/git2cl/): |
11 | svn2cl.sh --break-before-msg --reparagraph -i http://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk | 13 | git2cl >Changelog |
12 | commit BUGS NEWS configure.in package.def ChangeLog | 14 | commit BUGS NEWS configure.in package.def ChangeLog |
13 | 15 | ||
14 | svn copy http://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk | 16 | *** Create new tag |
15 | http://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/tags/release-1.4.10 | 17 | git tag release-1.4.14 |
16 | 18 | ||
17 | checkout new version: | 19 | *** Checkout new version |
18 | cd /tmp | 20 | rm -fr /tmp/nagioslug |
19 | rm -fr nagiosplug | 21 | # If you need to checkout the tag, don't forget to "checkout master" later to |
20 | svn export http://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/tags/release-1.4.10 nagiosplug | 22 | # get back to your development branch: |
21 | cd nagiosplug | 23 | git checkout tags/release-1.4.14 |
24 | # Beware: the trailing slash of --prefix is REQUIRED | ||
25 | git checkout-index --prefix=/tmp/nagioslug/ -a | ||
26 | cd /tmp/nagioslug | ||
22 | tools/setup | 27 | tools/setup |
23 | ./configure | 28 | ./configure |
24 | make dist | 29 | make dist |
25 | 30 | ||
31 | *** Upload generated tarball to sourceforge | ||
26 | sftp upload.sf.net | 32 | sftp upload.sf.net |
27 | cd uploads | 33 | cd uploads |
28 | put file | 34 | put file |
@@ -43,5 +49,6 @@ Step 2: add file | |||
43 | Step 3: *.tar.gz, Platform Independent, Source .gz | 49 | Step 3: *.tar.gz, Platform Independent, Source .gz |
44 | Step 4: Send notice | 50 | Step 4: Send notice |
45 | 51 | ||
52 | *** Announce new release | ||
46 | Send email to nagiosplug-help, nagios-announce with the news text | 53 | Send email to nagiosplug-help, nagios-announce with the news text |
47 | Add a news item to http://nagiosplugins.org | 54 | Add a news item to http://nagiosplugins.org |