diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-02-06 12:22:22 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-02-06 12:22:22 (GMT) |
commit | 7082ff2abd33fed79539299af8ddc9cd50b5c429 (patch) | |
tree | ae5e1dbf9385b3c24df877fcd74018c45718c788 /doc | |
parent | bab46e817fdd198ddf11f533ef50cad3149f65e8 (diff) | |
download | monitoring-plugins-7082ff2abd33fed79539299af8ddc9cd50b5c429.tar.gz |
Update the devel notes for Git
Diffstat (limited to 'doc')
-rw-r--r-- | doc/LEAVERS | 1 | ||||
-rw-r--r-- | doc/NEW_STARTERS | 3 | ||||
-rw-r--r-- | doc/RELEASING | 29 |
3 files changed, 21 insertions, 12 deletions
diff --git a/doc/LEAVERS b/doc/LEAVERS index 9764fda..13382c9 100644 --- a/doc/LEAVERS +++ b/doc/LEAVERS | |||
@@ -9,6 +9,7 @@ Administration tasks: | |||
9 | - Reassign leaver's tracker items to project lead | 9 | - Reassign leaver's tracker items to project lead |
10 | - Remove from Sourceforge's list of developers. This will include CVS access. Do not | 10 | - Remove from Sourceforge's list of developers. This will include CVS access. Do not |
11 | need to remove from CVS avail file | 11 | need to remove from CVS avail file |
12 | - Remove access from repos.or.cz for all three Git repositories | ||
12 | - If applicable, remove from mailing list administrators | 13 | - If applicable, remove from mailing list administrators |
13 | - Keep on nagiosplug-team mailing list, unless specifically requested to be removed | 14 | - Keep on nagiosplug-team mailing list, unless specifically requested to be removed |
14 | 15 | ||
diff --git a/doc/NEW_STARTERS b/doc/NEW_STARTERS index 23f1a4a..6247c82 100644 --- a/doc/NEW_STARTERS +++ b/doc/NEW_STARTERS | |||
@@ -21,4 +21,5 @@ Need to know: | |||
21 | 3. Add to CVS avail file: | 21 | 3. Add to CVS avail file: |
22 | - Translator: Add member to translation files | 22 | - Translator: Add member to translation files |
23 | - Developer: Add member to CVSROOT/avail for all files | 23 | - Developer: Add member to CVSROOT/avail for all files |
24 | 4. Send email to nagiosplug-team introducing new member | 24 | 4. Add Git access on repos.or.cz |
25 | 5. Send email to nagiosplug-team introducing new member | ||
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 |