[Pkg-wmaker-commits] [wmgtemp] 02/45: Imported Debian patch 0.5-4

Doug Torrance dtorrance-guest at moszumanska.debian.org
Tue Aug 25 02:58:03 UTC 2015


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch master
in repository wmgtemp.

commit edd0653b57b5f6d82b15949ccc63a269e43a5149
Author: Lenart Janos <ocsi at debian.org>
Date:   Sat Dec 22 16:25:10 2001 +0100

    Imported Debian patch 0.5-4
---
 Makefile               |  10 +--
 debian/README.Debian   |   7 ++
 debian/changelog       |  68 +++++++++++++++
 debian/control         |  20 +++++
 debian/copyright       |  13 +++
 debian/local/wmgtemp.1 | 231 +++++++++++++++++++++++++++++++++++++++++++++++++
 debian/menu            |   2 +
 debian/rules           |  62 +++++++++++++
 8 files changed, 407 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile
index 02f77fb..7a08b0a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,3 @@
-INSTALL=install
-MANINSTDIR=/usr/local/man/man1
-MANPAGE=wmgtemp.1
-
 all:    
 	( cd src && $(MAKE) )
 
@@ -9,5 +5,7 @@ depend:
 	( cd src && $(MAKE) depend )
 
 install:    
-	( cd src && $(MAKE) install )
-	$(INSTALL) -m 755 -c $(MANPAGE) $(MANINSTDIR)/$(MANPAGE)
\ No newline at end of file
+	( cd src && $(MAKE) install INSTDIR=$(INSTDIR))
+
+clean:
+	( cd src && $(MAKE) clean)
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..e513402
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,7 @@
+wmgtemp for Debian
+------------------
+
+Currently it works for (some) i386 only, if you tested it with other
+architecture(s), and it worked, please notify me.
+
+ -- Lenart Janos <ocsi at debian.org>, Fri, 23 Feb 2001 00:29:54 +0100
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f9d6dda
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,68 @@
+wmgtemp (0.5-4) unstable; urgency=low
+
+  * Typo fixed in the description.                  (closes: Bug#125492)
+  * Upgraded Standards-Version.
+
+ -- Lenart Janos <ocsi at debian.org>  Sat, 22 Dec 2001 16:25:10 +0100
+
+wmgtemp (0.5-3) unstable; urgency=low
+
+  * Added Build-Depends: xlibs-dev.                 (closes: Bug#123153)
+
+ -- Lenart Janos <ocsi at debian.org>  Mon, 10 Dec 2001 22:08:12 +0100
+
+wmgtemp (0.5-2) unstable; urgency=low
+
+  * Fixed menu by Josip Rodin <joy at debian.org>.     (closes: Bug#119945)
+  * Emacs-thingy removed from this changelog.
+
+ -- Lenart Janos <ocsi at debian.org>  Sat, 17 Nov 2001 13:04:58 +0100
+
+wmgtemp (0.5-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Lenart Janos <ocsi at debian.org>  Tue, 12 Jun 2001 21:08:31 +0200
+
+wmgtemp (0.4-1) unstable; urgency=low
+
+  * New upstream release.
+  * Added suggestion against i2c-source.
+  * Added example.
+  * Changed description.
+
+ -- Lenart Janos <ocsi at debian.org>  Tue, 17 Apr 2001 21:17:39 +0200
+
+wmgtemp (0.3-3) unstable; urgency=low
+
+  * Upgraded Standards-Version.
+  * Converted to use debhelper v3.
+
+ -- Lenart Janos <ocsi at debian.org>  Sat, 31 Mar 2001 18:45:23 +0200
+
+wmgtemp (0.3-2) unstable; urgency=low
+
+  * Added manpage, currently in the diff only.       (closes: Bug#88697)
+  * Removed dh_testversion from debian/rules.
+
+ -- Lenart Janos <ocsi at debian.org>  Wed, 28 Mar 2001 21:11:00 +0200
+
+wmgtemp (0.3-1) unstable; urgency=low
+
+  * New upstream release.
+  * Makefile's patch removed from diff since it's now included in the
+    upstream.
+
+ -- Lenart Janos <ocsi at debian.org>  Tue,  6 Mar 2001 05:54:28 +0100
+
+wmgtemp (0.1-1.1) unstable; urgency=medium
+
+  * Moved from /usr/X11R6/bin to /usr/bin
+
+ -- Lenart Janos <ocsi at debian.org>  Sat, 24 Feb 2001 17:28:02 +0100
+
+wmgtemp (0.1-1) unstable; urgency=low
+
+  * Initial Release.                                 (closes: Bug#87146)
+
+ -- Lenart Janos <ocsi at debian.org>  Fri, 23 Feb 2001 00:29:54 +0100
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..5c2ddae
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: wmgtemp
+Section: utils
+Priority: optional
+Maintainer: Lenart Janos <ocsi at debian.org>
+Build-Depends: debhelper (>> 3.0.0), libsensors-dev, xlibs-dev
+Standards-Version: 3.5.6.0
+
+Package: wmgtemp
+Architecture: i386
+Depends: ${shlibs:Depends}
+Suggests: i2c-source
+Description: Temperature sensor dockapp for WindowMaker
+ It displays the CPU and SYS temperatures (both in numerically and
+ graphically) of motherboards with the VIA686A chipset primarily but
+ also supports some other sensors, including W83781D, W83627HF and
+ AS99127F. There is also intention of adding support for other chipsets
+ in the future.
+ .
+ You will need a kernel compiled with i2c capabilities to make this work,
+ use the i2c-source package to make it for yourself.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..575794d
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,13 @@
+This package was debianized by Lenart Janos <ocsi at debian.org> on
+Fri, 23 Feb 2001 00:29:54 +0100.
+
+It was downloaded from http://www.nanunanu.org/~kronos/wmgtemp-0.1.tar.gz
+
+Upstream Author(s): Roger Dunce <kronos at nanunanu.org>
+
+Copyright:
+
+You may distribute this program under the terms of the Artistic License.
+
+On Debian GNU/Linux systems, the complete text of the Artistic License
+can be found in `/usr/share/common-licenses/Artistic'.
diff --git a/debian/local/wmgtemp.1 b/debian/local/wmgtemp.1
new file mode 100644
index 0000000..d506074
--- /dev/null
+++ b/debian/local/wmgtemp.1
@@ -0,0 +1,231 @@
+.\" Hey, Emacs!  This is an -*- nroff -*- source file.
+.TH "wmgtemp" 1 "February 2001" ""
+.SH NAME
+wmgtemp \- Temperature sensor dock app for Window Maker
+.SH SYNOPSIS
+.B wmgtemp
+.I "[options]"
+.SH "DESCRIPTION"
+wmgtemp is a dock-app for Window Maker that graphically displays the CPU and System temperatures using the lm_sensors package. It was originally intended to work with the VIA686A chipset but also supports some other sensors. It displays the CPU and System temperature values, a scaling graph of temperature history, and high-temperature warning lights.
+.PP
+The temperature graph is auto scaling, meaning that if the max or min temperature boundary is crossed the graph will be scaled to display the temperature. A red line marks the upper boundary whereas a blue line indicates the lower boundary. When all the temperatures being displayed are within the boundaries the graph will be scaled back to the preset values for min/max and the boundary indicator lines will be removed.
+.PP
+The high temperature warning lights located on the left of the temperature type indicators show amber or red when the warning or high temperatures are reached respectively. Normal operating temperature is indicated by no light.
+.SH "OPTIONS"
+.TP
+.B \-h, \-\-help
+display the usage information
+.TP
+.B \-s, \-\-scale=SCALE
+show temperatures using SCALE temperature scale. SCALE=celcius, fahrenheit or kelvin.
+.br
+\fBDefault\fP: celcius
+.TP
+.B \-g, \-\-graph=STYLE
+display graph as STYLE. STYLE=line or block.
+.br
+\fBDefault\fP: line
+.TP
+
+.B \-H, \-\-high=TEMP
+display red warning light at TEMP degrees celcius.
+.br
+\fBDefault\fP: 50
+.TP
+
+.B \-w, \-\-warn=TEMP
+display amber warning light at TEMP degrees celcius.
+.br
+\fBDefault\fP: 45
+
+.TP
+.B \-u, \-\-update=SEC
+update the display every SEC seconds.
+.br
+\fBDefault\fP: 1
+
+.TP
+.B \-m, \-\-min=TEMP
+set the lower bound of the graph to TEMP degrees celcius.
+.br
+\fBDefault\fP: 20
+
+.TP
+.B \-M, \-\-max=TEMP
+set the upper bound of the graph to TEMP degrees celcius.
+.br
+\fBDefault\fP: 35
+
+.TP
+.B \-a, \-\-execat=TEMP
+execute a command at TEMP degrees celcius.
+.br
+\fBDefault\fP: none
+
+.TP
+.B \-e, \-\-exec=COMMAND
+execute COMMAND when the 'execat' temperature is reached.
+.br
+\fBDefault\fP: none
+
+.PP
+.SH FILES
+~/.wmgtemprc	User configuration.
+.PP
+The format of this file is:
+.nf
+.IP
+# wmgtemp example config
+scale:celcius
+graph:line
+high:50
+warn:45
+update:sec
+min:25
+max:35
+execat:80
+exec:shutdown -h 10
+.PP
+.SH USAGE
+.SS Graph
+You can cycle through the graph types by clicking on the graph display area.
+.PP
+.SS High Temperature Toggle
+You can toggle the displaying of high temperatures by click on the temperature for the corrosponding temperature. The viewing of high temperatures is indicated by an amber arrow to the left of the temperature. The current temperatures will continue to be displayed on the graph.
+.PP
+.SH
+.SS Temperature display TOGGLE
+You may toggle the displaying of a temperature on the graph by clicking on the corrosponding type. e.g To toggle the display of the CPU temperature click on CPU. The type indicator (CPU or SYS) will disappear and the temperature will not be displayed on the graph, although the temperature value will continue to be displayed.
+.PP
+.SH SUPPORTED SENSORS
+VIA686A, W83781D, W83627HF
+.PP
+.SH BUGS
+Blank lines in the config file cause a Segmentation Fault.
+.PP
+.SH SEE ALSO
+.BR wmaker (1x)
+.SH AUTHOR
+wmgtemp was written by Roger Dunce <kronos at nanunanu.org>
+
+
+.\" Hey, Emacs!  This is an -*- nroff -*- source file.
+.TH "wmgtemp" 1 "February 2001" ""
+.SH NAME
+wmgtemp \- Temperature sensor dock app for Window Maker
+.SH SYNOPSIS
+.B wmgtemp
+.I "[options]"
+.SH "DESCRIPTION"
+wmgtemp is a dock-app for Window Maker that graphically displays the CPU and System temperatures using the lm_sensors package. It was originally intended to work with the VIA686A chipset but also supports some other sensors. It displays the CPU and System temperature values, a scaling graph of temperature history,high-temperature warning lights and temperatures in celcius, fahrenheit or kelvin.
+.PP
+The temperature graph is auto scaling, meaning that if the max or min temperature boundary is crossed the graph will be scaled to display the temperature. A red line marks the upper boundary whereas a blue line indicates the lower boundary. When all the temperatures being displayed are within the boundaries the graph will be scaled back to the preset values for min/max and the boundary indicator lines will be removed.
+.PP
+The high temperature warning lights located on the left of the temperature type indicators show amber or red when the warning or high temperatures are reached respectively. Normal operating temperature is indicated by no light.
+.SH "OPTIONS"
+.TP
+.B \-h, \-\-help
+display the usage information
+.TP
+.B \-s, \-\-scale=SCALE
+show temperatures using SCALE temperature scale. SCALE=celcius, fahrenheit or kelvin.
+.br
+\fBDefault\fP: celcius
+.TP
+.B \-g, \-\-graph=STYLE
+display graph as STYLE. STYLE=line or block.
+.br
+\fBDefault\fP: line
+.TP
+
+.B \-H, \-\-high=TEMP
+display red warning light at TEMP degrees celcius.
+.br
+\fBDefault\fP: 50
+.TP
+
+.B \-w, \-\-warn=TEMP
+display amber warning light at TEMP degrees celcius.
+.br
+\fBDefault\fP: 45
+
+.TP
+.B \-u, \-\-update=SEC
+update the display every SEC seconds.
+.br
+\fBDefault\fP: 1
+
+.TP
+.B \-m, \-\-min=TEMP
+set the lower bound of the graph to TEMP degrees celcius.
+.br
+\fBDefault\fP: 20
+
+.TP
+.B \-M, \-\-max=TEMP
+set the upper bound of the graph to TEMP degrees celcius.
+.br
+\fBDefault\fP: 35
+
+.TP
+.B \-a, \-\-execat=TEMP
+execute a command at TEMP degrees celcius.
+.br
+\fBDefault\fP: none
+
+.TP
+.B \-e, \-\-exec=COMMAND
+execute COMMAND when the 'execat' temperature is reached.
+.br
+\fBDefault\fP: none
+
+.TP
+.B \-t, \-\-swap
+swap/transpose temperature values
+
+.PP
+.SH FILES
+~/.wmgtemprc	User configuration.
+.PP
+The format of this file is:
+.nf
+.IP
+# wmgtemp example config
+scale:celcius
+graph:line
+high:50
+warn:45
+update:sec
+min:25
+max:35
+execat:80
+exec:shutdown -h 10
+swap:n
+.PP
+.SH USAGE
+.SS Graph
+You can cycle through the graph types by clicking on the graph display area.
+.PP
+.SS High Temperature Toggle
+You can toggle the displaying of high temperatures by click on the temperature for the corrosponding temperature. The viewing of high temperatures is indicated by an amber arrow to the left of the temperature. The current temperatures will continue to be displayed on the graph.
+.PP
+.SH
+.SS Temperature display TOGGLE
+You may toggle the displaying of a temperature on the graph by clicking on the corrosponding type. e.g To toggle the display of the CPU temperature click on CPU. The type indicator (CPU or SYS) will disappear and the temperature will not be displayed on the graph, although the temperature value will continue to be displayed.
+.PP
+.SH
+.SS Temperature Scale Cycling
+You may change the scale the temperatures are displayed in by clicking on either of the CPU or SYS scale indicators. The cycle order is \fBC\fP -> \fBK\fP -> \fBF\fP
+.PP
+.SH SUPPORTED SENSORS
+VIA686A, W83781D, W83627HF, AS99127F, ADM1021
+.PP
+.SH BUGS
+Blank lines in the config file cause a Segmentation Fault.
+.PP
+.SH SEE ALSO
+.BR wmaker (1x)
+.SH AUTHOR
+wmgtemp was written by Roger Dunce <kronos at nanunanu.org>
+
+
diff --git a/debian/menu b/debian/menu
new file mode 100644
index 0000000..9dd047f
--- /dev/null
+++ b/debian/menu
@@ -0,0 +1,2 @@
+?package(wmgtemp):needs=x11 section=Apps/System title="wmgtemp" \
+  longtitle="Temperature sensor" command="/usr/bin/wmgtemp"
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e62c6a9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,62 @@
+#!/usr/bin/make -f
+# debian/rules for wmgtemp by Lenart Janos.
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatability version to use.
+export DH_COMPAT=3
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	touch configure-stamp
+
+build: configure-stamp build-stamp
+build-stamp:
+	dh_testdir
+	$(MAKE) depend
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	$(MAKE) clean
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs usr/bin
+	$(MAKE) install INSTDIR=$(CURDIR)/debian/wmgtemp/usr/bin
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs TODO
+	dh_installexamples examples/wmgtemprc
+	dh_installmenu
+	dh_installman debian/local/wmgtemp.1
+	dh_installchangelogs 
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmgtemp.git



More information about the Pkg-wmaker-commits mailing list