Codebase list etl / 59df1af
New upstream release + changelog summary Dmitry Smirnov 5 years ago
4 changed file(s) with 13 addition(s) and 22 deletion(s). Raw diff Collapse all Expand all
0 etl (1.2.2-1) unstable; urgency=medium
1
2 [ Ondřej Nový ]
3 * d/control: Change Maintainer to @lists.debian.org
4 * d/watch: Use https protocol
5
6 [ Dmitry Smirnov ]
7 * New upstream release.
8 * Standards-Version: 4.3.0.
9
10 -- Dmitry Smirnov <onlyjob@debian.org> Wed, 30 Jan 2019 14:38:24 +1100
11
012 etl (1.2.1-1) unstable; urgency=medium
113
214 * New patch to fix FTBFS with GCC8 (Closes: #897745)
1717 Comment: see list of contributors in AUTHORS file
1818
1919 Files: debian/*
20 Copyright: 2012-2018 Dmitry Smirnov <onlyjob@debian.org>
20 Copyright: 2012-2019 Dmitry Smirnov <onlyjob@debian.org>
2121 2007-2009 Cyril Brulebois <kibi@debian.org>
2222 2006 Miguel Gea Milvaques <xerakko@debian.org>
2323 2006 Fabian Fagerholm <fabbe@debian.org>
+0
-20
debian/patches/gcc8.1.patch less more
0 Origin: upstream, https://github.com/synfig/synfig/commit/cb05b072fe6fffb4433140c631f422bdbc036722
1 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=897745
2 From: ice0 <konoplin@gmail.com>
3 Date: Sat, 26 May 2018 07:54:58 -0700
4 Subject: fixed error preventing builing on gcc 8.1
5
6 --- a/ETL/_pen.h
7 +++ b/ETL/_pen.h
8 @@ -135,9 +135,10 @@
9 {
10 typedef int value_type;
11 value_type x,y;
12 difference_type(value_type x, value_type y):x(x),y(y) { }
13 - value_type &operator[](int i)const { return i?y:x; }
14 + const value_type &operator[](int i) const { return i?y:x; }
15 + value_type &operator[](int i) { return i?y:x; }
16 };
17
18 protected:
19 int x_,y_;
0 gcc8.1.patch