diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 15 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | debian/copyright | 2 | ||||
-rw-r--r-- | debian/files | 1 | ||||
-rw-r--r-- | debian/patches/0001-Remove_incorrect_i18n.merge_file_argument.patch | 30 | ||||
-rw-r--r-- | debian/patches/0005-Build_error_with_vala.patch | 20 | ||||
-rw-r--r-- | debian/patches/series | 2 |
7 files changed, 69 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 73424b6..1f954af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +simple-scan (40.7-1) unstable; urgency=medium + + * New upstream release. + * debian/copyright: + - Add year 2022 to myself. + * Declare compliance with Debian Policy 4.6.0.1 (No changes needed). + * New .gitignore. + * New patches: + - debian/patches/0001-Remove_incorrect_i18n.merge_file_argument.patch: + Fix build error with meson > 0.60. + - debian/patches/0005-Build_error_with_vala.patch: + Fix accessibility conflict of constant and its value. + + -- Jörg Frings-Fürst <debian@jff.email> Sun, 06 Feb 2022 15:20:34 +0100 + simple-scan (40.6-1) unstable; urgency=medium * New upstream release. diff --git a/debian/control b/debian/control index 1d1568b..e16cb2c 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: simple-scan Section: gnome Priority: optional Maintainer: Jörg Frings-Fürst <debian@jff.email> -Standards-Version: 4.6.0.0 +Standards-Version: 4.6.0.1 Rules-Requires-Root: no Build-Depends: cmake, diff --git a/debian/copyright b/debian/copyright index 90fb797..ca42f98 100644 --- a/debian/copyright +++ b/debian/copyright @@ -22,7 +22,7 @@ License: GPL-3+ Files: debian/* Copyright: 2009-2012 Alessio Treglia <alessio@debian.org> 2009 Robert Ancell <robert.ancell@canonical.com> - 2014-2021 Jörg Frings-Fürst <debian@jff.email> + 2014-2022 Jörg Frings-Fürst <debian@jff.email> License: GPL-3+ License: GPL-3+ diff --git a/debian/files b/debian/files deleted file mode 100644 index 091d5c3..0000000 --- a/debian/files +++ /dev/null @@ -1 +0,0 @@ -simple-scan_40.6-1_source.buildinfo gnome optional diff --git a/debian/patches/0001-Remove_incorrect_i18n.merge_file_argument.patch b/debian/patches/0001-Remove_incorrect_i18n.merge_file_argument.patch new file mode 100644 index 0000000..0fb73d0 --- /dev/null +++ b/debian/patches/0001-Remove_incorrect_i18n.merge_file_argument.patch @@ -0,0 +1,30 @@ +Fix accessibility conflict of constant and its value +Origin: upstream, https://gitlab.gnome.org/GNOME/simple-scan/-/commit/c50802b213c325cfa957d66955f6de96908710d9 +Forwarded: not-needed +Applied-Upstream: commit: /c50802b213c325cfa957d66955f6de96908710d9 +Last-Update: 2022-02-06 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/data/meson.build +=================================================================== +--- trunk.orig/data/meson.build ++++ trunk/data/meson.build +@@ -8,16 +8,14 @@ install_data ('org.gnome.SimpleScan.gsch + install_dir: join_paths (datadir, 'glib-2.0', 'schemas')) + meson.add_install_script ('meson_compile_gschema.py') + +-i18n.merge_file ('desktop-file', +- input: 'simple-scan.desktop.in', ++i18n.merge_file (input: 'simple-scan.desktop.in', + output: 'simple-scan.desktop', + install: true, + install_dir: join_paths (datadir, 'applications'), + po_dir: '../po', + type: 'desktop') + +-i18n.merge_file ('appdata-file', +- input: 'simple-scan.appdata.xml.in', ++i18n.merge_file (input: 'simple-scan.appdata.xml.in', + output: 'simple-scan.appdata.xml', + install: true, + install_dir: join_paths (datadir, 'metainfo'), diff --git a/debian/patches/0005-Build_error_with_vala.patch b/debian/patches/0005-Build_error_with_vala.patch new file mode 100644 index 0000000..76387f0 --- /dev/null +++ b/debian/patches/0005-Build_error_with_vala.patch @@ -0,0 +1,20 @@ +Remove incorrect i18n.merge_file argument +Origin: upstream, https://gitlab.gnome.org/GNOME/simple-scan/-/commit/da6626debe00be1a0660f30cf2bf7629186c01d5 +Bug: https://gitlab.gnome.org/GNOME/simple-scan/-/issues/284 +Forwarded: not-needed +Last-Update: 2022-02-06 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/src/simple-scan.vala +=================================================================== +--- trunk.orig/src/simple-scan.vala ++++ trunk/src/simple-scan.vala +@@ -14,7 +14,7 @@ public class SimpleScan : Gtk.Applicatio + static bool show_version; + static bool debug_enabled; + static string? fix_pdf_filename = null; +- public const OptionEntry[] options = ++ const OptionEntry[] options = + { + { "version", 'v', 0, OptionArg.NONE, ref show_version, + /* Help string for command line --version flag */ diff --git a/debian/patches/series b/debian/patches/series index e69de29..e4ed019 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -0,0 +1,2 @@ +0001-Remove_incorrect_i18n.merge_file_argument.patch +0005-Build_error_with_vala.patch |