Your message dated Wed, 07 Mar 2018 21:07:07 +0000
with message-id <e1etghd-000epv...@fasolo.debian.org>
and subject line Bug#891521: fixed in mccs 1:1.1-7
has caused the Debian Bug report #891521,
regarding mccs FTBFS with flex 2.6.4-6
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.)


-- 
891521: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891521
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: mccs
Version: 1:1.1-6
Severity: serious
Tags: patch

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/mccs.html

...
g++ -Wall -O6 -Wl,-z,relro  -DUSELPSOLVE -o mccs objs/cudf.o 
objs/constraint_generation.o objs/lp_solver.o objs/pblib_solver.o 
objs/removed_criteria.o objs/changed_criteria.o objs/new_criteria.o 
objs/notuptodate_criteria.o objs/nunsat_criteria.o objs/count_criteria.o 
objs/unaligned_criteria.o objs/lexicographic_combiner.o 
objs/lexagregate_combiner.o objs/agregate_combiner.o 
objs/lexsemiagregate_combiner.o objs/leximin_combiner.o objs/leximax_combiner.o 
objs/lexleximin_combiner.o objs/lexleximax_combiner.o objs/cudf_reductions.o 
objs/lpsolve_solver.o -lfl -L. -lccudf \
         \
         \
        -L/usr/lib -llpsolve55 -ldl -lcolamd \
        
/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/libfl.so: undefined 
reference to `yylex'
collect2: error: ld returned 1 exit status
make[1]: *** [makefile:55: mccs] Error 1


Fix is attached.
Description: Remove unused linking with libfl
 Due to the yylex requirement this caused FTBFS
 when a shared libfl is provided.
Author: Adrian Bunk <b...@debian.org>

--- mccs-1.1.orig/makefile
+++ mccs-1.1/makefile
@@ -52,7 +52,7 @@ endif
 
 # to make mccs solver
 mccs:  $(OBJS) libccudf.a
-       $(CCC) -o mccs $(OBJS) -lfl -L. -lccudf \
+       $(CCC) -o mccs $(OBJS) -L. -lccudf \
                $(CPXLD) \
                $(GUROBILD) \
                $(LPSOLVELD) \
@@ -60,7 +60,7 @@ mccs:  $(OBJS) libccudf.a
 
 # to make a light version of mccs solver which does not include libccudf
 mccs-light:  $(OBJS) libccudf.so
-       $(CCC) -o mccs $(OBJS) -lfl -L. -lccudf -Wl,-rpath,$(PWD) \
+       $(CCC) -o mccs $(OBJS) -L. -lccudf -Wl,-rpath,$(PWD) \
                $(CPXLD) \
                $(GUROBILD) \
                $(LPSOLVELD) \
@@ -68,7 +68,7 @@ mccs-light:  $(OBJS) libccudf.so
 
 # to make a static version of mccs solver (cannot be done with Gurobi: no 
static library)
 mccs-static: $(OBJS) libccudf.a
-       $(CCC) -o mccs -static $(OBJS) -lfl -L. -lccudf \
+       $(CCC) -o mccs -static $(OBJS) -L. -lccudf \
                $(CPXLD) \
                $(LPSOLVELD) \
                $(GLPKLD) \

--- End Message ---
--- Begin Message ---
Source: mccs
Source-Version: 1:1.1-7

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

Debian distribution maintenance software
pp.
Ralf Treinen <trei...@debian.org> (supplier of updated mccs 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: Wed, 07 Mar 2018 20:54:08 +0100
Source: mccs
Binary: mccs
Architecture: source
Version: 1:1.1-7
Distribution: unstable
Urgency: medium
Maintainer: Ralf Treinen <trei...@debian.org>
Changed-By: Ralf Treinen <trei...@debian.org>
Description:
 mccs       - multi-critera CUDF solver
Closes: 891521
Changes:
 mccs (1:1.1-7) unstable; urgency=medium
 .
   * patch no-lfl: do not link with libfl. Thanks a lot to Adrian Bunk for
     the patch! (closes: #891521). Drop libfl-dev from build-dependencies.
   * Standards-Version 4.1.3:
     - priority optional
     - d/copyright: use https: in format specifier
   * DH compat level 11, bump build dependency on debhelper.
Checksums-Sha1:
 4f7bffbeb956f70e20c568931ee58796988c132a 1908 mccs_1.1-7.dsc
 38915b605e1b5df06ceef08777f3f6cbc7f5f98c 7128 mccs_1.1-7.debian.tar.xz
 6a9e7f6a0e95ed38ffe7fb51c9389c0ede38dad2 6094 mccs_1.1-7_source.buildinfo
Checksums-Sha256:
 5d8d62669d4a24195fe17e1d8c9f1a04ae2cd49170a65c76c50c764416f42c0f 1908 
mccs_1.1-7.dsc
 42820be2673846f998d7a072412bba3f69fb702dcfe725aeb5310da937a2c81e 7128 
mccs_1.1-7.debian.tar.xz
 ded8e90893c8d18bd9c0fb5f59132ba8d1214560115d6f4757fd149e8d236ba8 6094 
mccs_1.1-7_source.buildinfo
Files:
 43f63dda5dcb1b5b8b04a80e4679d24f 1908 admin optional mccs_1.1-7.dsc
 b7081a8ea43c76f15f10a1da4dc7b56a 7128 admin optional mccs_1.1-7.debian.tar.xz
 ecc2fdd8482df52b4ed2f7008107995e 6094 admin optional 
mccs_1.1-7_source.buildinfo

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

iQIzBAEBCAAdFiEEAgVIKeEtDyqOZI5idFxHZtTKzf8FAlqgRWYACgkQdFxHZtTK
zf/BWBAAkZJXchnGdAbTdTJu4jSMYtWm1E58LqRxkwcHPDKVAGv865NvAgDBZ7ln
pA8LLpLMAttoHc/hWuEgIZdVScmGQnr+E2dBfNVl6pXBLz1h40u0A9lw9F/lgxZs
ZyyaolFEJ6U31b0djDaij9+EuBXrwJSK2vJRWx61mc40/NaFa0JlnQsmccUF2Jny
sGJS3I68lDq14UpmXNHVC0T534779g64mUAb62gdsRlWF30HjoGdlVOMT2wcTQIO
y38l22w6GkXR6nzytfT0TWOipLvOklXtU0DmwXDW6Uf0EinKzGc42B4BPh+mZ1GK
ZxJ+L189PpsFpKjsBz38R1ArVOIj94cR04aR24dGUqj6lZ1EenTvaGVuMVv/1GYv
P80Y9yxq82jULksXS3VZR8oZJ7Tzh+pkhAe1PClOZVzsqA8spxHW49l3fXw28jPe
cU/df5Xj7IS0aWJ9myq7K9+K43JKF/RQHLgPDQ/M/dqmoEQ7DwDRqn+2ZtcaKO0j
snXm8ostWxAy9YrRgKb58SCI0QULiPkcdtAF3zM8GfhvWk951psrKwKjNI6eXAil
7LN7HDExyJowlRVYrIX9rKAShk06JO0rpvhQXd+xI6kIHWcCipqqpksEdFadWP1j
zvCN56ZPRiXoGjd99vp2WpTXrHlaEzlitBR9zJuvfn5J0nHme6s=
=jXq4
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to