diff options
| -rw-r--r-- | .version | 2 | ||||
| -rw-r--r-- | Makefile | 8 | ||||
| -rw-r--r-- | debian/changelog | 16 | ||||
| -rw-r--r-- | debian/files | 2 | ||||
| -rw-r--r-- | docs/loadbars.1 | 2 |
5 files changed, 27 insertions, 3 deletions
@@ -1 +1 @@ -0.6.0.99 +0.7.0 @@ -23,14 +23,22 @@ install: deinstall: test ! -z "$(DESTDIR)" && test -f $(DESTDIR)/usr/bin/$(NAME) && rm $(DESTDIR)/usr/bin/$(NAME) || exit 0 test ! -z "$(DESTDIR)/usr/share/$(NAME)" && -d $(DESTDIR)/usr/share/$(NAME) && rm -r $(DESTDIR)/usr/share/$(NAME) || exit 0 +dch: + dch -i deb: version dpkg-buildpackage cleanall: clean-top test -f nytprof.out && rm nytprof.out test -f tmon.out && rm tmon.out test -d nytprof && rm -Rf nytprof +release: dch deb version documentation perltidy + git commit -a -m 'New release' + bash -c "git tag $$(cat .version)" + git push --tags + git push origin master clean-top: rm ../$(NAME)_*.tar.gz rm ../$(NAME)_*.dsc rm ../$(NAME)_*.changes rm ../$(NAME)_*.deb + diff --git a/debian/changelog b/debian/changelog index 0711375..5963ebd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +loadbars (0.7.0) stable; urgency=low + + * Initial version for Debian GNU/Linux Wheezy + + * Has only been tested on Wheezy + + * Major code cleanup. Removed the text display stuff from the code. + + * Minor performance enhancements + + * It is now possible to specify a list of hosts using shell espansion. + + E.g.: loadbars server{01,10..20}.example.com [OPTIONS] + + -- Paul Buetow <paul@buetow.org> Wed, 19 Jun 2013 19:25:57 +0200 + loadbars (0.6.0.99) precise; urgency=low * New dev branch diff --git a/debian/files b/debian/files index 285dadc..25fb84c 100644 --- a/debian/files +++ b/debian/files @@ -1 +1 @@ -loadbars_0.6.0.99_all.deb utils optional +loadbars_0.7.0_all.deb utils optional diff --git a/docs/loadbars.1 b/docs/loadbars.1 index 8472b05..1ba71cb 100644 --- a/docs/loadbars.1 +++ b/docs/loadbars.1 @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "LOADBARS 1" -.TH LOADBARS 1 "2013-06-19" "loadbars 0.6.0.99" "User Commands" +.TH LOADBARS 1 "2013-06-19" "loadbars 0.7.0" "User Commands" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l |
