summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2016-03-11 00:46:56 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2016-03-11 00:46:56 +0100
commit42dd732e37144da73fa78a04f92f1d69985e60fa (patch)
tree714f98f7573e07ca1aa4310c8d22e161b652e58b
parent57d7b7756e369ea39fe90771e4fcbff2746688e1 (diff)
changes at d/copyright; new d/gcstar.postrmdebian/1.7.1-1
-rw-r--r--debian/changelog21
-rw-r--r--debian/copyright5
-rw-r--r--debian/gcstar.postrm18
3 files changed, 32 insertions, 12 deletions
diff --git a/debian/changelog b/debian/changelog
index 172df66..32d9645 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,22 +1,25 @@
-gcstar (1.7.1-1) UNRELEASED; urgency=medium
+gcstar (1.7.1-1) unstable; urgency=medium
- * New upstream release.
+ * New upstream release:
- Remove upstream applied patches:
+ debian/patches/11-fix_gamespot_plugin.patch
+ debian/patches/12-fix_gamespot_images.patch
+ debian/patches/14-fix_imdb.patch
- * debian/control:
- - Bump Standards-Version to 3.9.7 (no changes required).
- - Change Vcs-* to secure uri.
* debian/copyright:
- Add year 2016.
- Change "GPL-2 with exceptions" to "GPL-2 with RedHat exception"
to prevent lintian warning.
- * Remove outdated debian/source/options.
- * debian/watch: Change version to 4 (no changes required).
- * Remove useless debian/menu
+ - Change "GPL-3.0+" to "GPL-3+".
+ - Remove "2010 groms" from section *.
+ * debian/control:
+ - Bump Standards-Version to 3.9.7 (no changes required).
+ - Change Vcs-* to secure uri.
+ * debian/watch:
+ - Change version to 4 (no changes required).
+ * New debian/gcstar.postrm to delete left files on purging.
+ * Remove outdated debian/source/options and debian/menu.
- -- Jörg Frings-Fürst <debian@jff-webhosting.net> Wed, 29 Apr 2015 09:29:49 +0200
+ -- Jörg Frings-Fürst <debian@jff-webhosting.net> Fri, 11 Mar 2016 00:44:32 +0100
gcstar (1.7.0-1) unstable; urgency=medium
diff --git a/debian/copyright b/debian/copyright
index 8bba4e5..3a193ea 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -14,7 +14,6 @@ Copyright: 2005-2016 Christian Jodar aka Tian <tian@gcstar.org, tian@c-sait.net>
2008 t-storm
2009-2010 Andrew Ross
2009 FiXx
- 2010 groms
License: GPL-2+
Files: share/gcstar/fonts/*
@@ -29,7 +28,7 @@ License: Expat
Files: debian/*
Copyright: 2006-2011 Alexander Wirt <formorer@debian.org>
2014-2016 Jörg Frings-Fürst <debian@jff-webhosting.net>
-License: GPL-3.0+
+License: GPL-3+
License: GPL-2+
This program is free software: you can redistribute it and/or modify
@@ -48,7 +47,7 @@ License: GPL-2+
The complete text of the GNU General Public License
can be found in /usr/share/common-licenses/GPL-2 file.
-License: GPL-3.0+
+License: GPL-3+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
diff --git a/debian/gcstar.postrm b/debian/gcstar.postrm
new file mode 100644
index 0000000..7f453db
--- /dev/null
+++ b/debian/gcstar.postrm
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+set -e
+#
+# set -e are disabled because pathfind update-inetd
+# gives an piuparts error.
+#
+
+if [ "$1" = purge ] ; then
+#
+# purge files
+#
+ rm -f /usr/share/mime/application/x-gcstar.xml
+fi
+
+#DEBHELPER#
+
+exit 0 \ No newline at end of file