diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 11 | ||||
-rw-r--r-- | debian/control | 4 | ||||
-rw-r--r-- | debian/copyright | 2 | ||||
-rw-r--r-- | debian/files | 1 | ||||
-rw-r--r-- | debian/patches/0145-ftbfs-impfuncdef.patch | 31 | ||||
-rw-r--r-- | debian/patches/series | 1 |
6 files changed, 47 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 4895669..7e066e2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +sane-frontends (1.0.14-18) unstable; urgency=medium + + * New debian/patches/0145-ftbfs-impfuncdef.patch. + Fix FTBFS -Werror=implicit-function-declaration (Closes: #1066571). + * debian/copyright + - Add year 2024 to myself. + * debian/control: + - Change to new repository. + + -- Jörg Frings-Fürst <debian@jff.email> Wed, 13 Mar 2024 20:45:20 +0100 + sane-frontends (1.0.14-17) unstable; urgency=medium * debian/patches/0001-fix_missing_sane-config.patch: diff --git a/debian/control b/debian/control index 5359c13..31eb67c 100644 --- a/debian/control +++ b/debian/control @@ -10,8 +10,8 @@ Build-Depends: libgtk2.0-dev, libsane-dev Homepage: http://www.sane-project.org -Vcs-Git: git://jff.email/opt/git/sane-frontends.git -Vcs-Browser: https://jff.email/cgit/sane-frontends.git +Vcs-Git: git://git.jff.email/sane-frontends.git +Vcs-Browser: https://git.jff.email/cgit/sane-frontends.git Package: sane Architecture: any diff --git a/debian/copyright b/debian/copyright index 16becba..faa2000 100644 --- a/debian/copyright +++ b/debian/copyright @@ -15,7 +15,7 @@ License: GPL-2+ with sane exception Files: debian/* Copyright: 1997-2002 Kevin Dalley <kevind@rahul.net> 2002-2009 Julien BLACHE <jblache@debian.org> - 2014-2023 Jörg Frings-Fürst <debian@jff.email> + 2014-2024 Jörg Frings-Fürst <debian@jff.email> License: GPL-2+ with sane exception Files: include/*.h diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..e7f01b4 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +sane-frontends_1.0.14-18_source.buildinfo graphics optional diff --git a/debian/patches/0145-ftbfs-impfuncdef.patch b/debian/patches/0145-ftbfs-impfuncdef.patch new file mode 100644 index 0000000..6ff4051 --- /dev/null +++ b/debian/patches/0145-ftbfs-impfuncdef.patch @@ -0,0 +1,31 @@ +Description: Fix FTBFS with enabled -Werror=implicit-function-declaration +Author: Jörg Frings-Fürst <debian@jff.email> +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066571 +Forwarded: https://gitlab.com/sane-project/frontends/-/issues/37 +Last-Update: 2024-03-13 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/include/sane/sanei_debug.h +=================================================================== +--- trunk.orig/include/sane/sanei_debug.h ++++ trunk/include/sane/sanei_debug.h +@@ -95,7 +95,8 @@ + #ifdef NDEBUG + + extern void sanei_debug_ndebug (int level, const char *msg, ...); +- ++ ++ + # define DBG_LEVEL (0) + # define DBG_INIT() + # define DBG sanei_debug_ndebug +@@ -167,6 +168,9 @@ DBG_LOCAL (int level, const char *msg, . + # define DBG DBG_LOCAL + + extern void sanei_init_debug (const char * backend, int * debug_level_var); ++ ++/* fix -Werror=implicit-function-declaration */ ++int isfdtype(int fd, int fdtype); + + /** @hideinitializer*/ + # define IF_DBG(x) x diff --git a/debian/patches/series b/debian/patches/series index 64afa25..fb328b5 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ +0145-ftbfs-impfuncdef.patch 0001-fix_missing_sane-config.patch 0100-xcam.c_dead_code.patch 0105-scanadf_options_fix.patch |