From 83ad25ca65af2c93ef1d811dc6752e4549675604 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Sun, 19 May 2024 17:24:10 +0100 Subject: [PATCH] wmclockmon: remove Debian packaging The upstream source includes some ancient Debian packaging. Get rid of it. Signed-off-by: Jeremy Sowden --- wmclockmon/debian/changelog | 21 --------------- wmclockmon/debian/control | 13 --------- wmclockmon/debian/copyright | 15 ----------- wmclockmon/debian/dirs | 1 - wmclockmon/debian/docs | 1 - wmclockmon/debian/menu | 7 ----- wmclockmon/debian/rules | 64 --------------------------------------------- 7 files changed, 122 deletions(-) delete mode 100644 wmclockmon/debian/changelog delete mode 100644 wmclockmon/debian/control delete mode 100644 wmclockmon/debian/copyright delete mode 100644 wmclockmon/debian/dirs delete mode 100644 wmclockmon/debian/docs delete mode 100644 wmclockmon/debian/menu delete mode 100644 wmclockmon/debian/rules diff --git a/wmclockmon/debian/changelog b/wmclockmon/debian/changelog deleted file mode 100644 index 18eee8b..0000000 --- a/wmclockmon/debian/changelog +++ /dev/null @@ -1,21 +0,0 @@ -wmclockmon (0.5.0-1) unstable; urgency=low - - * New upstream release: - - Now supports skins - - Now supports internet time - - Overall bugfixes - - -- Marc Brockschmidt Sat, 25 Oct 2003 19:32:10 +0200 - -wmclockmon (0.2.2-2) unstable; urgency=low - - * Changed Architecture to any - Ooops! (Closes: #207573) - - -- Marc Brockschmidt Thu, 20 Aug 2003 16:16:54 +0200 - -wmclockmon (0.2.2-1) unstable; urgency=low - - * Initial Release. (Closes: #202327) - * Sponsored by Amaya Rodrigo . - - -- Marc Brockschmidt Mon, 21 Jul 2003 21:12:17 +0200 diff --git a/wmclockmon/debian/control b/wmclockmon/debian/control deleted file mode 100644 index ce3c78c..0000000 --- a/wmclockmon/debian/control +++ /dev/null @@ -1,13 +0,0 @@ -Source: wmclockmon -Section: x11 -Priority: optional -Maintainer: Marc Brockschmidt -Build-Depends: libglib1.2-dev, libgtk1.2-dev, xlibs-dev (>> 4.1.0), debhelper (>= 3.0.0) -Standards-Version: 3.6.0 - -Package: wmclockmon -Architecture: any -Depends: ${shlibs:Depends} -Description: Displays a clock in 12/24h mode with alarm mode and 3 different LCD styles - wmclockmon displays a clock like wmtime, but with an alarm timer and - different styles. diff --git a/wmclockmon/debian/copyright b/wmclockmon/debian/copyright deleted file mode 100644 index 806dad9..0000000 --- a/wmclockmon/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Marc Brockschmidt on -Mon, 21 Jul 2003 21:12:17 +0200. - -It was downloaded from http://tnemeth.free.fr/projets/dockapps.html - -Upstream Author: Thomas Nemeth - -Copyright: (c) Thomas Nemeth 2002-2003 - -wmclockmon is released under the terms of the GNU GPL version 2. - -On Debian GNU/Linux systems, the complete text of the GNU -General Public License version 2 can be found in -/usr/share/common-licenses/GPL-2. - diff --git a/wmclockmon/debian/dirs b/wmclockmon/debian/dirs deleted file mode 100644 index e772481..0000000 --- a/wmclockmon/debian/dirs +++ /dev/null @@ -1 +0,0 @@ -usr/bin diff --git a/wmclockmon/debian/docs b/wmclockmon/debian/docs deleted file mode 100644 index 02c920b..0000000 --- a/wmclockmon/debian/docs +++ /dev/null @@ -1 +0,0 @@ -doc/sample.wmclockmonrc diff --git a/wmclockmon/debian/menu b/wmclockmon/debian/menu deleted file mode 100644 index b84979d..0000000 --- a/wmclockmon/debian/menu +++ /dev/null @@ -1,7 +0,0 @@ -?package(wmclockmon):\ - needs=X11\ - section=Apps/Tools\ - hints="Clocks"\ - title="wmclockmon"\ - command="/usr/bin/wmclockmon" - diff --git a/wmclockmon/debian/rules b/wmclockmon/debian/rules deleted file mode 100644 index 7236184..0000000 --- a/wmclockmon/debian/rules +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/make -f -export DH_COMPAT=3 - -TMP=$(CURDIR)/debian/wmclockmon - -CFLAGS = -Wall -g -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif - -configure: configure-stamp -configure-stamp: - dh_testdir - CFLAGS="$(CFLAGS)" ./configure --prefix=$(TMP)/usr --mandir=$(TMP)/usr/share/man - touch configure-stamp - -build: configure build-stamp -build-stamp: - dh_testdir - $(MAKE) - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp install-stamp configure-stamp - -$(MAKE) clean - rm -f config.h config.log config.status stamp-h Makefile src/Makefile doc/Makefile wmclockmon-config/Makefile - dh_clean - -install: install-stamp -install-stamp: build-stamp - dh_testdir - dh_testroot - dh_clean -k - $(MAKE) install-strip - touch install-stamp - -# 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 - dh_installexamples - dh_installmenu - dh_installmanpages - dh_installchangelogs ChangeLog - 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 -- 2.11.4.GIT