Bug#465150: marked as done (libmimedir: outdated libtool support breaks crossbuild)

2015-06-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Jun 2015 07:27:26 +
with message-id 
and subject line Bug#789203: Removed package(s) from unstable
has caused the Debian Bug report #465150,
regarding libmimedir: outdated libtool support breaks crossbuild
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.)


-- 
465150: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=465150
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libmimedir
Version: 0.4-4
Severity: normal
Tags: patch
User: codeh...@debian.org
Usertags: crossbuilt


In line with the other cross-building support bugs:
http://lists.debian.org/debian-devel/2007/11/msg00116.html

These patches are necessary to allow libmimedir to cross-build in Debian.

The effect is to replace AC_PROG_RANLIB with AC_PROG_LIBTOOL in
configure.in and ensure that --tag=CC is called as part of the libtool
support. These changes are made to upstream files so I've implemented
the patches using dpatch. Feel free to use whatever method you choose -
as long as configure.in uses AC_PROG_LIBTOOL and Makefile.in uses
./libtool --tag=CC --mode= when cross compiling (the current
./libtool script gets confused when --mode is arm-linux-gnu-gcc instead
of the native gcc).

Other changes in debian/rules and debian/control flow from the upstream
changes - using libtoolize to update libtool (supported by the change to
configure.in) and autoconf to transfer the changes in configure.in into
./configure itself. (aclocal required by libtoolize).

Finally, debian/rules is also updated to support --build and --host
following the recommendations in the autotools-dev README.

FYI the original failure is that libmimedir uses gcc even when cross
compiling so that the built package contains binaries for the wrong
architecture. Fixing that results in the original ./libtool failing due
to the lack of the --tag=CC option. Fixing that reveals an error in
./libtool itself that tries to link the cross-built binaries using the
native ld because the outdated libtool script is not updated in response
to the --build and --host options given to ./configure. Fixing that
means generating libtool in ./configure which is where 'libtoolize
--force --copy' comes in. (--copy is used because the ltmain.sh script
from upstream needs to be updated too and the default action of
replacing it with a symlink causes dpkg to complain). Finally, in order
to get libtoolize support into ./configure, configure.in needs the patch
and autoconf needs to transfer the modified configure.in macros into
./configure.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-2-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
--- libmimedir-0.4.debian/debian/control 
+++ libmimedir-0.4.emdebian/debian/control 
@@ -2,7 +2,8 @@
 Section: libs
 Priority: optional
 Maintainer: Volker Christian 
-Build-Depends: debhelper (>> 4.0.0), bison, flex
+Build-Depends: debhelper (>> 4.0.0), bison, flex, dpatch
+ libtool, autoconf
 Standards-Version: 3.6.2
 
 Package: libmimedir0
--- libmimedir-0.4.debian/debian/rules 
+++ libmimedir-0.4.emdebian/debian/rules 
@@ -5,12 +5,18 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
+include /usr/share/dpatch/dpatch.make
 
 # These are used for cross-compiling and for saving the configure script
 # from having to guess our platform (since we know it already)
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
-
+ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
+CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) 
+CROSS_CC=CC=$(DEB_HOST_GNU_TYPE)-gcc
+else
+CROSS= --build $(DEB_BUILD_GNU_TYPE)
+endif
 
 CFLAGS = -Wall -g
 
@@ -24,24 +30,26 @@
 config.status: configure
 	dh_testdir
 	# Add here commands to configure the package.
-	chmod 755 ./libtool
+	libtoolize --force --copy
+	aclocal
+	autoconf
 	chmod 755 ./install-sh
-	./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+	./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
 
 build: build-stamp
-build-stamp:  config.status
+build-stamp: patch-stamp  config.status
 	dh_testdir
 
 	# Add here commands to compile the package.
-	$(MAKE)
+	$(MAKE) $(CROSS_CC)
 
 	touch build-stamp
 
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp 
+	rm -f build-stamp confi

Bug#737338: marked as done (libmimedir: use dh-autoreconf to fix FTBFS on ppc64el)

2015-06-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Jun 2015 07:27:26 +
with message-id 
and subject line Bug#789203: Removed package(s) from unstable
has caused the Debian Bug report #737338,
regarding libmimedir: use dh-autoreconf to fix FTBFS on ppc64el
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.)


-- 
737338: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737338
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libmimedir
Version: 0.5.1-4
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu trusty ubuntu-patch

Dear Maintainer,

For the ppc64el architecture in Ubuntu, since this package uses libtool, a full
autoreconf is necessary instead of just config.{sub,guess} updates with
autotools-dev. This is because we need new libtool macros for ppc64el.

In Ubuntu, the attached patch was applied to achieve the following:

  * Use dh-autoreconf to fix FTBFS on ppc64el.
  * Update Makefile.in patch to use system libtool, and build-depend on libtool
accordingly.
  * Use autotools-dev dh helper instead of copying files manually.

Thanks for considering the patch.

Logan Rosen


-- System Information:
Debian Release: jessie/sid
  APT prefers trusty-updates
  APT policy: (500, 'trusty-updates'), (500, 'trusty-security'), (500,
'trusty'), (100, 'trusty-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.13.0-6-generic (SMP w/1 CPU core)
diff -Nru libmimedir-0.5.1/debian/control libmimedir-0.5.1/debian/control
--- libmimedir-0.5.1/debian/control	2011-08-23 17:52:10.0 -0400
+++ libmimedir-0.5.1/debian/control	2014-02-01 15:27:05.0 -0500
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Debian QA Group 
-Build-Depends: debhelper (>> 8.0.0), autotools-dev, bison, flex
+Build-Depends: debhelper (>> 8.0.0), autotools-dev, dh-autoreconf, bison, flex, libtool
 Standards-Version: 3.9.2
 Homepage: http://sourceforge.net/projects/libmimedir
 
diff -Nru libmimedir-0.5.1/debian/patches/01_makefile_in.diff libmimedir-0.5.1/debian/patches/01_makefile_in.diff
--- libmimedir-0.5.1/debian/patches/01_makefile_in.diff	2011-08-23 17:31:13.0 -0400
+++ libmimedir-0.5.1/debian/patches/01_makefile_in.diff	2014-01-29 17:00:51.0 -0500
@@ -1,8 +1,15 @@
 Add DESDIR support to Makefile.in
-Index: libmimedir-0.5.1/Makefile.in
-===
 libmimedir-0.5.1.orig/Makefile.in	2009-02-03 21:29:05.0 -0500
-+++ libmimedir-0.5.1/Makefile.in	2009-02-03 21:31:01.0 -0500
+--- a/Makefile.in
 b/Makefile.in
+@@ -14,7 +14,7 @@
+ LEX= @LEX@
+ INSTALL= @INSTALL@
+ RANLIB= @RANLIB@
+-LIBTOOL= @LIBTOOL@
++LIBTOOL= libtool
+ LIBS= -L. libmimedir.la
+ 
+ OBJS= dirlex.o dirsynt.o parse.o get.o dup.o free.o memmem.o add.o count.o del.o
 @@ -55,9 +55,11 @@
  	./test
  
diff -Nru libmimedir-0.5.1/debian/rules libmimedir-0.5.1/debian/rules
--- libmimedir-0.5.1/debian/rules	2011-08-23 17:52:53.0 -0400
+++ libmimedir-0.5.1/debian/rules	2014-01-29 17:12:55.0 -0500
@@ -22,13 +22,9 @@
 
 config.status: configure
 	dh_testdir
+	dh_autoreconf
+	dh_autotools-dev_updateconfig
 	# Add here commands to configure the package.
-ifneq "$(wildcard /usr/share/misc/config.sub)" ""
-	cp -f /usr/share/misc/config.sub config.sub
-endif
-ifneq "$(wildcard /usr/share/misc/config.guess)" ""
-	cp -f /usr/share/misc/config.guess config.guess
-endif
 	./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
 
@@ -50,8 +46,10 @@
 	#Stupid upstream included Makefile!
 	[ ! -f config.h ] || [ ! -f Makefile ] || $(MAKE) distclean
 
-	rm -f config.sub config.guess Makefile
+	rm -f Makefile
 
+	dh_autotools-dev_restoreconfig
+	dh_autoreconf_clean
 	dh_clean
 
 install: build
--- End Message ---
--- Begin Message ---
Version: 0.5.1-4+rm

Dear submitter,

as the package libmimedir has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/789203

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)--- End Message ---


Bug#789197: marked as done (libmimedir: CVE-2015-3205)

2015-06-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Jun 2015 07:27:26 +
with message-id 
and subject line Bug#789203: Removed package(s) from unstable
has caused the Debian Bug report #789197,
regarding libmimedir: CVE-2015-3205
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.)


-- 
789197: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789197
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libmimedir
Version: 0.5.1-1
Severity: grave
Tags: security upstream

Hi,

the following vulnerability was published for libmimedir.

CVE-2015-3205[0]:
| libmimedir allows remote attackers to execute arbitrary code via a VCF
| file with two NULL bytes at the end of the file, related to "free"
| function calls in the "lexer's memory clean-up procedure."

The issue can be reproduced by creating a specially crafted file with
the PoC in [1]. The original bugreport at Red Hat Bugzilla[2] at the
time of writing is not yet open.

If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2015-3205
[1] https://www.exploit-db.com/exploits/37249/
[2] https://bugzilla.redhat.com/show_bug.cgi?id=151

Regards,
Salvatore
--- End Message ---
--- Begin Message ---
Version: 0.5.1-4+rm

Dear submitter,

as the package libmimedir has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/789203

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)--- End Message ---


Bug#789203: Removed package(s) from unstable

2015-06-23 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

libmimedir |0.5.1-4 | source
libmimedir-dev |0.5.1-4 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, 
kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x, sparc
libmimedir-dev | 0.5.1-4+b1 | hurd-i386
libmimedir0 |0.5.1-4 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, 
kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x, sparc
libmimedir0 | 0.5.1-4+b1 | hurd-i386

--- Reason ---
RoQA; orphaned, dead upstream, no revdeps
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 789...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/789203

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1z7ic4-0002iv...@franck.debian.org



Bug#789203: Removed package(s) from unstable

2015-06-23 Thread Debian FTP Masters
Version: 0.5.1-4+rm

Dear submitter,

as the package libmimedir has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/789203

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1z7ica-0002jk...@franck.debian.org



Bug#387400: marked as done (librra0-tools: rra-appointment-from-vevent segfaults on supposedly valid VEVENT)

2015-06-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Jun 2015 07:27:26 +
with message-id 
and subject line Bug#789203: Removed package(s) from unstable
has caused the Debian Bug report #387400,
regarding librra0-tools: rra-appointment-from-vevent segfaults on supposedly 
valid VEVENT
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.)


-- 
387400: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=387400
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: librra0-tools
Version: 0.9.1-1
Severity: normal


The attached VEVENT file causes rra-appointment-from-vevent to segfault. This 
VEVENT file was obtained 
using the synchronization command of the raki program, which comes with the 
synce-kde package. I think 
that raki uses librra0 internally. My handheld is a Compaq Aero 1520 
palm-size-pc running windows ce 2.11.

Kind regards,

Wouter Koolen-Wijkstra



-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17wouter-4
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages librra0-tools depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libmimedir0 [libmimedir] 0.4-4   A library to parse RFC 2425 Direct
ii  librapi2 0.9.1-2 Make RAPI calls to a WinCE device,
ii  librra0  0.9.1-1 Library to deal with synchronisati
ii  libsynce00.9.1-2 A helper library for synce, a tool

librra0-tools recommends no packages.

-- no debconf information
BEGIN:VEVENT
DTSTAMP:20060914T054742Z
ORGANIZER:MAILTO:
CREATED:20060911T084228Z
UID:RRA-ID-00030c90
SEQUENCE:0
LAST-MODIFIED:20060911T084228Z
SUMMARY:First 5 exercises
CLASS:PUBLIC
PRIORITY:5
DTSTART:20060915T13Z
DTEND:20060915T16Z
TRANSP:OPAQUE
BEGIN:VALARM
DESCRIPTION:
ACTION:DISPLAY
TRIGGER;VALUE=DURATION:-PT15M
END:VALARM

END:VEVENT
--- End Message ---
--- Begin Message ---
Version: 0.5.1-4+rm

Dear submitter,

as the package libmimedir has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/789203

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)--- End Message ---


Bug#788970: marked as done (abiword: please adapt for libwps 0.4)

2015-06-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Jun 2015 11:00:19 +
with message-id 
and subject line Bug#788970: fixed in abiword 3.0.1-3
has caused the Debian Bug report #788970,
regarding abiword: please adapt for libwps 0.4
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.)


-- 
788970: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788970
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: abiword
Version: 1:3.0.0-8
Severity: wishlist
Tags: patch

See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786713.

libwps 0.4 was released in May and we should transition to that, especially
because LibreOffice 5.0 strictly needs >= 0.4 and won't work/build with
earlier ones.

As I mentioned in the first message to the above bug - thankfully the diff is
trivial, as demonstrated by the "official" patch I mentioned in 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786713.#15
which is
http://pkgs.fedoraproject.org/cgit/abiword.git/commit/?id=1482cf1f893b6378f6c868a1f12b7bd366d6

Regards,

Rene

-- System Information:
Debian Release: 8.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
--- End Message ---
--- Begin Message ---
Source: abiword
Source-Version: 3.0.1-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 788...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Rene Engelhard  (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: SHA1

Format: 1.8
Date: Tue, 16 Jun 2015 23:11:49 +0200
Source: abiword
Binary: abiword-common abiword abiword-plugin-grammar abiword-plugin-mathview 
libabiword-3.0 libabiword-3.0-dev gir1.2-abiword-3.0 abiword-dbg
Architecture: source all amd64
Version: 3.0.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Rene Engelhard 
Description:
 abiword- efficient, featureful word processor with collaboration
 abiword-common - efficient, featureful word processor with collaboration -- 
common
 abiword-dbg - debugging symbols for abiword word processor
 abiword-plugin-grammar - grammar checking plugin for AbiWord
 abiword-plugin-mathview - equation editor plugin for AbiWord
 gir1.2-abiword-3.0 - GObject introspection data for libabiword
 libabiword-3.0 - efficient, featureful word processor with collaboration -- 
shared
 libabiword-3.0-dev - efficient, featureful word processor with collaboration 
-- develo
Closes: 788970
Changes:
 abiword (3.0.1-3) unstable; urgency=medium
 .
   * QA upload.
   * build against libwps 0.4.0 (closes: #788970)
Checksums-Sha1:
 b031465254c20d272c07478ff43863ea47d0769b 3069 abiword_3.0.1-3.dsc
 52fc855afd30c6c180e1fef9149a10063ca7d64f 49232 abiword_3.0.1-3.debian.tar.xz
 1bad37cc21dd9157222b93df89412b7ed4f22afc 1692698 abiword-common_3.0.1-3_all.deb
 e24cfd90cbd86ccdf8ad4155f4573fa26f8f59a7 26084942 abiword-dbg_3.0.1-3_amd64.deb
 5f780a409f435ad6c77c59854b52f912f1aa57fe 46886 
abiword-plugin-grammar_3.0.1-3_amd64.deb
 a7334ced560edd1688c9445372022c777da9f0f0 123904 
abiword-plugin-mathview_3.0.1-3_amd64.deb
 3200f303632282763d3dfb8e5981af62b5daba59 1383042 abiword_3.0.1-3_amd64.deb
 d4f221bbceed35e8031a983f58c8a9b2bbf6ea4f 43294 
gir1.2-abiword-3.0_3.0.1-3_amd64.deb
 d391f05101f9b1f6822826a3f25951a210adc927 49848 
libabiword-3.0-dev_3.0.1-3_amd64.deb
 648d89a511501ad25c9d20114dfd3839d2495eed 2097930 
libabiword-3.0_3.0.1-3_amd64.deb
Checksums-Sha256:
 b314ef8ac1621000d952e49daaafc94d5883822a96ff8b9f5cce2eb4283bb534 3069 
abiword_3.0.1-3.dsc
 ab2ba5d72228917baabe3aac3968382c684b9d4164798c56ea3964c22b9346f4 49232 
abiword_3.0.1-3.debian.tar.xz
 486338ecbca800080a876754bfe1f143f7802f14c4bc2c327c4171457ace9ef4 1692698 
abiword-common_3.0.1-3_all.deb
 0a13bcac69b42c4f5a367476feed948dbf9edc924703aa53f8d0e1b5c5d30e71 26084942 
abiword-dbg_3.0.1-3_amd64.deb
 ebe9adc5db1b2fe9d65d8627922e5b9a329d1a4f703c331cb72a31bb6a9f43f3 46886 
abiword-pl

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

2015-06-23 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 16 Jun 2015 23:11:49 +0200
Source: abiword
Binary: abiword-common abiword abiword-plugin-grammar abiword-plugin-mathview 
libabiword-3.0 libabiword-3.0-dev gir1.2-abiword-3.0 abiword-dbg
Architecture: source all amd64
Version: 3.0.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Rene Engelhard 
Description:
 abiword- efficient, featureful word processor with collaboration
 abiword-common - efficient, featureful word processor with collaboration -- 
common
 abiword-dbg - debugging symbols for abiword word processor
 abiword-plugin-grammar - grammar checking plugin for AbiWord
 abiword-plugin-mathview - equation editor plugin for AbiWord
 gir1.2-abiword-3.0 - GObject introspection data for libabiword
 libabiword-3.0 - efficient, featureful word processor with collaboration -- 
shared
 libabiword-3.0-dev - efficient, featureful word processor with collaboration 
-- develo
Closes: 788970
Changes:
 abiword (3.0.1-3) unstable; urgency=medium
 .
   * QA upload.
   * build against libwps 0.4.0 (closes: #788970)
Checksums-Sha1:
 b031465254c20d272c07478ff43863ea47d0769b 3069 abiword_3.0.1-3.dsc
 52fc855afd30c6c180e1fef9149a10063ca7d64f 49232 abiword_3.0.1-3.debian.tar.xz
 1bad37cc21dd9157222b93df89412b7ed4f22afc 1692698 abiword-common_3.0.1-3_all.deb
 e24cfd90cbd86ccdf8ad4155f4573fa26f8f59a7 26084942 abiword-dbg_3.0.1-3_amd64.deb
 5f780a409f435ad6c77c59854b52f912f1aa57fe 46886 
abiword-plugin-grammar_3.0.1-3_amd64.deb
 a7334ced560edd1688c9445372022c777da9f0f0 123904 
abiword-plugin-mathview_3.0.1-3_amd64.deb
 3200f303632282763d3dfb8e5981af62b5daba59 1383042 abiword_3.0.1-3_amd64.deb
 d4f221bbceed35e8031a983f58c8a9b2bbf6ea4f 43294 
gir1.2-abiword-3.0_3.0.1-3_amd64.deb
 d391f05101f9b1f6822826a3f25951a210adc927 49848 
libabiword-3.0-dev_3.0.1-3_amd64.deb
 648d89a511501ad25c9d20114dfd3839d2495eed 2097930 
libabiword-3.0_3.0.1-3_amd64.deb
Checksums-Sha256:
 b314ef8ac1621000d952e49daaafc94d5883822a96ff8b9f5cce2eb4283bb534 3069 
abiword_3.0.1-3.dsc
 ab2ba5d72228917baabe3aac3968382c684b9d4164798c56ea3964c22b9346f4 49232 
abiword_3.0.1-3.debian.tar.xz
 486338ecbca800080a876754bfe1f143f7802f14c4bc2c327c4171457ace9ef4 1692698 
abiword-common_3.0.1-3_all.deb
 0a13bcac69b42c4f5a367476feed948dbf9edc924703aa53f8d0e1b5c5d30e71 26084942 
abiword-dbg_3.0.1-3_amd64.deb
 ebe9adc5db1b2fe9d65d8627922e5b9a329d1a4f703c331cb72a31bb6a9f43f3 46886 
abiword-plugin-grammar_3.0.1-3_amd64.deb
 a64b5299ce1d655f2e93f163345f01d030f75bd9865bfe6e84044c6ad0b46b42 123904 
abiword-plugin-mathview_3.0.1-3_amd64.deb
 4eae5f404193710aeb64c6112e78f5408077ca953a1b9e9ef04707ad9b3a4afd 1383042 
abiword_3.0.1-3_amd64.deb
 84867da806018b57dbc567bf0c981cf779097969b68de55749cd2fa0efc4c877 43294 
gir1.2-abiword-3.0_3.0.1-3_amd64.deb
 5fb2c1b20606520c0c512af4f7ccd6e808586f78ff23acfa4f28e03f14b69b57 49848 
libabiword-3.0-dev_3.0.1-3_amd64.deb
 07b2f114c0d75e206bcc13c8b00c4a32b10c600e48bb8c84fd58be8a6f28119b 2097930 
libabiword-3.0_3.0.1-3_amd64.deb
Files:
 6a63b78692db3ab7bfa00c870a86dd63 3069 gnome optional abiword_3.0.1-3.dsc
 52a1295038fdcf8dc8e19716d1bd1179 49232 gnome optional 
abiword_3.0.1-3.debian.tar.xz
 9155b7f3d5a8446b45f0bce775ab9fd5 1692698 editors optional 
abiword-common_3.0.1-3_all.deb
 2a348f7e646c1442a4e36d0d7f06a453 26084942 debug extra 
abiword-dbg_3.0.1-3_amd64.deb
 94286107680b59335a14921b2fe27b84 46886 editors optional 
abiword-plugin-grammar_3.0.1-3_amd64.deb
 a776fac4161251d2df37ae89470e508c 123904 editors optional 
abiword-plugin-mathview_3.0.1-3_amd64.deb
 6376c72ca51d27dbe83d0db03725d41f 1383042 editors optional 
abiword_3.0.1-3_amd64.deb
 81fb020b8e92c5e9193e443e12af4bd8 43294 introspection optional 
gir1.2-abiword-3.0_3.0.1-3_amd64.deb
 2e43e771f954c6092d4f337eedac59e1 49848 libdevel optional 
libabiword-3.0-dev_3.0.1-3_amd64.deb
 8117a80287552c0e1873eecf5e8c10f8 2097930 libs optional 
libabiword-3.0_3.0.1-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJVgQzvAAoJEAqgRXHQPj5wrMwQAKBlWykyw8TV4BfBsaWc0zip
x0QVCzhezn1zcEVQJIVg58NHbbu9/WmHggeQ5k/4UfIVscrT60IrkGrIhJgjQEiE
uiIrs9pAkYgQQxra1HiFImrimHUMl+1XmAT6jXHAJF5C/DEaQGQbSK714XSFtRHH
KeXkqUs9LaZh6FehjUu5XKsmrdpjjqLgC6TznAAKLBYLTvfBFEP5na/v7J0ANEKG
snues+7KMIxBxKqAnQ6+A5s2BMseCSMz9y8u0MooqXe6WEfF1bKOTROlxaX57lMo
korb2qYTPK0wgKV4cA4neLbCUxNLzGgzQuMJFACX4E5gnlwnStmQw14ucAjbK2P8
Jtx7tJXZlhoTfHQzPC54nTb/noa0qSarEB+/6L6tTGl0WT+rz8tcRWT1lXvm8cN5
VeZOGMkqfC9QEIKn6t608WaxvwQ0pSxoFGKnbsdguxCUNt0DsDYBVraZBZUIt1DN
oZeNpvHK/wmhBpfuFKu2AQVu09wRoVbj/oiDb2eurJhd8bWkvecDB6B6w3OMf2Qk
YobLa5OebQq4QgAzd62O2YnZ10LkcEfNzQYi8/7TFhpbv8O4TUapBSGpXvgq3iIl
6S/JI1+xrExixDBo0SX5gbMBecij7sJZstXSnhw2SuaABtdByL9r1ELNLoh2rlvJ
FkRLl1KgYCYdGQnaYWc9
=CTNO
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Ar

abiword_3.0.1-2_amd64.changes ACCEPTED into unstable, unstable

2015-06-23 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 May 2015 10:02:43 +0200
Source: abiword
Binary: abiword-common abiword abiword-plugin-grammar abiword-plugin-mathview 
libabiword-3.0 libabiword-3.0-dev gir1.2-abiword-3.0 abiword-dbg
Architecture: source all amd64
Version: 3.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Jonas Smedegaard 
Description:
 abiword- efficient, featureful word processor with collaboration
 abiword-common - efficient, featureful word processor with collaboration -- 
common
 abiword-dbg - debugging symbols for abiword word processor
 abiword-plugin-grammar - grammar checking plugin for AbiWord
 abiword-plugin-mathview - equation editor plugin for AbiWord
 gir1.2-abiword-3.0 - GObject introspection data for libabiword
 libabiword-3.0 - efficient, featureful word processor with collaboration -- 
shared
 libabiword-3.0-dev - efficient, featureful word processor with collaboration 
-- develo
Closes: 785688
Changes:
 abiword (3.0.1-2) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Dmitry Smirnov ]
   * rules: cleanup: dropped obsolete customisations, get-orig-source,
 etc.
 .
   [ Jonas Smedegaard ]
   * Enable introspection (and instead avoid parallel build so be on the
 safe side: rumored to be incompatible).
 Closes: bug#785688.
Checksums-Sha1:
 130744af1afcaaa21ad04279046339624af887a0 3069 abiword_3.0.1-2.dsc
 7288daa214937444e575e2f65efdb1f7ce89cd9e 49028 abiword_3.0.1-2.debian.tar.xz
 1d5f0b537bef99a560e4ae41a390bce9b94b77d6 1691994 abiword-common_3.0.1-2_all.deb
 9d0ac62f0471ebf25676b78aac92eb2028586ac9 25897314 abiword-dbg_3.0.1-2_amd64.deb
 a7a21bb0da9d82a5e18996c2c52742b789f11f45 46962 
abiword-plugin-grammar_3.0.1-2_amd64.deb
 52008049517a218c7d7fd93b90b3f478b4ed8569 124072 
abiword-plugin-mathview_3.0.1-2_amd64.deb
 6ce31387c2dd1439b13ab3bef0b20011a6004778 1383826 abiword_3.0.1-2_amd64.deb
 21cdee149609f8b70dcd6fcf436691845fc1513b 43386 
gir1.2-abiword-3.0_3.0.1-2_amd64.deb
 164418d9ccf107d3ba9d49fb92dee7f7469bcaf8 49888 
libabiword-3.0-dev_3.0.1-2_amd64.deb
 0f36abbfc2c33f8c90fefd1a9b44b6454e6f9e3b 2100120 
libabiword-3.0_3.0.1-2_amd64.deb
Checksums-Sha256:
 c1ae1e6006d73558a54f7e5634081f71df4f7fde744d76480d426592d24f4c94 3069 
abiword_3.0.1-2.dsc
 776521d51859b542191b46a6201e00c14f7628295a3f3cbf587d999663f86dbb 49028 
abiword_3.0.1-2.debian.tar.xz
 4a545accabe211ca4f641e3798ff93bd014267afd814c311f3eb8f85b69d7990 1691994 
abiword-common_3.0.1-2_all.deb
 84d3cc397e815ad03cb86a9f52a9d1b2083412762b391de03bca2216157f7537 25897314 
abiword-dbg_3.0.1-2_amd64.deb
 08e7039830106b946a6fd02063dc2199a51c6c475806af99dae10b7f3d9afbbb 46962 
abiword-plugin-grammar_3.0.1-2_amd64.deb
 c666ab588cf1f043407ac24e64f371c5c151304d3cb7d94f99c689407290bf5b 124072 
abiword-plugin-mathview_3.0.1-2_amd64.deb
 d3a1ea31adef60b7833f1eeb95ef8ed8b570dfca147006f04c6a0d73729ce49a 1383826 
abiword_3.0.1-2_amd64.deb
 4437eb5bf3eef62e56ba5b6d35086fcc1e14f17c9221cc986eca3646ad431b79 43386 
gir1.2-abiword-3.0_3.0.1-2_amd64.deb
 c69554595c95b9f528576a0d5f40504936576096ad6a1b2f7520da76ee6530a5 49888 
libabiword-3.0-dev_3.0.1-2_amd64.deb
 957db3125c1d3d9c482621e549064d4b918df981d4b09103c603ad36ba7f86e3 2100120 
libabiword-3.0_3.0.1-2_amd64.deb
Files:
 9a10aa61a59c1daf5b54a02276a166b7 3069 gnome optional abiword_3.0.1-2.dsc
 3b7fbd8bb0e79cf823c2f53d2e84b8e1 49028 gnome optional 
abiword_3.0.1-2.debian.tar.xz
 b437a838c467580c97adaa266b99ea47 1691994 editors optional 
abiword-common_3.0.1-2_all.deb
 ad5f227b4d726dc7822eb8d8d1082f99 25897314 debug extra 
abiword-dbg_3.0.1-2_amd64.deb
 cb286523fd33deed1809c62d0dd45f4a 46962 editors optional 
abiword-plugin-grammar_3.0.1-2_amd64.deb
 cc7260bf96d80357607336ca6173e8ef 124072 editors optional 
abiword-plugin-mathview_3.0.1-2_amd64.deb
 c33bbc9d68e4d64b6b860ff06903d15d 1383826 editors optional 
abiword_3.0.1-2_amd64.deb
 9ebc3f621633b6791f23b5e20b4a70d0 43386 introspection optional 
gir1.2-abiword-3.0_3.0.1-2_amd64.deb
 1f8479d079c732c7344d2224b060f634 49888 libdevel optional 
libabiword-3.0-dev_3.0.1-2_amd64.deb
 f01ff50349e8ae90d116e6731ffa1239 2100120 libs optional 
libabiword-3.0_3.0.1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJVW1W3AAoJECx8MUbBoAEhp5MP/i+qFu5W0mdub3vGRbZ996CX
vZEpuRIRFyur4OjQNiAPiOuHxDm02Qd+b3L8Q5lU3u3JdZPtpAfJTKKKLHRC9QVa
MFX+1BuuZ+/s5NpC0tOlboqt4sLcwYZ/+feTLivC48r02/weNvZ+GXi7bpsWC/qU
SREyFuTsMUc6wj/A6Nrs3g6c72M1Q9nSmC/hf31osK2TQnBo7wS0FGyPL4GMbTLu
BMSC+FoIO5J7yG1P7wctlyJtUITgZpxuelVG5oiZI7HbjvgstgIN4PUJqRvOd4b1
sTUxDxkChRsviJFyqG3jznfidWvyVsBhOLsK578/H8BL/yPJTXvVu+vhaw3rm4Uw
kNLQIIm7r605hT5UqY0WkKZi8bNMBhuDJJ9DFQiRRsC+qr30jrZz6WSXeTxMnC75
EFTnrFoUXUmg1/eLfY8ZYJh0YSib2/xn4uDqs0EWX4RnR890XXgYEwR4B4CRd97l
2rKwh7FNOedSmM1mOmlSihjIqX+x//222IRVpgEezAokwE8BurYWpyFFsoYU2exA
0CgR8fAjWRoNx4vnGkXq9pjbo5Guw9sBPQZQmZvRTbpAQBiDG74kIcCA75SWoLSg
73Z95AMHHwFCIm5pj4l9iP20KH5NBaBf7Ywl2yb/f3E2S4Hfu9g7UulZXdYfH5JL
u1vqEGEFzQ8ECWjzcpWR
=VIXV

Bug#785688: marked as done (abiword: please enable introspection needed by recent sugar-write-activity)

2015-06-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Jun 2015 11:00:16 +
with message-id 
and subject line Bug#785688: fixed in abiword 3.0.1-2
has caused the Debian Bug report #785688,
regarding abiword: please enable introspection needed by recent 
sugar-write-activity
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.)


-- 
785688: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785688
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: abiword
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Recent releases of sugar-write-activity needs abiword introspection.

Please enable that.

 - Jonas

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJVWuseAAoJECx8MUbBoAEhbUQP/jSViRtfsbD2aii7Xu2kof1U
VUkrQpEcb9lvnmm9+2Z/5lAS+7NNRajvYu5psvtDH7VPE0lJZ3lkHw4ZKlW58dWD
OWGiPKjoWcpMaKWsdOQ87lxiuO3kFMfUtHY3M47EfT/lNvFiE8WJ8fKO7+OuXkcm
m2xkyxjPki8HCg3yxqiC+r4SoQxMpOxvDpRrqpH+mmSjQ9Xt6v9LOi2B03pvow3R
wJtEtI1q9tGLe4DOsPhtclPSJdYinPRa6bd0y2+arLxzgP2F0UVPY3LMtsDB/flj
SwyAwTuaC0p2PbUUBUIyAYhVnI/DoPjFI4cGml2ei/HzFmNF+GEhGPNiPlRzgy0Y
F9OGwE3ldbm5haRdb2lK2Lnltgh6tfbnHrpEfxHQ9SKdp1Kg5Cqvh0Tw2sHjz4zZ
uE5T/PJOCOdZMsbhUT+04DMKUS4Du5saXpbqCpyxnLTKo33mOBLcN0rFJpNH7Xhx
UR/J0r4pS21D9mxhz+anR4h6VoszboDHd9d1yetk7BvXbZfB04KPS33f4WQjimnw
X8QdFoAY60k3VuP0IEnf+yxxJcOPATgDKLnnOhEioJGRVQ0X9RjJ8jjXt1jTbgCe
NXuLd+P59WkbswoS03Ui+OZZHRemzhFO77dpKt6oi5SMfpPCUfWhAnyQHYGnPtyI
AWPIDWbMff7ALceXqNcU
=Xful
-END PGP SIGNATURE-
--- End Message ---
--- Begin Message ---
Source: abiword
Source-Version: 3.0.1-2

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 785...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jonas Smedegaard  (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: SHA1

Format: 1.8
Date: Tue, 19 May 2015 10:02:43 +0200
Source: abiword
Binary: abiword-common abiword abiword-plugin-grammar abiword-plugin-mathview 
libabiword-3.0 libabiword-3.0-dev gir1.2-abiword-3.0 abiword-dbg
Architecture: source all amd64
Version: 3.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Jonas Smedegaard 
Description:
 abiword- efficient, featureful word processor with collaboration
 abiword-common - efficient, featureful word processor with collaboration -- 
common
 abiword-dbg - debugging symbols for abiword word processor
 abiword-plugin-grammar - grammar checking plugin for AbiWord
 abiword-plugin-mathview - equation editor plugin for AbiWord
 gir1.2-abiword-3.0 - GObject introspection data for libabiword
 libabiword-3.0 - efficient, featureful word processor with collaboration -- 
shared
 libabiword-3.0-dev - efficient, featureful word processor with collaboration 
-- develo
Closes: 785688
Changes:
 abiword (3.0.1-2) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Dmitry Smirnov ]
   * rules: cleanup: dropped obsolete customisations, get-orig-source,
 etc.
 .
   [ Jonas Smedegaard ]
   * Enable introspection (and instead avoid parallel build so be on the
 safe side: rumored to be incompatible).
 Closes: bug#785688.
Checksums-Sha1:
 130744af1afcaaa21ad04279046339624af887a0 3069 abiword_3.0.1-2.dsc
 7288daa214937444e575e2f65efdb1f7ce89cd9e 49028 abiword_3.0.1-2.debian.tar.xz
 1d5f0b537bef99a560e4ae41a390bce9b94b77d6 1691994 abiword-common_3.0.1-2_all.deb
 9d0ac62f0471ebf25676b78aac92eb2028586ac9 25897314 abiword-dbg_3.0.1-2_amd64.deb
 a7a21bb0da9d82a5e18996c2c52742b789f11f45 46962 
abiword-plugin-grammar_3.0.1-2_amd64.deb
 52008049517a218c7d7fd93b90b3f478b4ed8569 124072 
abiword-plugin-mathview_3.0.1-2_amd64.deb
 6ce31387c2dd1439b13ab3bef0b20011a6004778 1383826 abiword_3.0.1-2_amd64.deb
 21cdee149609f8b70dcd6fcf436691845fc1513b 43386 
gir1.2-abiword-3.0_3.0.1-2_amd64.deb
 164418d9ccf107d3ba9d49fb92dee7f7469bcaf8 49888 
libabiword-3.0-dev_3.0.1-2_amd64.deb
 0f36abbfc2c33f8c90fefd1a9b44b6454e6f9e3b 2100120 
libabiword-3.0_3.0.1-2_amd64.deb
Checksums-Sha256:
 c1ae1e6006d73558a54f7e5634081f71df4f7fde744d76480d426592d24f4c94 3069 
abiword_3.0.1-2.dsc
 776521d51859b542191b46a6201e00c14f7628295a3f3cbf587d99966

Processed: notfound 788970 in 1:3.0.0-8, found 788970 in 3.0.0-8

2015-06-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> notfound 788970 1:3.0.0-8
Bug #788970 {Done: Rene Engelhard } [src:abiword] abiword: 
please adapt for libwps 0.4
The source 'abiword' and version '1:3.0.0-8' do not appear to match any binary 
packages
No longer marked as found in versions abiword/1:3.0.0-8.
> found 788970 3.0.0-8
Bug #788970 {Done: Rene Engelhard } [src:abiword] abiword: 
please adapt for libwps 0.4
Marked as found in versions abiword/3.0.0-8.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
788970: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788970
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.143506034126434.transcr...@bugs.debian.org



Processed: found 788970 in 3.0.1-1

2015-06-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 788970 3.0.1-1
Bug #788970 {Done: Rene Engelhard } [src:abiword] abiword: 
please adapt for libwps 0.4
Marked as found in versions abiword/3.0.1-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
788970: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788970
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.143506028226298.transcr...@bugs.debian.org