Bug#870727: malaga FTCBFS: uses the build architecture pkg-config

2017-08-04 Thread Helmut Grohne
Source: malaga
Version: 7.12-7
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

malaga fails to cross build from source, because it uses the build
architecture pkg-config and thus fails finding gtk2 and glib2.0. After
switching configure.in to use PKG_CHECK_MODULES, which considers
$ac_tool_prefix, it fails building the documentation, because gtk2 and
glib2.0 are only requested for the host architecture. Since cross builds
typically skip building architecture-independent packages, moving the
documentation build to -indep overrides makes the build proceed. make
install tries to strip the resulting binaries with the build
architecture strip. This not only breaks cross building, but also
generating -dbgsym packages. It can be nullified by telling install to
strip with /bin/true. The attached patch combines all of that and makes
malaga cross build successfully. Please consider applying it.

Helmut
diff --minimal -Nru malaga-7.12/debian/changelog malaga-7.12/debian/changelog
--- malaga-7.12/debian/changelog2016-04-07 11:51:00.0 +0200
+++ malaga-7.12/debian/changelog2017-08-04 13:28:11.0 +0200
@@ -1,3 +1,13 @@
+malaga (7.12-7.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: Closes: #-1
++ Add cross.patch.
++ Do not build the documentation during arch-only.
++ Do not strip during install.
+
+ -- Helmut Grohne   Fri, 04 Aug 2017 13:28:11 +0200
+
 malaga (7.12-7) unstable; urgency=low
 
   * QA upload.
diff --minimal -Nru malaga-7.12/debian/control malaga-7.12/debian/control
--- malaga-7.12/debian/control  2016-04-07 10:00:00.0 +0200
+++ malaga-7.12/debian/control  2017-08-04 13:22:23.0 +0200
@@ -2,7 +2,7 @@
 Maintainer: Debian QA Group 
 Section: misc
 Priority: optional
-Build-Depends: libgtk2.0-dev, libglib2.0-dev, texinfo, texlive, 
libreadline-dev, debhelper (>= 9), autotools-dev, libcairo-dev, dpkg (>= 
1.15.4) | install-info, dh-autoreconf
+Build-Depends: libgtk2.0-dev, libglib2.0-dev, texinfo, texlive, 
libreadline-dev, debhelper (>= 9), autotools-dev, libcairo-dev, dpkg (>= 
1.15.4) | install-info, dh-autoreconf, pkg-config
 Standards-Version: 3.9.2
 
 Package: malaga-bin
diff --minimal -Nru malaga-7.12/debian/patches/cross.diff 
malaga-7.12/debian/patches/cross.diff
--- malaga-7.12/debian/patches/cross.diff   1970-01-01 01:00:00.0 
+0100
+++ malaga-7.12/debian/patches/cross.diff   2017-08-04 13:28:11.0 
+0200
@@ -0,0 +1,53 @@
+From: Helmut Grohne 
+Subject: let PKG_CHECK_MODULES consider $ac_tool_prefix
+
+Index: malaga-7.12/configure.in
+===
+--- malaga-7.12.orig/configure.in
 malaga-7.12/configure.in
+@@ -58,12 +58,7 @@
+   use_malshow=$enableval, use_malshow=yes)
+ if test $use_malshow = yes
+ then
+-  AC_MSG_CHECKING(for GTK+ 2.8 or later)
+-  if ! $SHELL -c 'pkg-config --atleast-version=2.8 gtk+-2.0' >/dev/null 
2>/dev/null
+-  then 
+-use_malshow=no
+-  fi
+-  AC_MSG_RESULT($use_malshow)
++  PKG_CHECK_MODULES([GTK], [gtk+-2.0 >= 2.8], [use_malshow=yes], 
[use_malshow=no])
+   if test $use_malshow = no
+   then
+ echo 1>&2 "*** No GTK+, version 2.8 or later, found. Disabling malshow."
+@@ -72,29 +67,15 @@
+ fi
+ if test $use_malshow = yes
+ then
+-  GTK_LIBS=`pkg-config gtk+-2.0 --libs`
+-  GTK_CFLAGS=`pkg-config gtk+-2.0 --cflags`
+   MALSHOW="malshow"
+ else
+-  GTK_LIBS=""
+-  GTK_CFLAGS=""
+   MALSHOW=""
+ fi
+ 
+ dnl Check for GLib, version 2
+-AC_MSG_CHECKING(for GLib)
+-if $SHELL -c 'pkg-config glib-2.0' >/dev/null 2>/dev/null
+-then
+-  have_glib=yes
+-else
+-  have_glib=no
+-fi
+-AC_MSG_RESULT($have_glib)
+-if test $have_glib = yes
++PKG_CHECK_MODULES([GLIB], [glib-2.0], [have_glib=yes], [have_glib=no])
++if test $have_glib != yes
+ then 
+-  GLIB_LIBS=`pkg-config glib-2.0 --libs`
+-  GLIB_CFLAGS=`pkg-config glib-2.0 --cflags`
+-else
+   echo 1>&2 "*** No GLib, version 2.0 or later, found. Please install it."
+   echo 1>&2 "*** You may get GLib from ."
+   exit 1
diff --minimal -Nru malaga-7.12/debian/patches/series 
malaga-7.12/debian/patches/series
--- malaga-7.12/debian/patches/series   2016-04-07 10:00:00.0 +0200
+++ malaga-7.12/debian/patches/series   2017-08-04 13:27:29.0 +0200
@@ -4,3 +4,4 @@
 no-ncurses.diff
 link-libm.diff
 texinfo.diff
+cross.diff
diff --minimal -Nru malaga-7.12/debian/rules malaga-7.12/debian/rules
--- malaga-7.12/debian/rules2016-04-07 10:00:00.0 +0200
+++ malaga-7.12/debian/rules2017-08-04 13:28:11.0 +0200
@@ -1,5 +1,7 @@
 #!/usr/bin/make -f
 
+export INSTALL=install --strip-program=true
+
 %:
dh $@ --with autoreconf
 
@@ -7,13 +9,11 @@
rm -rf build-doc
dh_auto_clean
 
-override_dh_auto_configure:
-   dh_auto_configure
+override_dh_auto_configure-indep:
mkdir -p build-doc
cd build-doc && ../configure --prefix=/usr
 
-override_dh_auto_build:
-   dh_a

urlwatch_1.15-4_source.changes ACCEPTED into unstable

2017-08-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Aug 2017 11:28:20 -0300
Source: urlwatch
Binary: urlwatch
Architecture: source
Version: 1.15-4
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Joao Eriberto Mota Filho 
Description:
 urlwatch   - tool for monitoring webpages for updates
Changes:
 urlwatch (1.15-4) unstable; urgency=medium
 .
   * QA upload.
   * Set Debian QA Group as maintainer. (see #831272)
   * Updated DH level to 10.
   * debian/control:
   - Added dh-python to Build-Depends field.
   - Bumped Standards-Version to 4.0.0.
   - Changed Priority from extra to optional.
   - Updated VCS fields.
   * debian/copyright: full updated.
   * debian/urlwatch.docs: renamed to debian/docs.
   * debian/watch:
   - Bumped version to 4.
   - Using GitHub as source.
Checksums-Sha1:
 edf7b8e914d8976fb79c7c16ecc4c1442ae6db70 1918 urlwatch_1.15-4.dsc
 1333feb67c868edeb514643ce82eeb3a40d16f92 4620 urlwatch_1.15-4.debian.tar.xz
 2ffb84eba4d44d081682993aba27e391db344fb5 4904 urlwatch_1.15-4_source.buildinfo
Checksums-Sha256:
 f89ac9a7f899d6a56a9922c9d1f08512b4c8fe94ec943694eb7731fa98194470 1918 
urlwatch_1.15-4.dsc
 ea07933b0f9d683b1a0a5ee3b6b909a41c50a3c1cae0b961fbddbd982bc45d28 4620 
urlwatch_1.15-4.debian.tar.xz
 b280d1f2b92a6139772b81b1ffb3f805aec63d26aad11ea74b8f9008850a36cc 4904 
urlwatch_1.15-4_source.buildinfo
Files:
 c79275498ed5591d2296b12fff3e6cb6 1918 web optional urlwatch_1.15-4.dsc
 88c8d0a3bd4f3aa98215fc0dd93d5ca4 4620 web optional 
urlwatch_1.15-4.debian.tar.xz
 cf1f17acecb9ec3d5b5d8c3b618f0045 4904 web optional 
urlwatch_1.15-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEENX3LDuyVoBrrofDS3mO5xwTr6e8FAlmDOckACgkQ3mO5xwTr
6e+f4RAAkrFnCb2GnZhfhw2ophTUK319A8AM45Fw7JnIRUE03D5Uj53oVlgwjgLn
Ryl3N6e6aTaCdA/lUjiiRWHzA6rgZq2eULQcN76qBjjMU9m2tpYKGpc6Wb1tVmds
YhOYU/Ak9s6PjmSuMcUp31pSMoGN000EmgLv9UhS6S2WiR8p/WS0dmn2whfz2IuX
19aMzHlvzQrDlOnU4efQstqoRXfoVy7ttJjSvamChxzGZmP4v4xy9J2oXAECZ573
8uaiIRXyXg8eF+GjVT7GwGMFWAMTuh3KYhk1gxDBluuL7MsbqUnXm5nwWk40rCtD
1zijEsmX0DR3OIp9RbXJBjGIlAsBtX2APRVDZ8x6eaA2ao/7C1D/UheInljEySlv
AlGgtSajY9KEr57bmQnzTvqaq6V7PwZzvIO6Cr1YApZ8Uv0Mn8mCJGuxDVDY/NfE
RkHrF9osLRMnBpQnwrpZr8o9cXo/anxHaFQV8VkCghVX/lE29r4WKARR4QuEbNbd
EDehjNmZHMTfzV+3bMQyFdAItM23QuwrrNO2YihvCiUY9bb1sKcelqn1B7P0uSn+
vnRapjSVtXCV5XiB3nssd3Rdk8NttRk1IFZJArcLnT/t0ULobPWytzazfEP7tQfU
mMn8UtflxhPKBvLvoPOeXO7ALgJi3g1/+LUCxYwdnuxTrnIF0zI=
=vYD6
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#855319: marked as done (silan: commits for NMU version 0.3.3-0.1)

2017-08-04 Thread Debian Bug Tracking System
Your message dated Fri, 04 Aug 2017 17:20:53 +
with message-id 
and subject line Bug#855319: fixed in silan 0.3.3-1
has caused the Debian Bug report #855319,
regarding silan: commits for NMU version 0.3.3-0.1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
855319: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=855319
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: silan
Version: 0.3.2-2
Severity: normal
Tags: patch pending bug

Dear Debian maintainers,

I've prepared an NMU for silan (versioned as 0.3.3-0.1) but I did not
find any docs on uploading anything to DELAYED/XX. Please refer to the
included git format-patch patchset.

As you can see from the attached Patchset, upstream has bumped a new
release to combat the segfaults stretchy is exhibiting. You may find
more info at .

I went ahead and also fixed all lintian messages I got on my jessie
build container.

Please feel free to let me know how I should proceed to get this
package bump merged. Accept my apologies if this mail went to the
wrong place or is falsely formatted. I'm new to this process.

Regards,
Lucas


0001-Bump-to-0.3.3-from-upstream.patch
Description: Binary data


0002-debian-watch-Update-from-deprecated-githubredir-serv.patch
Description: Binary data


0003-debian-patches-Removed-due-to-being-in-upstream.patch
Description: Binary data


0004-debian-control-bump-to-Standards-Version-3.9.6.patch
Description: Binary data
--- End Message ---
--- Begin Message ---
Source: silan
Source-Version: 0.3.3-1

We believe that the bug you reported is fixed in the latest version of
silan, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 855...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Kyle Robbertze  (supplier of updated silan package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Aug 2017 10:45:23 -0400
Source: silan
Binary: silan
Architecture: source amd64
Version: 0.3.3-1
Distribution: unstable
Urgency: medium
Maintainer: Kyle Robbertze 
Changed-By: Kyle Robbertze 
Description:
 silan  - commandline tool to detect silence in audio-files
Closes: 815492 855319
Changes:
 silan (0.3.3-1) unstable; urgency=medium
 .
   * New maintainer (Closes: #815492)
   * Bump 0.3.3 (Closes: #855319)
   * debian/watch: Update from deprecated githubredir server.
   * debian/patches: Removed due to being in upstream.
   * debian/control: bump to Standards-Version 4.0.0
   * debian/compat: bump to version 10
   * debian/rules: use hardening flags
Checksums-Sha1:
 bb7e9884694fc15323ef791a8cdb8ff0bbbcfde2 1872 silan_0.3.3-1.dsc
 b394d781c95eae0e335eacc35e096c4dc8e8a68c 23678 silan_0.3.3.orig.tar.gz
 0620485c93d40a4108e25e9c64bfae2e0ae0d76c 3016 silan_0.3.3-1.debian.tar.xz
 513b0807eaec11a0273d4d9efd5b96dbe10dcfbf 44774 silan-dbgsym_0.3.3-1_amd64.deb
 3b3287fdb824069e30bdad1daed15415ca315a70 7714 silan_0.3.3-1_amd64.buildinfo
 a8556265a55c64505b1e635caf8840605b309623 16838 silan_0.3.3-1_amd64.deb
Checksums-Sha256:
 a494768f0c62e39651900d97d2717b93fd7451845072c030d362414cbcd2bc43 1872 
silan_0.3.3-1.dsc
 17ca56ea3553e5721589cae69f7a3aac3d77f88abc4b96ff59c64b1a55790c4d 23678 
silan_0.3.3.orig.tar.gz
 654ac6ea750d9cfd0efcea8e52992f320f22e0bb63620857f369681f536a9dc6 3016 
silan_0.3.3-1.debian.tar.xz
 b5da235bee469f29d6092524030866d5f463bc7ff208f772fda9a55f6f940a96 44774 
silan-dbgsym_0.3.3-1_amd64.deb
 9e707cb2aea476ca9f02558b07a923e3636f59b784d497ff04666c0c9c021fb1 7714 
silan_0.3.3-1_amd64.buildinfo
 9b2b2668e05e8b30afc7a43c1448a3692f29cb8dc9d2315e4bdb3e1120338d03 16838 
silan_0.3.3-1_amd64.deb
Files:
 4d7d9a2a59183e0bb7115ea911c80913 1872 sound optional silan_0.3.3-1.dsc
 d272724e2efe53823f53a4f79abe9f3f 23678 sound optional silan_0.3.3.orig.tar.gz
 0d96085b6a7df1ab9f1a53d628574c60 3016 sound optional 
silan_0.3.3-1.debian.tar.xz
 283f5a2f1ddeaf90dd3117500bac020d 44774 debug extra 
silan-dbgsym_0.3.3-1_amd64.deb
 83e83263b98ef2e719cd820103f48865 7714 sound optional 
silan_0.3.3-1_amd64.buildinfo
 de7df5e44d78f55995b5971d1cbf1c1f 16838 sound optional silan_0.3.3-1_amd64.deb

-BEGIN PGP SIGNA

Processed: GCC 7 now the default in unstable: bumping the priority of the ftbfs issues

2017-08-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 853490 serious
Bug #853490 [src:libdomain-publicsuffix-perl] libdomain-publicsuffix-perl: 
ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853297 serious
Bug #853297 [src:abinit] abinit: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853298 serious
Bug #853298 [src:accelio] accelio: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853299 serious
Bug #853299 [src:ace] ace: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853300 serious
Bug #853300 [src:aff4] aff4: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853301 serious
Bug #853301 [src:afflib] afflib: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853302 serious
Bug #853302 [src:afnix] afnix: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853303 serious
Bug #853303 [src:agg] agg: ftbfs with GCC-7
Bug #853720 [src:agg] agg: ftbfs of exactimage with GCC-7
Severity set to 'serious' from 'important'
Severity set to 'serious' from 'important'
> severity 853304 serious
Bug #853304 [src:alljoyn-core-1504] alljoyn-core-1504: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853305 serious
Bug #853305 [src:alljoyn-core-1509] alljoyn-core-1509: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853306 serious
Bug #853306 [src:alljoyn-core-1604] alljoyn-core-1604: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853307 serious
Bug #853307 [src:alljoyn-services-1504] alljoyn-services-1504: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853308 serious
Bug #853308 [src:alljoyn-services-1604] alljoyn-services-1604: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853309 serious
Bug #853309 [src:altermime] altermime: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853310 serious
Bug #853310 [src:android-platform-build] android-platform-build: ftbfs with 
GCC-7
Severity set to 'serious' from 'important'
> severity 853311 serious
Bug #853311 [src:android-platform-frameworks-base] 
android-platform-frameworks-base: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853312 serious
Bug #853312 [src:android-platform-system-core] android-platform-system-core: 
ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853313 serious
Bug #853313 [src:anjuta] anjuta: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853314 serious
Bug #853314 [src:ants] ants: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853316 serious
Bug #853316 [src:aptitude] aptitude: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853317 serious
Bug #853317 [src:apvlv] apvlv: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853318 serious
Bug #853318 [src:arc-gui-clients] arc-gui-clients: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853320 serious
Bug #853320 [src:aspell] aspell: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853321 serious
Bug #853321 [src:astyle] astyle: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853322 serious
Bug #853322 [src:atanks] atanks: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853323 serious
Bug #853323 [src:atlas-cpp] atlas-cpp: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853324 serious
Bug #853324 [src:bagel] bagel: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853325 serious
Bug #853325 [src:berusky2] berusky2: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853326 serious
Bug #853326 [src:bind-dyndb-ldap] bind-dyndb-ldap: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853327 serious
Bug #853327 [src:binutils-arm-none-eabi] binutils-arm-none-eabi: ftbfs with 
GCC-7
Severity set to 'serious' from 'important'
> severity 853328 serious
Bug #853328 [src:binutils-avr] binutils-avr: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853329 serious
Bug #853329 [src:binutils-msp430] binutils-msp430: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853331 serious
Bug #853331 [src:bitz-server] bitz-server: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853332 serious
Bug #853332 [src:bladerf] bladerf: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 85 serious
Bug #85 [src:blitz++] blitz++: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853334 serious
Bug #853334 [src:blktap] blktap: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853336 serious
Bug #853336 [src:bomberclone] bomberclone: ftbfs with GCC-7
Severity set to 'serious' from 'important'
> severity 853337 serious

Bug#870775: boxbackup: Please migrate to openssl1.1 in Buster

2017-08-04 Thread Sebastian Andrzej Siewior
Package: boxbackup
Version: 0.12~gitcf52058f-3
Severity: important
Tags: sid buster
User: pkg-openssl-de...@lists.alioth.debian.org
Usertags: openssl-1.1-trans

Please migrate to libssl-dev in the Buster cycle.

Sebastian



Bug#870779: pev: Please migrate to openssl1.1 in Buster

2017-08-04 Thread Sebastian Andrzej Siewior
Package: pev
Version: 0.80-3
Severity: important
Tags: sid buster
User: pkg-openssl-de...@lists.alioth.debian.org
Usertags: openssl-1.1-trans

Please migrate to libssl-dev in the Buster cycle.

Sebastian



Bug#868537: marked as done (File conflict between abiword-dbgsym and abiword-plugin-grammar-dbgsym)

2017-08-04 Thread Debian Bug Tracking System
Your message dated Sat, 05 Aug 2017 01:00:11 +
with message-id 
and subject line Bug#868537: fixed in abiword 3.0.2-3
has caused the Debian Bug report #868537,
regarding File conflict between abiword-dbgsym and abiword-plugin-grammar-dbgsym
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
868537: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=868537
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: abiword
Version: 3.0.2-2
Severity: serious
Control: affects -1 abiword-dbgsym abiword-plugin-grammar-dbgsym

# apt-get install abiword-dbgsym abiword-plugin-grammar-dbgsym
...
dpkg: error processing archive 
/var/cache/apt/archives/abiword-plugin-grammar-dbgsym_3.0.2-2_amd64.deb 
(--unpack):
 trying to overwrite 
'/usr/lib/debug/.build-id/30/e90eef3ab895a8c526b88940ee8d1f6ff47710.debug', 
which is also in package abiword-dbgsym 3.0.2-2


The problem is the following in debian/rules:

override_dh_makeshlibs:
$(RM) -v 
debian/abiword/usr/lib/$(DEB_HOST_MULTIARCH)/abiword-*/plugins/grammar.*
dh_makeshlibs -V


When grammar.so is removed from the abiword package,
dh_strip already ran and added its debug information
to abiword-dbgsym.
--- End Message ---
--- Begin Message ---
Source: abiword
Source-Version: 3.0.2-3

We believe that the bug you reported is fixed in the latest version of
abiword, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 868...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Simon Quigley  (supplier of updated abiword package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 30 Jul 2017 14:58:05 -0500
Source: abiword
Binary: abiword-common abiword abiword-plugin-grammar libabiword-3.0 
libabiword-dev gir1.2-abi-3.0
Architecture: source all amd64
Version: 3.0.2-3
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Simon Quigley 
Description:
 abiword- efficient, featureful word processor with collaboration
 abiword-common - efficient, featureful word processor with collaboration -- 
common
 abiword-plugin-grammar - grammar checking plugin for AbiWord
 gir1.2-abi-3.0 - GObject introspection data for libabiword
 libabiword-3.0 - efficient, featureful word processor with collaboration -- 
shared
 libabiword-dev - efficient, featureful word processor with collaboration -- 
develo
Closes: 868537
Changes:
 abiword (3.0.2-3) unstable; urgency=medium
 .
   [ Simon Quigley ]
   * QA upload.
   * Run wrap-and-sort to clean up the package a bit.
   * Bump Standards-version to 4.0.0, no changes needed.
   * Modify debian/rules to use instead of dpkg-parsechangelog.
   * Add Multi-Arch: same for abiword-plugin-grammar.
   * Solve binary file conflict between abiword-dbgsym
 and abiword-plugin-grammar-dbgsym (Closes: #868537).
 .
   [ Jeremy Bicha ]
   * Rename gir1.2-abiword-1.0 to gir1.2-abi-1.0 to fix Lintian warning.
   * Have libabiword-3.0-dev depend on gir package.
 .
   [ Mattia Rizzolo ]
   * Rename libabiword-3.0-dev to libabiword-dev, to better comply to
 Debian Policy § 8.4.
Checksums-Sha1:
 5941d217784c4faa65099af940fc2f1be5055910 2953 abiword_3.0.2-3.dsc
 ddc4f89e9e572a10f1f4cfac33181ea0bb38183c 47424 abiword_3.0.2-3.debian.tar.xz
 b2a9af1e08b8d532423f372e6107c61751ce8f2e 1689422 abiword-common_3.0.2-3_all.deb
 d5785d21d6b4f8bf5b94409f20c67d759498faac 13695270 
abiword-dbgsym_3.0.2-3_amd64.deb
 f269171ad7775cec3d6bd9697f7cef355745faa3 86374 
abiword-plugin-grammar-dbgsym_3.0.2-3_amd64.deb
 7e9c4e42c604cb26a90a128faea4d410ab864508 48126 
abiword-plugin-grammar_3.0.2-3_amd64.deb
 bbe8ce0fd755ae2af265fb726836b3c679fe7faf 21643 abiword_3.0.2-3_amd64.buildinfo
 bfed53482ace8b8949ecc7da412cd400ce341349 1317282 abiword_3.0.2-3_amd64.deb
 68094c7f8df8b361c95d7edbaf0f8195e806abef 44860 gir1.2-abi-3.0_3.0.2-3_amd64.deb
 32ce43c681f67dde4dd205185b918e59cb1a5ad7 16702534 
libabiword-3.0-dbgsym_3.0.2-3_amd64.deb
 cf0cb10d9bc6b8686da76adabfd7b58556fb157e 2073352 
libabiword-3.0_3.0.2-3_amd64.deb
 b9d39a070c625649b8b2442995c2b49e042393d2 51390 libabiword-dev_3.0.2-3_amd64.deb
Checksums-Sha256:
 05d1679119c327716925bdbb3f3b520e8347ab3db9

abiword_3.0.2-3_amd64.changes ACCEPTED into unstable, unstable

2017-08-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 30 Jul 2017 14:58:05 -0500
Source: abiword
Binary: abiword-common abiword abiword-plugin-grammar libabiword-3.0 
libabiword-dev gir1.2-abi-3.0
Architecture: source all amd64
Version: 3.0.2-3
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Simon Quigley 
Description:
 abiword- efficient, featureful word processor with collaboration
 abiword-common - efficient, featureful word processor with collaboration -- 
common
 abiword-plugin-grammar - grammar checking plugin for AbiWord
 gir1.2-abi-3.0 - GObject introspection data for libabiword
 libabiword-3.0 - efficient, featureful word processor with collaboration -- 
shared
 libabiword-dev - efficient, featureful word processor with collaboration -- 
develo
Closes: 868537
Changes:
 abiword (3.0.2-3) unstable; urgency=medium
 .
   [ Simon Quigley ]
   * QA upload.
   * Run wrap-and-sort to clean up the package a bit.
   * Bump Standards-version to 4.0.0, no changes needed.
   * Modify debian/rules to use instead of dpkg-parsechangelog.
   * Add Multi-Arch: same for abiword-plugin-grammar.
   * Solve binary file conflict between abiword-dbgsym
 and abiword-plugin-grammar-dbgsym (Closes: #868537).
 .
   [ Jeremy Bicha ]
   * Rename gir1.2-abiword-1.0 to gir1.2-abi-1.0 to fix Lintian warning.
   * Have libabiword-3.0-dev depend on gir package.
 .
   [ Mattia Rizzolo ]
   * Rename libabiword-3.0-dev to libabiword-dev, to better comply to
 Debian Policy § 8.4.
Checksums-Sha1:
 5941d217784c4faa65099af940fc2f1be5055910 2953 abiword_3.0.2-3.dsc
 ddc4f89e9e572a10f1f4cfac33181ea0bb38183c 47424 abiword_3.0.2-3.debian.tar.xz
 b2a9af1e08b8d532423f372e6107c61751ce8f2e 1689422 abiword-common_3.0.2-3_all.deb
 d5785d21d6b4f8bf5b94409f20c67d759498faac 13695270 
abiword-dbgsym_3.0.2-3_amd64.deb
 f269171ad7775cec3d6bd9697f7cef355745faa3 86374 
abiword-plugin-grammar-dbgsym_3.0.2-3_amd64.deb
 7e9c4e42c604cb26a90a128faea4d410ab864508 48126 
abiword-plugin-grammar_3.0.2-3_amd64.deb
 bbe8ce0fd755ae2af265fb726836b3c679fe7faf 21643 abiword_3.0.2-3_amd64.buildinfo
 bfed53482ace8b8949ecc7da412cd400ce341349 1317282 abiword_3.0.2-3_amd64.deb
 68094c7f8df8b361c95d7edbaf0f8195e806abef 44860 gir1.2-abi-3.0_3.0.2-3_amd64.deb
 32ce43c681f67dde4dd205185b918e59cb1a5ad7 16702534 
libabiword-3.0-dbgsym_3.0.2-3_amd64.deb
 cf0cb10d9bc6b8686da76adabfd7b58556fb157e 2073352 
libabiword-3.0_3.0.2-3_amd64.deb
 b9d39a070c625649b8b2442995c2b49e042393d2 51390 libabiword-dev_3.0.2-3_amd64.deb
Checksums-Sha256:
 05d1679119c327716925bdbb3f3b520e8347ab3db9c0e9321012d5bf2c886e57 2953 
abiword_3.0.2-3.dsc
 2acae60caa40a85892ad64361c447610724cd2b22e0511420aa8f935aba81001 47424 
abiword_3.0.2-3.debian.tar.xz
 3be014badad95e0667999df99a309d02b2680845c1183451ef94aeebc7452c44 1689422 
abiword-common_3.0.2-3_all.deb
 a9cdd01606acf23a6ea8b9443f2c291e2a217bbc12a8ed7fe3f804e8e11d9a86 13695270 
abiword-dbgsym_3.0.2-3_amd64.deb
 b81aaab7dc39e8e71c71f4ca9ad98959286ea46de941c422033c78ec9c15b05a 86374 
abiword-plugin-grammar-dbgsym_3.0.2-3_amd64.deb
 d095872d58d12e8480a1dbc0568d60bc971f69f09fc92a0520ff3e72788d572f 48126 
abiword-plugin-grammar_3.0.2-3_amd64.deb
 5120c3b20666ea5d41b08df494b79cc67e2eadcacc6bf2efac0e741e70e890e9 21643 
abiword_3.0.2-3_amd64.buildinfo
 9daffa5074d9b15fe875f512f9b61a78a54568b03a438328a857b37b12870d64 1317282 
abiword_3.0.2-3_amd64.deb
 0e4e981c30abe86d7270671c101ce7f0454021706e64f13481cd2b6611e691ae 44860 
gir1.2-abi-3.0_3.0.2-3_amd64.deb
 fa739296158dae5721c86941948426886b15599bfcd770777a90d5d40c686d52 16702534 
libabiword-3.0-dbgsym_3.0.2-3_amd64.deb
 9a8a4e6f493c995874b158b47402dfcfedab671d4902b80cf2cf0fd89155f9d9 2073352 
libabiword-3.0_3.0.2-3_amd64.deb
 99fd0f5679d4816a862c1dd927e0614fdab3549240a0ef27ab99af76488ffb73 51390 
libabiword-dev_3.0.2-3_amd64.deb
Files:
 57337e9072df5945a18cfed5de0c8739 2953 gnome optional abiword_3.0.2-3.dsc
 4a3be1fff9f9032183827a37f218281e 47424 gnome optional 
abiword_3.0.2-3.debian.tar.xz
 6c56d876122ec40cb23726930c17e0fb 1689422 editors optional 
abiword-common_3.0.2-3_all.deb
 4a44f7e34f54ef8e144a8940b7f47d51 13695270 debug extra 
abiword-dbgsym_3.0.2-3_amd64.deb
 af448045075c79ea4d52e2f088cf9717 86374 debug extra 
abiword-plugin-grammar-dbgsym_3.0.2-3_amd64.deb
 c5a63087340ab9e9300db234d1e0909d 48126 editors optional 
abiword-plugin-grammar_3.0.2-3_amd64.deb
 64f18b93a1496c5a4345b50d045acf1c 21643 gnome optional 
abiword_3.0.2-3_amd64.buildinfo
 d45af14af209cbc670017d3eb7b52100 1317282 editors optional 
abiword_3.0.2-3_amd64.deb
 ead84de17070b1a4e1d4d5c913fd8360 44860 introspection optional 
gir1.2-abi-3.0_3.0.2-3_amd64.deb
 bc1bc69679067786ddfd5df91d6cfaa1 16702534 debug extra 
libabiword-3.0-dbgsym_3.0.2-3_amd64.deb
 01ce70cd670ccdd077d3711e573cefc2 2073352 libs optional 
libabiword-3.0_3.0.2-3_amd64.deb
 37813c728402f439a1de249c43138eb1 51390 libdevel optional 
libabiword-dev_3.0.2-3_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEB

tinymce_3.4.8+dfsg0-2_source.changes ACCEPTED into unstable

2017-08-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Aug 2017 20:31:13 -0300
Source: tinymce
Binary: tinymce
Architecture: source
Version: 3.4.8+dfsg0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Joao Eriberto Mota Filho 
Description:
 tinymce- platform independent web based Javascript/HTML WYSIWYG editor
Changes:
 tinymce (3.4.8+dfsg0-2) unstable; urgency=medium
 .
   * QA upload.
   * Set Debian QA Group as maintainer. (see #863695)
   * Migrations:
   - debian/rules to reduced format.
   - DebSrc to 3.0 format.
   - DH level to 10.
   * debian/control:
   - Added a Homepage field.
   - Bumped Standards-Version to 4.0.0.
   - Removed the unused variable ${shlibs:Depends}.
   * debian/install: created to install some files and help the
 new debian/rules file.
   * debian/rules.OLD: kept to be a reference for a future new
 maintainer.
   * debian/tinymce.README.Debian:
   - Fixed a typo.
   - Renamed to debian/README.Debian.
   * debian/watch: created.
Checksums-Sha1:
 7486b043680e477c8889f54f46d7ce283114ddc0 1735 tinymce_3.4.8+dfsg0-2.dsc
 f2446e647464f7c0f49fc79b5379cb3b45e1b959 4536 
tinymce_3.4.8+dfsg0-2.debian.tar.xz
 fd1d6ec48bf2f770e5e060b6252a648a860d97c8 5096 
tinymce_3.4.8+dfsg0-2_source.buildinfo
Checksums-Sha256:
 540280a0a560240f43b100d2d69a0b31f894c60b89ed1d8ea6a1d5d229e1d432 1735 
tinymce_3.4.8+dfsg0-2.dsc
 116efa63a83e714367fe93b66c493709d589c1b583a2533ac544962d5d7d7323 4536 
tinymce_3.4.8+dfsg0-2.debian.tar.xz
 ff1ba4b6ec3e28a4e6b22fc7fc3f97fc7d0f1acb40263e5736dfb9fd476ca5de 5096 
tinymce_3.4.8+dfsg0-2_source.buildinfo
Files:
 c3f0e1109bc836ed5ceb0152e158383c 1735 web optional tinymce_3.4.8+dfsg0-2.dsc
 44256d79b60f8d3f58641131f1ddbedf 4536 web optional 
tinymce_3.4.8+dfsg0-2.debian.tar.xz
 8cb77ee6a8c4a2260a2a98477427370b 5096 web optional 
tinymce_3.4.8+dfsg0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEENX3LDuyVoBrrofDS3mO5xwTr6e8FAlmDxAsACgkQ3mO5xwTr
6e9tmQ/+N32cGgSuEgberq1/eymyBP8NJ2DSChb5d1IQjRYTN2rLdJAEC4uvDR/z
MmZt//HFNmw57tQ/Mv8kcnYxxeK7CckyplRDPUsVMCatr65kGwNpXHAvZiHPVbv7
JhtLQDBMB6eM2ItN67j7pSyjdlvcH5rTqKRBPE2Vn9KUqPlMpvVSgMc2PCzOUKlt
1dfuwEpd8iStAmmXza28MAee7rwAX7BqPYLpIbASpXu2fwVvTjMhFKFj/GtzmvB+
36vB0HkeDY/trubm8HBUCv5khd9DKNCWED3D+Al1aJ8ZIVF4IJJAEpwykQmd6aiC
kkvMlpRUKz6F5KgI10IViQ1886WfNo0iJ7GLk8RWFpR3UdCX2SNJ+4ELT4HfAn63
e2QMugIBk1uLs50jNQLh9FWMH5waWrQL33nhEYbifyHCMu+D7F1wojZpvieN0sN5
jTc6oI+Zm3Rqgw71qU0A9/hz48mZqey+nb6VCRyFYOTDzF+ZaqiZsj/x8NXOwyH5
8ahmmRM64voHQlBEyXseYrBPdp58AJccUP9Iih01T6HQOLd2P6jInPVa5DpNpltq
rggBGOLU6VvXDz5fRXzXeGA04stVaU12+UthlzCylrimGIeHTBYWfc7G0pKTJuMj
5+Y/7115oYnw7jmyZ945WpAug91JTI4az4us+8QnmFZZgpu9GzQ=
=Dnfw
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



apvlv is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
apvlv 0.1.5+dfsg-2 is marked for autoremoval from testing on 2017-08-20

It is affected by these RC bugs:
853317: apvlv: ftbfs with GCC-7



altermime is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
altermime 0.3.10-8 is marked for autoremoval from testing on 2017-08-20

It is affected by these RC bugs:
853309: altermime: ftbfs with GCC-7



cadabra is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
cadabra 1.46-3 is marked for autoremoval from testing on 2017-08-20

It is affected by these RC bugs:
853340: cadabra: ftbfs with GCC-7



ifhp is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
ifhp 3.5.20-14 is marked for autoremoval from testing on 2017-08-20

It is affected by these RC bugs:
853450: ifhp: ftbfs with GCC-7



github-backup is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
github-backup 1.20170301-1 is marked for autoremoval from testing on 2017-08-20

It (build-)depends on packages with these RC bugs:
865399: libghc-cabal-dev: libghc-cabal-dev and ghc: error when trying to 
install together



turnserver is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
turnserver 0.7.3-5 is marked for autoremoval from testing on 2017-08-20

It is affected by these RC bugs:
853689: turnserver: ftbfs with GCC-7



ripole is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
ripole 0.2.0+20081101.0215-3 is marked for autoremoval from testing on 
2017-08-20

It is affected by these RC bugs:
853644: ripole: ftbfs with GCC-7



autopsy is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
autopsy 2.24-3 is marked for autoremoval from testing on 2017-09-04

It (build-)depends on packages with these RC bugs:
853663: sleuthkit: ftbfs with GCC-7



dhelp is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
dhelp 0.6.24 is marked for autoremoval from testing on 2017-09-04

It (build-)depends on packages with these RC bugs:
853673: swish++: swish++: ftbfs with GCC-7



swish++ is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
swish++ 6.1.5-4 is marked for autoremoval from testing on 2017-09-04

It is affected by these RC bugs:
853673: swish++: swish++: ftbfs with GCC-7



mpdtoys is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
mpdtoys 0.25 is marked for autoremoval from testing on 2017-09-04

It (build-)depends on packages with these RC bugs:
853561: mpd: ftbfs with GCC-7



lxctl is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
lxctl 0.3.1+debian-3 is marked for autoremoval from testing on 2017-09-04

It (build-)depends on packages with these RC bugs:
853531: lxc: ftbfs with GCC-7



latex-mk is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
latex-mk 2.1-2 is marked for autoremoval from testing on 2017-09-04

It (build-)depends on packages with these RC bugs:
853361: csh: ftbfs with GCC-7



kcollectd is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
kcollectd 0.9-4 is marked for autoremoval from testing on 2017-09-04

It (build-)depends on packages with these RC bugs:
853515: libwebsockets: ftbfs with GCC-7
853579: nut: ftbfs with GCC-7
853695: varnish: ftbfs with GCC-7



gtkpod is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
gtkpod 2.1.5-6 is marked for autoremoval from testing on 2017-09-04

It (build-)depends on packages with these RC bugs:
853313: anjuta: ftbfs with GCC-7



libapache-mod-musicindex is marked for autoremoval from testing

2017-08-04 Thread Debian testing autoremoval watch
libapache-mod-musicindex 1.4.1-2 is marked for autoremoval from testing on 
2017-09-04

It (build-)depends on packages with these RC bugs:
853560: mp4v2: ftbfs with GCC-7