[Demudi-commits] r1431 - in das-watchdog/trunk: . debian debian/patches

free-guest at alioth.debian.org free-guest at alioth.debian.org
Tue May 29 17:50:30 UTC 2007


Author: free-guest
Date: 2007-05-29 17:50:30 +0000 (Tue, 29 May 2007)
New Revision: 1431

Added:
   das-watchdog/trunk/debian/
   das-watchdog/trunk/debian/changelog
   das-watchdog/trunk/debian/compat
   das-watchdog/trunk/debian/control
   das-watchdog/trunk/debian/copyright
   das-watchdog/trunk/debian/dirs
   das-watchdog/trunk/debian/docs
   das-watchdog/trunk/debian/install
   das-watchdog/trunk/debian/patches/
   das-watchdog/trunk/debian/patches/Makefile.patch
   das-watchdog/trunk/debian/patches/rc.patch
   das-watchdog/trunk/debian/rules
   das-watchdog/trunk/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: das-watchdog/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: das-watchdog/trunk/debian/changelog
===================================================================
--- das-watchdog/trunk/debian/changelog	                        (rev 0)
+++ das-watchdog/trunk/debian/changelog	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,6 @@
+das-watchdog (0.3.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #426463)
+
+ -- Free Ekanayaka <freee at debian.org>  Sat, 26 May 2007 09:54:28 +0200
+

Added: das-watchdog/trunk/debian/compat
===================================================================
--- das-watchdog/trunk/debian/compat	                        (rev 0)
+++ das-watchdog/trunk/debian/compat	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1 @@
+5

Added: das-watchdog/trunk/debian/control
===================================================================
--- das-watchdog/trunk/debian/control	                        (rev 0)
+++ das-watchdog/trunk/debian/control	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,23 @@
+Source: das-watchdog
+Section: admin
+Priority: extra
+Maintainer: Debian Multimedia Team <debian-multimedia at lists.debian.org>
+Uploaders: Free Ekanayaka <freee at debian.org>
+Build-Depends: cdbs, debhelper (>= 5), dpatch, libgtop2-dev, xbase-clients
+Standards-Version: 3.7.2
+
+Package: das-watchdog
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, xbase-clients
+Description: general watchdog for the linux operating system that
+ Das_Watchdog is a general watchdog for the linux operating system that
+ should be run in the background at all times to ensure a realtime process
+ won't hang the machine.
+ .
+ Das_Watchdog is inspired by the rt_watchdog program from  Florian Schmidt,
+ but has some improvements over it:
+  * It works with 2.4 kernels as well as 2.6.
+  * Instead of permanently setting all realtime processes to run
+    non-realtime, das_watchdog only sets them temporary.
+  * When the watchdog kicks in, an X window should pop up that tells you
+    whats happening (just close it after reading the message).

Added: das-watchdog/trunk/debian/copyright
===================================================================
--- das-watchdog/trunk/debian/copyright	                        (rev 0)
+++ das-watchdog/trunk/debian/copyright	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,30 @@
+This package was debianized by Free Ekanayaka <freee at debian.org> on
+Sat, 26 May 2007 09:54:28 +0200.
+
+It was downloaded from http://www.notam02.no/arkiv/src/
+
+Upstream Author: Kjetil S. Matheussen <k.s.matheussen at notam02.no>
+
+Copyright: Kjetil Matheussen 2006
+
+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) 2007, Free Ekanayaka <freee at debian.org> and
+is licensed under the GPL, see above.

Added: das-watchdog/trunk/debian/dirs
===================================================================
--- das-watchdog/trunk/debian/dirs	                        (rev 0)
+++ das-watchdog/trunk/debian/dirs	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,2 @@
+usr/bin
+usr/sbin

Added: das-watchdog/trunk/debian/docs
===================================================================
--- das-watchdog/trunk/debian/docs	                        (rev 0)
+++ das-watchdog/trunk/debian/docs	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1 @@
+README

Added: das-watchdog/trunk/debian/install
===================================================================
--- das-watchdog/trunk/debian/install	                        (rev 0)
+++ das-watchdog/trunk/debian/install	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,2 @@
+das_watchdog	usr/sbin
+test_rt		usr/sbin

Added: das-watchdog/trunk/debian/patches/Makefile.patch
===================================================================
--- das-watchdog/trunk/debian/patches/Makefile.patch	                        (rev 0)
+++ das-watchdog/trunk/debian/patches/Makefile.patch	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,10 @@
+--- Makefile.orig	2007-05-29 00:25:14.000000000 +0200
++++ Makefile	2007-05-29 00:26:25.000000000 +0200
+@@ -13,3 +13,7 @@
+ clean:
+ 	rm das_watchdog test_rt *~
+ 
++install:
++	mkdir -p $(DESTDIR)/usr/sbin/
++	cp das_watchdog $(DESTDIR)/usr/sbin/
++	cp test_rt $(DESTDIR)/usr/sbin/

Added: das-watchdog/trunk/debian/patches/rc.patch
===================================================================
--- das-watchdog/trunk/debian/patches/rc.patch	                        (rev 0)
+++ das-watchdog/trunk/debian/patches/rc.patch	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,11 @@
+--- das_watchdog.rc.orig	2007-05-26 10:19:37.000000000 +0200
++++ das_watchdog.rc	2007-05-26 10:19:49.000000000 +0200
+@@ -14,7 +14,7 @@
+ 
+ 
+ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+-DAEMON=/usr/local/sbin/das_watchdog
++DAEMON=/usr/sbin/das_watchdog
+ NAME=das_watchdog
+ DESC="Watchdog"
+ 

Added: das-watchdog/trunk/debian/rules
===================================================================
--- das-watchdog/trunk/debian/rules	                        (rev 0)
+++ das-watchdog/trunk/debian/rules	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+  
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/makefile.mk
+
+# Add here any variable or target overrides you need.
+DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) make
+DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(CURDIR)/debian/tmp/
+
+install::
+	ln -s ../das_watchdog.rc debian/das-watchdog.init
+
+clean::
+	rm -f debian/das-watchdog.init


Property changes on: das-watchdog/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: das-watchdog/trunk/debian/watch
===================================================================
--- das-watchdog/trunk/debian/watch	                        (rev 0)
+++ das-watchdog/trunk/debian/watch	2007-05-29 17:50:30 UTC (rev 1431)
@@ -0,0 +1,3 @@
+# Site		Directory	Pattern		Version	Script
+version=3
+http://www.notam02.no/arkiv/src/das-watchdog-(.*)\.tar.gz	debian	uupdate




More information about the Demudi-commits mailing list