Your message dated Wed, 03 May 2017 06:13:00 +0000
with message-id <4df58b68-ded3-c46d-6f36-818a97322...@thykier.net>
and subject line Re: Bug#861704: unblock: 
golang-github-jacobsa-fuse/0.0~git20150806.0.9a7512a-2
has caused the Debian Bug report #861704,
regarding unblock: golang-github-jacobsa-fuse/0.0~git20150806.0.9a7512a-2
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.)


-- 
861704: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861704
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian....@packages.debian.org
Usertags: unblock

Please unblock package golang-github-jacobsa-fuse

The package has an FTBFS RC bug on i386, which is fixed with this upload (https://bugs.debian.org/860703).

unblock golang-github-jacobsa-fuse/0.0~git20150806.0.9a7512a-2

Regards,
Tobias
diff -Nru golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/changelog golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/changelog
--- golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/changelog	2015-08-07 09:59:42.000000000 +0200
+++ golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/changelog	2017-05-02 17:28:03.000000000 +0200
@@ -1,3 +1,18 @@
+golang-github-jacobsa-fuse (0.0~git20150806.0.9a7512a-2) unstable; urgency=medium
+
+  * Team upload.
+
+  [ Paul Tagliamonte ]
+  * Use a secure transport for the Vcs-Git and Vcs-Browser URL
+
+  [ Roger Shimizu ]
+  * debian/patches:
+    - Add patch to fix FTBFS on i386 platform (Closes: #860703).
+  * debian/control:
+    - Use cgit URL for Vcs-Browser.
+
+ -- Roger Shimizu <rogershim...@gmail.com>  Wed, 03 May 2017 00:28:03 +0900
+
 golang-github-jacobsa-fuse (0.0~git20150806.0.9a7512a-1) unstable; urgency=medium
 
   * New upstream snapshot.
diff -Nru golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/control golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/control
--- golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/control	2015-08-07 09:59:21.000000000 +0200
+++ golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/control	2017-05-02 17:28:03.000000000 +0200
@@ -16,8 +16,8 @@
                golang-github-jacobsa-timeutil-dev
 Standards-Version: 3.9.6
 Homepage: https://github.com/jacobsa/fuse
-Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-go/packages/golang-github-jacobsa-fuse.git;a=summary
-Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-github-jacobsa-fuse.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-jacobsa-fuse.git
+Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-jacobsa-fuse.git
 
 Package: golang-github-jacobsa-fuse-dev
 Architecture: all
diff -Nru golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/patches/0001-Fix-FTBFS-on-i386-platform.patch golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/patches/0001-Fix-FTBFS-on-i386-platform.patch
--- golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/patches/0001-Fix-FTBFS-on-i386-platform.patch	1970-01-01 01:00:00.000000000 +0100
+++ golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/patches/0001-Fix-FTBFS-on-i386-platform.patch	2017-05-02 17:28:03.000000000 +0200
@@ -0,0 +1,35 @@
+From: Roger Shimizu <rogershim...@gmail.com>
+Date: Tue, 2 May 2017 09:56:18 +0900
+Subject: Fix FTBFS on i386 platform
+
+---
+ fusetesting/stat_linux.go | 2 +-
+ internal/buffer/runtime.s | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/fusetesting/stat_linux.go b/fusetesting/stat_linux.go
+index eec3568..07da23a 100644
+--- a/fusetesting/stat_linux.go
++++ b/fusetesting/stat_linux.go
+@@ -30,7 +30,7 @@ func extractBirthtime(sys interface{}) (birthtime time.Time, ok bool) {
+ }
+ 
+ func extractNlink(sys interface{}) (nlink uint64, ok bool) {
+-	nlink = sys.(*syscall.Stat_t).Nlink
++	nlink = (uint64)(sys.(*syscall.Stat_t).Nlink)
+ 	ok = true
+ 	return
+ }
+diff --git a/internal/buffer/runtime.s b/internal/buffer/runtime.s
+index f39415a..0d9d7f6 100644
+--- a/internal/buffer/runtime.s
++++ b/internal/buffer/runtime.s
+@@ -12,7 +12,7 @@
+ // See the License for the specific language governing permissions and
+ // limitations under the License.
+ 
+-// +build amd64 arm64 ppc64 ppc64le
++// +build amd64 arm64 ppc64 ppc64le 386 arm
+ 
+ // Assembly code isn't subject to visibility restrictions, so we can jump
+ // directly into package runtime.
diff -Nru golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/patches/series golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/patches/series
--- golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/patches/series	1970-01-01 01:00:00.000000000 +0100
+++ golang-github-jacobsa-fuse-0.0~git20150806.0.9a7512a/debian/patches/series	2017-05-02 17:28:03.000000000 +0200
@@ -0,0 +1 @@
+0001-Fix-FTBFS-on-i386-platform.patch

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Dr. Tobias Quathamer:
> Package: release.debian.org
> Severity: normal
> User: release.debian....@packages.debian.org
> Usertags: unblock
> 
> Please unblock package golang-github-jacobsa-fuse
> 
> The package has an FTBFS RC bug on i386, which is fixed with this upload
> (https://bugs.debian.org/860703).
> 
> unblock golang-github-jacobsa-fuse/0.0~git20150806.0.9a7512a-2
> 
> Regards,
> Tobias

Unblocked, thanks.

~Niels

--- End Message ---

Reply via email to