diff -Nru tickr-0.7.0/debian/changelog tickr-0.7.0/debian/changelog --- tickr-0.7.0/debian/changelog 2020-05-31 19:32:22.000000000 +0000 +++ tickr-0.7.0/debian/changelog 2020-06-13 14:44:10.000000000 +0000 @@ -1,3 +1,21 @@ +tickr (0.7.0-3) unstable; urgency=low + + * Fix linking issues in tickr-0.7.0/src/tickr/Makefile.am: + tickr_LDADD = ../libetm-0.5.0/libetm.a $(GTK2_LIBS) $(XML2_LIBS)\ + $(GNUTLS_LIBS) $(FRIBIDI_LIBS) -lm + + -- Emmanuel Thomas-Maurin Sat, 13 Jun 2020 16:44:10 +0200 + + +tickr (0.7.0-2) unstable; urgency=low + + * Add missing + 'libetm_a_LDFLAGS = -lm' + in tickr-0.7.0/src/libetm-0.5.0/Makefile.am. + + -- Emmanuel Thomas-Maurin Thu, 11 Jun 2020 11:56:06 +0200 + + tickr (0.7.0-1) unstable; urgency=low * Fix segfaults and *freeze* with FList's when adding invalid or diff -Nru tickr-0.7.0/debian/compat tickr-0.7.0/debian/compat --- tickr-0.7.0/debian/compat 2020-05-31 19:32:22.000000000 +0000 +++ tickr-0.7.0/debian/compat 2020-06-13 14:44:10.000000000 +0000 @@ -1 +1 @@ -9 +12 diff -Nru tickr-0.7.0/debian/control tickr-0.7.0/debian/control --- tickr-0.7.0/debian/control 2020-05-31 19:32:22.000000000 +0000 +++ tickr-0.7.0/debian/control 2020-06-13 14:44:10.000000000 +0000 @@ -2,7 +2,7 @@ Section: net Priority: optional Maintainer: Emmanuel Thomas-Maurin -Build-Depends: debhelper (>= 9), autotools-dev, libgtk2.0-dev, libxml2-dev, libgnutls28-dev, libfribidi-dev +Build-Depends: debhelper (>= 9), libgtk2.0-dev, libxml2-dev, libgnutls28-dev, libfribidi-dev Standards-Version: 4.5.0 Homepage: https://www.open-tickr.net diff -Nru tickr-0.7.0/debian/copyright tickr-0.7.0/debian/copyright --- tickr-0.7.0/debian/copyright 2020-05-31 19:32:22.000000000 +0000 +++ tickr-0.7.0/debian/copyright 2020-06-13 14:44:10.000000000 +0000 @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: tickr Upstream-Contact: Emmanuel Thomas-Maurin Source: https://www.open-tickr.net/unstable-debian/ diff -Nru tickr-0.7.0/debian/patches/fix_tickr_compile.diff tickr-0.7.0/debian/patches/fix_tickr_compile.diff --- tickr-0.7.0/debian/patches/fix_tickr_compile.diff 1970-01-01 00:00:00.000000000 +0000 +++ tickr-0.7.0/debian/patches/fix_tickr_compile.diff 2020-06-13 14:44:10.000000000 +0000 @@ -0,0 +1,72 @@ +diff -ur tickr_0.7.0.orig/ChangeLog tickr-0.7.0/ChangeLog +--- tickr_0.7.0.orig/ChangeLog 2020-05-31 21:46:20.000000000 +0200 ++++ tickr-0.7.0/ChangeLog 2020-06-13 16:52:53.230778029 +0200 +@@ -1,6 +1,14 @@ + tickr version 0.7.0 + ------------------- + ++- Fix linking issues in tickr-0.7.0/src/tickr/Makefile.am: ++ tickr_LDADD = ../libetm-0.5.0/libetm.a $(GTK2_LIBS) $(XML2_LIBS)\ ++ $(GNUTLS_LIBS) $(FRIBIDI_LIBS) -lm (Jun 13 2020) ++ ++- Add missing ++ 'libetm_a_LDFLAGS = -lm' ++ in tickr-0.7.0/src/libetm-0.5.0/Makefile.am. (Jun 11 2020) ++ + - Fix segfaults and *freeze* with FList's when adding invalid or + unreachable URLs (in tickr_feepicker.c). (May 31 2020) + +diff -ur tickr_0.7.0.orig/src/libetm-0.5.0/Makefile.am tickr-0.7.0/src/libetm-0.5.0/Makefile.am +--- tickr_0.7.0.orig/src/libetm-0.5.0/Makefile.am 2020-05-31 21:46:20.000000000 +0200 ++++ tickr-0.7.0/src/libetm-0.5.0/Makefile.am 2020-06-13 16:34:32.177349660 +0200 +@@ -2,4 +2,5 @@ + libetm_a_SOURCES = str_mem.c tcp_socket.c error.c misc.c #dllist.c + libetm_a_CFLAGS = -O2 -Wall -Wextra -Wunused-parameter -Wshadow -Wpointer-arith\ + -ffast-math -pedantic -Wno-variadic-macros -fmax-errors=5 ++#libetm_a_LDADD = -lm + libsdir = .. +diff -ur tickr_0.7.0.orig/src/libetm-0.5.0/Makefile.in tickr-0.7.0/src/libetm-0.5.0/Makefile.in +--- tickr_0.7.0.orig/src/libetm-0.5.0/Makefile.in 2020-05-31 21:46:20.000000000 +0200 ++++ tickr-0.7.0/src/libetm-0.5.0/Makefile.in 2020-06-13 16:54:03.002100267 +0200 +@@ -304,6 +304,7 @@ + libetm_a_CFLAGS = -O2 -Wall -Wextra -Wunused-parameter -Wshadow -Wpointer-arith\ + -ffast-math -pedantic -Wno-variadic-macros -fmax-errors=5 + ++#libetm_a_LDADD = -lm + libsdir = .. + all: all-am + +diff -ur tickr_0.7.0.orig/src/tickr/Makefile.am tickr-0.7.0/src/tickr/Makefile.am +--- tickr_0.7.0.orig/src/tickr/Makefile.am 2020-05-31 21:46:20.000000000 +0200 ++++ tickr-0.7.0/src/tickr/Makefile.am 2020-06-13 16:37:32.831634097 +0200 +@@ -32,9 +32,11 @@ + -ffast-math -pedantic -Wno-variadic-macros -fmax-errors=5 $(GTK2_CFLAGS)\ + $(XML2_CFLAGS) $(GNUTLS_CFLAGS) $(FRIBIDI_CFLAGS) + +-tickr_LDFLAGS = -Wl,-z,defs -Wl,--as-needed ../libetm-0.5.0/libetm.a ++tickr_LDFLAGS = -Wl,-z,defs -Wl,--as-needed ++#../libetm-0.5.0/libetm.a + +-tickr_LDADD = ../libetm-0.5.0/libetm.a $(GTK2_LIBS) $(XML2_LIBS) $(GNUTLS_LIBS) $(FRIBIDI_LIBS) ++tickr_LDADD = ../libetm-0.5.0/libetm.a $(GTK2_LIBS) $(XML2_LIBS) $(GNUTLS_LIBS)\ ++ $(FRIBIDI_LIBS) -lm + + tickr_DATA = ../../images/tickr-icon.png ../../images/tickr-logo.png\ + ../../images/tickr-rss-icon.png ../../images/tickr-icon.xpm +diff -ur tickr_0.7.0.orig/src/tickr/Makefile.in tickr-0.7.0/src/tickr/Makefile.in +--- tickr_0.7.0.orig/src/tickr/Makefile.in 2020-05-31 21:46:20.000000000 +0200 ++++ tickr-0.7.0/src/tickr/Makefile.in 2020-06-13 16:54:03.054099762 +0200 +@@ -334,8 +334,11 @@ + -ffast-math -pedantic -Wno-variadic-macros -fmax-errors=5 $(GTK2_CFLAGS)\ + $(XML2_CFLAGS) $(GNUTLS_CFLAGS) $(FRIBIDI_CFLAGS) + +-tickr_LDFLAGS = -Wl,-z,defs -Wl,--as-needed ../libetm-0.5.0/libetm.a +-tickr_LDADD = ../libetm-0.5.0/libetm.a $(GTK2_LIBS) $(XML2_LIBS) $(GNUTLS_LIBS) $(FRIBIDI_LIBS) ++tickr_LDFLAGS = -Wl,-z,defs -Wl,--as-needed ++#../libetm-0.5.0/libetm.a ++tickr_LDADD = ../libetm-0.5.0/libetm.a $(GTK2_LIBS) $(XML2_LIBS) $(GNUTLS_LIBS)\ ++ $(FRIBIDI_LIBS) -lm ++ + tickr_DATA = ../../images/tickr-icon.png ../../images/tickr-logo.png\ + ../../images/tickr-rss-icon.png ../../images/tickr-icon.xpm + diff -Nru tickr-0.7.0/debian/patches/series tickr-0.7.0/debian/patches/series --- tickr-0.7.0/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ tickr-0.7.0/debian/patches/series 2020-06-13 14:44:10.000000000 +0000 @@ -0,0 +1 @@ +fix_tickr_compile.diff