Your message dated Tue, 07 Nov 2017 13:20:28 +0000
with message-id <e1ec3no-000fys...@fasolo.debian.org>
and subject line Bug#880797: fixed in pakcs 1.14.4-2
has caused the Debian Bug report #880797,
regarding pakcs FTBFS on 64bit: Differences in regression test occurred
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.)


-- 
880797: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=880797
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: pakcs
Version: 1.14.4-1
Severity: serious

https://buildd.debian.org/status/package.php?p=pakcs&suite=sid

...
cd Examples && ./test.sh -v
---------------------------------------------------------------------
CurryCheck: a tool for testing Curry programs (version of 06/02/2017)
---------------------------------------------------------------------
Analyzing module 'testData2Xml'...
Properties to be tested:
testGenerateXMLConversions testXMLDataConversion testCleanup
Generating main test module 'TEST5519'...and compiling it...
Executing all tests...
You can now import PreludeDataToXml
You also need to generate the module PreludeDataToXml
You can now import FlatCurry_TypesDataToXml
testGenerateXMLConversions (module testData2Xml, line 12): OK
testXMLDataConversion (module testData2Xml, line 16): OK
testCleanup (module testData2Xml, line 22): OK
TOTAL NUMBER OF TESTS: 3 (UNIT: 0, PROPERTIES: 0, IO: 3)
make[4]: Leaving directory '/<<PKGBUILDDIR>>/currytools/xmldata'
make[3]: Leaving directory '/<<PKGBUILDDIR>>/currytools'
cd examples/CHR && ./test.sh -v
WARNING: residual CHR constraints: Fib.fib(19,6765) Fib.fib(17,2584) 
Fib.fib(15,987) Fib.fib(13,377) Fib.fib(11,144) Fib.fib(9,55) Fib.fib(7,21) 
Fib.fib(5,8) Fib.fib(3,3) Fib.fib(2,2) Fib.fib(4,5) Fib.fib(6,13) Fib.fib(8,34) 
Fib.fib(10,89) Fib.fib(12,233) Fib.fib(14,610) Fib.fib(16,1597) 
Fib.fib(18,4181) Fib.fib(20,10946)
WARNING: residual CHR constraints: UnionFind.~>(3,5) UnionFind.~>(4,3) 
UnionFind.~>(2,1) UnionFind.root(5) UnionFind.root(1)
Loading program "Leq"...
main10 x
{x=1} []
main11 x y z
{x=x, y=x, z=x} []
main12 x y z z'
{x=x, y=y, z=z, z'=z'} [Leq z z',Leq x y]
Loading program "Bool"...
main20 x y z
{x=True, y=True, z=True} []
main21 a b s c
{a=True, b=True, s=False, c=True} []
main22 a b s c
{a=a, b=b, s=s, c=False} [And a b False,Or a b s]
Loading program "GCD"...
runGCD $ ((gcd 16) /\ (gcd 28))
[GCD 4]
runGCD $ ((gcd 206) /\ (gcd 40))
[GCD 2]
compileCHR "GCDCHR" [gcda,gcd2]
Curry interface to CHR(Prolog) written to GCDCHR.curry
Loading program "GCDCHR"...
solveCHR $ ((gcdanswer x) /\ ((gcd 206) /\ (gcd 40)))
{x=2} True
Loading program "Fib"...
(runCHR [dup,fib1,fibn,addrule]) $ ((fib 7) x)
{x=21} [Fib 7 21,Fib 4 5,Fib 2 2,Fib 3 3,Fib 5 8,Fib 6 13]
compileCHR "FIBCHR" [fibo1,fibo2,fibo3,addrule]
Curry interface to CHR(Prolog) written to FIBCHR.curry
Loading program "FIBCHR"...
solveCHR $ (fib 20 x)
{x=10946} True
Loading program "FD"...
main50 x y
{x=1, y=1} []
main51 x
{x=3} []
main52 [x,y,z]
{x=2, y=2, z=2} []
main53 xs
{xs=[2,3,1]} []
{xs=[3,2,1]} []
{xs=[1,3,2]} []
{xs=[3,1,2]} []
{xs=[1,2,3]} []
{xs=[2,1,3]} []
main55 xs
{xs=[4,3,2,1]} []
{xs=[2,3,4,1]} []
{xs=[4,3,1,2]} []
{xs=[1,3,4,2]} []
{xs=[2,3,1,4]} []
{xs=[1,3,2,4]} []
Loading program "UnionFind"...
main60
[Root 1,Arrow 2 1,Root 4,Root 3]
main61 x
{x=1} [Root 4,Root 3,Arrow 2 1,Root 1]
main62 x y
{x=1, y=3} [Root 4,Arrow 2 1,Arrow 1 3,Root 3]
main63
[Root 5,Arrow 3 5,Arrow 4 3,Root 1,Arrow 2 1]
main64 x y
{x=1, y=5} [Root 1,Arrow 2 1,Arrow 4 3,Arrow 3 5,Root 5]
main65 x y
{x='a', y='e'} [Root 'a',Arrow 'b' 'a',Arrow 'd' 'c',Arrow 'c' 'e',Root 'e']
compileCHR "UFCHR" [makeI,unionI,findNode,findRoot,linkEq,linkTo]
Curry interface to CHR(Prolog) written to UFCHR.curry
Loading program "UFCHR"...
solveCHR $ (andCHR [make 1,make 2,make 3,make 4,make 5,union 1 2,union 3 
4,union 5 3,find 2 x,find 4 y])
{x=1, y=5} True
Loading program "Primes"...
runPrime $ (prime 20)
[Prime 2,Prime 19,Prime 17,Prime 3,Prime 13,Prime 11,Prime 7,Prime 5]
Loading program "Gauss"...
main80 x y
{x=2.0, y=1.0} []
main81 x y
{x=5.0, y=2.0} []
main82 x y
{x=2.0, y=2.0} []
main85 i
{i=0.007692307692307692} []
main86 i
{i=0.0384160756501182} []
compileCHR "GAUSSCHR" [arithrule,emptyP,constM,eliminate,bindVar]
Curry interface to CHR(Prolog) written to GAUSSCHR.curry
Loading program "GAUSSCHR"...
solveCHR $ (((3.0 :*: x) :=: 6.0) /\ (((2.0 :*: x) :+: (6.0 :*: y)) :=: 10.0))
{x=2.0, y=1.0} True


Differences in regression test occurred:
90a91
> 
Test output saved in file 'LOGFILE'.
Makefile:281: recipe for target 'runtest' failed
make[2]: *** [runtest] Error 1

--- End Message ---
--- Begin Message ---
Source: pakcs
Source-Version: 1.14.4-2

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

Debian distribution maintenance software
pp.
Mike Gabriel <sunwea...@debian.org> (supplier of updated pakcs 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: Tue, 07 Nov 2017 14:07:07 +0100
Source: pakcs
Binary: pakcs
Architecture: source
Version: 1.14.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Curry Maintainers 
<pkg-curry-maintain...@lists.alioth.debian.org>
Changed-By: Mike Gabriel <sunwea...@debian.org>
Description:
 pakcs      - Portland Aachen Kiel Curry Compiler
Closes: 880797
Changes:
 pakcs (1.14.4-2) unstable; urgency=medium
 .
   * debian/patches:
     + Add 0001-Regression-test-for-CHR-library-removed-since-it-is-.patch
       from upstream. (Closes: #880797).
Checksums-Sha1:
 6fd288c749619c520481b42e0496427e1637a45d 2150 pakcs_1.14.4-2.dsc
 28accf51d661eee4039754010bb03420ab88b0c2 11868 pakcs_1.14.4-2.debian.tar.xz
 3629993572283885893c2abd69b1091436406f6f 6433 pakcs_1.14.4-2_source.buildinfo
Checksums-Sha256:
 981d5e1d91836cdcb6618c452587064cc4399a71312a3757ed8ee1fe72f08e26 2150 
pakcs_1.14.4-2.dsc
 7a57bdfb51c0c43616e02991aa72a5b703cce7211e94bd19987151b0b1cc05e2 11868 
pakcs_1.14.4-2.debian.tar.xz
 505b94554a877d8d1af1f75424b66e0675672b2e0663b03a81c8127235e41a79 6433 
pakcs_1.14.4-2_source.buildinfo
Files:
 b9f4565c014ecfe7fec53aa2a6881986 2150 devel extra pakcs_1.14.4-2.dsc
 0b85b5dde142c967b98a0d9da951f9a7 11868 devel extra pakcs_1.14.4-2.debian.tar.xz
 b197ec41eec75719e288c8ef7ad06a5c 6433 devel extra 
pakcs_1.14.4-2_source.buildinfo

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

iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAloBsCkVHHN1bndlYXZl
ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxbncQAJPj2Wx5zIQ2qCeAi/XEDVPpYU76
8zmSIEAVYFLYkdcEz4xwgKswFWPYLDvQyGr4RAKAF4+/DszjQTFpBzOzdS4vYUgh
D292IxbPRFV05LaD9AaHJFTOHN4ip2EhRdXTCqpNiTOZIJrX4cT4JW63tFKleZ5t
o3SK4djHlaAwLXCQts+qRoflW+hZzDol5yv65559316YtxEiz104z40UllV218GS
8wr2igYweVqmgNcayiLdRCVlF8obPb25FJUPCyLDdAXfI7WIQWcxJcTXtxz2f9jk
xaXdMQwZrjMx3njbTlawibGwhMQ5S6JdoFPlXGLmMzKgfWkspeSqZgj/owfILBdx
0ZmIAzicXY583Z4GKdFVUF5v136SokU0LBbfLX4ubana2vtEyDRWTCLiEi1Kd+xB
NjoUB4hb7EjNTwPaM0eb1rdFoNY/oIzE7rwuticLaGSFwXtQYVgJUGOafo7i787u
5CjAD2bzornop4f18xIBOlngskc3vR0fEZVU80TYUlbmOfilzsocy7GO3cJmV029
q32Azpom6eCPSH0c7ciVZDPweLo88XqUvATSb34xmuwHM+rWXHLAGztH6kfaFUzR
pJ50aU78CNa5ohRwyR57uBbQhkWjNVLrPM9VpAyyPl3qt4rVGGgjP83HBCqLmTt4
iAGQiC/fT9ICSBQd
=azNb
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to