--- dwm-5.8.1.orig/debian/dwm.lintian-overrides +++ dwm-5.8.1/debian/dwm.lintian-overrides @@ -0,0 +1 @@ +dwm: menu-command-not-in-package /usr/share/menu/dwm:4 /usr/bin/dwm --- dwm-5.8.1.orig/debian/rules +++ dwm-5.8.1/debian/rules @@ -0,0 +1,41 @@ +#!/usr/bin/make -f + +SHELL := sh -e + +%: + dh --with quilt ${@} + +override_dh_auto_clean: + rm -f debian/dwm.postinst debian/dwm.prerm + -mv config.default.h config.h + + dh_auto_clean + +override_dh_auto_build: + CFLAGS="$(CFLAGS)" $(MAKE) PREFIX=/usr + +override_dh_auto_install: + $(MAKE) install DESTDIR=$(CURDIR)/debian/dwm PREFIX=/usr + + mv debian/dwm/usr/bin/dwm debian/dwm/usr/bin/dwm.default + ln -s dwm.1.gz debian/dwm/usr/share/man/man1/dwm.default.1.gz + + # Building alternatives + cp config.h config.default.h + + for ALTERNATIVE in debian/local/config.*; \ + do \ + $(MAKE) clean; \ + cp $${ALTERNATIVE} config.h; \ + CFLAGS="$(CFLAGS)" $(MAKE) PREFIX=/usr; \ + install -m 0755 dwm debian/dwm/usr/bin/dwm.`basename $${ALTERNATIVE} | sed -e 's|config.||' -e 's|.h||'`; \ + ln -s dwm.1.gz debian/dwm/usr/share/man/man1/dwm.`basename $${ALTERNATIVE} | sed -e 's|config.||' -e 's|.h||'`.1.gz; \ + done + + # Configuring maintainer scripts + sed -e 's|@ALTERNATIVES@|web|' debian/dwm.postinst.in > debian/dwm.postinst + sed -e 's|@ALTERNATIVES@|web|' debian/dwm.prerm.in > debian/dwm.prerm + + # Installing icon file + install -d -m 0755 debian/dwm/usr/share/icons + uudecode debian/icons/dwm.png.uu -o debian/dwm/usr/share/icons/dwm.png --- dwm-5.8.1.orig/debian/control +++ dwm-5.8.1/debian/control @@ -0,0 +1,41 @@ +Source: dwm +Section: x11 +Priority: optional +Maintainer: Debian Suckless Maintainers +Uploaders: Daniel Baumann +Build-Depends: + debhelper (>= 7.0.50~), libx11-dev, libxinerama-dev, quilt (>= 0.46-7), + sharutils +Standards-Version: 3.8.4 +Homepage: http://www.suckless.org/ +Vcs-Browser: http://git.debian-maintainers.org/?p=suckless/dwm.git +Vcs-Git: git://git.debian-maintainers.org/git/suckless/dwm.git + +Package: dwm +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Recommends: dwm-tools, x11-xserver-utils +Provides: x-window-manager +Description: dynamic window manager + dwm is a minimalistic window manager. It manages windows in tiling and floating + modes. Either mode can be applied dynamically, depending on the application in + use and the task performed. + . + In tiling mode windows are managed in a master and stacking column. The master + column contains the window which needs most attention at a time, whereas the + stacking column contains all other windows in a stack. Dialog windows are + managed floating, however. + . + In floating mode windows can be resized and moved freely. Windows are grouped + by tags. All windows with a specific tag can be viewed at a time. But each + window may contain more than one tag, which makes it visible in several views. + . + dwm consists of a small status bar which reads the text displayed from standard + input, if written. It draws 1-pixel borders around windows to indicate the + focus state. Unfocused windows contain a small bar in front of the window + displaying the tags and the window title. + . + Please notice that dwm is currently customized through editing its source code, + so you probably want to build your own dwm packages. This package is compiled + with the default configuration and should just give you an idea about what dwm + brings to your desktop. --- dwm-5.8.1.orig/debian/README.source +++ dwm-5.8.1/debian/README.source @@ -0,0 +1,37 @@ +Package Repositories +-------------------- + +Backports for the current stable debian distribution as well as snapshots of +unreleased versions may be available in repositories listed on the maintainers +homepage. The current URL of the maintainer homepage can be seen in +debian/copyright. + + +Source Access +------------- + +You can obtain the sources of this package with: + + $ apt-get source ${PACKAGE} + +whereas '${PACKAGE}' has to be replaced with the actual name of the package. + +This package is maintained with the Git version control system. The current git +source tree can be obtained with: + + $ git clone ${GIT_URI} + +whereas '${GIT_URI}' has to be replaced with the actual URI for the Git +repository. The current Git URI can be seen in debian/control in the extracted +package sources. + +More information about Git can be found in the git-core package. + +This package may use the Quilt patch system to manage all modifications to the +upstream source. Changes, if any, are stored in the source package as diffs in +debian/diff and are applied during the build. Current modifications can be +applied to the source tree with: + + $ QUILT_PATCHES=debian/patches quilt push -a + +More information about Quilt can be found in the quilt package. --- dwm-5.8.1.orig/debian/copyright +++ dwm-5.8.1/debian/copyright @@ -0,0 +1,53 @@ +Upstream-Contact: Suckless project +Upstream-Homepage: http://dwm.suckless.org/ +Maintainer-Contact: Debian Suckless Maintainers +Maintainer-Homepage: http://suckless.debian-maintainers.org/ + +Files: * +Copyright: + (C) 2006-2010 Anselm R Garbe + (C) 2006-2007 Sander van Dijk + (C) 2006-2007 Jukka Salmi + (C) 2007 Premysl Hruby + (C) 2007 Szabolcs Nagy + (C) 2007 Christof Musik + (C) 2007-2008 Enno Gottox Boland +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +Files: debian/* +Copyright: (C) 2006-2010 Daniel Baumann +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. --- dwm-5.8.1.orig/debian/dwm.docs +++ dwm-5.8.1/debian/dwm.docs @@ -0,0 +1 @@ +README --- dwm-5.8.1.orig/debian/changelog +++ dwm-5.8.1/debian/changelog @@ -0,0 +1,620 @@ +dwm (5.8.1-1) unstable; urgency=low + + * Merging upstream version 5.8.1. + + -- Daniel Baumann Sat, 29 May 2010 20:01:34 +0200 + +dwm (5.8-1) unstable; urgency=low + + * Merging upstream version 5.8. + * Updating year in copyright file. + * Removing strip.patch, not required anymore. + * Renumbering patches files. + + -- Daniel Baumann Sat, 29 May 2010 14:45:04 +0200 + +dwm (5.7.2-2) unstable; urgency=low + + * Adding explicit debian source version 1.0 until switch to 3.0. + * Updating year in copyright file. + * Updating to standards 3.8.4. + * Updating lintian overrides. + * Sorting dh call in rules to more common order. + * Updating README.source. + + -- Daniel Baumann Wed, 07 Apr 2010 00:36:04 +0200 + +dwm (5.7.2-1) unstable; urgency=low + + * Merging upstream version 5.7.2. + * Wrapping build-depends. + + -- Daniel Baumann Sat, 03 Oct 2009 16:44:37 +0200 + +dwm (5.7.1-1) unstable; urgency=low + + * Merging upstream version 5.7.1. + * Bumping versioned build-depends on debhelper. + * Bumping versioned build-depends on quilt. + + -- Daniel Baumann Sat, 03 Oct 2009 16:42:13 +0200 + +dwm (5.7-1) unstable; urgency=low + + * Adding maintainer homepage field to control. + * Marking maintainer homepage field to be also included in binary + packages and changelog. + * Adding README.source. + * Merging upstream version 5.7. + * Moving maintainer homepage from control to copyright. + * Updating README.source. + + -- Daniel Baumann Sat, 03 Oct 2009 16:38:25 +0200 + +dwm (5.6.1-2) unstable; urgency=low + + * Updating maintainer field. + * Updating vcs fields. + * Updating package to standards version 3.8.3. + * Sorting depends. + * Prefixing debhelper files with package name. + * Minimizing rules file. + + -- Daniel Baumann Thu, 20 Aug 2009 17:57:52 +0200 + +dwm (5.6.1-1) unstable; urgency=low + + * Merging upstream version 5.6.1. + + -- Daniel Baumann Mon, 27 Jul 2009 13:54:25 +0200 + +dwm (5.6-2) unstable; urgency=low + + [ Kai Hendry ] + * Updating Webconverger config. + + -- Daniel Baumann Tue, 14 Jul 2009 23:06:29 +0200 + +dwm (5.6-1) unstable; urgency=low + + [ Daniel Baumann ] + * Merging upstream version 5.6. + * Rediffing strip.dpatch. + * Removing font.dpatch, not required anymore. + + [ Kai Hendry ] + * Updating Webconverger config. + + [ Daniel Baumann ] + * Using quilt rather than dpatch. + * Updating year in copyright file. + * Updating package to standards version 3.8.2. + * Adding description in menu file. + * Updating rules to current state of the art. + + -- Daniel Baumann Tue, 14 Jul 2009 22:21:42 +0200 + +dwm (5.5-1) unstable; urgency=low + + * Adding x11-xserver-utils to recommends (Closes: #516640). + * Merging upstream version 5.5. + * Using correct rfc-2822 date formats in changelog. + + -- Daniel Baumann Mon, 18 May 2009 12:00:58 +0200 + +dwm (5.4.1-1) unstable; urgency=low + + * Merging upstream version 5.4.1. + + -- Daniel Baumann Tue, 10 Feb 2009 15:57:00 +0100 + +dwm (5.4-1) unstable; urgency=low + + * Merging upstream version 5.4. + + -- Daniel Baumann Tue, 10 Feb 2009 15:52:00 +0100 + +dwm (5.3.1-2) unstable; urgency=low + + * Setting selfgcolor in web config to black. + * Renaming tag to shortname 'web' instead of 'webconverger'. However, + this isn't visible anyway, but for cosemtics. + + -- Daniel Baumann Mon, 22 Dec 2008 12:24:00 +0100 + +dwm (5.3.1-1) unstable; urgency=low + + * Merging upstream version 5.3.1 (Closes: #508296). + + -- Daniel Baumann Sun, 14 Dec 2008 21:39:00 +0100 + +dwm (5.3-1) unstable; urgency=low + + [ Daniel Baumann ] + * Using patch-stamp rather than patch in rules file. + * Replacing obsolete dh_clean -k with dh_prep. + * Merging upstream version 5.3. + + [ Kai Hendry ] + * Updating Webconverger config. + + -- Daniel Baumann Sun, 14 Dec 2008 21:33:00 +0100 + +dwm (5.2-1) unstable; urgency=low + + [ Daniel Baumann ] + * Updating vcs fields in control file. + * Merging upstream version 5.2 (Closes: #498738). + + [ Kai Hendry ] + * Updating Webconverger config. + + -- Daniel Baumann Wed, 17 Sep 2008 16:28:00 +0200 + +dwm (5.1-1) unstable; urgency=low + + [ Daniel Baumann ] + * Adding build-depends to libxinerama-dev. + * Reordering rules file. + * Correcting icon entry in desktop file. + * Using lintian debhelper to install lintian overrides. + * Rediffing terminal patch. + * Rediffing font patch. + * Adding patch from Tiago Saboga to respect nostrip + (Closes: #436781). + * Rewriting copyright file in machine-interpretable format. + * Adding vcs fields to control file. + * Upgrading package to standards 3.8.0. + * Upgrading package to debhelper 7. + * Merging upstream version 5.1. + + [ Kai Hendry ] + * Updating Webconverger config. + + -- Daniel Baumann Sun, 03 Aug 2008 17:05:00 +0200 + +dwm (4.7-3) unstable; urgency=low + + [ Kay Hendry ] + * Updating web config. + + -- Daniel Baumann Mon, 21 Jan 2008 21:22:00 +0100 + +dwm (4.7-2) unstable; urgency=low + + * Bumping standards version. + * Using new homepage field in control. + * Don't hide make errors in clean target of rules. + * Updating menu file to new policy version. + + -- Daniel Baumann Sun, 23 Dec 2007 13:41:00 +0100 + +dwm (4.7-1) unstable; urgency=low + + * New upstream release. + * Setting default font to fixed. + * Fixing webc config again. + + -- Daniel Baumann Fri, 23 Nov 2007 21:48:00 +0100 + +dwm (4.6-1) unstable; urgency=low + + * New upstream release. + * Updated webc config. + + -- Daniel Baumann Fri, 16 Nov 2007 12:01:00 +0100 + +dwm (4.5-2) unstable; urgency=medium + + * Fixed clean target to respect the config.h changes from dwm 4.4 to dwm + 4.5 wrt/ applying and deapplying patches. + + -- Daniel Baumann Sun, 14 Oct 2007 13:24:00 +0200 + +dwm (4.5-1) unstable; urgency=low + + * New upstream release: + - Upstream switched from multiple config.*.h to one single config.h. + This means, that user customized configs must be put into debian/config, + because additional config.*.h are not detected anymore. + A side effect of this is, that the previous 'problem' of changed + contents of the package after several builds with user configs goes + away (Closes: #441701). + + -- Daniel Baumann Sat, 29 Sep 2007 16:11:00 +0200 + +dwm (4.4.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Sun, 26 Aug 2007 14:10:00 +0200 + +dwm (4.4-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 23 Aug 2007 21:06:00 +0200 + +dwm (4.3-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Sat, 14 Jul 2007 21:22:00 +0200 + +dwm (4.2-3) unstable; urgency=low + + * Fixed typo in menu longtitle as found by Bill Allombert + (Closes: #428520). + + -- Daniel Baumann Tue, 12 Jun 2007 13:06:00 +0200 + +dwm (4.2-2) unstable; urgency=low + + [ Kai Hendri ] + * Updated the web config to have no top bar. + + -- Daniel Baumann Tue, 05 Jun 2007 18:13:00 +0200 + +dwm (4.2-1) unstable; urgency=low + + * New upstrema release. + + -- Daniel Baumann Fri, 01 Jun 2007 18:52:00 +0200 + +dwm (4.1-1) unstable; urgency=low + + * New upstrema release. + + -- Daniel Baumann Mon, 21 May 2007 15:35:00 +0200 + +dwm (4.0-2) unstable; urgency=low + + * Rebuild against fixed debhelper, see #420158 (Closes: #420120, #420140). + + -- Daniel Baumann Sat, 21 Apr 2007 07:30:00 +0200 + +dwm (4.0-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 19 Apr 2007 10:22:00 +0200 + +dwm (3.9-3) unstable; urgency=low + + * Fixed typo in rules. + + -- Daniel Baumann Thu, 05 Apr 2007 08:35:00 +0200 + +dwm (3.9-2) unstable; urgency=low + + [ Daniel Baumann ] + * Adding debian/configs for local configuration files. + + [ Kai Hendri ] + * Made a new web configuration for webconverger. + + -- Daniel Baumann Mon, 02 Apr 2007 18:20:00 +0200 + +dwm (3.9-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Mon, 02 Apr 2007 14:15:00 +0200 + +dwm (3.8-4) unstable; urgency=low + + * If a user puts his config in config.h or config.user.h, it's configuration + is not overwritten anymore, but included as dwm.user binary into the debian + package (Closes: #415587). + + -- Daniel Baumann Mon, 26 Mar 2007 16:51:00 +0100 + +dwm (3.8-3) unstable; urgency=low + + * Removed left-over from alternative config. + + -- Daniel Baumann Mon, 19 Mar 2007 19:41:00 +0100 + +dwm (3.8-2) unstable; urgency=low + + * Added alternative configuration provided by Kai Hendry . + + -- Daniel Baumann Mon, 05 Mar 2007 15:20:00 +0100 + +dwm (3.8-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Mon, 05 Mar 2007 15:20:00 +0100 + +dwm (3.7-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Sat, 24 Feb 2007 19:00:00 +0100 + +dwm (3.6.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Wed, 21 Feb 2007 13:11:00 +0100 + +dwm (3.5-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Wed, 13 Feb 2007 10:19:00 +0100 + +dwm (3.4-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Wed, 07 Feb 2007 13:31:00 +0100 + +dwm (3.3-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 01 Feb 2007 09:30:00 +0100 + +dwm (3.2.2-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 25 Jan 2007 11:51:00 +0100 + +dwm (3.2.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Wed, 24 Jan 2007 21:20:00 +0100 + +dwm (3.2-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Wed, 24 Jan 2007 13:05:00 +0100 + +dwm (3.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Tue, 16 Jan 2007 14:52:00 +0100 + +dwm (3.0-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Fri, 12 Jan 2007 21:49:00 +0100 + +dwm (2.9-1) unstable; urgency=low + + * New upstream release: + - dropping 02-configuration.dpatch, dwm contains now 9 tags per default. + + -- Daniel Baumann Mon, 08 Jan 2007 16:26:00 +0100 + +dwm (2.8-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Tue, 02 Jan 2007 15:46:00 +0100 + +dwm (2.7-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 14 Dec 2006 09:28:00 +0100 + +dwm (2.6-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 07 Dec 2006 16:03:00 +0100 + +dwm (2.5.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Mon, 04 Dec 2006 22:01:00 +0100 + +dwm (2.5-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Mon, 04 Dec 2006 16:19:00 +0100 + +dwm (2.4-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 30 Nov 2006 14:44:00 +0100 + +dwm (2.3-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 26 Nov 2006 15:15:00 +0100 + +dwm (2.2-2) unstable; urgency=medium + + * Forgot to assign keystrokes for the additional desktops. + + -- Daniel Baumann Thu, 23 Nov 2006 21:17:00 +0100 + +dwm (2.2-1) unstable; urgency=medium + + * New upstream release: + - contains some code cleanups and a minor fixes. + + -- Daniel Baumann Tue, 21 Nov 2006 10:09:00 +0100 + +dwm (2.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 02 Nov 2006 12:00:00 +0100 + +dwm (2.0-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Tue, 31 Oct 2006 12:11:00 +0100 + +dwm (1.9+fixed-4) unstable; urgency=medium + + * Updated upstream URL, removed watch file. + + -- Daniel Baumann Sun, 29 Oct 2006 15:29:00 +0100 + +dwm (1.9+fixed-3) unstable; urgency=medium + + * Added recommends to dmenu. + + -- Daniel Baumann Thu, 12 Oct 2006 15:13:00 +0200 + +dwm (1.9+fixed-2) unstable; urgency=medium + + * Added recommends to dwm-tools. + + -- Daniel Baumann Thu, 12 Oct 2006 15:12:00 +0200 + +dwm (1.9+fixed-1) unstable; urgency=low + + * Upstream did change the released tarball again, reuploading the + fixed one. See + for more + information. + + -- Daniel Baumann Fri, 06 Oct 2006 14:19:00 +0200 + +dwm (1.9-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Fri, 06 Oct 2006 13:59:00 +0200 + +dwm (1.8-1) unstable; urgency=low + + * New upstream release. + * Removing alternatives again, upstream of the patches cannot keep up with + the upstream of dwm. + + -- Daniel Baumann Thu, 05 Oct 2006 20:37:00 +0200 + +dwm (1.7.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Mon, 02 Oct 2006 19:52:00 +0200 + +dwm (1.6-3) unstable; urgency=low + + * Added sticky-layout patch from Julian Romero . + * Now building alternative binaries: + - normal: /usr/bin/dwm.normal + - sticky-layout: /usr/bin/dwm.sticky-layout + - wide-layout: /usr/bin/dwm.wide-layout + - /usr/bin/dwm is handled through update-alternatives. + * Added lintian override. + + -- Daniel Baumann Sat, 23 Sep 2006 19:09:00 +0200 + +dwm (1.6-2) unstable; urgency=low + + * Adding wide-layout patch from Ross Mohn . + + -- Daniel Baumann Tue, 19 Sep 2006 23:56:00 +0200 + +dwm (1.6-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Sat, 16 Sep 2006 11:34:00 +0200 + +dwm (1.5-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Fri, 08 Sep 2006 14:33:00 +0200 + +dwm (1.4+fixed-1) unstable; urgency=low + + * Upstream did upload the 1.4 tarball without a z-layer fix, therefore + re-uploading 1.4. See + for more + information. + + -- Daniel Baumann Wed, 06 Sep 2006 12:50:00 +0200 + +dwm (1.4-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Wed, 06 Sep 2006 11:59:00 +0200 + +dwm (1.3-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Tue, 05 Sep 2006 01:38:00 +0200 + +dwm (1.2-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Wed, 30 Aug 2006 20:01:00 +0200 + +dwm (1.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Mon, 28 Aug 2006 10:36:00 +0200 + +dwm (1.0-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Tue, 24 Aug 2006 14:10:00 +0200 + +dwm (0.9-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Tue, 15 Aug 2006 10:54:00 +0200 + +dwm (0.8-2) unstable; urgency=low + + * Updated description. + + -- Daniel Baumann Sun, 13 Aug 2006 19:35:00 +0200 + +dwm (0.8-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 10 Aug 2006 17:30:00 +0200 + +dwm (0.7-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Mon, 07 Aug 2006 14:42:00 +0200 + +dwm (0.6-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Wed, 02 Aug 2006 17:08:00 +0200 + +dwm (0.5-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Fri, 21 Jul 2006 21:24:00 +0200 + +dwm (0.4-1) unstable; urgency=low + + * Initial release. + + -- Daniel Baumann Thu, 20 Jul 2006 12:52:00 +0200 --- dwm-5.8.1.orig/debian/dwm.prerm.in +++ dwm-5.8.1/debian/dwm.prerm.in @@ -0,0 +1,29 @@ +#!/bin/sh + +set -e + +ALTERNATIVES="@ALTERNATIVES@" + +case "${1}" in + remove|deconfigure) + update-alternatives --quiet --remove dwm /usr/bin/dwm.default + + for ALTERNATIVE in ${ALTERNATIVES} + do + update-alternatives --quiet --remove dwm /usr/bin/dwm.${ALTERNATIVE} + done + ;; + + upgrade|failed-upgrade) + + ;; + + *) + echo "prerm called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 --- dwm-5.8.1.orig/debian/dwm.menu +++ dwm-5.8.1/debian/dwm.menu @@ -0,0 +1,4 @@ +?package(dwm):needs="wm" section="Window Managers"\ + title="Dwm" longtitle="Dynamic window manager" \ + description="Dwm is a minimalistic window manager."\ + command="/usr/bin/dwm" --- dwm-5.8.1.orig/debian/dwm.wm +++ dwm-5.8.1/debian/dwm.wm @@ -0,0 +1 @@ +/usr/bin/dwm --- dwm-5.8.1.orig/debian/dwm.install +++ dwm-5.8.1/debian/dwm.install @@ -0,0 +1 @@ +debian/desktop/* /usr/share/xsessions --- dwm-5.8.1.orig/debian/dwm.postinst.in +++ dwm-5.8.1/debian/dwm.postinst.in @@ -0,0 +1,29 @@ +#!/bin/sh + +set -e + +ALTERNATIVES="@ALTERNATIVES@" + +case "${1}" in + configure) + update-alternatives --quiet --install /usr/bin/dwm dwm /usr/bin/dwm.default 100 + + for ALTERNATIVE in ${ALTERNATIVES} + do + update-alternatives --quiet --install /usr/bin/dwm dwm /usr/bin/dwm.${ALTERNATIVE} 50 + done + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 --- dwm-5.8.1.orig/debian/compat +++ dwm-5.8.1/debian/compat @@ -0,0 +1 @@ +7 --- dwm-5.8.1.orig/debian/desktop/dwm +++ dwm-5.8.1/debian/desktop/dwm @@ -0,0 +1,7 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Dwm +Comment=Dynamic window manager +Exec=dwm +Icon=dwm +Type=XSession --- dwm-5.8.1.orig/debian/local/config.web.h +++ dwm-5.8.1/debian/local/config.web.h @@ -0,0 +1,41 @@ +/* appearance */ +static const char font[] = "fixed"; +static const char normbordercolor[] = "#cccccc"; +static const char normbgcolor[] = "#cccccc"; +static const char normfgcolor[] = "#000000"; +static const char selbordercolor[] = "#0066ff"; +static const char selbgcolor[] = "#0066ff"; +static const char selfgcolor[] = "#000000"; +static unsigned int borderpx = 0; +static unsigned int snap = 32; +static Bool showbar = False; +static Bool topbar = False; + +/* tagging */ +static const char *tags[] = { "web" }; + +static Rule rules[] = { + {0} +}; + +/* layout(s) */ +static float mfact = 0.55; +static Bool resizehints = False; /* False means respect size hints in tiled resizals */ + +Layout layouts[] = { + /* symbol function */ + { "[M]", monocle }, +}; + +/* key definitions */ +#define MODKEY Mod1Mask +Key keys[] = { \ + /* modifier key function argument */ \ + { MODKEY|ShiftMask, XK_c, killclient, {0} }, + { MODKEY, XK_q, killclient, {0} }, \ + { MODKEY, XK_F4, killclient, {0} }, \ +}; + +static Button buttons[] = { + {0} +}; --- dwm-5.8.1.orig/debian/icons/dwm.png.uu +++ dwm-5.8.1/debian/icons/dwm.png.uu @@ -0,0 +1,10 @@ +begin 644 dwm.png.uu +MB5!.1PT*&@H````-24A$4@```"`````-"`(```!'*OM+````"7!(67,```L3 +M```+$P$`FIP8````!W1)344'U@<4#0@?*.%=Y````!UT15AT0V]M;65N=`!# +MP5M()&2#\,;FAH:RAI?W(_1J78'OY(K)<1@=_H_Q'=`6=H +2Q\=\U09.`````$E%3D2N0F"" +` +end --- dwm-5.8.1.orig/debian/patches/series +++ dwm-5.8.1/debian/patches/series @@ -0,0 +1 @@ +01-terminal.patch --- dwm-5.8.1.orig/debian/patches/01-terminal.patch +++ dwm-5.8.1/debian/patches/01-terminal.patch @@ -0,0 +1,15 @@ +Author: Daniel Baumann +Description: Replaces xterm with x-terminal-emulator. + +diff -Naurp dwm.orig/config.def.h dwm/config.def.h +--- dwm.orig/config.def.h 2008-06-19 10:11:38.000000000 +0200 ++++ dwm/config.def.h 2008-06-23 08:54:16.000000000 +0200 +@@ -49,7 +49,7 @@ static Layout layouts[] = { + + /* commands */ + static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; +-static const char *termcmd[] = { "uxterm", NULL }; ++static const char *termcmd[] = { "x-terminal-emulator", NULL }; + + static Key keys[] = { + /* modifier key function argument */ --- dwm-5.8.1.orig/debian/source/format +++ dwm-5.8.1/debian/source/format @@ -0,0 +1 @@ +1.0