From e2236dc16bda346e36ce0ff0ee0f5a6025c6760b Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Sun, 7 Feb 2016 00:53:20 -0500 Subject: [PATCH] wmget: Bump to version 0.6.1. --- wmget/NEWS | 29 +++++++++++++++++++++++++++++ wmget/configure.ac | 2 +- wmget/wmget.h | 5 +---- 3 files changed, 31 insertions(+), 5 deletions(-) diff --git a/wmget/NEWS b/wmget/NEWS index 26497f9..90e24b8 100644 --- a/wmget/NEWS +++ b/wmget/NEWS @@ -1,6 +1,35 @@ Development History for wmget +wmget 0.6.1 - Now maintained by the Window Maker Developers Team + + * Fix -Wpointer-to-int-cast compiler warnings. In particular, use intptr_t + instead of int. From the Debian patch [1]. + * Fix resource leaks. In particular, fclose() all the files we fopen(). + From Debian [2]. + * Switch to autotools for build. + * Remove docbook -> manpage conversion. It was resulting in compilation + errors: + profzoom@cayke:~/src/dockapps/dockapps/wmget$ xsltproc --nonet + wmget.refentry.xml + I/O error : Attempt to load network entity + http://docbook.sourceforge.net/release/xsl/1.62/manpages/docbook.xsl + warning: failed to load external entity "http://docbook.sourceforge.net/ + release/xsl/1.62/manpages/docbook.xsl" + error + xsltParseStylesheetFile : cannot parse http://docbook.sourceforge.net/ + release/xsl/1.62/manpages/docbook.xsl + compilation error: file wmget.refentry.xml line 19 element refentry + xsltParseStylesheetProcess : document is not a stylesheet + We therefore remove the xml source file and in the future, we will edit + the troff file directly. We also add the version number to the manpage via + autoconf. + + [1] http://sources.debian.net/src/wmget/0.6.0-5/debian/patches/ + fix_-Wpointer-to-int-cast.patch/ + [2] http://sources.debian.net/src/wmget/0.6.0-5/debian/patches/ + fix_resource_leaks.patch/ + wmget 0.6.0 - More options, nominal error handling, fixes * New options: auth, proxy_auth, ascii, interface, referer, headers diff --git a/wmget/configure.ac b/wmget/configure.ac index 2fc7fb3..dc0d7a0 100644 --- a/wmget/configure.ac +++ b/wmget/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wmget], [0.6.0], [wmaker-dev@lists.windowmaker.org]) +AC_INIT([wmget], [0.6.1], [wmaker-dev@lists.windowmaker.org]) AM_INIT_AUTOMAKE([foreign subdir-objects]) AC_CONFIG_SRCDIR([configure.ac]) AC_PROG_CC diff --git a/wmget/wmget.h b/wmget/wmget.h index 1dab25a..f2f3381 100644 --- a/wmget/wmget.h +++ b/wmget/wmget.h @@ -35,10 +35,7 @@ #include #include -/* Important: the Makefile greps the source to extract WMGET_VERSION. - * So don't change its format or anything without checking there first. - */ -#define WMGET_VERSION "0.6.0" +#define WMGET_VERSION PACKAGE_VERSION #define WMGET_VERSION_BANNER "wmget " WMGET_VERSION \ ", compiled with libcurl " \ LIBCURL_VERSION