r568 - in /trunk/boinctail: ./ Makefile debian/ debian/changelog debian/compat debian/control debian/copyright debian/install debian/manpages/ debian/menu debian/rules debian/watch

fst-guest at users.alioth.debian.org fst-guest at users.alioth.debian.org
Mon Jan 29 13:13:03 CET 2007


Author: fst-guest
Date: Mon Jan 29 13:13:02 2007
New Revision: 568

URL: http://svn.debian.org/wsvn/pkg-boinc/?sc=1&rev=568
Log:
Finally committing the BOINCTail packaging which I prepared in early December
and just finished today. The manpage for boinctail is missing and the
descriptions need some improvements.

Added:
    trunk/boinctail/
    trunk/boinctail/Makefile
    trunk/boinctail/debian/   (with props)
    trunk/boinctail/debian/changelog
    trunk/boinctail/debian/compat
    trunk/boinctail/debian/control
    trunk/boinctail/debian/copyright
    trunk/boinctail/debian/install
    trunk/boinctail/debian/manpages/
    trunk/boinctail/debian/menu
    trunk/boinctail/debian/rules   (with props)
    trunk/boinctail/debian/watch

Added: trunk/boinctail/Makefile
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/Makefile?rev=568&op=file
==============================================================================
--- trunk/boinctail/Makefile (added)
+++ trunk/boinctail/Makefile Mon Jan 29 13:13:02 2007
@@ -1,0 +1,24 @@
+VERSION=0.2
+
+DEBUG=  -D_DEBUG -g #-fprofile-arcs -ftest-coverage # -pg -g
+CPPFLAGS+=-Wall -O2 -I/usr/include/BOINC/ -DVERSION=\"${VERSION}\" $(DEBUG)
+LDFLAGS+=$(DEBUG) -lstdc++ -lboinc
+
+OBJS=bt.o error.o
+
+all: boinctail
+
+boinctail: $(OBJS)
+	$(CC) -Wall -W $(OBJS) $(LDFLAGS) -o boinctail
+
+#install: boinctail
+#	cp boinctail /usr/local/bin
+
+clean:
+	rm -f $(OBJS) boinctail core *.da *.gcov *.bb*
+
+package: clean
+	mkdir boinctail-$(VERSION)
+	cp *.c* *.h Makefile readme.txt license.txt boinctail-$(VERSION)
+	tar czf boinctail-$(VERSION).tgz boinctail-$(VERSION)
+	rm -rf boinctail-$(VERSION)

Propchange: trunk/boinctail/debian/
------------------------------------------------------------------------------
    mergeWithUpstream = 1

Added: trunk/boinctail/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/debian/changelog?rev=568&op=file
==============================================================================
--- trunk/boinctail/debian/changelog (added)
+++ trunk/boinctail/debian/changelog Mon Jan 29 13:13:02 2007
@@ -1,0 +1,5 @@
+boinctail (0.2-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Frank S. Thomas <frank at thomas-alfeld.de>  Mon, 29 Jan 2007 11:47:30 +0100

Added: trunk/boinctail/debian/compat
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/debian/compat?rev=568&op=file
==============================================================================
--- trunk/boinctail/debian/compat (added)
+++ trunk/boinctail/debian/compat Mon Jan 29 13:13:02 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/boinctail/debian/control
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/debian/control?rev=568&op=file
==============================================================================
--- trunk/boinctail/debian/control (added)
+++ trunk/boinctail/debian/control Mon Jan 29 13:13:02 2007
@@ -1,0 +1,16 @@
+Source: boinctail
+Section: utils
+Priority: optional
+Maintainer: Debian BOINC Maintainers <pkg-boinc-devel at lists.alioth.debian.org>
+Uploaders: Frank S. Thomas <frank at thomas-alfeld.de>
+Build-Depends: cdbs, debhelper (>= 5), boinc-dev
+Standards-Version: 3.7.2
+
+Package: boinctail
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: tail-like monitoring utility for the BOINC client
+ BOINCTail is a monitoring utility for the BOINC client which displays the
+ status of the client and the applications in a tail-like way.
+ .
+  Homepage: http://www.vanheusden.com/boinctail/

Added: trunk/boinctail/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/debian/copyright?rev=568&op=file
==============================================================================
--- trunk/boinctail/debian/copyright (added)
+++ trunk/boinctail/debian/copyright Mon Jan 29 13:13:02 2007
@@ -1,0 +1,31 @@
+This package was debianized by Frank S. Thomas <frank at thomas-alfeld.de> on
+Wed,  6 Dec 2006 23:57:18 +0100.
+
+It was downloaded from http://www.vanheusden.com/boinctail/
+
+Upstream Author: Folkert van Heusden <folkert at vanheusden.com>
+
+Copyright (C) 2006 Folkert van Heusden
+
+License:
+
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+
+   This package is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this package; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2006-2007 Debian BOINC Maintainers
+<pkg-boinc-devel at lists.alioth.debian.org> and is licensed under
+the GPL, see above.

Added: trunk/boinctail/debian/install
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/debian/install?rev=568&op=file
==============================================================================
--- trunk/boinctail/debian/install (added)
+++ trunk/boinctail/debian/install Mon Jan 29 13:13:02 2007
@@ -1,0 +1,1 @@
+boinctail   usr/bin

Added: trunk/boinctail/debian/menu
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/debian/menu?rev=568&op=file
==============================================================================
--- trunk/boinctail/debian/menu (added)
+++ trunk/boinctail/debian/menu Mon Jan 29 13:13:02 2007
@@ -1,0 +1,6 @@
+?package(boinctail):\
+    needs="text"\
+    section="Apps/Tools"\
+    hints="BOINC,Monitoring"\
+    title="BOINCTail"\
+    command="/usr/bin/boinctail"

Added: trunk/boinctail/debian/rules
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/debian/rules?rev=568&op=file
==============================================================================
--- trunk/boinctail/debian/rules (added)
+++ trunk/boinctail/debian/rules Mon Jan 29 13:13:02 2007
@@ -1,0 +1,11 @@
+#!/usr/bin/make -f
+  
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/makefile.mk
+
+DEB_MAKE_CLEAN_TARGET = clean
+DEB_MAKE_BUILD_TARGET = all
+DEB_MAKE_INSTALL_TARGET =
+DEB_MAKE_CHECK_TARGET =
+
+DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) make -C $(DEB_BUILDDIR)

Propchange: trunk/boinctail/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/boinctail/debian/watch
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinctail/debian/watch?rev=568&op=file
==============================================================================
--- trunk/boinctail/debian/watch (added)
+++ trunk/boinctail/debian/watch Mon Jan 29 13:13:02 2007
@@ -1,0 +1,2 @@
+version=3
+http://www.vanheusden.com/boinctail/boinctail-(.*)\.tgz




More information about the pkg-boinc-commits mailing list