--- /dev/null
+lgogdownloader (2.19-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Standards-Version 3.9.6, no change required.
+
+ -- Stephen Kitt <skitt@debian.org> Tue, 21 Oct 2014 20:31:24 +0200
+
+lgogdownloader (2.18-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Refresh patches, and drop help-without-home.patch (merged upstream).
+ * Add pointers to the git repository on Alioth.
+ * Make sure CPPFLAGS are taken into account.
+
+ -- Stephen Kitt <skitt@debian.org> Tue, 23 Sep 2014 17:18:17 +0200
+
+lgogdownloader (2.17-2) unstable; urgency=medium
+
+ * Avoid touching $HOME if --help or --version are specified on the
+ command-line. Closes: #761217.
+
+ -- Stephen Kitt <skitt@debian.org> Thu, 11 Sep 2014 23:17:00 +0200
+
+lgogdownloader (2.17-1) unstable; urgency=low
+
+ * Initial release. Closes: #761130.
+
+ -- Stephen Kitt <skitt@debian.org> Wed, 10 Sep 2014 23:26:18 +0200
--- /dev/null
+Source: lgogdownloader
+Section: web
+Priority: optional
+Maintainer: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>
+Uploaders: Stephen Kitt <skitt@debian.org>
+Build-Depends: debhelper (>=9),
+ help2man,
+ libboost-date-time-dev,
+ libboost-filesystem-dev,
+ libboost-program-options-dev,
+ libboost-regex-dev,
+ libboost-system-dev,
+ libhtmlcxx-dev,
+ libjsoncpp-dev,
+ liboauth-dev,
+ librhash-dev,
+ libtinyxml-dev
+Standards-Version: 3.9.6
+Homepage: https://sites.google.com/site/gogdownloader/
+Vcs-Git: git://anonscm.debian.org/pkg-games/lgogdownloader.git
+Vcs-Browser: http://anonscm.debian.org/cgit/pkg-games/lgogdownloader.git
+
+Package: lgogdownloader
+Architecture: any
+Multi-Arch: foreign
+Depends: ${misc:Depends},
+ ${shlibs:Depends}
+Description: downloader for GOG.com files
+ lgogdownloader is a client for the GOG.com download API, allowing
+ simple downloads and updates of games and other files from GOG.com.
+ .
+ This package is only useful if you own games on GOG.com. There are a
+ few free-as-in-beer games available for Linux, but the DFSG-free
+ games are not provided for Linux on GOG.com and are available in
+ Debian anyway (lure-of-the-temptress, beneath-a-steel-sky,
+ flight-of-the-amazon-queen).
--- /dev/null
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: lgogdownloader
+Source: https://sites.google.com/site/gogdownloader/
+
+Files: *
+Copyright: none declared
+License: WTFPL-2
+
+Files: debian/*
+Copyright: 2014 Stephen Kitt
+License: WTFPL-2
+
+License: WTFPL-2
+ This program is free software. It comes without any warranty, to the
+ extent permitted by applicable law. You can redistribute it and/or
+ modify it under the terms of the Do What The Fuck You Want To Public
+ License, Version 2, as published by Sam Hocevar. See
+ http://www.wtfpl.net/ for more details.
+ .
+ The full text of the license is provided in the COPYING file and
+ reproduced here:
+ .
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+ .
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
+ .
+ Everyone is permitted to copy and distribute verbatim or modified
+ copies of this license document, and changing it is allowed as long
+ as the name is changed.
+ .
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+ .
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
+ .
--- /dev/null
+# Configuration file for git-buildpackage and friends
+
+[DEFAULT]
+pristine-tar = True
--- /dev/null
+Description: Take externally-defined flags into account
+Author: Stephen Kitt <skitt@debian.org>
+
+--- a/Makefile
++++ b/Makefile
+@@ -16,11 +16,11 @@
+ WINDRES = windres
+
+ INC = -Iinclude -I/usr/include/rhash
+-CFLAGS = -std=c++11 -Wall -fexceptions -D_FILE_OFFSET_BITS=64
++CFLAGS := $(CFLAGS) -std=c++11 -Wall -fexceptions -D_FILE_OFFSET_BITS=64
+ RESINC =
+ LIBDIR =
+ LIB = -lcurl -loauth -ljsoncpp -lhtmlcxx -lboost_system -lboost_filesystem -lboost_regex -lboost_program_options -lboost_date_time -ltinyxml -lrhash
+-LDFLAGS =
++LDFLAGS := $(LDFLAGS)
+
+ VERSION = -DVERSION_STRING="\"$(shell sh version.sh)\""
+ HELP2MAN = $(shell which help2man 2> /dev/null)
+@@ -39,12 +39,12 @@
+ OUT_DEBUG = bin/Debug/lgogdownloader
+
+ INC_RELEASE = $(INC)
+-CFLAGS_RELEASE = $(CFLAGS) -O2
++CFLAGS_RELEASE = $(CFLAGS) $(CPPFLAGS)
+ RESINC_RELEASE = $(RESINC)
+ RCFLAGS_RELEASE = $(RCFLAGS)
+ LIBDIR_RELEASE = $(LIBDIR)
+ LIB_RELEASE = $(LIB)
+-LDFLAGS_RELEASE = $(LDFLAGS) -s
++LDFLAGS_RELEASE = $(LDFLAGS)
+ OBJDIR_RELEASE = obj/Release
+ DEP_RELEASE =
+ OUT_RELEASE = bin/Release/lgogdownloader
--- /dev/null
+Description: Provide meaningful whatis entry
+Author: Stephen Kitt <skitt@debian.org>
+
+--- a/Makefile
++++ b/Makefile
+@@ -106,7 +106,7 @@
+
+ after_release: out_release
+ ifdef HELP2MAN
+- help2man -N -i $(MAN_DIR)/lgogdownloader.supplemental.groff -o $(MAN_DIR)/$(MAN_PAGE) $(OUT_RELEASE)
++ help2man -N -i $(MAN_DIR)/lgogdownloader.supplemental.groff -n "downloader for GOG.com games and other files" -o $(MAN_DIR)/$(MAN_PAGE) $(OUT_RELEASE)
+ gzip -f -9 $(MAN_DIR)/$(MAN_PAGE)
+ endif
+
--- /dev/null
+Description: Don't build the debug version
+Author: Stephen Kitt <skitt@debian.org>
+
+--- a/Makefile
++++ b/Makefile
+@@ -53,7 +53,7 @@
+
+ OBJ_RELEASE = $(OBJDIR_RELEASE)/main.o $(OBJDIR_RELEASE)/src/api.o $(OBJDIR_RELEASE)/src/downloader.o $(OBJDIR_RELEASE)/src/progressbar.o $(OBJDIR_RELEASE)/src/util.o $(OBJDIR_RELEASE)/src/blacklist.o $(OBJDIR_RELEASE)/src/gamedetails.o $(OBJDIR_RELEASE)/src/gamefile.o
+
+-all: debug release
++all: release
+
+ clean: clean_debug clean_release
+
--- /dev/null
+honour-flags.patch
+manpage-whatis.patch
+no-debug-build.patch
--- /dev/null
+#!/usr/bin/make -f
+#DH_VERBOSE = 1
+
+%:
+ dh $@
+
+
+
+
--- /dev/null
+3.0 (quilt)
+
--- /dev/null
+# watch control file for uscan
+version=3
+
+https://github.com/Sude-/lgogdownloader/tags (?:.*/)?v?(\d[\d\.]*)\.(?:tar\.gz|tar\.bz2|tar\.xz)