Your message dated Sat, 24 Feb 2018 12:35:17 +0000
with message-id <e1epz2r-0005le...@fasolo.debian.org>
and subject line Bug#890927: fixed in golang-golang-x-tools 
1:0.0~git20180222.0.f8f2f88+ds-1
has caused the Debian Bug report #890927,
regarding golang-golang-x-tools: FTBFS and Debci failure with golang-1.10-go
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.)


-- 
890927: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=890927
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: golang-golang-x-tools
Version: 1:0.0~git20170707.0.bce9606b+ds-1
Severity: serious

https://ci.debian.net/packages/g/golang-golang-x-tools/unstable/amd64/
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/golang-golang-x-tools.html

...
=== RUN   TestRewrites
Renamed 2 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 2 files in 2 packages.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 4 occurrences in 1 file in 1 package.
Renamed 4 occurrences in 1 file in 1 package.
Renamed 4 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 3 occurrences in 2 files in 2 packages.
Renamed 3 occurrences in 2 files in 2 packages.
Renamed 3 occurrences in 2 files in 2 packages.
Renamed 5 occurrences in 1 file in 1 package.
Renamed 5 occurrences in 1 file in 1 package.
Renamed 3 occurrences in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
Renamed 1 occurrence in 1 file in 1 package.
Renamed 2 occurrences in 1 file in 1 package.
/go/src/main/0.go:4:6: unused declared but not used
Renamed 2 occurrences in 1 file in 1 package.
--- FAIL: TestRewrites (0.17s)
        rename_test.go:1250: -offset "/go/src/main/0.go:#33" -to "F": rewritten 
file /go/src/main/0.go does not match expectation; got <<<package main
                
                type I interface{ F() }
                type J interface {
                        F()
                        g()
                }
                type A int
                
                func (A) F()
                
                type B int
                
                func (B) F()
                func (B) g()
                
                type C int
                
                func (C) F()
                func (C) g()
                
                var _, _ I = A(0), B(0)
                var _, _ J = B(0), C(0)
                >>>
                want <<<package main
                
                type I interface {
                        F()
                }
                type J interface {
                        F()
                        g()
                }
                type A int
                
                func (A) F()
                
                type B int
                
                func (B) F()
                func (B) g()
                
                type C int
                
                func (C) F()
                func (C) g()
                
                var _, _ I = A(0), B(0)
                var _, _ J = B(0), C(0)
                >>>
        rename_test.go:1250: -offset "/go/src/main/0.go:#58" -to "F": rewritten 
file /go/src/main/0.go does not match expectation; got <<<package main
                
                type I interface{ F() }
                type J interface {
                        F()
                        g()
                }
                type A int
                
                func (A) F()
                
                type B int
                
                func (B) F()
                func (B) g()
                
                type C int
                
                func (C) F()
                func (C) g()
                
                var _, _ I = A(0), B(0)
                var _, _ J = B(0), C(0)
                >>>
                want <<<package main
                
                type I interface {
                        F()
                }
                type J interface {
                        F()
                        g()
                }
                type A int
                
                func (A) F()
                
                type B int
                
                func (B) F()
                func (B) g()
                
                type C int
                
                func (C) F()
                func (C) g()
                
                var _, _ I = A(0), B(0)
                var _, _ J = B(0), C(0)
                >>>
        rename_test.go:1250: -offset "/go/src/main/0.go:#63" -to "G": rewritten 
file /go/src/main/0.go does not match expectation; got <<<package main
                
                type I interface{ f() }
                type J interface {
                        f()
                        G()
                }
                type A int
                
                func (A) f()
                
                type B int
                
                func (B) f()
                func (B) G()
                
                type C int
                
                func (C) f()
                func (C) G()
                
                var _, _ I = A(0), B(0)
                var _, _ J = B(0), C(0)
                >>>
                want <<<package main
                
                type I interface {
                        f()
                }
                type J interface {
                        f()
                        G()
                }
                type A int
                
                func (A) f()
                
                type B int
                
                func (B) f()
                func (B) G()
                
                type C int
                
                func (C) f()
                func (C) G()
                
                var _, _ I = A(0), B(0)
                var _, _ J = B(0), C(0)
                >>>
        rename_test.go:1250: -offset "/go/src/main/0.go:#33" -to "F": rewritten 
file /go/src/main/0.go does not match expectation; got <<<package main
                
                type I interface{ F() }
                type C int
                
                func (C) F()
                
                type D struct{ C }
                
                var _ I = D{}
                >>>
                want <<<package main
                
                type I interface {
                        F()
                }
                type C int
                
                func (C) F()
                
                type D struct{ C }
                
                var _ I = D{}
                >>>
        rename_test.go:1250: -offset "/go/src/main/0.go:#32" -to "g": rewritten 
file /go/src/main/0.go does not match expectation; got <<<package main
                
                type I interface{ g() }
                type C struct{ I }
                
                func (C) g() int
                
                var _ int = C{}.g()
                >>>
                want <<<package main
                
                type I interface {
                        g()
                }
                type C struct{ I }
                
                func (C) g() int
                
                var _ int = C{}.g()
                >>>
        rename_test.go:1250: -offset "/go/src/main/0.go:#30" -to "g": rewritten 
file /go/src/main/0.go does not match expectation; got <<<package main
                
                type I interface{ g() }
                type J interface{ g() }
                
                var _ = I(nil).(J)
                >>>
                want <<<package main
                
                type I interface {
                        g()
                }
                type J interface {
                        g()
                }
                
                var _ = I(nil).(J)
                >>>
        rename_test.go:1250: -offset "/go/src/main/0.go:#30" -to "g": rewritten 
file /go/src/main/0.go does not match expectation; got <<<package main
                
                type I interface{ g() }
                type J interface{ f() int }
                
                var _ = I(nil).(J)
                >>>
                want <<<package main
                
                type I interface {
                        g()
                }
                type J interface {
                        f() int
                }
                
                var _ = I(nil).(J)
                >>>
        rename_test.go:1250: -offset "/go/src/main/0.go:#30" -to "g": rewritten 
file /go/src/main/0.go does not match expectation; got <<<package main
                
                type I interface{ g() }
                type C int
                
                func (C) g()
                
                type J interface{ f() int }
                
                var _ = I(C(0)).(J)
                >>>
                want <<<package main
                
                type I interface {
                        g()
                }
                type C int
                
                func (C) g()
                
                type J interface {
                        f() int
                }
                
                var _ = I(C(0)).(J)
                >>>
=== RUN   TestDiff
--- PASS: TestDiff (11.59s)
FAIL
FAIL    golang.org/x/tools/refactor/rename      12.949s
?       golang.org/x/tools/refactor/satisfy     [no test files]
dh_auto_test: cd obj-x86_64-linux-gnu && go test -vet=off -v -p 1 -test.short 
golang.org/x/tools/benchmark/parse golang.org/x/tools/blog 
golang.org/x/tools/blog/atom golang.org/x/tools/cmd/benchcmp 
golang.org/x/tools/cmd/bundle golang.org/x/tools/cmd/callgraph 
golang.org/x/tools/cmd/compilebench golang.org/x/tools/cmd/digraph 
golang.org/x/tools/cmd/eg golang.org/x/tools/cmd/fiximports 
golang.org/x/tools/cmd/go-contrib-init golang.org/x/tools/cmd/godex 
golang.org/x/tools/cmd/godoc golang.org/x/tools/cmd/goimports 
golang.org/x/tools/cmd/gomvpkg golang.org/x/tools/cmd/gorename 
golang.org/x/tools/cmd/gotype golang.org/x/tools/cmd/goyacc 
golang.org/x/tools/cmd/guru golang.org/x/tools/cmd/guru/serial 
golang.org/x/tools/cmd/html2article golang.org/x/tools/cmd/present 
golang.org/x/tools/cmd/ssadump golang.org/x/tools/cmd/stress 
golang.org/x/tools/cmd/stringer golang.org/x/tools/cmd/tip 
golang.org/x/tools/cmd/toolstash golang.org/x/tools/container/intsets 
golang.org/x/tools/cover golang.org/x
 /tools/go/ast/astutil golang.org/x/tools/go/buildutil 
golang.org/x/tools/go/callgraph golang.org/x/tools/go/callgraph/cha 
golang.org/x/tools/go/callgraph/rta golang.org/x/tools/go/callgraph/static 
golang.org/x/tools/go/gccgoexportdata golang.org/x/tools/go/gcexportdata 
golang.org/x/tools/go/gcimporter15 golang.org/x/tools/go/internal/gccgoimporter 
golang.org/x/tools/go/loader golang.org/x/tools/go/pointer 
golang.org/x/tools/go/ssa golang.org/x/tools/go/ssa/interp 
golang.org/x/tools/go/ssa/ssautil golang.org/x/tools/go/types/typeutil 
golang.org/x/tools/go/vcs golang.org/x/tools/godoc 
golang.org/x/tools/godoc/analysis golang.org/x/tools/godoc/redirect 
golang.org/x/tools/godoc/util golang.org/x/tools/godoc/vfs 
golang.org/x/tools/godoc/vfs/gatefs golang.org/x/tools/godoc/vfs/httpfs 
golang.org/x/tools/godoc/vfs/mapfs golang.org/x/tools/godoc/vfs/zipfs 
golang.org/x/tools/imports golang.org/x/tools/playground 
golang.org/x/tools/playground/socket golang.org/x/tools/present 
golang.org/x/tool
 s/refactor/eg golang.org/x/tools/refactor/importgraph 
golang.org/x/tools/refactor/rename golang.org/x/tools/refactor/satisfy returned 
exit code 1
make[1]: *** [debian/rules:29: override_dh_auto_test] Error 1

--- End Message ---
--- Begin Message ---
Source: golang-golang-x-tools
Source-Version: 1:0.0~git20180222.0.f8f2f88+ds-1

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

Debian distribution maintenance software
pp.
Martín Ferrari <tin...@debian.org> (supplier of updated golang-golang-x-tools 
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: Sat, 24 Feb 2018 12:07:14 +0000
Source: golang-golang-x-tools
Binary: golang-golang-x-tools golang-go.tools golang-golang-x-tools-dev 
golang-go.tools-dev
Architecture: source all amd64
Version: 1:0.0~git20180222.0.f8f2f88+ds-1
Distribution: unstable
Urgency: high
Maintainer: pkg-go <pkg-go-maintain...@lists.alioth.debian.org>
Changed-By: Martín Ferrari <tin...@debian.org>
Description:
 golang-go.tools - Transitional package for golang-golang-x-tools
 golang-go.tools-dev - Transitional package for golang-golang-x-tools-dev
 golang-golang-x-tools - supplementary Go tools
 golang-golang-x-tools-dev - supplementary Go tools (development files)
Closes: 890927
Changes:
 golang-golang-x-tools (1:0.0~git20180222.0.f8f2f88+ds-1) unstable; urgency=high
 .
   * New upstream snapshot. Closes: #890927.
   * Refresh patches.
   * Add new lintian overrides.
   * Fix gccgo build by disabling a couple of tests.
   * Stop manually copying testdata.
Checksums-Sha1:
 b4cc12a8905f82db008ac17130f91a3c327c7248 2717 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1.dsc
 47e4d5f593aabd2a6ab227c8b91961f9fc49a4a1 1173094 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds.orig.tar.gz
 e76e885a0be8f9792ef69aab97412b6ec85a68e6 24440 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1.debian.tar.xz
 49c8bf276bf354dcf644188b81981d239fc8fe78 12036 
golang-go.tools-dev_0.0~git20180222.0.f8f2f88+ds-1_all.deb
 50e52a95bd63cf4681cc2cf92a7df6e5b49f8c04 12028 
golang-go.tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.deb
 4ed200c920990053e5e5e593e2d98ff799321938 952980 
golang-golang-x-tools-dev_0.0~git20180222.0.f8f2f88+ds-1_all.deb
 511394b8af996faba2519ac149b1c94271848385 7215 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.buildinfo
 4e66b6a7f2ac181e944894c2b27ccff54a8bd8cd 16087324 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.deb
Checksums-Sha256:
 7c98dbf9123a258af76ac29d0fed25eb17996647339ea3816f59c47b4964f452 2717 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1.dsc
 b149357a0cb2d6e92fd24c92efc08a5254bce24ec5e24fc84a13dd0f225c7f06 1173094 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds.orig.tar.gz
 883645e7c9ec497d4570e46f7bab2679491cc959aabd340c854b05a6a5111475 24440 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1.debian.tar.xz
 e0b0b58ddbda308cd3d8f85fa463fe787e9dfeb85b47af3ad2db3f84a1fc6f11 12036 
golang-go.tools-dev_0.0~git20180222.0.f8f2f88+ds-1_all.deb
 d2803bd6c096b3fcd1c9c868c6342c6634344ff0fd0a448828f825e4ef997716 12028 
golang-go.tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.deb
 43c98ba7d41f0ccf30a9f534968288f0832fd8e1561c2297f25a2af7013cbf94 952980 
golang-golang-x-tools-dev_0.0~git20180222.0.f8f2f88+ds-1_all.deb
 9be6d8d7e6436fd2ea9cfe69923d0421773e4bdb4d2b307b2c3d7bbbf0bad5ed 7215 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.buildinfo
 0c298ac839a4a5688fdafb5e58fd12e9a65fcbd597df1bdd181d34f06dcf5c60 16087324 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.deb
Files:
 1be98663cc5ab3baf7eab5f6b992892a 2717 devel optional 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1.dsc
 a76f5f9c158a6a824f2db643ee8ec84c 1173094 devel optional 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds.orig.tar.gz
 9be58461ddd6c3928e220727ef6bf035 24440 devel optional 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1.debian.tar.xz
 69a14ff4929d496a2487824b9ec05862 12036 oldlibs optional 
golang-go.tools-dev_0.0~git20180222.0.f8f2f88+ds-1_all.deb
 4cdced265680eda44f626634fb3395ec 12028 oldlibs optional 
golang-go.tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.deb
 ca0569019aa386b0292164bd280f2cde 952980 devel optional 
golang-golang-x-tools-dev_0.0~git20180222.0.f8f2f88+ds-1_all.deb
 63d91012a103a6badf0bacea37e9dbfd 7215 devel optional 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.buildinfo
 22bff20879937ff6f062c7be9401cf54 16087324 devel optional 
golang-golang-x-tools_0.0~git20180222.0.f8f2f88+ds-1_amd64.deb

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

iQIzBAEBCAAdFiEETe94h3mvRsa9AoOeXdjgv5Gj09oFAlqRVoEACgkQXdjgv5Gj
09oeFhAAwhMZu1u/DsFMIew66W8Uy/sF75vAc37hhrLjPo7HOS1Mkm9v0OSxUNnC
EBB/ovwR4vyMdW5Xprd7LBWBTIO/883XsmLywQ27KQlfkytYXyBrQJgTHLKKICq+
k/mHdinRjzSHImjk8RPkvQDRZTVes6CIFggIURLA8OIgFksvgPn10VBFHANBoZ0m
9Y1DBePEk3hmQZ/jIFKVhpoxWQUXlf7lFAtZvDLy2tenbJbvW12v2xJ9SF76crZX
u+XJn3QM+LWjQsjgQyzVQhQwuRJH+huhnMTPf9zdO2V66bWTlKtf30pqgV/c1Aap
+ybrqnIK0AAsnmyJ3xvL5OlnmFvtHlhwXsAdJuDUARFxSGLoAhy4gJBgEEXgRBXN
C0VuPDDXiZnQtc5W6iluFdhirpiRGbr62mYXfpRV3523ervHfblfYJpjWkd52N5L
ikFPRTd3ApYhGW1Nn5Uw/o97Ul7kd/UVGYy4fq8PxYpiZJT07/aW7LpMSGz3hWEj
vRPlM0p/q9F3RPd3x816e4bn3CVp17mrMlGsTQo1AgYkjLbwu6WytooRKXoE0WaL
NpQK5frMKjctqIgqG3f+eBOljRqjRtj6UYVaqXWECpjGbcCcJ4rlTUGR0rbt4W1g
Q7O7r5JJMGwMH5qVNVvB8fMLCSB26a/gua5xrLZ6GXuvskfvf2g=
=RbnP
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to