[PATCH 1/2] Add wmcpufreq information for dockapps webpage.

2014-11-22 Thread Doug Torrance
--- dockapps.db.in | 11 +++ 1 file changed, 11 insertions(+) diff --git a/dockapps.db.in b/dockapps.db.in index 0292e46..e68b0a0 100644 --- a/dockapps.db.in +++ b/dockapps.db.in @@ -123,6 +123,17 @@ url = dockapps = 316 category = E-mail +[wmcpufreq] +image =

[PATCH 1/6] wmacpi: Remove deprecated /usr/X11R6/include directory from CFLAGS.

2014-11-23 Thread Doug Torrance
--- wmacpi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmacpi/Makefile b/wmacpi/Makefile index 8b90efd..716e683 100644 --- a/wmacpi/Makefile +++ b/wmacpi/Makefile @@ -13,7 +13,7 @@ BUILD_CLI = 1 #OPT = -pg -g CC := gcc -CFLAGS += $(OPT) -Wall -W -g -ansi

[PATCH 2/6] wmacpi: Merge clean and clean-all targets in Makefile.

2014-11-23 Thread Doug Torrance
make clean should do the expected thing. --- wmacpi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmacpi/Makefile b/wmacpi/Makefile index 716e683..44fb5bd 100644 --- a/wmacpi/Makefile +++ b/wmacpi/Makefile @@ -57,9 +57,9 @@ endif clean: rm -f TAGS *.o *~

[PATCH 3/6] wmacpi: Respect DESTDIR variable in Makefile, e.g., for package creation.

2014-11-23 Thread Doug Torrance
--- wmacpi/Makefile | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wmacpi/Makefile b/wmacpi/Makefile index 44fb5bd..5c6f0aa 100644 --- a/wmacpi/Makefile +++ b/wmacpi/Makefile @@ -62,10 +62,10 @@ clean: clean-all: clean install: $(targets) - install -d

[PATCH 0/6] wmacpi updates

2014-11-23 Thread Doug Torrance
Here are a few patches for wmacpi. They clean up the Makefile a bit (mostly to make Debian packaging slightly more trivial) and fix some compiler warnings. Carlos, could you tag the last patch wmacpi-2.3? Thanks! Doug Torrance (6): wmacpi: Remove deprecated /usr/X11R6/include directory from

[PATCH 5/6] wmacpi: Fix -Wunused-result compiler warnings.

2014-11-23 Thread Doug Torrance
In particular, libacpi.c: In function ‘power_init’: libacpi.c:339:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result] fread(buf, 4096, 1, acpi); ^ libacpi.c: In function ‘procfs_get_power_status’: libacpi.c:434:5: warning: ignoring

[PATCH 4/6] wmacpi: Fix -Wunused-but-set-variable compiler warning.

2014-11-23 Thread Doug Torrance
In particular, libacpi.c: In function ‘procfs_get_battery_info’: libacpi.c:582:9: warning: variable ‘buflen’ set but not used [-Wunused-but-set-variable] int buflen; ^ --- wmacpi/libacpi.c | 4 1 file changed, 4 insertions(+) diff --git a/wmacpi/libacpi.c b/wmacpi/libacpi.c

[PATCH 6/6] wmacpi: Bump to version 2.3.

2014-11-23 Thread Doug Torrance
--- wmacpi/ChangeLog| 11 +++ wmacpi/wmacpi-cli.c | 2 +- wmacpi/wmacpi.c | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/wmacpi/ChangeLog b/wmacpi/ChangeLog index d3793e2..64a7329 100644 --- a/wmacpi/ChangeLog +++ b/wmacpi/ChangeLog @@ -1,3 +1,14 @@

[PATCH (whome)] Update wmacpi on dockapps webpage.

2014-11-24 Thread Doug Torrance
--- dockapps/dockapps.db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockapps/dockapps.db b/dockapps/dockapps.db index 730a5da..985f272 100644 --- a/dockapps/dockapps.db +++ b/dockapps/dockapps.db @@ -40,7 +40,7 @@ dockapps = 299 category = System Monitoring [wmacpi]

[PATCH 00/12] libdockapp

2014-11-28 Thread Doug Torrance
, could you tag the first libdockapp-0.6.3 and the last libdockapp-0.6.4? Thanks! Doug Torrance (12): libdockapp: Add version 0.6.3 to repository. libdockapp: Remove autotools-generated files. libdockapp: Remove trailing whitespace. libdockapp: Remove CVS cruft. libdockapp: Use

[PATCH 03/12] libdockapp: Remove trailing whitespace.

2014-11-28 Thread Doug Torrance
--- libdockapp/examples/basic/Imakefile | 2 +- libdockapp/examples/basic/README| 2 +- libdockapp/examples/basic/basic.c | 6 +++--- libdockapp/examples/rectangles/Imakefile| 2 +- libdockapp/examples/rectangles/rectangles.c | 22 +++---

[PATCH 06/12] libdockapp: Replace example Imakefiles with Makefiles.

2014-11-28 Thread Doug Torrance
imake is deprecated. --- libdockapp/README| 3 +-- libdockapp/examples/Makefile.am | 4 ++-- libdockapp/examples/basic/Imakefile | 29 - libdockapp/examples/basic/Makefile | 18 ++

[PATCH 05/12] libdockapp: Use consistent code formatting.

2014-11-28 Thread Doug Torrance
Used uncrustify to minimize warnings and errors from checkpatch.pl in the Window Maker source tree. --- libdockapp/examples/basic/basic.c | 289 +-- libdockapp/examples/rectangles/rectangles.c | 732 ++-- libdockapp/src/daargs.c | 353

[PATCH 11/12] libdockapp: Update contact information.

2014-11-28 Thread Doug Torrance
--- libdockapp/Makefile.am | 2 +- libdockapp/NEWS | 4 ++-- libdockapp/configure.ac | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libdockapp/Makefile.am b/libdockapp/Makefile.am index 7e696de..b1f8b30 100644 --- a/libdockapp/Makefile.am +++

[PATCH 10/12] libdockapp: Add update-changelog target to Makefile to update ChangeLog.

2014-11-28 Thread Doug Torrance
--- libdockapp/Makefile.am | 10 ++ 1 file changed, 10 insertions(+) diff --git a/libdockapp/Makefile.am b/libdockapp/Makefile.am index aeaf39e..7e696de 100644 --- a/libdockapp/Makefile.am +++ b/libdockapp/Makefile.am @@ -24,3 +24,13 @@ dockapp.pc: Makefile @echo 'Cflags:

[PATCH 12/12] libdockapp: Release version 0.6.4.

2014-11-28 Thread Doug Torrance
/ChangeLog @@ -1,3 +1,15 @@ +2014-11-28 Doug Torrance dtorra...@monmouthcollege.edu + + * NEWS, configure.ac: Release version 0.6.4. + +2014-11-28 Doug Torrance dtorra...@monmouthcollege.edu + + * Makefile.am, NEWS, configure.ac: Update contact information. + +2014-11-28 Doug Torrance

[PATCH 04/12] libdockapp: Remove CVS cruft.

2014-11-28 Thread Doug Torrance
--- libdockapp/examples/basic/Imakefile | 1 - libdockapp/examples/basic/basic.c | 3 +-- libdockapp/examples/rectangles/Imakefile| 1 - libdockapp/examples/rectangles/rectangles.c | 3 +-- libdockapp/src/Makefile.am | 1 - libdockapp/src/daargs.c

[PATCH 09/12] libdockapp: Add new ChangeLog, created by git2cl.

2014-11-28 Thread Doug Torrance
/ChangeLog @@ -0,0 +1,162 @@ +2014-11-25 Doug Torrance dtorra...@monmouthcollege.edu + + * ChangeLog, NEWS, examples/basic/basic.c, src/dockapp.h: + Merge ChangeLog into NEWS (they were largely the same). + +2014-11-25 Doug Torrance dtorra...@monmouthcollege.edu + + * examples/basic

[PATCH 08/12] libdockapp: Merge ChangeLog into NEWS (they were largely the same).

2014-11-28 Thread Doug Torrance
--- libdockapp/ChangeLog | 150 -- libdockapp/NEWS | 119 +- libdockapp/examples/basic/basic.c | 4 +- libdockapp/src/dockapp.h | 2 +- 4 files changed, 103 insertions(+), 172 deletions(-)

[PATCH 07/12] libdockapp: Add #include time.h to basic example.

2014-11-28 Thread Doug Torrance
Otherwise, we get the following compiler warning: basic.c: In function ‘main’: basic.c:111:2: warning: implicit declaration of function ‘time’ [-Wimplicit-function-declaration] srandom(time(NULL)); ^ --- libdockapp/examples/basic/basic.c | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH (dockapps)] Add libdockapp information for dockapps webpage.

2014-11-28 Thread Doug Torrance
--- dockapps.db.in | 7 +++ 1 file changed, 7 insertions(+) diff --git a/dockapps.db.in b/dockapps.db.in index 3859211..5417c90 100644 --- a/dockapps.db.in +++ b/dockapps.db.in @@ -5,6 +5,13 @@ url = dockapps = 253 category = Audio +[libdockapp] +image = libdockapp.png +description =

[PATCH (whome)] Add libdockapp to dockapps webpage.

2014-11-28 Thread Doug Torrance
--- dockapps/dockapps.db| 9 + dockapps/img/libdockapp.png | Bin 0 - 1012 bytes 2 files changed, 9 insertions(+) create mode 100644 dockapps/img/libdockapp.png diff --git a/dockapps/dockapps.db b/dockapps/dockapps.db index 985f272..c31a2a2 100644 --- a/dockapps/dockapps.db

[PATCH] Keep mute state from getting out of sync with reality

2014-12-04 Thread Doug Torrance
From: Robert Jacobs rnjac...@mit.edu --- AlsaMixer.app/AMixer/AChannel.cc | 3 +++ AlsaMixer.app/Mixer.cc | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/AlsaMixer.app/AMixer/AChannel.cc b/AlsaMixer.app/AMixer/AChannel.cc index 81df656..745bf08 100644 ---

[PATCH (whome)] Update AlsaMixer.app on dockapps webpapge.

2014-12-04 Thread Doug Torrance
--- dockapps/dockapps.db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockapps/dockapps.db b/dockapps/dockapps.db index c31a2a2..de71684 100644 --- a/dockapps/dockapps.db +++ b/dockapps/dockapps.db @@ -1,5 +1,5 @@ [AlsaMixer.app] -version-0.1+20141005 =

[PATCH 00/10] wmifinfo patches

2014-12-08 Thread Doug Torrance
Here are a few wmifinfo patches, mostly Debian patches and compiler warning fixes. Carlos, could you tag the last patch wmifinfo-0.10? Thanks! Doug Torrance (10): wmifinfo: Update Makefile. wmifinfo: Add manpage. wmifinfo: Fix -Wpointer-sign compiler warnings. wmifinfo: Fix -Wunused

[PATCH 04/10] wmifinfo: Fix -Wunused-but-set-variable compiler warning.

2014-12-08 Thread Doug Torrance
--- wmifinfo/wmifinfo.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/wmifinfo/wmifinfo.c b/wmifinfo/wmifinfo.c index 51e0dc3..cc6ee99 100644 --- a/wmifinfo/wmifinfo.c +++ b/wmifinfo/wmifinfo.c @@ -406,7 +406,6 @@ char *strupper(char *str) int getifinfo(char *ifname,

[PATCH 03/10] wmifinfo: Fix -Wpointer-sign compiler warnings.

2014-12-08 Thread Doug Torrance
--- wmifinfo/wmifinfo.c | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/wmifinfo/wmifinfo.c b/wmifinfo/wmifinfo.c index c8d7871..51e0dc3 100644 --- a/wmifinfo/wmifinfo.c +++ b/wmifinfo/wmifinfo.c @@ -58,7 +58,7 @@ struct ifinfo_t { char id[16];

[PATCH 01/10] wmifinfo: Update Makefile.

2014-12-08 Thread Doug Torrance
In particular, add support for common user-defined variables CFLAGS, CPPFLAGS, LDFLAGS, DESTDIR, and PREFIX. Also remove reference to deprecated X11R6 directory and use install instead of cp for install target. Inspired by the Debian patches:

[PATCH 07/10] wmifinfo: Fix -Wpedantic compiler warning.

2014-12-08 Thread Doug Torrance
--- wmifinfo/wmifinfo.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/wmifinfo/wmifinfo.c b/wmifinfo/wmifinfo.c index adb323d..827afec 100644 --- a/wmifinfo/wmifinfo.c +++ b/wmifinfo/wmifinfo.c @@ -656,6 +656,12 @@ void getifnames(void) int pifaces;

[PATCH 06/10] wmifinfo: Remove C++ style comments.

2014-12-08 Thread Doug Torrance
--- wmifinfo/wmifinfo.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/wmifinfo/wmifinfo.c b/wmifinfo/wmifinfo.c index 3ddf026..adb323d 100644 --- a/wmifinfo/wmifinfo.c +++ b/wmifinfo/wmifinfo.c @@ -189,7 +189,7 @@ int main(int argc, char *argv[])

[PATCH 08/10] wmifinfo: Fix -Wformat compiler warnings.

2014-12-08 Thread Doug Torrance
--- wmifinfo/nwn.c | 2 +- wmifinfo/wmifinfo.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wmifinfo/nwn.c b/wmifinfo/nwn.c index 0602b27..281b665 100644 --- a/wmifinfo/nwn.c +++ b/wmifinfo/nwn.c @@ -65,7 +65,7 @@ int nwn_get_link(char *ifname)

[PATCH 10/10] wmifinfo: Bump to version 0.10.

2014-12-08 Thread Doug Torrance
--- wmifinfo/Changelog | 9 + wmifinfo/Makefile | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/wmifinfo/Changelog b/wmifinfo/Changelog index 0184cf3..cae7518 100644 --- a/wmifinfo/Changelog +++ b/wmifinfo/Changelog @@ -54,3 +54,12 @@ - the '-i' flag

[PATCH (whome)] Update wmifinfo on dockapps webpage.

2014-12-09 Thread Doug Torrance
--- dockapps/dockapps.db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockapps/dockapps.db b/dockapps/dockapps.db index de71684..5ea3f7c 100644 --- a/dockapps/dockapps.db +++ b/dockapps/dockapps.db @@ -235,7 +235,7 @@ dockapps = 329 category = System Monitoring

[PATCH 03/14] wmclock: Add section to manpage about usage of translated XPM files.

2014-12-11 Thread Doug Torrance
Adapted from the Debian patch by Sandro Tosi matrixh...@gmail.com: http://sources.debian.net/src/wmclock/1.0.14-6/debian/patches/manpage_xpm_notes.patch/ --- wmclock/wmclock.man.in | 15 +++ 1 file changed, 15 insertions(+) diff --git a/wmclock/wmclock.man.in b/wmclock/wmclock.man.in

[PATCH 06/14] wmclock: Add -interval option.

2014-12-11 Thread Doug Torrance
From the Debian patch: http://sources.debian.net/src/wmclock/1.0.14-6/debian/patches/add_interval_option.patch/ For more information, see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=228986 --- wmclock/wmclock.c | 71 ++

[PATCH 07/14] wmclock: Remove generated file wmclock.man.

2014-12-11 Thread Doug Torrance
--- wmclock/wmclock.man | 232 1 file changed, 232 deletions(-) delete mode 100644 wmclock/wmclock.man diff --git a/wmclock/wmclock.man b/wmclock/wmclock.man deleted file mode 100644 index 899584e..000 --- a/wmclock/wmclock.man +++

[PATCH 05/14] wmclock: Show correct year when -year is given.

2014-12-11 Thread Doug Torrance
From the Debian patch: http://sources.debian.net/src/wmclock/1.0.14-6/debian/patches/correct_year.patch/ For more information, see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=723887 --- wmclock/wmclock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmclock/wmclock.c

[PATCH 12/14] wmclock: Update manpage.

2014-12-11 Thread Doug Torrance
Changes include: - Rename to wmclock.1. - Use @prefix@ instead of /usr for the location of the language xpm files. - Hardcode date instead of picking it up from a variable in the Makefile. --- wmclock/Makefile.am| 2 +- wmclock/configure.ac | 2 +- wmclock/wmclock.1.in | 250

[PATCH 11/14] wmclock: Choose language with ./configure.

2014-12-11 Thread Doug Torrance
This is a feature that was present in the pre-autotools configure script. Note a syntax change: ./configure --lang foo is now ./configure --with-lang=foo Also remove the .xpm files in the root directory, as they are created during configuration. --- wmclock/Makefile.am | 2 +-

[PATCH 08/14] wmclock: Remove wmclock.spec.in; not needed upstream.

2014-12-11 Thread Doug Torrance
--- wmclock/wmclock.spec.in | 128 1 file changed, 128 deletions(-) delete mode 100644 wmclock/wmclock.spec.in diff --git a/wmclock/wmclock.spec.in b/wmclock/wmclock.spec.in deleted file mode 100644 index b8c90a0..000 ---

[PATCH 13/14] wmclock: Update documentation.

2014-12-11 Thread Doug Torrance
In particular, document installation changes after switch to autotools and change maintainer to Window Maker Developers. --- wmclock/INSTALL | 38 +++--- wmclock/README | 5 + wmclock/configure.ac | 2 +- 3 files changed, 17 insertions(+), 28

[PATCH 09/14] wmclock: Remove trailing whitespace.

2014-12-11 Thread Doug Torrance
--- wmclock/ChangeLog | 12 ++--- wmclock/INSTALL| 16 +++ wmclock/Imakefile | 10 ++--- wmclock/README | 6 +-- wmclock/configure | 2 +- wmclock/dynlist.c | 14 +++--- wmclock/dynlist.h | 8 ++-- wmclock/wmclock.c | 116

[PATCH 14/14] wmclock: Bump to version 1.0.15.

2014-12-11 Thread Doug Torrance
@@ -1,3 +1,84 @@ +2014-12-11 Doug Torrance dtorra...@monmouthcollege.edu + + * Bump to version 1.0.15. + + * INSTALL, README, configure.ac: Update documentation. + In particular, document installation changes after switch to + autotools and change maintainer to Window Maker

[PATCH 10/14] wmclock: Switch build system from deprecated imake to autotools.

2014-12-11 Thread Doug Torrance
--- wmclock/Imakefile| 87 wmclock/Makefile.am | 7 + wmclock/configure| 74 wmclock/configure.ac | 9 ++ 4 files changed, 16 insertions(+), 161 deletions(-) delete mode 100644

[PATCH (whome)] Add wmclock to dockapps webpage.

2014-12-12 Thread Doug Torrance
--- dockapps/dockapps.db | 9 + dockapps/img/wmclock.png | Bin 0 - 1210 bytes 2 files changed, 9 insertions(+) create mode 100644 dockapps/img/wmclock.png diff --git a/dockapps/dockapps.db b/dockapps/dockapps.db index 5ea3f7c..f63d23d 100644 --- a/dockapps/dockapps.db +++

[PATCH (dockapps)] Add wmclock information for dockapps webpage.

2014-12-12 Thread Doug Torrance
--- dockapps.db.in | 7 +++ 1 file changed, 7 insertions(+) diff --git a/dockapps.db.in b/dockapps.db.in index 5417c90..0f6bcb2 100644 --- a/dockapps.db.in +++ b/dockapps.db.in @@ -137,6 +137,13 @@ url = http://linux.nawebu.cz/wmcliphist/ dockapps = category = General/Others +[wmclock]

[PATCH 02/18] wmcdplay: Add -i option so users can specify cd polling interval.

2014-12-18 Thread Doug Torrance
Based on the patch from Debian by Marcelo E. Magallon mmaga...@debian.org [1], which fixed Debian bug #25121. [1] http://sources.debian.net/src/wmcdplay/1.0beta1-13/debian/patches/add_interval_option.patch/ [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=25121 --- wmcdplay/wmcdplay.cc |

[PATCH 00/18] wmcdplay

2014-12-18 Thread Doug Torrance
Here's yet another dockapp I'm proposing to be added to the dockapps repository. It includes some Debian patches and a few of my own. Carlos, if these patches are accepted, could you tag the first wmcdplay-1.0beta1 and the last wmcdplay-1.1? Thanks! Doug Torrance (18): wmcdplay: Add version

[PATCH 04/18] wmcdplay: Remove extra argument to format in fprintf.

2014-12-18 Thread Doug Torrance
This avoids the following warning during build: warning: too many arguments for format [-Wformat-extra-args] . Patch from Debian [1]. [1] http://sources.debian.net/src/wmcdplay/1.0beta1-13/debian/patches/remove_extra_arg.patch/ --- wmcdplay/wmcdplay.cc | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH 03/18] wmcdplay: Set remain variable to zero.

2014-12-18 Thread Doug Torrance
This avoids an possible undeclared variable error five lines later if remain is never set: if(remain2250). Patch from Debian [1]. [1] http://sources.debian.net/src/wmcdplay/1.0beta1-13/debian/patches/set_remain_to_zero.patch/ --- wmcdplay/wmcdplay.cc | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH 06/18] wmcdplay: Build on the Hurd.

2014-12-18 Thread Doug Torrance
Fails to build from source on GNU/Hurd due to inclusion of a linux-specific header linux/cdrom.h. Instead include sys/cdrom.h. Patch by Samuel Thibault sthiba...@debian.org [1], which fixes Debian bug [1] http://sources.debian.net/src/wmcdplay/1.0beta1-13/debian/patches/fix_hurd_ftbfs.patch/

[PATCH 05/18] wmcdplay: Add parentheses in cdctl.h.

2014-12-18 Thread Doug Torrance
This avoids the following warning during build: warning: suggest parentheses around assignment used as truth value [-Wparentheses] . Patch from Debian [1]. [1] http://sources.debian.net/src/wmcdplay/1.0beta1-13/debian/patches/add_parentheses.patch/ --- wmcdplay/cdctl.h | 2 +- 1 file changed,

[PATCH 10/18] wmcdplay: Install art script.

2014-12-18 Thread Doug Torrance
Changes include: - The artwork files XPM/*.art are now created during build time and therefore have been removed from the repository. - The script which creates them is now installed alongside the art files in case users would like to design their own artwork. - The makeall script, whose

[PATCH 07/18] wmcdplay: Port to FreeBSD.

2014-12-18 Thread Doug Torrance
As is, wmcdplay does not build on FreeBSD systems. Although it has since been deleted, a port of wmcdplay for FreeBSD was available. It consisted primarily of a patch to cdctl.h [1]. Include this patch when building for FreeBSD. Based on the Debian patch [2]. [1]

[PATCH 09/18] wmcdplay: Change artwork installation directory.

2014-12-18 Thread Doug Torrance
Switch from deprecated X11R6 directory to conform to Filesystem Hierarcy Standards. Adapted from the original Debian patch by Marcelo E. Magallon mmaga...@debian.org [1] to take advantage of automake. [1]

[PATCH 11/18] wmcdplay: Fix -Wwrite-string compiler warnings.

2014-12-18 Thread Doug Torrance
Previously, compiling wmcdplay caused a large number of warnings of the form deprecated conversion from string constant to ‘char*’. This was fixed by changing char * declarations to const char *, especially in the .xpm files, and using const_cast as needed when an external library expected a

[PATCH 13/18] wmcdplay: Fix -Wsign-compare compiler warnings.

2014-12-18 Thread Doug Torrance
--- wmcdplay/wmcdplay.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmcdplay/wmcdplay.cc b/wmcdplay/wmcdplay.cc index ab18f4a..f1dd570 100644 --- a/wmcdplay/wmcdplay.cc +++ b/wmcdplay/wmcdplay.cc @@ -224,7 +224,7 @@ int main(int argc, char **argv)

[PATCH 14/18] wmcdplay: Centralize version number.

2014-12-18 Thread Doug Torrance
Previously, the wmcdplay version number was found in numerous places. To ease future releases, it now appears only in configure.ac. --- wmcdplay/ARTWORK | 1 - wmcdplay/README | 1 - wmcdplay/cdctl.h | 1 - wmcdplay/cdctl_freebsd.h | 1 - wmcdplay/wmcdplay.cc | 3 +--

[PATCH 16/18] wmcdplay: Add manpage.

2014-12-18 Thread Doug Torrance
Obtained, with slight modification, from Debian [1]. [1] http://sources.debian.net/src/wmcdplay/1.0beta1-13/debian/wmcdplay.1x/ --- wmcdplay/Makefile.am | 2 ++ wmcdplay/wmcdplay.1 | 55 2 files changed, 57 insertions(+) create mode 100644

[PATCH 15/18] wmcdplay: Update installation documentation.

2014-12-18 Thread Doug Torrance
--- wmcdplay/README | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/wmcdplay/README b/wmcdplay/README index c6439f5..38e84b0 100644 --- a/wmcdplay/README +++ b/wmcdplay/README @@ -31,15 +31,11 @@ http://www.geocities.com/SiliconValley/Vista/2471/ INSTALLING:

[PATCH 17/18] wmcdplay: Create ChangeLog.

2014-12-18 Thread Doug Torrance
Previously, release history was kept in README. This has been separated out into a new file to avoid a no-upstream-changelog Lintian warning in the Debian package. --- wmcdplay/ChangeLog | 93 wmcdplay/README| 95

[PATCH 00/11] wmitime updates

2014-12-19 Thread Doug Torrance
Here are several patches for wmitime. Carlos, could you tag the last one wmitime-0.4? Thanks! Doug Torrance (11): wmitime: Allow -display option with no argument wmitime: Update Makefile. wmitime: Improve locale support. wmitime: Remove C++ style comments. wmitime: Remove references

[PATCH 01/11] wmitime: Allow -display option with no argument

2014-12-19 Thread Doug Torrance
Previously, if a user ran wmitime with the -display option and no argument, a segmentation fault would occur. Print a warning instead. Patch from Debian [1] to fix bug #716466 [2]. [1] http://sources.debian.net/src/wmitime/0.3%2B20120605-1/debian/patches/allow_display_with_no_args.patch/ [2]

[PATCH 05/11] wmitime: Remove references to config file in source; nonexistent feature.

2014-12-19 Thread Doug Torrance
--- wmitime/wmitime.c | 139 -- 1 file changed, 139 deletions(-) diff --git a/wmitime/wmitime.c b/wmitime/wmitime.c index 0c58d32..60d1144 100644 --- a/wmitime/wmitime.c +++ b/wmitime/wmitime.c @@ -53,7 +53,6 @@ externchar **environ;

[PATCH 08/11] wmitime: Add desktop file.

2014-12-19 Thread Doug Torrance
Adapted from Debian [1]. [1] http://sources.debian.net/src/wmitime/0.3%2B20120605-1/debian/wmitime.desktop/ --- wmitime/Makefile | 10 -- wmitime/wmitime.desktop.in | 10 ++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644

[PATCH 03/11] wmitime: Improve locale support.

2014-12-19 Thread Doug Torrance
Previously, wmitime only had support for English, French, and (in Debian only) Hungarian. In addition, the choice was made at compile time. This patch adds run-time support for any language using the Latin alphabet. The locale is determined by the user's environment or may be specified on the

[PATCH 06/11] wmitime: Update contact information.

2014-12-19 Thread Doug Torrance
--- wmitime/README| 6 +++--- wmitime/wmitime.c | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/wmitime/README b/wmitime/README index c26ffa8..3c1f0a0 100644 --- a/wmitime/README +++ b/wmitime/README @@ -1,8 +1,8 @@ wmitime 0.2 beta Public Release

[PATCH 02/11] wmitime: Update Makefile.

2014-12-19 Thread Doug Torrance
In particular, - Remove reference to deprecated X11R6 directory. - Replace FLAGS variable with CFLAGS, CPPFLAGS, and LDFLAGS. - Honor CC, PREFIX, and DESTDIR variables. - Use INSTALL instead of cp for installation. - Remove redundant -lXext flag. - Move contents of wmitime directory to top

[PATCH 04/11] wmitime: Remove C++ style comments.

2014-12-19 Thread Doug Torrance
--- wmitime/wmitime.c | 58 +++ 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/wmitime/wmitime.c b/wmitime/wmitime.c index c29deaa..0c58d32 100644 --- a/wmitime/wmitime.c +++ b/wmitime/wmitime.c @@ -128,7 +128,7 @@ int main(int

[PATCH 07/11] wmitime: Add manpage.

2014-12-19 Thread Doug Torrance
Adapted from Debian [1]. [1] http://sources.debian.net/src/wmitime/0.3%2B20120605-1/debian/wmitime.1/ --- wmitime/Makefile | 3 +++ wmitime/wmitime.1 | 34 ++ 2 files changed, 37 insertions(+) create mode 100644 wmitime/wmitime.1 diff --git a/wmitime/Makefile

[PATCH 11/11] wmitime: Bump to version 0.4.

2014-12-19 Thread Doug Torrance
--- wmitime/CHANGES | 36 wmitime/README| 2 +- wmitime/wmitime.c | 2 +- 3 files changed, 38 insertions(+), 2 deletions(-) diff --git a/wmitime/CHANGES b/wmitime/CHANGES index dd7749a..71fc433 100644 --- a/wmitime/CHANGES +++ b/wmitime/CHANGES @@

[PATCH (whome)] Update wmitime on dockapps webpage.

2014-12-20 Thread Doug Torrance
--- dockapps/dockapps.db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockapps/dockapps.db b/dockapps/dockapps.db index f1e6361..41a233d 100644 --- a/dockapps/dockapps.db +++ b/dockapps/dockapps.db @@ -278,7 +278,7 @@ dockapps = category = Network [wmitime]

[PATCH] WPrefs: add possibility to configure the size of the aperçu

2014-12-21 Thread Doug Torrance
From: Christophe CURIS christophe.cu...@free.fr The Icon preference panel have been rearranged to include a slider which controls the size of the Aperçu. This slider is also used to turn off the feature, so the related checkbox have been removed from the Misc preference panel, because it is more

Re: few suggestions on UI of Appearance.app and Wmaker

2014-12-21 Thread Doug Torrance
On Sun, Dec 21, 2014 at 3:19 AM, Yury Tarasievich yury.tarasiev...@gmail.com wrote: 4) What does Enable window snapping do (last tab)? Is it related with things set in the windows handling tab (2nd from the left)? I've tried enabling and disabling this, and have seen no discernible

[PATCH 0/6] wmtime updates

2015-01-03 Thread Doug Torrance
Hi everyone, Here are a few patches for wmtime, culminating in a new version. Carlos, if these are accepted, could you tag the final commit wmtime-1.2? Thanks! Doug Doug Torrance (6): wmtime: Remove unnecessary Imakefile. wmtime: Move source files to top directory. wmtime: Update

[PATCH 4/6] wmtime: Add -l option to specify locale.

2015-01-03 Thread Doug Torrance
Based on a similar patch for wmitime [1]. [1] http://repo.or.cz/w/dockapps.git/commitdiff/cc801880a5be8902af715ff1722981a4bc35bf6d --- wmtime/INSTALL | 6 +++--- wmtime/wmtime.1 | 6 +- wmtime/wmtime.c | 17 +++-- 3 files changed, 23 insertions(+), 6 deletions(-) diff --git

[PATCH 5/6] wmtime: Remove unnecessary references to current version number.

2015-01-03 Thread Doug Torrance
To simplify maintenace, all references to the current version number outside of the appropriate macro in in wmtime.c have been removed. Note that this macro had been WMMON_VERSION, likely a copy/paste error, and has been renamed to WMTIME_VERSION. --- wmtime/INSTALL | 7 +++ wmtime/README

[PATCH 1/6] wmtime: Remove unnecessary Imakefile.

2015-01-03 Thread Doug Torrance
Also update INSTALL to remove reference to it. --- wmtime/INSTALL | 12 +++- wmtime/Imakefile | 17 - 2 files changed, 3 insertions(+), 26 deletions(-) delete mode 100644 wmtime/Imakefile diff --git a/wmtime/INSTALL b/wmtime/INSTALL index a5616cb..94943c4 100644 ---

[PATCH 6/6] wmtime: Bump to version 1.2.

2015-01-03 Thread Doug Torrance
--- wmtime/CHANGES | 15 +++ wmtime/wmtime.c | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/wmtime/CHANGES b/wmtime/CHANGES index fe5dd3e..47ceb52 100644 --- a/wmtime/CHANGES +++ b/wmtime/CHANGES @@ -3,6 +3,21 @@ WMTime changes. Version Description

[PATCH 2/6] wmtime: Move source files to top directory.

2015-01-03 Thread Doug Torrance
Ease the build process by skipping the initial cd wmtime step. Document this in INSTALL. --- wmtime/INSTALL | 7 +- wmtime/Makefile | 25 ++ wmtime/wmtime-mask.xbm | 72 + wmtime/wmtime-master.xpm| 187 +++ wmtime/wmtime.1

[PATCH 3/6] wmtime: Update Makefile.

2015-01-03 Thread Doug Torrance
In particular, - Remove reference to deprecated X11R6 directory. - Honor PREFIX and INSTALL variables. - Change definition of CFLAGS from += to =; perhaps users don't want to append -O2. Also move -Wall to CFLAGS. - Use C*FLAGS only when compiling and LDFLAGS only when linking. - Create

[PATCH (whome)] Add wmfsm to dockapps webpage.

2015-01-22 Thread Doug Torrance
--- dockapps/dockapps.db | 9 + dockapps/img/wmfsm.png | Bin 0 - 1275 bytes 2 files changed, 9 insertions(+) create mode 100644 dockapps/img/wmfsm.png diff --git a/dockapps/dockapps.db b/dockapps/dockapps.db index 0e0f28b..c4e8612 100644 --- a/dockapps/dockapps.db +++

[PATCH 09/11] wmmenu: Update COPYING from http://www.gnu.org/licenses/gpl-2.0.txt.

2015-01-24 Thread Doug Torrance
--- wmmenu/COPYING | 43 +-- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/wmmenu/COPYING b/wmmenu/COPYING index eeb586b..d159169 100644 --- a/wmmenu/COPYING +++ b/wmmenu/COPYING @@ -1,12 +1,12 @@ - GNU GENERAL PUBLIC

[PATCH 11/11] wmmenu: Bump to version 1.3.

2015-01-24 Thread Doug Torrance
--- wmmenu/README| 52 wmmenu/version.h | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/wmmenu/README b/wmmenu/README index cea901f..8325d88 100644 --- a/wmmenu/README +++ b/wmmenu/README @@ -183,6 +183,58 @@

[PATCH 08/11] wmmenu: Fix -Wsign-compare compiler warning.

2015-01-24 Thread Doug Torrance
Use size_t instead of int since comparing with sizeof. --- wmmenu/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmmenu/utils.c b/wmmenu/utils.c index cdb92e2..f9e5921 100644 --- a/wmmenu/utils.c +++ b/wmmenu/utils.c @@ -16,7 +16,7 @@ static char * ReadAll (FILE * f,

[PATCH 10/11] wmmenu: Remove trailing whitespace.

2015-01-24 Thread Doug Torrance
--- wmmenu/README | 4 +- wmmenu/buttonbar.c | 2 +- wmmenu/wmmenu.1| 130 ++--- 3 files changed, 68 insertions(+), 68 deletions(-) diff --git a/wmmenu/README b/wmmenu/README index 0872350..cea901f 100644 --- a/wmmenu/README +++

[PATCH 06/11] wmmenu: Fix -Woverlength-strings compiler warning.

2015-01-24 Thread Doug Torrance
Instead of printing one giant string for the help text, we print each line individually. --- wmmenu/options.c | 33 +++-- 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/wmmenu/options.c b/wmmenu/options.c index 228cbc7..0a059a2 100644 ---

[PATCH 07/11] wmmenu: Fix -Wunused-value compiler warnings.

2015-01-24 Thread Doug Torrance
--- wmmenu/buttonbar.c | 2 ++ wmmenu/events.c| 4 2 files changed, 6 insertions(+) diff --git a/wmmenu/buttonbar.c b/wmmenu/buttonbar.c index 210318a..619cde6 100644 --- a/wmmenu/buttonbar.c +++ b/wmmenu/buttonbar.c @@ -130,6 +130,8 @@ extern void ButtonBar_SetPositionFromDockApp (int

[PATCH 01/11] wmmenu: Update Makefile.

2015-01-24 Thread Doug Torrance
In particular, - Remove option to compile with deprecated GDK-PixBuf 1.0. - Remove *ROOT variables; libdockapp should be in the default include search path and X11R6 directories are deprecated. - Remove /opt/gtk2/bin from PIXBUF_CFG; pkg-config is likely elsewhere. - Remove CPPFLAGS from CFLAGS

[PATCH 02/11] wmmenu: Update to compile with modern GDK-PixBuf.

2015-01-24 Thread Doug Torrance
In particular, - We need to link against gdk_pixbuf-2.0 in addition to gdk_pixbuf_xlib-2.0. - The header gdk-pixbuf-xlib.h has been moved to the gdk-pixbuf-xlib directory. - The function gdk_pixbuf_new_from_file now requires two arguments. - We need to define GdkColor ourselves since we don't

[PATCH 05/11] wmmenu: Fix -Wdeprecated-declarations compiler warnings.

2015-01-24 Thread Doug Torrance
The function gdk_pixbuf_unref is deprecated. We replace it with g_object_unref. This requires linking against gobject-2.0. --- wmmenu/Makefile | 2 +- wmmenu/pixmaps.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wmmenu/Makefile b/wmmenu/Makefile index

[PATCH 03/11] wmmenu: Replace deprecated DAInitialize() from libdockapp.

2015-01-24 Thread Doug Torrance
Patch from Gentoo [1]. [1] http://mirrors.telepoint.bg/gentoo-portage/x11-plugins/wmmenu/files/wmmenu-1.2-support-libdockapp-0.5.0.patch --- wmmenu/wmmenu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wmmenu/wmmenu.c b/wmmenu/wmmenu.c index 1afb417..b2ae56b 100644 ---

[PATCH 04/11] wmmenu: Fix -Wunused-result compiler warning.

2015-01-24 Thread Doug Torrance
Print a warning message if system() fails. --- wmmenu/events.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wmmenu/events.c b/wmmenu/events.c index 8c44f55..0498635 100644 --- a/wmmenu/events.c +++ b/wmmenu/events.c @@ -31,6 +31,7 @@ Reparent and Destroy events are

[PATCH (whome) 2/2] Rename Website field on dockapps webpages to Original Website.

2015-01-24 Thread Doug Torrance
This may help clarify that these dockapps are no longer maintained by their original authors and that their windowmaker.org pages are the current ones. --- dockapps/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockapps/index.php b/dockapps/index.php index

[PATCH 06/21] wmfsm: Read newly mounted filesystems.

2015-01-21 Thread Doug Torrance
Patch by Timo Benk t_b...@web.de to fix Debian bug #186826 [1]. [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?archive=yesbug=186826 --- wmfsm/wmfsm/wmfsm.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wmfsm/wmfsm/wmfsm.c b/wmfsm/wmfsm/wmfsm.c index

[PATCH 05/21] wmfsm: Hide system file systems.

2015-01-21 Thread Doug Torrance
Patch [1] by roma1390 and Michele Noberasco to fix Gentoo bug #50148 [2]. [1] http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/x11-plugins/wmfsm/files/wmfsm-0.34.linux-fs.patch [2] https://bugs.gentoo.org/show_bug.cgi?id=50148 --- wmfsm/wmfsm/wmfsm.c | 2 +- 1 file changed, 1

[PATCH 03/21] wmfsm: Rename configure.in to configure.ac.

2015-01-21 Thread Doug Torrance
--- wmfsm/configure.ac | 56 ++ wmfsm/configure.in | 56 -- 2 files changed, 56 insertions(+), 56 deletions(-) create mode 100644 wmfsm/configure.ac delete mode 100644 wmfsm/configure.in

[PATCH 00/21] wmfsm

2015-01-21 Thread Doug Torrance
The following patches add wmfsm to the dockapps repository. I incorporate a number of Gentoo and Debian patches and several of my own. Carlos, could you tag the first commit wmfsm-0.34 and the last wmfsm-0.35? Thanks! Doug Torrance (21): wmfsm: Add version 0.34 to repository. wmfsm: Remove

[PATCH 10/21] wmfsm: Remove trailing whitespace.

2015-01-21 Thread Doug Torrance
--- wmfsm/ChangeLog | 8 ++-- wmfsm/Makefile.am | 2 +- wmfsm/configure.ac | 10 ++--- wmfsm/wmfsm/Makefile.am | 4 +- wmfsm/wmfsm/wmfsm.1 | 100 ++-- wmfsm/wmfsm/wmfsm.c | 34 +++

[PATCH 11/21] wmfsm: Update Free Software Foundation address in copyright header.

2015-01-21 Thread Doug Torrance
--- wmfsm/wmfsm/wmfsm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmfsm/wmfsm/wmfsm.c b/wmfsm/wmfsm/wmfsm.c index 11277ba..add5290 100644 --- a/wmfsm/wmfsm/wmfsm.c +++ b/wmfsm/wmfsm/wmfsm.c @@ -19,8 +19,8 @@ * * You should have received a copy of the GNU

<    1   2   3   4   5   6   7   8   9   10   >