Your message dated Wed, 17 Oct 2018 05:19:23 +0000
with message-id <[email protected]>
and subject line Bug#846283: fixed in stardict 3.0.6-0.1
has caused the Debian Bug report #846283,
regarding stardict: diff for NMU version 3.0.1-9.3
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 [email protected]
immediately.)


-- 
846283: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=846283
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: stardict
Version: 3.0.1-9.2
Severity: normal
Tags: patch pending

Dear maintainer,

I've prepared an NMU for stardict (versioned as 3.0.1-9.3) and
uploaded it to DELAYED/10. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
WBR, wRAR
diff -Nru stardict-3.0.1/debian/changelog stardict-3.0.1/debian/changelog
--- stardict-3.0.1/debian/changelog	2013-02-22 01:26:25.000000000 +0600
+++ stardict-3.0.1/debian/changelog	2016-11-30 00:43:05.000000000 +0500
@@ -1,3 +1,13 @@
+stardict (3.0.1-9.3) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS, patch by Radovan Birdic (Closes: #805236).
+  * Fix another FTBFS.
+  * Use dh-autoreconf (Closes: #727975).
+  * Drop the menu file and the related lintian override (Closes: #772494).
+
+ -- Andrey Rahmatullin <[email protected]>  Wed, 30 Nov 2016 00:43:05 +0500
+
 stardict (3.0.1-9.2) unstable; urgency=low
 
   * Non-maintainer upload to fix RC bug.
diff -Nru stardict-3.0.1/debian/control stardict-3.0.1/debian/control
--- stardict-3.0.1/debian/control	2011-10-13 23:58:45.000000000 +0600
+++ stardict-3.0.1/debian/control	2016-11-30 00:43:05.000000000 +0500
@@ -4,7 +4,7 @@
 Maintainer: Andrew Lee (李健秋) <[email protected]>
 Uploaders: Anthony Fok <[email protected]>
 Build-Depends:
- debhelper (>= 8), autoconf, automake (>= 1.10), autotools-dev, intltool,
+ debhelper (>= 8), autoconf, automake (>= 1.10), autotools-dev, dh-autoreconf, intltool,
  libbonobo2-dev, libenchant-dev, libespeak-dev, libestools2.0-dev,
  libgconf2-dev, libgnomeui-dev, liborbit2-dev,
  libsigc++-2.0-dev (>= 2.0.18-2), libtool, libx11-dev, libxml-parser-perl,
diff -Nru stardict-3.0.1/debian/patches/10_fix-narrowing.patch stardict-3.0.1/debian/patches/10_fix-narrowing.patch
--- stardict-3.0.1/debian/patches/10_fix-narrowing.patch	1970-01-01 05:00:00.000000000 +0500
+++ stardict-3.0.1/debian/patches/10_fix-narrowing.patch	2016-11-30 00:43:05.000000000 +0500
@@ -0,0 +1,18 @@
+--- stardict-3.0.1.orig/tests/t_dict.cpp
++++ stardict-3.0.1/tests/t_dict.cpp
+@@ -59,13 +59,13 @@ static inline glong random(glong from, g
+ static bool test_dict_lookup_success(Dict *d)
+ {
+ 	const char too_small[]={0x1, 0x1, 0x1, 0x0};
+-	const char too_big[]={0xCF, 0xCF, 0xCF, 0x0};
++	const unsigned char too_big[]={0xCF, 0xCF, 0xCF, 0x0};
+ 	glong i, s;
+ 	if (d->Lookup(too_small, i, s, 0, 0)) {
+ 		std::cerr<<"too_small test failed for: "<<d->dict_name()<<std::endl;
+ 		return false;
+ 	}
+-	if (d->Lookup(too_big, i, s, 0, 0)) {
++	if (d->Lookup(reinterpret_cast<const char *>(too_big), i, s, 0, 0)) {
+ 		std::cerr<<"too_big test failed for: "<<d->dict_name()<<std::endl;
+ 		return false;
+ 	}
diff -Nru stardict-3.0.1/debian/patches/11_fix-NULL-false.patch stardict-3.0.1/debian/patches/11_fix-NULL-false.patch
--- stardict-3.0.1/debian/patches/11_fix-NULL-false.patch	1970-01-01 05:00:00.000000000 +0500
+++ stardict-3.0.1/debian/patches/11_fix-NULL-false.patch	2016-11-30 00:43:05.000000000 +0500
@@ -0,0 +1,24 @@
+Description: Fix false passed instead of NULL.
+Author: Andrey Rahmatullin <[email protected]>
+Last-Update: 2016-11-30
+
+--- stardict-3.0.1.orig/src/stardict.cpp
++++ stardict-3.0.1/src/stardict.cpp
+@@ -653,7 +653,7 @@ bool AppCore::SimpleLookupToFloat(const
+ 
+ 		bool bFound = false;
+ 		for (size_t iLib=0;iLib<scan_dictmask.size();iLib++)
+-			BuildResultData(scan_dictmask, SearchWord, iIndex, false, iLib, pppWord, ppppWordData, bFound, 2);
++			BuildResultData(scan_dictmask, SearchWord, iIndex, NULL, iLib, pppWord, ppppWordData, bFound, 2);
+ 		for (size_t iLib=0; iLib<scan_dictmask.size(); iLib++)
+ 			BuildVirtualDictData(scan_dictmask, SearchWord, iLib, pppWord, ppppWordData, bFound);
+ 		if (bFound) {
+@@ -1298,7 +1298,7 @@ void AppCore::LookupWithFuzzyToFloatWin(
+ 
+ 			ppOriginWord[i] = fuzzy_reslist[i];
+ 			for (size_t iLib=0; iLib<scan_dictmask.size(); iLib++)
+-				BuildResultData(scan_dictmask, fuzzy_reslist[i], iIndex, false, iLib, pppWord, ppppWordData, bFound, 2);
++				BuildResultData(scan_dictmask, fuzzy_reslist[i], iIndex, NULL, iLib, pppWord, ppppWordData, bFound, 2);
+ 			for (size_t iLib=0; iLib<scan_dictmask.size(); iLib++)
+ 				BuildVirtualDictData(scan_dictmask, fuzzy_reslist[i], iLib, pppWord, ppppWordData, bFound);
+ 			if (bFound) {// it is certainly be true.
diff -Nru stardict-3.0.1/debian/patches/series stardict-3.0.1/debian/patches/series
--- stardict-3.0.1/debian/patches/series	2011-10-13 23:59:42.000000000 +0600
+++ stardict-3.0.1/debian/patches/series	2016-11-30 00:43:05.000000000 +0500
@@ -6,3 +6,5 @@
 07_disable_netdict.patch
 08_gcc-4.6.patch
 09_fix_ftbfs_binutils_gold.patch
+10_fix-narrowing.patch
+11_fix-NULL-false.patch
diff -Nru stardict-3.0.1/debian/rules stardict-3.0.1/debian/rules
--- stardict-3.0.1/debian/rules	2011-10-13 23:57:27.000000000 +0600
+++ stardict-3.0.1/debian/rules	2016-11-30 00:43:05.000000000 +0500
@@ -2,10 +2,9 @@
 #export DH_VERBOSE=1
 
 %:
-	dh $@
+	dh $@ --with autoreconf
 
 override_dh_auto_configure:
-	./autogen.sh
 	# Add here commands to compile the package without gnome support.
 	dh_auto_configure -- \
 		--disable-schemas-install \
diff -Nru stardict-3.0.1/debian/stardict-common.lintian-overrides stardict-3.0.1/debian/stardict-common.lintian-overrides
--- stardict-3.0.1/debian/stardict-common.lintian-overrides	2011-09-28 13:20:31.000000000 +0600
+++ stardict-3.0.1/debian/stardict-common.lintian-overrides	2016-11-30 00:43:05.000000000 +0500
@@ -6,7 +6,6 @@
 #
 # The stardict-common corss depends on both stardict | stardict-gtk binary
 # packages which both provide 'stardict' executable binary, so we put
-# .desktop and debain menu entry in stardict-common.
+# .desktop in stardict-common.
 #
 stardict-common: desktop-command-not-in-package usr/share/applications/stardict.desktop stardict
-stardict-common: menu-command-not-in-package usr/share/menu/stardict-common:9 usr/bin/stardict
diff -Nru stardict-3.0.1/debian/stardict-common.menu stardict-3.0.1/debian/stardict-common.menu
--- stardict-3.0.1/debian/stardict-common.menu	2011-09-22 13:23:30.000000000 +0600
+++ stardict-3.0.1/debian/stardict-common.menu	1970-01-01 05:00:00.000000000 +0500
@@ -1,9 +0,0 @@
-?package(stardict-common): \
-        needs="X11" \
-        section="Applications/Text" \
-        title="stardict" \
-        longtitle="dictionary lookup program" \
-        command="/usr/bin/stardict" \
-        icon="/usr/share/pixmaps/stardict_32x32.xpm" \
-        icon16x16="/usr/share/pixmaps/stardict_16x16.xpm" \
-        hints="Translation,Dictionary"

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
Source: stardict
Source-Version: 3.0.6-0.1

We believe that the bug you reported is fixed in the latest version of
stardict, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jeremy Bicha <[email protected]> (supplier of updated stardict 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 [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 17 Oct 2018 01:07:20 -0400
Source: stardict
Binary: stardict stardict-gtk stardict-plugin-espeak stardict-plugin-festival 
stardict-plugin-spell stardict-plugin stardict-common stardict-tools
Architecture: source
Version: 3.0.6-0.1
Distribution: unstable
Urgency: medium
Maintainer: Andrew Lee (李健秋) <[email protected]>
Changed-By: Jeremy Bicha <[email protected]>
Description:
 stardict   - International dictionary lookup program.
 stardict-common - International dictionary lookup program - data files
 stardict-gtk - International dictionary lookup program
 stardict-plugin - International dictionary lookup program - common plugins
 stardict-plugin-espeak - International dictionary lookup program - eSpeak TTS 
plugin
 stardict-plugin-festival - International dictionary lookup program - Festival 
TTS plugin
 stardict-plugin-spell - International dictionary lookup program - spell plugin
 stardict-tools - dictionary conversion tools of stardict
Closes: 667929 738246 738248 846283 868405 885637 886045
Changes:
 stardict (3.0.6-0.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
 .
   [ Ondřej Nový ]
   * d/control: Set Vcs-* to salsa.debian.org
 .
   [ Jeremy Bicha ]
   * New upstream release (Closes: #667929, #846283)
   * Include 3.0.3-1 packaging from the VCS that was never uploaded to Debian
   * Update debian/watch
   * Drop patches applied in new release:
     - 07_disable_netdict.patch
     - 10_fix-narrowing.patch
   * Add build-without-gconf.patch to fix build when the gconf library isn't
     available
   * Convert debian/copyright to 1.0 format
   * Use Files-Excluded to excluded .omf file to allow build without
     scrollkeeper
   * Drop stardict-gnome package (Closes: #868405, #886045, #885637)
   * Bump debhelper compat to 11
   * Use xvfb to run build tests
   * Update suggested font package names (Closes: #738246, #738248)
   * Move .desktop to stardict-gtk and install app icons
   * Build with all hardening flags
   * Build-Depend on default-libmysqlclient-dev
 .
 stardict (3.0.3-1) unstable; urgency=low
 .
   * Updating debian/watch file: upstream moved from sourceforge to googlecode.
   * Using GoogleCode Redirector from http://googlecode.debian.net for
     debian/watch file.
   * Imported Upstream version 3.0.3
   * Stop to invoke autogen.sh during build time.
   * Append prefix dist/ in rules file.
   * Removed 01_festival-tts-plugin.patch: included in upstream.
   * Refresh 02_makefile.patch.
   * Drop 03_license-updates.patch: included in upstream.
   * Drop 04_changelog-minor-typo-fixes.patch: included in upstream.
   * Drop 05_g++-4.4.patch: included in upstream.
   * Drop 06_new_gucharmap.patch: included in upstream.
   * Refresh 07_disable_netdict.patch.
   * Refresh 08_gcc-4.6.patch.
   * Refresh 09_fix_ftbfs_binutils_gold.patch.
   * Copying and merging package description and build-depends from
     stardict-tools package.
   * Refine package descriptions.
   * Copying and merging stardict-tools.install file from stardict-tools
     package.
   * Build-depends on gnome-doc-utils.
   * Update stardict-tools.install:
     - Drop dsl2dict, testutf8, bgl2txt: removed from upstream.
     - Add stardict-repair tool - repair broken dictionaries
   * Update upstream url.
   * Update stardict-common.docs.
   * Removed useless debian/TODO.Debian.
   * Added debian/stardict-tools.docs.
   * Copying and merging stardict-tools.examples file from
     stardict-tools package.
   * Copying and merging stardict-tools.manpages file from
     stardict-tools package.
   * Update path of dict manpages.
Checksums-Sha1:
 12d22306eab43b30b1aa9efb50855b024e813643 2698 stardict_3.0.6-0.1.dsc
 c51deb886c9564ac400df087afaed8e272de8f99 9341011 stardict_3.0.6.orig.tar.bz2
 e11e3debe8c64fa9abafe9227ab06120c1e23198 16404 stardict_3.0.6-0.1.debian.tar.xz
 b273ae7e5c9ddbf1f4d8c4976a2a98439284790c 11141 
stardict_3.0.6-0.1_source.buildinfo
Checksums-Sha256:
 710fd5c8bce0a8da6149f992981cd03e54b21be09009da9253c2f02b81b93fa6 2698 
stardict_3.0.6-0.1.dsc
 fdce0e21b1b2b3dbaac17982ce211742340b8277be359c28205fbc57d9ef887a 9341011 
stardict_3.0.6.orig.tar.bz2
 ca13a22a24eb94f6ad7b0245bec46d040436a762bbb8096098de9bef7eb6c0fe 16404 
stardict_3.0.6-0.1.debian.tar.xz
 ab7db64f72b65a459313a10a3956386f83675964d1f39400e14683c94699ce4b 11141 
stardict_3.0.6-0.1_source.buildinfo
Files:
 6eb34624c8e0afc2793ded3a76734534 2698 utils optional stardict_3.0.6-0.1.dsc
 0111b78ab4baa7ed44c6922d0d529525 9341011 utils optional 
stardict_3.0.6.orig.tar.bz2
 e3164ef189dc6f2e7cf26b328671efa9 16404 utils optional 
stardict_3.0.6-0.1.debian.tar.xz
 3e5add0f470164bb774258a3606a0d51 11141 utils optional 
stardict_3.0.6-0.1_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEETQvhLw5HdtiqzpaW5mx3Wuv+bH0FAlvGw8EACgkQ5mx3Wuv+
bH3ONRAAkHxIl3RwUEH5CcA8MP8xweqsjLIP25yBHLzODMbAtn6VpaR7AuwUmsd2
fLrruI+ah2VmSFymW0Rs+vhic/paiAda64IxYZl8D8Njo7W/z4e+xg+3zZrN/Wu6
yt1Ysf1mUWJGYrH4gY4t8cvdY4oykNirBVWsKxvv1dKpKlnbAQRzITPnnpO4f6kq
fHrVIHnr8VWIo36kXxBwSk5onJu6VkXYtK1bYtZj+35dazihjsvLgPCRX1bnNDIM
/katFyrGB7aLLllDrl9YL2l7pVKxPLVbI7N8i3Uqa+bZxkQnznuUwH6lhIxSvDSl
SZNodxhcW3OI9iFK/ZrgsOOjMaK5D+pSzqe+DKsf9XP6rG6poT2yooHUVy/dBCCj
AVKo+iKKa1iDzC8eTg9h/2WsIIIYGObYWGpEmdZ7YU0v55mjtKmZjxD21NLZb6Gx
mFiKL4AuQxQOacCWXdwDL1UmbWdV5NjAPG8DeLD/og67dpNePo9wdC7OVJ6JvMO9
YpaHW3+VT6BT/z/n6BaP7nhJbYj1JxADNGWeLaJ++q5VG9cc0Es2VqgeILKGdAHD
CFgDJSyf3QoBj11nO6Jy4z7ORbprxdwTmc5ypdClHnqiZ7mjYVDb+xq4mRZbKl61
J5OrX87+/Y9/ZNlIS+c99NwWtpNNmf3e+t5cykyvPD/C+nJgCnM=
=ZyIh
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to