Bug#786720: jessie-pu: package libinfinity/0.6.6-1~deb8u1

2015-05-30 Thread Adam D. Barratt
Control: tags -1 + pending

On Mon, 2015-05-25 at 18:50 +0100, Adam D. Barratt wrote:
 Control: tags -1 + confirmed
 
 On Sun, 2015-05-24 at 22:38 +0200, Philipp Kern wrote:
  I'd like to update libinfinity in jessie from 0.6.5-1 to 0.6.6-1. That
  maintenance upstream release contains a three line fix for a security
  issue (CVE-2015-3886), one fix to avoid some failing assertions when
  handling the cursor while editing a document and a crash fix in the
  client code. I'd upload the version as 0.6.6-1~deb8u1 to jessie. The
  release noise is fairly minimal, see the attached diff between 0.6.5-1
  (stable) and 0.6.6-1 (unstable).
 
 Assuming that the 0.6.6-1~deb8u1 diff looks identical to 0.6.6-1 other
 than an additional changelog stanza and it has been tested on Jessie,
 please go ahead.

Uploaded and flagged for acceptance.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786720: jessie-pu: package libinfinity/0.6.6-1~deb8u1

2015-05-25 Thread Adam D. Barratt
Control: tags -1 + confirmed

On Sun, 2015-05-24 at 22:38 +0200, Philipp Kern wrote:
 I'd like to update libinfinity in jessie from 0.6.5-1 to 0.6.6-1. That
 maintenance upstream release contains a three line fix for a security
 issue (CVE-2015-3886), one fix to avoid some failing assertions when
 handling the cursor while editing a document and a crash fix in the
 client code. I'd upload the version as 0.6.6-1~deb8u1 to jessie. The
 release noise is fairly minimal, see the attached diff between 0.6.5-1
 (stable) and 0.6.6-1 (unstable).

Assuming that the 0.6.6-1~deb8u1 diff looks identical to 0.6.6-1 other
than an additional changelog stanza and it has been tested on Jessie,
please go ahead.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786720: jessie-pu: package libinfinity/0.6.6-1~deb8u1

2015-05-24 Thread Philipp Kern
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

I'd like to update libinfinity in jessie from 0.6.5-1 to 0.6.6-1. That
maintenance upstream release contains a three line fix for a security
issue (CVE-2015-3886), one fix to avoid some failing assertions when
handling the cursor while editing a document and a crash fix in the
client code. I'd upload the version as 0.6.6-1~deb8u1 to jessie. The
release noise is fairly minimal, see the attached diff between 0.6.5-1
(stable) and 0.6.6-1 (unstable).

I can also pull any of the patches into 0.6.5-1 and base a +deb8u1 off
that.

Kind regards and thanks
Philipp Kern
diff -Nru libinfinity-0.6.5/ChangeLog libinfinity-0.6.6/ChangeLog
--- libinfinity-0.6.5/ChangeLog	2015-01-18 02:29:29.071909458 +0100
+++ libinfinity-0.6.6/ChangeLog	2015-05-13 02:57:57.089748067 +0200
@@ -1,3 +1,99 @@
+commit a5bc24e87714d3c3fa75711c5d06b9b8e4c81d53
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Tue May 12 20:12:52 2015 -0400
+
+Release libinfinity 0.6.6
+
+ NEWS | 9 +
+ 1 file changed, 9 insertions(+)
+
+commit 3862714b942fe626308f06e01730df7b48921faf
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Tue May 12 20:55:41 2015 -0400
+
+Fix make distcheck for recent automake versions
+
+Recent automake versions run with a more restrictive umask, so that the
+version.xml files are created with read-only permissions. This fails when
+trying to override them, so remove them explicitly before.
+
+ docs/reference/Makefile.am | 2 ++
+ 1 file changed, 2 insertions(+)
+
+commit 06fa9455c687a67e4fc2c2f201817c64c73a3fcf
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Mon May 11 22:59:34 2015 -0400
+
+Fix expired certificate validation (gobby #61)
+
+ libinfgtk/inf-gtk-certificate-manager.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+commit 244c7e8d69b98330ac7a285922c6fcb0a167ae20
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Tue May 5 20:45:45 2015 -0400
+
+Update caret position when only updating fixline state
+
+When the user inserts some newlines that are swallowed by the fixline
+buffer, then still advance the user's cursor such that newly
+to-be-written
+text is inserted after the imaginary newline.
+
+ libinftext/inf-text-fixline-buffer.c | 54 ++
+ 1 file changed, 54 insertions(+)
+
+commit fb0c8532694476f3f624f66eb12becf851147e27
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Mon May 4 20:31:12 2015 -0400
+
+fixline buffer: Fix crash when iterating backwards through empty
+base buffer
+
+ libinftext/inf-text-fixline-buffer.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+commit da06a82642c1d2d0d5a44f1ea3f62ad0b2b22c9a
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Sun May 3 17:07:46 2015 -0400
+
+Fix insert/erase notifications in InfTextFixlineBuffer
+
+The notifications were missing when the fixline buffer was modified
+directly
+with the API, and not in response to modifications to the underlying base
+buffer.
+
+ libinftext/inf-text-fixline-buffer.c | 10 ++
+ 1 file changed, 10 insertions(+)
+
+commit 9b009160dd658fe9272d69025a8225b02eafb8de
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Thu Apr 30 21:37:23 2015 -0400
+
+Fix create_end_iter() implementation in InfTextFixlineBuffer
+
+ libinftext/inf-text-fixline-buffer.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+commit 8990cf98ab43f3aca6a7bf12e9608b0e2e9b5c70
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Fri Apr 3 13:04:24 2015 -0400
+
+Fix a crash when the server explicitly changes client account to default
+
+ libinfinity/client/infc-browser.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+commit 0ce00121225662125b2ae4e48ff5d9f712e86a70
+Author: Armin Burgmeier ar...@arbur.net
+Date:   Sat Jan 17 20:33:25 2015 -0500
+
+Post-release bump to 0.6.6
+
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
 commit 1a0ff8091afdfe831d317d10c377a8a025ea259d
 Author: Armin Burgmeier ar...@arbur.net
 Date:   Sat Jan 17 20:19:38 2015 -0500
diff -Nru libinfinity-0.6.5/configure libinfinity-0.6.6/configure
--- libinfinity-0.6.5/configure	2015-01-18 02:21:51.575927350 +0100
+++ libinfinity-0.6.6/configure	2015-05-13 02:14:48.253651523 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for libinfinity 0.6.5.
+# Generated by GNU Autoconf 2.69 for libinfinity 0.6.6.
 #
 # Report bugs to ar...@arbur.net.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='libinfinity'
 PACKAGE_TARNAME='libinfinity'
-PACKAGE_VERSION='0.6.5'
-PACKAGE_STRING='libinfinity 0.6.5'
+PACKAGE_VERSION='0.6.6'
+PACKAGE_STRING='libinfinity 0.6.6'
 PACKAGE_BUGREPORT='ar...@arbur.net'
 PACKAGE_URL=''
 
@@ -1416,7 +1416,7 @@
   # Omit some internal or obsolete options to make the list