Your message dated Mon, 26 Mar 2018 16:49:41 +0000
with message-id <e1f0vjv-0000tr...@fasolo.debian.org>
and subject line Bug#886361: fixed in apertium 3.5.1-1
has caused the Debian Bug report #886361,
regarding apertium: frequent parallel FTBFS
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.)


-- 
886361: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886361
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: apertium
Version: 3.4.2~r68466-3
Severity: serious
Tags: patch

https://tests.reproducible-builds.org/debian/history/apertium.html
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/apertium.html
https://buildd.debian.org/status/package.php?p=apertium&suite=sid

...
/bin/bash ../libtool  --tag=CXX   --mode=link g++  -Wall -Wextra -g -O2 
-fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat 
-Werror=format-security  -Wl,-z,relro -Wl,-z,now -o apertium-filter-ambiguity 
apertium_filter_ambiguity.o -llttoolbox3 -lxml2 -lpcre -lapertium3 -lpcreposix 
-lpcre -lpcrecpp -llttoolbox3 -lxml2 -lpcre
libtool: link: g++ -Wall -Wextra -g -O2 "-fdebug-prefix-map=/<<PKGBUILDDIR>>=." 
-fstack-protector-strong -Wformat -Werror=format-security -Wl,-z -Wl,relro 
-Wl,-z -Wl,now -o apertium-filter-ambiguity apertium_filter_ambiguity.o  
-lapertium3 -lpcreposix -lpcrecpp -llttoolbox3 -lxml2 -lpcre
/usr/bin/ld: cannot find -lapertium3
collect2: error: ld returned 1 exit status
Makefile:1056: recipe for target 'apertium-filter-ambiguity' failed
make[3]: *** [apertium-filter-ambiguity] Error 1


This was triggered by dh comat >= 10 defaulting to parallel building.

Fix attached.
Description: Fix parallel FTBFS
 Tell automake that libapertium3 is a self-built library
 so that proper dependencies are added.
Author: Adrian Bunk <b...@debian.org>

--- apertium-3.4.2~r68466.orig/apertium/Makefile.am
+++ apertium-3.4.2~r68466/apertium/Makefile.am
@@ -226,7 +226,7 @@ apertium_DATA = deformat.xsl reformat.xs
 
 apertium_pretransfer_SOURCES = apertium_pretransfer.cc
 apertium_multiple_translations_SOURCES = apertium-multiple-translations.cc
-apertium_multiple_translations_LDADD = $(APERTIUM_LIBS) 
-lapertium$(GENERIC_MAJOR_VERSION)
+apertium_multiple_translations_LDADD = $(APERTIUM_LIBS) libapertium3.la
 apertium_destxt_SOURCES = apertium_destxt.cc
 apertium_retxt_SOURCES = apertium_retxt.cc
 apertium_deshtml_SOURCES = apertium_deshtml.cc
@@ -249,55 +249,55 @@ apertium_repptx_SOURCES = apertium_reppt
 apertium_desmediawiki_SOURCES = apertium_desmediawiki.cc
 apertium_remediawiki_SOURCES = apertium_remediawiki.cc
 apertium_prelatex_SOURCES = apertium_prelatex.cc
-apertium_prelatex_LDADD= $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+apertium_prelatex_LDADD= $(APERTIUM_LIBS) libapertium3.la
 apertium_postlatex_SOURCES = apertium_postlatex.cc
-apertium_postlatex_LDADD= $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+apertium_postlatex_LDADD= $(APERTIUM_LIBS) libapertium3.la
 apertium_postlatex_raw_SOURCES = apertium_postlatex_raw.cc
-apertium_postlatex_raw_LDADD= $(APERTIUM_LIBS) 
-lapertium$(GENERIC_MAJOR_VERSION)
+apertium_postlatex_raw_LDADD= $(APERTIUM_LIBS) libapertium3.la
 
 apertium_tagger_SOURCES = apertium_tagger.cc
-apertium_tagger_LDADD = $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+apertium_tagger_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 apertium_tmxbuild_SOURCES = apertium_tmxbuild.cc
-apertium_tmxbuild_LDADD = $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+apertium_tmxbuild_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 apertium_preprocess_transfer_SOURCES = transferpp.cc
 apertium_preprocess_transfer_LDADD = $(APERTIUM_LIBS) \
-                                     -lapertium$(GENERIC_MAJOR_VERSION)
+                                     libapertium3.la
 
 apertium_filter_ambiguity_SOURCES = apertium_filter_ambiguity.cc
 apertium_filter_ambiguity_LDADD = $(APERTIUM_LIBS) \
-                                  -lapertium$(GENERIC_MAJOR_VERSION)
+                                  libapertium3.la
 
 apertium_transfer_SOURCES = apertium_transfer.cc
-apertium_transfer_LDADD = $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+apertium_transfer_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 apertium_interchunk_SOURCES = apertium_interchunk.cc
-apertium_interchunk_LDADD = $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+apertium_interchunk_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 apertium_postchunk_SOURCES = apertium_postchunk.cc
-apertium_postchunk_LDADD = $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+apertium_postchunk_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 ###apertium_lextor_SOURCES = apertium_lextor.cc
-###apertium_lextor_LDADD = $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+###apertium_lextor_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 #apertium_lextor_eval_SOURCES = apertium-lextor-eval.C
-#apertium_lextor_eval_LDADD = $(APERTIUM_LIBS) 
-lapertium$(GENERIC_MAJOR_VERSION)
+#apertium_lextor_eval_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 apertium_tagger_apply_new_rules_SOURCES = apertium_tagger_apply_new_rules.cc
-apertium_tagger_apply_new_rules_LDADD = $(APERTIUM_LIBS) 
-lapertium$(GENERIC_MAJOR_VERSION)
+apertium_tagger_apply_new_rules_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 apertium_tagger_readwords_SOURCES = apertium_tagger_readwords.cc
-apertium_tagger_readwords_LDADD = $(APERTIUM_LIBS) 
-lapertium$(GENERIC_MAJOR_VERSION)
+apertium_tagger_readwords_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 ###apertium_lextor_search_SOURCES = apertium-lextor-search.C
-###apertium_lextor_search_LDADD = $(APERTIUM_LIBS) 
-lapertium$(GENERIC_MAJOR_VERSION)
+###apertium_lextor_search_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 ###pruebas_lextor_SOURCES = pruebas-lextor.C
-###pruebas_lextor_LDADD = $(APERTIUM_LIBS) -lapertium$(GENERIC_MAJOR_VERSION)
+###pruebas_lextor_LDADD = $(APERTIUM_LIBS) libapertium3.la
 
 ###apertium_gen_wlist_lextor_translation_SOURCES = 
apertium_gen_wlist_lextor_translation.cc
-###apertium_gen_wlist_lextor_translation_LDADD = $(APERTIUM_LIBS) 
-lapertium$(GENERIC_MAJOR_VERSION)
+###apertium_gen_wlist_lextor_translation_LDADD = $(APERTIUM_LIBS) 
libapertium3.la
 
 
 if WINDOWS

--- End Message ---
--- Begin Message ---
Source: apertium
Source-Version: 3.5.1-1

We believe that the bug you reported is fixed in the latest version of
apertium, 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 886...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Tino Didriksen <t...@didriksen.cc> (supplier of updated apertium 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: Mon, 26 Mar 2018 16:07:23 +0200
Source: apertium
Binary: apertium libapertium3-3.5-1 apertium-dev apertium-all-dev
Architecture: source all amd64
Version: 3.5.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
<debian-science-maintainers@lists.alioth.debian.org>
Changed-By: Tino Didriksen <t...@didriksen.cc>
Description:
 apertium   - Shallow-transfer machine translation engine
 apertium-all-dev - Metapackage for all tools required for Apertium development
 apertium-dev - Development tools and library for Apertium
 libapertium3-3.5-1 - Shared library for Apertium
Closes: 886361
Changes:
 apertium (3.5.1-1) unstable; urgency=low
 .
   * Update to latest upstream (Closes: #886361)
Checksums-Sha1:
 95dab9db524f8db9cd3037efe4dc9813027a4040 2376 apertium_3.5.1-1.dsc
 1858bcb06bfbfa0d346ec9a4bb957610778e95d1 327522 apertium_3.5.1.orig.tar.bz2
 dd6e9a41462c2c24907f17f98d2de26290271f41 6376 apertium_3.5.1-1.debian.tar.xz
 93800ba692699255263c8a21bc2a2a62c2a203dc 5880 apertium-all-dev_3.5.1-1_all.deb
 c4538f016b0cd6c25a83df84953566ebb7bb6e65 3615156 
apertium-dbgsym_3.5.1-1_amd64.deb
 a03869e1a4223c13a1946d92987ae66fe89518d8 366360 
apertium-dev-dbgsym_3.5.1-1_amd64.deb
 54111490343e78bc29446bfcc99d0d29677da93b 77056 apertium-dev_3.5.1-1_amd64.deb
 170e469078d5f2a0059ea8e97415cc7a12835bcb 8148 apertium_3.5.1-1_amd64.buildinfo
 7b4856873b48822b671fd9c0203295aecf49ed19 305696 apertium_3.5.1-1_amd64.deb
 c49d1ebffc947e6a0388e3f9cf8c7b57cb871326 7030216 
libapertium3-3.5-1-dbgsym_3.5.1-1_amd64.deb
 dbaab95c6ec924ccf7d2e10efcf6681c0ea35e1c 386884 
libapertium3-3.5-1_3.5.1-1_amd64.deb
Checksums-Sha256:
 19eb6e8c23fa58408f4c8446753f67a8c704e17c8f2e996f68f27b5bea9e6810 2376 
apertium_3.5.1-1.dsc
 beca316b0ffa1b8b9606d5c3504bba8dbc95a070533ddb837a20e7699ea42450 327522 
apertium_3.5.1.orig.tar.bz2
 456f16f7b42bdf2fc8a20d5182384a8eb26a118429c7e932839f0c6abb87a926 6376 
apertium_3.5.1-1.debian.tar.xz
 ce046377c977fd1431e02c39f9736d49fe049fa64e97c7ebd840d366a9c24bcf 5880 
apertium-all-dev_3.5.1-1_all.deb
 00796c61640aaaaab87da2ac57894e07b5cfaca7760031ff7f8b22e4f1e1057a 3615156 
apertium-dbgsym_3.5.1-1_amd64.deb
 576ddd9b484accb3705cf298fdd795c2020a64d69e5641dcc1552705ac062117 366360 
apertium-dev-dbgsym_3.5.1-1_amd64.deb
 28b03f5c2c331464c31ce27db435d34c25fb4517251ccc29bb4d06a039815e0a 77056 
apertium-dev_3.5.1-1_amd64.deb
 6d880c1b2cee8b39e6ef89530462baabb0e2b5c2cfd80306042bf3909ab9028c 8148 
apertium_3.5.1-1_amd64.buildinfo
 389d980b3b541bfb62a101acca31553e2e8275eb9c227dd4f7cdd1825ec72099 305696 
apertium_3.5.1-1_amd64.deb
 4fc4929c1339b772e793dd51c9c4b95ce995e80a5d8691db8aafc2fc0a759976 7030216 
libapertium3-3.5-1-dbgsym_3.5.1-1_amd64.deb
 920cb2f17710870a9f5b4f4ae8ac7649120daf695a84ef546d70a8810839e73d 386884 
libapertium3-3.5-1_3.5.1-1_amd64.deb
Files:
 1ce6a528c8b642bde6291a806676f32d 2376 science optional apertium_3.5.1-1.dsc
 c27f6ac9ace67bab2da2ca04e96ac9ae 327522 science optional 
apertium_3.5.1.orig.tar.bz2
 4219788653f064b328144b46fb8129da 6376 science optional 
apertium_3.5.1-1.debian.tar.xz
 935e82bae387bf216f4dcd26b9af6b77 5880 science optional 
apertium-all-dev_3.5.1-1_all.deb
 2571bf71dfe57fc04303b038583b6be7 3615156 debug optional 
apertium-dbgsym_3.5.1-1_amd64.deb
 b164268ee3c5cb7ba1cca8f382952a7f 366360 debug optional 
apertium-dev-dbgsym_3.5.1-1_amd64.deb
 a497d408d23e04caeded628e46bf5801 77056 science optional 
apertium-dev_3.5.1-1_amd64.deb
 904c94d2f2fff744d6e4bcaa597ad547 8148 science optional 
apertium_3.5.1-1_amd64.buildinfo
 bbff272050e6f9bb2cb4a0a175dac71c 305696 science optional 
apertium_3.5.1-1_amd64.deb
 b7c36aa13249e9696b8bcd5253dfd926 7030216 debug optional 
libapertium3-3.5-1-dbgsym_3.5.1-1_amd64.deb
 c06aae1e103f878743c283e89bfe82f3 386884 libs optional 
libapertium3-3.5-1_3.5.1-1_amd64.deb

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

iQIzBAEBCAAdFiEEa2MbXvVUr2sRlmKSAsHT8ng6pN4FAlq5IOwACgkQAsHT8ng6
pN7ZcBAArG1eDYOLbIPa6bP0MpWyk8MuChxLnepFR3cmEY/GGtvnX3N7b+W1acTj
uA5KWPEeO1/mp45bGKN9X3enIN4O5yHGdwEk2+rQiuWQPNCCUGo79uCmOpZMk2jd
SRkJ3gUdg2yNgOMWAZQcUEK1ogTNnonTf8awscE6HI56InMNg0KmQH1GsOTsSp41
Jxq9FKren2BCoKuX3hRrUSxInL4E9S1n959aVaVWdsHN2FSiE92RhsZhBHvAGQh6
4nNcaC5pkrZBH/qAHIa7I7Kv1DYMPbZ9Dk3SVCxSCVw67pCxPaqsKje7HA09uWqI
IRd3/UdUvuVJatMUo5U+IIw6TbESf7jA3MqF2prFXbPktHEGqqQ8UBrZLiwJQ0RE
stj8d2ihfFHoOWXFjMAa0FHH0l8ciw4dEcU7OBa/3ILUc5YR3JZjvJ7kHHSvamvf
Jp8qYfwSFn4mw1v/L8tvtQapiklqMTlkj86NQgyEP+CPA0dasspAHI6EAK17KSHQ
T9+bAaSZHZz4BihzPziRFfAC5wBqdrKc1hrhAtQT7DKpQ4E9S0SVSGzPUVqM3TPy
yYsk9LELBizued/QxnruSIc6WfNj52zOV+EboK0AVCbeqOCpb1PuziH4A20u7yqb
tSrV54vI/QMLMrHY12z23MEYL8DMQG/oL6OQZF60xQsrN/04ymw=
=VcQC
-----END PGP SIGNATURE-----

--- End Message ---
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Reply via email to