[pkg-go] Bug#885695: golang-github-tjfoc-gmsm: please make the build reproducible

2017-12-29 Thread Chris Lamb
Source: golang-github-tjfoc-gmsm
Version: 1.1-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: randomness
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that golang-github-tjfoc-gmsm could not be built reproducibly.

This is because it ships (random) test output. Worryingly, one of
these is a public/private key pair which I hope nobody is using!

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/rules  2017-12-29 08:35:50.385606416 +
--- b/debian/rules  2017-12-29 08:46:00.548923827 +
@@ -2,3 +2,7 @@
 
 %:
dh $@ --buildsystem=golang --with=golang
+
+override_dh_auto_test:
+   dh_auto_test
+   find -type f \( -name '*.pem' -or -name 'ofile' \) -delete
___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers

[pkg-go] Bug#885696: dh-golang: Avoid "Use of uninitialized value $args[192] in join or string" warnings

2017-12-29 Thread Chris Lamb
Source: dh-golang
Version: 1.26
Severity: normal
Tags: patch

Hi,

Due to the chunking algorithm used by dh_golang, we currently print
hundreds of warnings along the lines of:

  Use of uninitialized value $args[192] in join or string at /usr/bin/dh_golang 
line 42.
  Use of uninitialized value $args[193] in join or string at /usr/bin/dh_golang 
line 42.
  Use of uninitialized value $args[194] in join or string at /usr/bin/dh_golang 
line 42.
  […]

This is due to the manual list splicing in exec_chunked which will
return undefined variables.

Patch attached that uses Perl's slice operator instead. It seems to
work on at least golang-github-tjfoc-gmsm.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/script/dh_golang b/script/dh_golang
index 4b577a8..73ded48 100755
--- a/script/dh_golang
+++ b/script/dh_golang
@@ -55,7 +55,7 @@ sub exec_chunked {
 
 my @result;
 for (my $i = 0; $i < @list; $i += CHUNKSIZE) {
-push @result, exec_single($cmd, @list[$i .. $i + CHUNKSIZE - 1]);
+push @result, exec_single($cmd, splice(@list, $i, CHUNKSIZE));
 }
 
 return @result;
___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers

Re: [pkg-go] Bug#837500: fixed in golang-gopkg-flosch-pongo2.v3 3.0-1

2017-12-29 Thread Clément Hermann
Control: close 839748

On 28/12/2017 17:13, gregor herrmann wrote:
> On Thu, 28 Dec 2017 16:00:17 +, Clément Hermann wrote:
> 
>> Format: 1.8
>> Date: Mon, 18 Dec 2017 19:33:18 +0100
>> Source: golang-gopkg-flosch-pongo2.v3
>> Binary: golang-gopkg-flosch-pongo2.v3-dev
>> Architecture: source all
>> Version: 3.0-1
>> Distribution: unstable
>> Urgency: medium
>> Maintainer: Debian Go Packaging Team 
>> 
>> Changed-By: Clément Hermann 
>> Description:
>>  golang-gopkg-flosch-pongo2.v3-dev - Django-syntax like template-engine for 
>> Go
>> Closes: 837500
>> Changes:
>>  golang-gopkg-flosch-pongo2.v3 (3.0-1) unstable; urgency=medium
>>  .
>>[ Jonathan Carter ]
>>* Initial upload to Debian (Closes: #837500)
> 
> Looks like this upload closed the wrong bug, 837500 instead of
> 839748.
Ooops... Sorry about that. I should have checked the changelog more
thoroughtly.

> 837500 can be closed as well, so the only "harm" currently is that 839748
> is still open.

Not anymore ;)

Thanks for noticing!


Cheers,


nodens

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Bug#885726: golang-github-hashicorp-go-sockaddr: Source includes "cmd/sockaddr/vendor/vendor.json" listed in Files-Excluded header

2017-12-29 Thread Chris Lamb
Source: golang-github-hashicorp-go-sockaddr
Version: 0.0~git20170627.41949a1+ds-1
Severity: important
User: la...@debian.org
Usertags: files-excluded

Dear Maintainer,

golang-github-hashicorp-go-sockaddr lists "cmd/sockaddr/vendor/*" in the 
Files-Excluded field
in debian/copyright but the source tree contains 
cmd/sockaddr/vendor/vendor.json.

This might be a DFSG violation, the referenced files are probably not
attributed in debian/copyright or the upstream tarball was simply not
repacked as intended. Alternatively, the field is simply out of date.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of dh-golang_1.27_source.changes

2017-12-29 Thread Debian FTP Masters
dh-golang_1.27_source.changes uploaded successfully to localhost
along with the files:
  dh-golang_1.27.dsc
  dh-golang_1.27.tar.xz
  dh-golang_1.27_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] dh-golang_1.27_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 29 Dec 2017 17:26:46 +0100
Source: dh-golang
Binary: dh-golang
Architecture: source
Version: 1.27
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Dr. Tobias Quathamer 
Description:
 dh-golang  - debhelper add-on for packaging software written in Go (golang)
Closes: 885696
Changes:
 dh-golang (1.27) unstable; urgency=medium
 .
   * Team upload.
   * Remove slash from Vcs-Browser URL
   * Update to Standards-Version 4.1.3, no changes needed
   * Avoid "Use of uninitialized value $args[192] in join or string" warnings.
 Thanks to Chris Lamb  (Closes: #885696)
Checksums-Sha1:
 1c3f733f3250cdd8c3ecc078d412e3d9eea8f7ab 1693 dh-golang_1.27.dsc
 c9a4f0ce50e035dcf323f957af65fb8b7bec6354 11288 dh-golang_1.27.tar.xz
 18b34fbf560b430488d06af3f4576b1aefe1e423 5356 dh-golang_1.27_amd64.buildinfo
Checksums-Sha256:
 ad92e5c42cf4a3ff6856f4475e05f98c7cf3970f779c295e555443c618308438 1693 
dh-golang_1.27.dsc
 caec004ff27b304bbf09f8aa410e4d8ac878cf7d20be41978490aff551008087 11288 
dh-golang_1.27.tar.xz
 0d31f5c101e2d7db53555df7a7f44ce361c7013122148183facb2efc825dbc70 5356 
dh-golang_1.27_amd64.buildinfo
Files:
 012515301f619978fe9b5add8e943d53 1693 devel optional dh-golang_1.27.dsc
 24a8fedc5ca63c6efb0e486d9f1b9229 11288 devel optional dh-golang_1.27.tar.xz
 101d16d759c1734fd5d78cbff7d97e4f 5356 devel optional 
dh-golang_1.27_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE0cuPObxd7STF0seMEwLx8Dbr6xkFAlpGbc4ACgkQEwLx8Dbr
6xk+AxAAkrfXsYz4GnXzfCHc+kHVsfAFaPThd02n7lMUH7lhKmK1/T2xkZ9K7PD3
TuOzZs56l+rl7XN+/8hVdZlqac4O2p8MyMgEVONsRalpxVM90zBf5JxoOKy++Zde
nHpprTEcG3X//bzg75aP9kEm23EoF8CxFX3KEXQBL2CmAxDOQn/U1fJiEvG57Pyp
cBwtfmPrEQqPNRHmA9/6ArhT3qUE8Qk9/rRj0RzAuqVwcVGLVROI7rdOSMm2yhX3
lop4zbxdRtEYu3o+9gOe9NvGscDCSYrpR+/7gPxgtLdvUiJPWhppPo4czizU26Nf
Wurljhxw/Pc7aj7v99rA1zv5UVnD8i+gHoIt3SnO5Sspjec9Gf8ivEfznsYcEgjU
zj76bRu6z2+dwi/JRuF8uC9b98/fGlT1y6u3qmXJBXs/m9GjLIOzo7QjhG8GukZw
v4i9U8B6SBAvN7BGU7NIu+GlPTPhJixEkJjoHdKbUtzMNEXeX7eVGcpF+cbkF2tJ
MfICg3w1/uaf0g1A6baglHdwUUdLUUwCNM57bEwhzpm1C3VFzASTntUGrptOglL0
poVsrAjcZ9rHsbhHHwadV+m61qx8H8cp7SICmGR+dQs81orbSjYOfkrr/H9NcnU1
1Qm1HucSLNRs8uEuNqxUUy1bTxn/AHfc/8akPU20tbbuxBpUAQM=
=lcjj
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Bug#885696: marked as done (dh-golang: Avoid "Use of uninitialized value $args[192] in join or string" warnings)

2017-12-29 Thread Debian Bug Tracking System
Your message dated Fri, 29 Dec 2017 16:48:54 +
with message-id 
and subject line Bug#885696: fixed in dh-golang 1.27
has caused the Debian Bug report #885696,
regarding dh-golang: Avoid "Use of uninitialized value $args[192] in join or 
string" warnings
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.)


-- 
885696: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=885696
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: dh-golang
Version: 1.26
Severity: normal
Tags: patch

Hi,

Due to the chunking algorithm used by dh_golang, we currently print
hundreds of warnings along the lines of:

  Use of uninitialized value $args[192] in join or string at /usr/bin/dh_golang 
line 42.
  Use of uninitialized value $args[193] in join or string at /usr/bin/dh_golang 
line 42.
  Use of uninitialized value $args[194] in join or string at /usr/bin/dh_golang 
line 42.
  […]

This is due to the manual list splicing in exec_chunked which will
return undefined variables.

Patch attached that uses Perl's slice operator instead. It seems to
work on at least golang-github-tjfoc-gmsm.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/script/dh_golang b/script/dh_golang
index 4b577a8..73ded48 100755
--- a/script/dh_golang
+++ b/script/dh_golang
@@ -55,7 +55,7 @@ sub exec_chunked {
 
 my @result;
 for (my $i = 0; $i < @list; $i += CHUNKSIZE) {
-push @result, exec_single($cmd, @list[$i .. $i + CHUNKSIZE - 1]);
+push @result, exec_single($cmd, splice(@list, $i, CHUNKSIZE));
 }
 
 return @result;
--- End Message ---
--- Begin Message ---
Source: dh-golang
Source-Version: 1.27

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

Debian distribution maintenance software
pp.
Dr. Tobias Quathamer  (supplier of updated dh-golang 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: Fri, 29 Dec 2017 17:26:46 +0100
Source: dh-golang
Binary: dh-golang
Architecture: source
Version: 1.27
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Dr. Tobias Quathamer 
Description:
 dh-golang  - debhelper add-on for packaging software written in Go (golang)
Closes: 885696
Changes:
 dh-golang (1.27) unstable; urgency=medium
 .
   * Team upload.
   * Remove slash from Vcs-Browser URL
   * Update to Standards-Version 4.1.3, no changes needed
   * Avoid "Use of uninitialized value $args[192] in join or string" warnings.
 Thanks to Chris Lamb  (Closes: #885696)
Checksums-Sha1:
 1c3f733f3250cdd8c3ecc078d412e3d9eea8f7ab 1693 dh-golang_1.27.dsc
 c9a4f0ce50e035dcf323f957af65fb8b7bec6354 11288 dh-golang_1.27.tar.xz
 18b34fbf560b430488d06af3f4576b1aefe1e423 5356 dh-golang_1.27_amd64.buildinfo
Checksums-Sha256:
 ad92e5c42cf4a3ff6856f4475e05f98c7cf3970f779c295e555443c618308438 1693 
dh-golang_1.27.dsc
 caec004ff27b304bbf09f8aa410e4d8ac878cf7d20be41978490aff551008087 11288 
dh-golang_1.27.tar.xz
 0d31f5c101e2d7db53555df7a7f44ce361c7013122148183facb2efc825dbc70 5356 
dh-golang_1.27_amd64.buildinfo
Files:
 012515301f619978fe9b5add8e943d53 1693 devel optional dh-golang_1.27.dsc
 24a8fedc5ca63c6efb0e486d9f1b9229 11288 devel optional dh-golang_1.27.tar.xz
 101d16d759c1734fd5d78cbff7d97e4f 5356 devel optional 
dh-golang_1.27_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE0cuPObxd7STF0seMEwLx8Dbr6xkFAlpGbc4ACgkQEwLx8Dbr
6xk+AxAAkrfXsYz4GnXzfCHc+kHVsfAFaPThd02n7lMUH7lhKmK1/T2xkZ9K7PD3
TuOzZs56l+rl7XN+/8hVdZlqac4O2p8MyMgEVONsRalpxVM90zBf5JxoOKy++Zde
nHpprTEcG3X//bzg75aP9kEm23EoF8CxFX3KEXQBL2CmAxDOQn/U1fJiEvG57Pyp
cBwtfmPrEQqPNRHmA9/6ArhT3qUE8Qk9/rRj0RzAuqVwcVGLVROI7rdOSMm2yhX3
lop4zbxdRtEYu3o+9gOe9NvGscDCSYrpR+/7gPxgtLdvUiJPWhppPo4czizU26Nf
Wurljhxw/Pc7aj7v99rA1zv5UVnD8i+gHoIt3SnO5Sspjec9Gf8ivEfznsYcEgjU
zj76bRu6z2+dwi/JRuF8uC9b98/fGlT1y6u3qmXJBXs/m9GjLIOzo7QjhG8GukZw
v4i9U8B6SBAvN7BGU7NIu+GlPTPhJixEkJjoHdKbUtzMNEXeX7eVGcpF+cbkF2tJ
MfICg3w1/uaf0g1A6baglHdwUUdLUUwCNM57bEwhzpm1C3VFzASTntUGrptOglL0
poVsrAjcZ9rHsb

[pkg-go] golang-gopkg-ini.v1_1.32.0-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 29 Dec 2017 12:37:55 -0600
Source: golang-gopkg-ini.v1
Binary: golang-gopkg-ini.v1-dev
Architecture: source
Version: 1.32.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Michael Lustfield 
Description:
 golang-gopkg-ini.v1-dev - INI file read and write functionality in Go
Changes:
 golang-gopkg-ini.v1 (1.32.0-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream release.
Checksums-Sha1:
 ce37e4f795d7cbb199a7fa125f747635368c27c1 2191 golang-gopkg-ini.v1_1.32.0-1.dsc
 049de307f437d661561a69bc828bf35d2cbfea9c 42752 
golang-gopkg-ini.v1_1.32.0.orig.tar.gz
 923c522bb4140e0ec6e5e3eb38bc2aa59a26a981 2084 
golang-gopkg-ini.v1_1.32.0-1.debian.tar.xz
 33d76c704437d28412852f64516e1581502334bc 6301 
golang-gopkg-ini.v1_1.32.0-1_amd64.buildinfo
Checksums-Sha256:
 7cc6e5a765647114f07afaed6af2e47a6101cb089332e6b20329c43e0640f015 2191 
golang-gopkg-ini.v1_1.32.0-1.dsc
 4cbad469d90f400b0001939110995edb26aeb2a30e50d75bc377afc7b3b6ef4a 42752 
golang-gopkg-ini.v1_1.32.0.orig.tar.gz
 dd08e701b93eb7915e9f17b6488b144625059dd7f939d3ef4d3c2104d6b19dee 2084 
golang-gopkg-ini.v1_1.32.0-1.debian.tar.xz
 6a20046daed4dbc023956ee3271d2057f1aea15e32940cf3270d76fcab99dd78 6301 
golang-gopkg-ini.v1_1.32.0-1_amd64.buildinfo
Files:
 a165b5b5b9367f2436eb735d36bb6a96 2191 devel extra 
golang-gopkg-ini.v1_1.32.0-1.dsc
 6cb2d4b5654eb4afc5efc1916d29ae26 42752 devel extra 
golang-gopkg-ini.v1_1.32.0.orig.tar.gz
 6b58ddfc4d38d7f96196035f0f620b63 2084 devel extra 
golang-gopkg-ini.v1_1.32.0-1.debian.tar.xz
 bb9f36498f7ca90476660aacaa50995f 6301 devel extra 
golang-gopkg-ini.v1_1.32.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJKBAEBCAA0FiEEBs1j101ZjEpH5CyWA6iJGnZa0IUFAlpGmGUWHG1pY2hhZWxA
bHVzdGZpZWxkLm5ldAAKCRADqIkadlrQhc/RD/9fCeQqeufD3ki9jvHP4VH/7V7O
P8GmC0nVNnw73z1qeIPzr+WJfIm003BxFkJxEHmoJRFUqWy4llQq7HSCJJjb6PNW
7bU3UfjBDa1uXa7f8Gl/swTA1HQHXxfJ60IYA6Fulef1SjaSuFBm9QnfsuvrVg9w
WvauoO25qGqC2GCpOZ6t3tQtMuaacViD0a/SksV8B4rKs5K+M1Kq/t2qtZzrDMOe
reqrYrPv0gdd4wf3+MzdehHJFk9ltfZxDMCmf371khOsLE8Vbk0T+5qS0kRKhUs4
ZXj7YfSKI8gAIfR02HRtKCSrZHzCCbt/fWfHdJmX4OSKHX0hLDZ+WExBqjCPNj5d
/md/Aw5T2tuu4590d8QhanuuyGZC25Y1X/GSAGr5bGxRaqk6MLUY3Cc8MQPvLD7l
8f0Fj3FZKysJGc1cHYvYa+H70j46ArjJxpalbyBgGeRO8Qj1+OlkxxHx6es3Bc/v
1kkvTSFM9JbAHEFichnzxOqGNKF79l+fudnmB9Qjmr/AGz67kTSM1wAaZaTLs68T
6D+fuMmZKLt3tslWffcOU81cjieCrl/HTrJAcHfgNEEdaPkZTGD0Ms5gbK4u3srX
0blAr6Pj118P7eotYl/WL0J2wsRWVvj9ud5UC3ltw6kurWjy4XOquhW8uF/Lr3zQ
yi04a4VRjD3Y6uLaSg==
=gp9L
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-ini.v1_1.32.0-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-ini.v1_1.32.0-1_source.changes uploaded successfully to localhost
along with the files:
  golang-gopkg-ini.v1_1.32.0-1.dsc
  golang-gopkg-ini.v1_1.32.0.orig.tar.gz
  golang-gopkg-ini.v1_1.32.0-1.debian.tar.xz
  golang-gopkg-ini.v1_1.32.0-1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-code.gitea-sdk_0.0~git20171220.79eee8f-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 27 Dec 2017 19:02:14 -0600
Source: golang-code.gitea-sdk
Binary: golang-code.gitea-sdk-dev
Architecture: source
Version: 0.0~git20171220.79eee8f-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Michael Lustfield 
Description:
 golang-code.gitea-sdk-dev - SDK implementation to interact with the Gitea API
Changes:
 golang-code.gitea-sdk (0.0~git20171220.79eee8f-1) unstable; urgency=medium
 .
   * New upstream build.
Checksums-Sha1:
 87033f6d26fd85767d8b18c302a50b0245fdcc4f 2323 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1.dsc
 de051025fcc1aac976ea512bfdc15127b7cb5985 19848 
golang-code.gitea-sdk_0.0~git20171220.79eee8f.orig.tar.xz
 ae6fc50a96f8b92746291138b984149e0b513302 2132 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1.debian.tar.xz
 7144834a937f4d850622dc8830222d75ed8a490f 5815 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1_amd64.buildinfo
Checksums-Sha256:
 db158a7dea7f8d78c8b95b42a6fb75349cadf5780479bbfab38d2aedd456c985 2323 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1.dsc
 f7ec76af1e62021805fba0e0750bb82d73ec44bc451b7c49624d9025e082fef9 19848 
golang-code.gitea-sdk_0.0~git20171220.79eee8f.orig.tar.xz
 cd0803beb6e7bcf7794712b9cba259df1c8e57709e13326e2b3655da65299f83 2132 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1.debian.tar.xz
 312125292029d434c809880cc455b25c760447800c4518b0c4f287a944b39878 5815 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1_amd64.buildinfo
Files:
 ab379845de1d68fc37a19debe327 2323 devel extra 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1.dsc
 0995a8cad0673018c12e976625adfc70 19848 devel extra 
golang-code.gitea-sdk_0.0~git20171220.79eee8f.orig.tar.xz
 333122c2fecd69e973382c0f236d95fd 2132 devel extra 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1.debian.tar.xz
 946c447dc34009f66c60e84879c456c5 5815 devel extra 
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAA0FiEEBs1j101ZjEpH5CyWA6iJGnZa0IUFAlpGml8WHG1pY2hhZWxA
bHVzdGZpZWxkLm5ldAAKCRADqIkadlrQheO4D/jbJHshtk9YtBJrHT3i9JGitc0r
bgY6d/+emQqU03228ovDWdLdbRWxITUHE4E/BHWfx09874iYvhaIBd8ibz8715cT
lPi2xkuJcyS22qGMUsfePt09VWGF03UpXz7oHihyAbA+4UzeCqMA/bGN0OviyMWy
MrbuiY2f8EApzxmCBUtK0MLlF3tFpa9M5cqZ9iG4spBUTNRmpq/FsY2lZR2qpQS9
oBme1CKJFKRcbpptLXExBgb/TGtGTKyq3MF2V+Cffo5qLiimgKG4bNhpZMAEyXD1
EXtjRp26seOT9saNMYG5XxbDWTM10DKSe8rhWNKss/CUBqyHKUFadhLgwnWWi5Ix
ssO3WcDh0YMI3HyzmLjGxkLZYeZXn/KBCrhj8kD6srAKPd5bk3cV95sUsWHejaBK
Q552RRCRcS5zAOdEqjUUvocM1/4bYQqEuWG56ptskWNOu8hDtQF4QyF3clScovKg
0O3QGid2rL5Xgi3UQapldOF9huiCldOm1CNtoUawKRvgTkY81y4g6enGyr8s1WLb
iDxacUdL21FDUJt9QsZkRrvlAjM3ABRJSD9A+jA8zsTDb3Nt5dJAp8jYxCSPSXmj
8XjA1C6Uhj4gijkbXe1fE00xf4x31DwKHDmSspMODuNsV17+cI7U+ZWv+c2fYJwj
v4snjD9yG8byh2gd
=/GaV
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-code.gitea-sdk_0.0~git20171220.79eee8f-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-code.gitea-sdk_0.0~git20171220.79eee8f-1_source.changes uploaded 
successfully to localhost
along with the files:
  golang-code.gitea-sdk_0.0~git20171220.79eee8f-1.dsc
  golang-code.gitea-sdk_0.0~git20171220.79eee8f.orig.tar.xz
  golang-code.gitea-sdk_0.0~git20171220.79eee8f-1.debian.tar.xz
  golang-code.gitea-sdk_0.0~git20171220.79eee8f-1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-code.gitea-git_0.0~git20171222.4ec3654-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-code.gitea-git_0.0~git20171222.4ec3654-1_source.changes uploaded 
successfully to localhost
along with the files:
  golang-code.gitea-git_0.0~git20171222.4ec3654-1.dsc
  golang-code.gitea-git_0.0~git20171222.4ec3654.orig.tar.xz
  golang-code.gitea-git_0.0~git20171222.4ec3654-1.debian.tar.xz
  golang-code.gitea-git_0.0~git20171222.4ec3654-1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-code.gitea-git_0.0~git20171222.4ec3654-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 29 Dec 2017 12:46:42 -0600
Source: golang-code.gitea-git
Binary: golang-code.gitea-git-dev
Architecture: source
Version: 0.0~git20171222.4ec3654-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Michael Lustfield 
Description:
 golang-code.gitea-git-dev - Go module that provides git access through shell
Changes:
 golang-code.gitea-git (0.0~git20171222.4ec3654-1) unstable; urgency=medium
 .
   * New upstream revision.
Checksums-Sha1:
 5401423102c6af8061ff8600815dc5d1313d28b5 2512 
golang-code.gitea-git_0.0~git20171222.4ec3654-1.dsc
 bc0590160d8749268619990cc9e1a29a2c25eaae 33856 
golang-code.gitea-git_0.0~git20171222.4ec3654.orig.tar.xz
 149a37d1d7abeb82a743eb87a2efa84ce90ba791 2196 
golang-code.gitea-git_0.0~git20171222.4ec3654-1.debian.tar.xz
 380a23dd13dc4935331aa54749a87eb0acb22564 7566 
golang-code.gitea-git_0.0~git20171222.4ec3654-1_amd64.buildinfo
Checksums-Sha256:
 a5e4d0beed956e1bbf2c3052128a70ff736b5ac490d56a03c6575f624bb3f9ad 2512 
golang-code.gitea-git_0.0~git20171222.4ec3654-1.dsc
 9a4f0c5c4e849156e6cc8f303a0fb2be6ea08709e8cdf027df44f936561937bf 33856 
golang-code.gitea-git_0.0~git20171222.4ec3654.orig.tar.xz
 95b5fa63535a9959eebb0d2e85c28b1eb04bb3b5045d80743df0bf9e5253f1aa 2196 
golang-code.gitea-git_0.0~git20171222.4ec3654-1.debian.tar.xz
 aa1a92ac85124a018327c5e885234a3a8fa82152455a848588e5a935f903858e 7566 
golang-code.gitea-git_0.0~git20171222.4ec3654-1_amd64.buildinfo
Files:
 dcc8478d57e7cdafdc0d2cb47117bbf9 2512 devel extra 
golang-code.gitea-git_0.0~git20171222.4ec3654-1.dsc
 fb636d8800b94d8ff866d7e02ef5c71c 33856 devel extra 
golang-code.gitea-git_0.0~git20171222.4ec3654.orig.tar.xz
 fef601831de9534d2e07c54ed9a5ea01 2196 devel extra 
golang-code.gitea-git_0.0~git20171222.4ec3654-1.debian.tar.xz
 bf493d2424fb14ab2df0e70a4313da04 7566 devel extra 
golang-code.gitea-git_0.0~git20171222.4ec3654-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJKBAEBCAA0FiEEBs1j101ZjEpH5CyWA6iJGnZa0IUFAlpGml8WHG1pY2hhZWxA
bHVzdGZpZWxkLm5ldAAKCRADqIkadlrQhVECEACsfFIEF5yPcQG0TQECI9QHxxjq
GD9ksaWlRSCjriOtAn6UTAFIf0hlQi+SJL5YlMjtiBmnfy2cUc5NA2waug9onjLH
Cmypkh1ljHKSM4IpKYqvPVxejOkIZEFKMFe7QgIJO8KyXiKeqlKF2x8scW38ydM1
CJu6BTS6tJi+EASpUcW+hf+FPAEvCbRYX5+iFXHD852wFKuIAXcEeB39KWIbPlnU
wFdmnqAGByEY1Eh9ij98Kc66HSBaKsgZdSMmSoh0iuXeLHP6HWk//PQBnGPHTkmc
oUz9mDrqegofc35+QiQ2LW6+O5Um2G3qlW12iVrwfgHJSYCPr0Qooc3C11sq5Him
lg+rC/+hSNTRCseSdNRuMfO/lsGL5U5VKh6mjSA4lTXL1jGEemNclJ9fnyFBZo34
1mArNQLdwqSJWeWFUsTyQUTC0Xfu1T+IYy+CU8yCRbP3ipV6bj15LZHpp3DAcf9t
3FmXi/0xvB1lpzPmoTwOM3Aj8Zq7q79XnrNVYTzCbRHYi3X2UkYCrTyYPZBKB4Wv
O4I4kLM+y9zk9X7Tjp9fUCYwKKA0aG7erFmv0ge0ebyI0xTvwyzd9y0ZsNaA4wrP
bWUWTuqpg3pSeYmAecg1OMhaaITt46neKeG28QJl+Etdt02lUBuoupe477Yi3Oy5
wWzj20syeI85WKvb3w==
=RDmk
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Bug#885780: dh-golang: support comma-separated paths in Go-Import-Path

2017-12-29 Thread Alexandre Viau
Package: dh-golang
Version: 1.26
Severity: normal
Tags: patch

Some packages can be imported from several import paths.
XS-Go-Import-Path can reflect this by using a comma-separated list
of known import paths for the package.

For example, the following format would now be valid:
```
XS-Go-Import-Path: github.com/go-mgo/mgo,
   gopkg.in/mgo.v2,
   labix.org/v2/mgo,
   launchpad.net/mgo
```

Would you please apply this patch?

I am willing to make an upload after that if you want. I just wanted
somebody to review the patch.

See the related dh-make-golang bugs:
 - issue: https://github.com/Debian/dh-make-golang/issues/74
 - PR: https://github.com/Debian/dh-make-golang/pull/75

Cheers,

-- 
Alexandre Viau
av...@debian.org
From ee0165985d392d1f6dcb8c169a1fdff039fab0a5 Mon Sep 17 00:00:00 2001
From: aviau 
Date: Fri, 29 Dec 2017 15:08:56 -0500
Subject: [PATCH] support comma-separated paths in Go-Import-Path

Some packages can be imported from several import paths.
XS-Go-Import-Path can reflect this by using a comma-separated list
of known import paths for the package.

For example, the following format would now be valid:
```
XS-Go-Import-Path: github.com/go-mgo/mgo,
   gopkg.in/mgo.v2,
   labix.org/v2/mgo,
   launchpad.net/mgo
```
---
 lib/Debian/Debhelper/Buildsystem/golang.pm | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/lib/Debian/Debhelper/Buildsystem/golang.pm b/lib/Debian/Debhelper/Buildsystem/golang.pm
index e13fa4d..ed342db 100644
--- a/lib/Debian/Debhelper/Buildsystem/golang.pm
+++ b/lib/Debian/Debhelper/Buildsystem/golang.pm
@@ -239,7 +239,12 @@ sub _set_dh_gopkg {
 
 my $control = Dpkg::Control::Info->new();
 my $source = $control->get_source();
-$ENV{DH_GOPKG} = $source->{"XS-Go-Import-Path"};
+# XS-Go-Import-Path can contain several paths. We use the first one.
+# Example: XS-Go-Import-Path: github.com/go-mgo/mgo,
+# gopkg.in/mgo.v2,
+# labix.org/v2/mgo,
+# launchpad.net/mgo
+$ENV{DH_GOPKG} = (split ",", $source->{"XS-Go-Import-Path"})[0];
 }
 
 sub _set_gopath {
-- 
2.14.2



signature.asc
Description: OpenPGP digital signature
___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers

[pkg-go] Processing of golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2.dsc
  golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2.debian.tar.xz
  golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 16:54:03 -0500
Source: golang-gopkg-xmlpath.v2
Binary: golang-gopkg-xmlpath.v2-dev
Architecture: source
Version: 0.0~git20150820.0.860cbec-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-gopkg-xmlpath.v2-dev - strict subset of the XPath specification for the 
Go language
Changes:
 golang-gopkg-xmlpath.v2 (0.0~git20150820.0.860cbec-2) unstable; urgency=medium
 .
   [ Paul Tagliamonte ]
   * Use a secure transport for the Vcs-Git and Vcs-Browser URL
 .
   [ Alexandre Viau ]
   * Move to salsa.debian.org
Checksums-Sha1:
 c2d198e4f45cdbae07d2937a9dace31bba86d5ef 2345 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2.dsc
 7414cafc750d5acedcc741ff0e8c05e1ed295d83 2060 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2.debian.tar.xz
 00bd1bcf434f2f86c4af63e768668c713664fb45 5939 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2_source.buildinfo
Checksums-Sha256:
 3517233169a0299448d09fddcc9520b3fc583bde0831d5ad9e299784e33ad8a1 2345 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2.dsc
 b077e5ff8344adb5c9d2e92235658aeeabcf0b37e62c49fc4e834d8b5352875c 2060 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2.debian.tar.xz
 87616c1d2de2312bcf0884280eb9c5c7114d9fa54dd250602c9b2aed702f8637 5939 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2_source.buildinfo
Files:
 e44c756c1448df85ab8ca8625a1bf6fa 2345 devel extra 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2.dsc
 59840caf8fe3b41b7e2de3148bfa9b9a 2060 devel extra 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2.debian.tar.xz
 068e738b98f675cc439fcd3890b81df4 5939 devel extra 
golang-gopkg-xmlpath.v2_0.0~git20150820.0.860cbec-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpGubwRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadMuRAAlofcOKGbbC/8qUGTA1ThdNojpHtsgm8P
1KYc9DFZaZ9PXt5Kg81RRH3kKpiMyD8crzyhtU8jgzZCeJOGpyjglIYHXQjg3kme
DBNAp+krRz4aFqaEJRWWmsRML0pyBA7ZIs+g63TXFlym2xj3Aw1IKb6fgaVMhP5G
mV90OI5hjpkDmHc6MxAuHnIyvImiOHnC1KuCk8k0Oao28NbFMMjWOdkYF7U8F/FB
eQSBQ8mhecTja1d2DmnRCW3HM02z5xWdep0CxeprlYiEaOx/LxMmglC7Tu0DCGHt
Bh4d+L0jt+INVHISd/yOB3EzW0IuR8aLEuAKhrfTflJD522BsDqf+W85f2tOopf0
jOxM1uS+ffU+rjCc6z+tw0Ob0T0Ki9VWBBKbIs9sgEWpoCuGqFKfNHt/j5ADHZS8
GE0MpxT28W0ahtJm7nOJfLsfSTTfIh6k4PzCVuUnb3njzBTSa8JyhcVFEmYCgpv5
JvOkoCXRUkfLyHfruPsiHDaQ7u3u7YwVHF1J9hrYBvqXZpM/BCyLPVZNlpWiJugZ
NWnZXDoUVnycjnTJGgTtUEbJ2FhdHIYD28A4Drf1X6AAuRs2pOFGpMWfWjsXFzYg
MBuFzP4+UtgOt1UZl0QkxyMC/qMoH0bmqHhkftiYVvoqISws0dCns2Jpoj6Y9hJR
ux/ujMcxvug=
=QxV7
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2.dsc
  golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2.debian.tar.xz
  golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1_source.changes uploaded 
successfully to localhost
along with the files:
  golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1.dsc
  golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58.orig.tar.xz
  golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1.debian.tar.xz
  golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 17:17:25 -0500
Source: golang-gopkg-tomb.v2
Binary: golang-gopkg-tomb.v2-dev
Architecture: source
Version: 0.0~git20161208.d5d1b58-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-gopkg-tomb.v2-dev - API to track the lifecyle of Golang goroutines, and 
provide clean
Changes:
 golang-gopkg-tomb.v2 (0.0~git20161208.d5d1b58-1) unstable; urgency=medium
 .
   [ Paul Tagliamonte ]
   * Team upload.
   * Use a secure transport for the Vcs-Git and Vcs-Browser URL
   * Remove Built-Using from arch:all -dev package
 .
   [ Michael Hudson-Doyle ]
   * New upstream release.
 .
   [ Alexandre Viau ]
   * Move to XS-Go-Import-Path.
   * Move to salsa.debian.org.
Checksums-Sha1:
 0d61ff1d6c7bfa760c53c0f39d62f80f7cf05f9c 2328 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1.dsc
 8b2631977e4e9be39af2574bc72b9e5035e3b820 5040 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58.orig.tar.xz
 a747e5e9fa69a94cbb174869b06dfce64d6f32dd 2108 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1.debian.tar.xz
 89fe80080439cdcfceff09c15e9e6c4fef1d21d4 5617 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1_source.buildinfo
Checksums-Sha256:
 6b3fe6785520fb551f09bf59a79712299026d96ff20947e8a94f6d6d69b5 2328 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1.dsc
 f812350c1d9dd50ddfcf9794b67e4a9b45e003b280c4ab6fa16a4b2bf20e897e 5040 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58.orig.tar.xz
 6b30a6f650193650194e78342dde17e8b2e42622392fc59106d81eaf443a0640 2108 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1.debian.tar.xz
 7790ccb3d98bdf2679e21fca4245270a957195f2b9e64b1382ea1660b0445fbe 5617 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1_source.buildinfo
Files:
 25e1738e80be225746de405a01812a42 2328 devel extra 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1.dsc
 7ac61fbbf02cf9363e26e31ca0ab56da 5040 devel extra 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58.orig.tar.xz
 16b30b116e9f4f8272ed591bd5a43442 2108 devel extra 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1.debian.tar.xz
 0c219e1a5d0e5ea7e5df2553aa580318 5617 devel extra 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpGvwYRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafDpA//XcMMgcjtUBe9G1YT87+HXFsyzmiy6UM1
GUhzzJZhGJxJ31PeyTZxPMbpNIZbUQr7dkgpZ7XUdwwk0+MSI0kHMYQWbZuHOn/b
+CDnitjPJk4EhLYkaEVC/fZjs2kUwgGbqz/VZR1HqQvAO0CEDG0FCgiZjkpjiPqd
LNmQQC0u2VVhDq5aOhfhochHmeAfEcboWaFUrhCYhWQjtPgaKg7JMn+ZcZ//wSzK
5agpLn1CkCHWlTVlV8a5/14PM/7UT8nU/O2X+9/5zTLcD0nTq285SGd23L//idIh
OvHDsGFz2W5c7PhNyyJGjR/MZPIWbtPTBP6H9EYmwuSzwC/fCaYRMkTO8YbnGWKN
VZYbwQWl/E9IlJ2aWVB809zGP+wCRPcozJ2ebVijLDwtE6bkX43WLV4ESlhaog5b
hyL0RSoKYyXftinXM2xqM4Afc2Q5e0oVvy0nzg2G3QaREaF3yFWrBXQ1exMwVy7T
KRM18J/77xrAIsTUavJh784gDnblegpDvz8Lm1AXgo513z9Rw3uIn/hQrOh+0EcS
BlRTiQDbKIo3SbalfNrcHaZ4pa58etNWlsILx2LQVOYQDeVQiRUJXOKI0xkp9xa9
dpyD9OqA/j7aPIPZBNlBiTT8U3WvCBabnCQLVHg/HOO38iDh/hz3Ywljz+ENNYmx
dGuXtdkC6wE=
=vizm
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 17:08:38 -0500
Source: golang-gopkg-vmihailenco-msgpack.v2
Binary: golang-gopkg-vmihailenco-msgpack.v2-dev
Architecture: source
Version: 3.1.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-gopkg-vmihailenco-msgpack.v2-dev - Msgpack encoding for Golang
Changes:
 golang-gopkg-vmihailenco-msgpack.v2 (3.1.1-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
Checksums-Sha1:
 d02492d0556be50dac711f2cd8b44861ff9a6099 2453 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2.dsc
 44120ed0c42b7c49a4f2daf64435784aeb406eb4 2544 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2.debian.tar.xz
 33fa7317543a6dde57190adb02f9400f5a08f71a 5815 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2_source.buildinfo
Checksums-Sha256:
 548f43bf43e0a1309903064a496f9061c2b3345f878ceb49a8062149398e10c0 2453 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2.dsc
 937df25cc5b34bc2204c445bca1962d72007b2ec8d54a7680393e57595836c24 2544 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2.debian.tar.xz
 230c46146a8172527827d44df2ffb37f13ea5c1a17ddb3d7c4acb69602a4ea0b 5815 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2_source.buildinfo
Files:
 171aeb0a4028918d7e3d3c5496bb332c 2453 devel extra 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2.dsc
 d91421adc87374cbabf0194e10817a0f 2544 devel extra 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2.debian.tar.xz
 d206122d765f07acd6968826f51c060c 5815 devel extra 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpGvRYRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacfww/+K8tqPBhhHuBvSQScABMjLj0ZzeCg+RPV
plBS99n45ReIqOZ7MvAz94P8sCoB7tTvwFLsIAB6MWWqENkW/6vBb1OpaWnROw61
fJA6L+sYFdXn/s5Nsa+Y8AJv+aHHLCrFHDHwcr1Ysxbt/G6QsxbqquB67uJVvoFj
QZvuch7k5OrphohhluyCAN5060eVvMwztO6tB4tvR6BJSaQ2MLZWbQfGy8nqtYrC
Cq13en+vVA3IeI4CWWrQ7F7ANXNILlvJhACbGe+zwMRAQjIRrMjNepcYjDo1swPa
wrJ9hnijpH/BK9odVggx7lLEsYUSM77fv2b1+mZpYjVnF+w65VqldpgBcBhFVBdM
9+83kZa+5DsM07lz8dypwlZJ2XNF8qrU6Wqmi/kyUZ2Ygw8az+w7xa59rIGa9zIV
ffVJfz4FX4COEWbHhSQd+LHLut6ZFM3jdOOWWgNGh0TQiupI5efExh26aOgRgLSA
V3tisarNUgbAu1H9fR14AqBJd7gLytnfDCccTQK7tcxsG36ge2a/ZbCaihf2xj8U
NLOGxVZu6iXXL05OFTmD7qKInMKuEvQtd9UibHjr0OQU4hGXnHBsccXWNabmBE+H
l1k0Cpnkt4VA2ACotn9Et6AH0/vNG1vfe9s5Zmm6qjNoTRZH+UjeSubdHBpIJ9YA
1w9tu7th8/0=
=wuol
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of gitea_1.3.2+dfsg-1_amd64.changes

2017-12-29 Thread Debian FTP Masters
gitea_1.3.2+dfsg-1_amd64.changes uploaded successfully to localhost
along with the files:
  gitea_1.3.2+dfsg-1.dsc
  gitea_1.3.2+dfsg.orig.tar.xz
  gitea_1.3.2+dfsg-1.debian.tar.xz
  gitea-common_1.3.2+dfsg-1_all.deb
  gitea-dbgsym_1.3.2+dfsg-1_amd64.deb
  gitea_1.3.2+dfsg-1_amd64.buildinfo
  gitea_1.3.2+dfsg-1_amd64.deb
  golang-code.gitea-gitea-dev_1.3.2+dfsg-1_all.deb

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] gitea_1.3.2+dfsg-1_amd64.changes is NEW

2017-12-29 Thread Debian FTP Masters
binary:gitea is NEW.
binary:gitea-common is NEW.
binary:golang-code.gitea-gitea-dev is NEW.
binary:gitea-common is NEW.
binary:gitea is NEW.
binary:golang-code.gitea-gitea-dev is NEW.
source:gitea is NEW.

Your package has been put into the NEW queue, which requires manual action
from the ftpteam to process. The upload was otherwise valid (it had a good
OpenPGP signature and file hashes are valid), so please be patient.

Packages are routinely processed through to the archive, and do feel
free to browse the NEW queue[1].

If there is an issue with the upload, you will receive an email from a
member of the ftpteam.

If you have any questions, you may reply to this email.

[1]: https://ftp-master.debian.org/new.html
 or https://ftp-master.debian.org/backports-new.html for *-backports

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2.dsc
  golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2.debian.tar.xz
  golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-mgo.v2_2016.02.04-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-mgo.v2_2016.02.04-2_source.changes uploaded successfully to 
localhost
along with the files:
  golang-gopkg-mgo.v2_2016.02.04-2.dsc
  golang-gopkg-mgo.v2_2016.02.04-2.debian.tar.xz
  golang-gopkg-mgo.v2_2016.02.04-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-mgo.v2_2016.08.01-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-mgo.v2_2016.08.01-1_source.changes uploaded successfully to 
localhost
along with the files:
  golang-gopkg-mgo.v2_2016.08.01-1.dsc
  golang-gopkg-mgo.v2_2016.08.01.orig.tar.gz
  golang-gopkg-mgo.v2_2016.08.01-1.debian.tar.xz
  golang-gopkg-mgo.v2_2016.08.01-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-mgo.v2_2016.08.01-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 21:25:55 -0500
Source: golang-gopkg-mgo.v2
Binary: golang-gopkg-mgo.v2-dev
Architecture: source
Version: 2016.08.01-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-gopkg-mgo.v2-dev - Go library for MongoDB
Changes:
 golang-gopkg-mgo.v2 (2016.08.01-1) unstable; urgency=medium
 .
   * New upstream snapshot.
   * d/copyright: mention internal/json.
Checksums-Sha1:
 0d15b6606bb3d02470e979928325dff8a46da8d4 2238 
golang-gopkg-mgo.v2_2016.08.01-1.dsc
 096351d9b045e0a7fd39e9fa24b76cb07573e7be 379712 
golang-gopkg-mgo.v2_2016.08.01.orig.tar.gz
 851923e61cac504b60722e8605f17b18542a2030 3200 
golang-gopkg-mgo.v2_2016.08.01-1.debian.tar.xz
 09e825ef0b55eca4b412ef4aa89843322ada8f7f 5762 
golang-gopkg-mgo.v2_2016.08.01-1_source.buildinfo
Checksums-Sha256:
 1090c4b8afdce5718048b7bf71305e319143cbebbf0d00c958ecf80488fca0ea 2238 
golang-gopkg-mgo.v2_2016.08.01-1.dsc
 e2557b394f8dd6a1c733095baa2f1c4cf11da0fb1ef84631e12d1656181e9126 379712 
golang-gopkg-mgo.v2_2016.08.01.orig.tar.gz
 a6f691281443787d0efe7f0fa584347def4b924d1ffd843233e58e42bd6d463d 3200 
golang-gopkg-mgo.v2_2016.08.01-1.debian.tar.xz
 7ec44ac4702b8e3c825d9cacc8a2e5f6d1f87a7c3b06e1fe922c8fdb92ac1fdf 5762 
golang-gopkg-mgo.v2_2016.08.01-1_source.buildinfo
Files:
 b33bf3a161f4d2f03cab6d699633795d 2238 devel optional 
golang-gopkg-mgo.v2_2016.08.01-1.dsc
 69eb2135e321dd44ea6cd7917c210575 379712 devel optional 
golang-gopkg-mgo.v2_2016.08.01.orig.tar.gz
 f8fe83f40b015a5cb512e7f2d7b22b49 3200 devel optional 
golang-gopkg-mgo.v2_2016.08.01-1.debian.tar.xz
 2c04cfcf800ff7872ca655c424c1b2c5 5762 devel optional 
golang-gopkg-mgo.v2_2016.08.01-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpG+UIRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaeMZg/7Bh07eC/AVdy0X5WRz2Ha8IC5s1ssXE10
v8swBK/xbz+R6sFEdtfyMjKbl7efERF4e+qXrBkKxP++IU+g6N4FFkhvtGB6alF5
2sZwgnkYdKK1YOoavB9yCPdA7ZDWCFajjZqaL4TgD4r+9mlL0a4fre+YQSv1vcJD
+GZi8u+nJ6grDUXa3E7hJxA4FXXCK3Qi6Kj52IpMUqnfpvy8Nyvtzi/Iuf70DSyg
kKPVBpVuKOu1kRWdcyc9zj85QQ3+vbmFeU0drOzxS5TrhWO9h18I/h/3BTTWvbbZ
zXLVHMho7oaiDK8vVcTGZQc6TpJb64E/QrVQBUR6nU4/71na/xHscdM4UYNPeZ04
phajH0zLh6Be7/cGSTr4KpeDs4ZMV0hCR1SNYMl1Un4aTRj8zpNPMv1fjBIGixex
eMnE1ZYp4gBD/fyEcAU/Ksi0zDyyRNmqHm3llRBITcamM4GH1OQUJKx3MmyWj+c5
c2s2y9G+W/andTVrEyGx7HdFzV6JEqX/ynrrIf94pxYXU/vLvkyt1JNzJn1X7nHs
InLFT4OeVVL5pbYP73LFoEDge6iIuv6aGEhRoEVr54d0vEdw/8di9jRsXcDUNj2V
JJQoD4og09RuQ8VuffACwv8CATKfZ64wglV3brE7C2tnGrP1WaIlBo2V+DcDiWCZ
wRktH/QShqA=
=57bA
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-mgo.v2_2016.02.04-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 21:06:46 -0500
Source: golang-gopkg-mgo.v2
Binary: golang-gopkg-mgo.v2-dev
Architecture: source
Version: 2016.02.04-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-gopkg-mgo.v2-dev - Go library for MongoDB
Changes:
 golang-gopkg-mgo.v2 (2016.02.04-2) unstable; urgency=medium
 .
   [ Paul Tagliamonte ]
   * Remove Built-Using from arch:all -dev package
 .
   [ Alexandre Viau ]
   * Move to salsa.debian.org.
   * Use XS-Go-Import-Path.
   * Fix priority-extra-is-replaced-by-priority-optional.
Checksums-Sha1:
 d5303eb83622f66400db2199e567817fe225ef9c 2238 
golang-gopkg-mgo.v2_2016.02.04-2.dsc
 1b011c007ea827f7acc9523ad7a97e77ca7d29b0 3136 
golang-gopkg-mgo.v2_2016.02.04-2.debian.tar.xz
 a9eb2f8e55e8b2d1ffd673d5447c7f3a1af5cd47 5762 
golang-gopkg-mgo.v2_2016.02.04-2_source.buildinfo
Checksums-Sha256:
 a78bf594c88b788c503053a4ea58c8c113dc3170377ebea000d6969bf6d1e82a 2238 
golang-gopkg-mgo.v2_2016.02.04-2.dsc
 c241debc5f0bd49b95f59c136edb53b36444e32ea866d718d44970c5dec04f3b 3136 
golang-gopkg-mgo.v2_2016.02.04-2.debian.tar.xz
 f94674149b1b74d909967f70e0738d8c9d3c7d2859dbbe5fd3df6d7b5ed50995 5762 
golang-gopkg-mgo.v2_2016.02.04-2_source.buildinfo
Files:
 267545c7716b585d8c9d1e637b0d187c 2238 devel optional 
golang-gopkg-mgo.v2_2016.02.04-2.dsc
 f3f4997573020a83fc4aaa51c8d94124 3136 devel optional 
golang-gopkg-mgo.v2_2016.02.04-2.debian.tar.xz
 35b63508b366307048590d9af0065048 5762 devel optional 
golang-gopkg-mgo.v2_2016.02.04-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpG9M0RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafMig//Yxnz8iaBTxnHsI74afQaN4+B/0DcpLRs
Hc+fjVdTvvaaKEfZvaP/DJO4SFsWH6QYvJ9vyjRRfmNhTUiwELNyyF0zmF6R8h1B
a605EDyenbdsZMt6C9gv1LHokB4GNK5rkhIKS5pud/btB3MDJ/h8akwiOuYro53X
a49Xl+hJS3cy1soeD+GNDympv6jCDTwy9C32FHbrwTSYmvEPns3S5FgH3vKdGjcD
5W+bVRAd9ICSbgzMcCrTEsjVE+af+wow+SM7yWoNWKG1W6ZxyH1eUSUozqMmnT5W
Z+2ATFrYHirmUZ3ue2hbcHI8Lwh1lNCzKp+DaI/3fBqoO9//vKjLZAa3AbtE4fjU
rUgTcuZbo3ehPzpUH6wrnwHZUe76AuKN4oLGfIUGRvLQK6Jz5N1s8UbiDFX0ShRQ
/L4y5PLfGade8ph3KSZs0pRl4afbZ0Fib3RuUvKhg3VUmi4OoKe6pZsU9HrK/fFg
gYCyEWBwWld62+9o5+a6I8f+uw2xcuodjOYvj53I5LX0FgbQGUovODyvRmFT6Vsi
+g16s4vTySK2r9Avk8H127CBcvoBOip32oXCx2+tVRbk73sdHTrxforcs/2jhtTr
I5NMgUxrturQ8bKRa4ojvbRQd70k+s7tTLor5OU/EMpDDk5bHBEb5k5xXDSdMR2S
rtadT4x2Mww=
=BPvn
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1_source.changes uploaded 
successfully to localhost
along with the files:
  golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1.dsc
  golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7.orig.tar.xz
  golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1.debian.tar.xz
  golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-fatih-pool.v2_0.0~git20150325-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 21:31:00 -0500
Source: golang-gopkg-fatih-pool.v2
Binary: golang-gopkg-fatih-pool.v2-dev
Architecture: source
Version: 0.0~git20150325-2
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-gopkg-fatih-pool.v2-dev - thread safe connection pool for net.Conn 
interface
Changes:
 golang-gopkg-fatih-pool.v2 (0.0~git20150325-2) unstable; urgency=medium
 .
   [ Paul Tagliamonte ]
   * Use a secure transport for the Vcs-Git and Vcs-Browser URL.
 .
   [ Alexandre Viau ]
   * Change my email to @debian.org.
   * Use XS-Go-Import-Path.
   * Move to salsa.debian.org.
   * priority-extra-is-replaced-by-priority-optional.
   * Testsuite: autopkgtest-pkg-go.
Checksums-Sha1:
 f177e71a1757b2f775af3d0fde63c86648a8d883 2296 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2.dsc
 309a89da6d2563722d71236d3a9173f7fdeae821 1792 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2.debian.tar.xz
 e8aa980e85849c86b19697b0bab9ab069c66baf4 5615 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2_source.buildinfo
Checksums-Sha256:
 b143eb58dcf4e86ed07f58a0ff86451bb1629e1bf37bb77c388b20c5e87b1d8d 2296 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2.dsc
 b06746d05f39730a47886f425ce6c3e1bf8d13022d868284dc3dbfcd40295843 1792 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2.debian.tar.xz
 a2d09f050465ef443fdc0a74049804cb8a0b993d96b6b3f687fa13d7e23c0451 5615 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2_source.buildinfo
Files:
 0618a1a194713784ccb9b64eab382f5a 2296 devel optional 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2.dsc
 bfe84bf994305e29d5d4fde11392e206 1792 devel optional 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2.debian.tar.xz
 25103dd715c8f8b57b578d655f90c8ff 5615 devel optional 
golang-gopkg-fatih-pool.v2_0.0~git20150325-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpG+w4RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadEZA/8Ci9j+ue5XokNpIBoUYtMr5u2CaSCDJpj
kx79c+UaTK971ew/dCX9yCnGE4Uyshd1acHNyagHlXJvS0tijLeKRGDWQFZsegyh
anZobi1vb29BO+xDoiAEmO6Etymz1N80EUWL8ec5SlwRKQB0DFkbduGw3wrXXoar
QqHVO91GIm9O0AGKmNNEmb3gZY5b5A5tB6XgasgiQMgTd6c+sBGEYuPOtTBeCQJF
OH5X3sk0LPJriGGCI10GNxuAyjPzW1iGu37+UiK2XEZ/sR+grZtyKQ9kXpQPcQJd
tVVhPUydDo8Vpv8ApiP0CsoSkOD4s+98lFmOw3qJ8BNQkxFIKGRNNKpZUghrxK1E
h7YwgE1olRzHNG2g06i5MKS1m3BP+Xr6uuxEf6msjkSXUTBIWcinuXpbBNdbzcIj
feJGcBTDR3fUEIhHz4XRDe3kza9WNY7NGB1iXdJg1Gl9o676/H0tWANaL87SZa8l
itQraiorFSrWbM1itj9jcZA3+oP+WjYWxgoUf3JkCIPgWcff2pK+gJQf7eiW/EO3
PY0OBVukFq9S+DKlzxZ+qxjO1FTqrSHGDgSkRnCa/PIYyQkWVUjUQasFtBLoYqWv
cDSUOdavfhL9mtp45uMQnlKqMwHXwKiS5gvUPbLCPJ/BseB5Vp8J68nyxIZ9XklN
5cxsEM3bVXM=
=o01a
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 21:36:48 -0500
Source: golang-gopkg-fatih-pool.v2
Binary: golang-gopkg-fatih-pool.v2-dev
Architecture: source
Version: 0.0~git20171010.010e0b7-1
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-gopkg-fatih-pool.v2-dev - thread safe connection pool for net.Conn 
interface
Changes:
 golang-gopkg-fatih-pool.v2 (0.0~git20171010.010e0b7-1) unstable; urgency=medium
 .
   * New upstream snapshot.
Checksums-Sha1:
 2049144831d521103f878627e7f00a88803a2aec 2352 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1.dsc
 eb35517fb6be5397364d7fd6eb708e0645d01c61 4536 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7.orig.tar.xz
 dc10d8baf010143b7a626131c06773f4b9ca96ba 1820 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1.debian.tar.xz
 011a088d6cc82620416d3e7d38e446c9ab262276 5647 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1_source.buildinfo
Checksums-Sha256:
 c5964ac36d8c19a3c288a11675370491c29f189c34d22e244e2612c05d62f719 2352 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1.dsc
 d1f50f9c01c60fdae3ca6eb9becdc0580e17edde09f10ab69b964b56ed488c62 4536 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7.orig.tar.xz
 a59e2b2dcae75801088d8bbb4f2d8c6c0be2a3ca958a1992cf65f90c32116975 1820 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1.debian.tar.xz
 c10e70462c90e60f93223f9c45eb931d3ea7da924942d3a0e8b8e2c8d39308d0 5647 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1_source.buildinfo
Files:
 7f8a5f594adb38d53154c59f74606c99 2352 devel optional 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1.dsc
 3856c02e3d25d84dab9515f475fab102 4536 devel optional 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7.orig.tar.xz
 d2d08430297264a5323bb808dd9ad35f 1820 devel optional 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1.debian.tar.xz
 cc9687d614bcaf420b30a6c533bef511 5647 devel optional 
golang-gopkg-fatih-pool.v2_0.0~git20171010.010e0b7-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpG+/URHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadENA//XVwfM+DWzvVw4DBmYhRYO9IIdItFuqjG
bW9fxjGWt1WGeD4RBXnjc/7enFRyZGzFyRi7Z0+OBrH/ZPMw0YTYdxJ2xIqM/Mb3
jv1vWWKjfVaQqMxMhMD5O/lE/tK0ki2CeofqKr5SfRP36KJvEJC9RimLJhcFw/jW
YB8RzbolqKcb2bjQMbaXr7lcTqjoYxyGd8hha3Gpz0CFHxGARUN3Zl5qy285OEHR
VmPvacnzm+KJxidTh24acSraZgB9ovbuSslwE+yzrbYgkoKYwq2bjQ28aRgGllWw
m3RgyjTdRyig6wA+i/Chmyf9A8sChhghpe/dJu3GGZKXFbevb4arOqQgl0aafcKG
n6cnd7ao9ir9Df7yFbdAKeGuQY6g7bShB2Om/YTKLlM/SvdgQiS4p4TOPsZh3cZH
HR10edvzX08pW3FW0gyJj70HSL59dB0yaq2Dai9cFh1CCQ/KjdJoeRc3tTBUmycS
AylElwwlxdX+vo+WuDVl7RqLpLgjs/piILSPwx76o1fDlW6grPS2Q1M5wY0S810k
TkPufNY2RvEJEcuRF4tge3t655O1HH6G5Va9O47tavOZ7gNfMCOofYKNPJZYr1NF
dAsnhcAa7HgHEy1a6+Ish/1wZRlCuLhJVboAbkWq+79IQTCYXDxeZnrsuYSNIDWs
464EWij2y/8=
=uJHj
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 20:50:46 -0500
Source: golang-gopkg-tomb.v1
Binary: golang-gopkg-tomb.v1-dev
Architecture: source
Version: 0.0~git20141024.0.dd63297-2
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-gopkg-tomb.v1-dev - API to track the lifecyle of Golang goroutines, and 
provide clean
Changes:
 golang-gopkg-tomb.v1 (0.0~git20141024.0.dd63297-2) unstable; urgency=medium
 .
   [ Paul Tagliamonte ]
   * Use a secure transport for the Vcs-Git and Vcs-Browser URL
   * Remove Built-Using from arch:all -dev package
 .
   [ Alexandre Viau ]
   * Move to salsa.debian.org
   * Use XS-Go-Import-Path
   * Update my email to @debian.org
Checksums-Sha1:
 ccbacfb138f04ed37396140c7442ff2a18fb4b10 2313 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2.dsc
 a1090d87f986651fffaaf96068eafc1e9eac1db1 2072 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2.debian.tar.xz
 6879698b9d76f88a99bdc870e6eede4137137afa 5625 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2_source.buildinfo
Checksums-Sha256:
 8c5c3e4bdb2fc85e111bbabed735fdf225e73daf462409f82cbec6600e5b0675 2313 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2.dsc
 7bdc4d7f017ce464527c76ca9ff10adb26bbb99e9f63cacfa20ad7f332019780 2072 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2.debian.tar.xz
 8fa57e9bc23b19e61efb7a96022cb2114e0999bc57dd20cdd053d0049c945b1f 5625 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2_source.buildinfo
Files:
 4ac9e939de3364dd59e36f04d879435f 2313 devel extra 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2.dsc
 5bed79ce032e35d52639164890c62b99 2072 devel extra 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2.debian.tar.xz
 5c8ce7695712ef713ddf0d11296b2697 5625 devel extra 
golang-gopkg-tomb.v1_0.0~git20141024.0.dd63297-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpG8coRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaefzA/9FuLonsvBYh2vYAGJ6KfEQwWLObOMzwdp
XOfu9gORj7Lu6tkiY5kPka7eCfDRIPDbRr4awn5WB9tZdcP1PlKxtH3newlKwJW/
d1aTVxQzYHd9iiIUfKvBLE5/3FSJQwE/JnODIcxLUR+NpBAZ0Iyg42Xp7CEyVdEU
5AGxE9VAIe4tVzguz8gDfUlqCYieJ3xbjKuqPiKJjemVTFmb9kCTnlgcpVH6EBWq
UsZowdT8GG7rMo2V4zuI+qSe5TZgDxYgNencqNCEdKp/VnL2uLdL473PjSczCRyS
/TsPrW5zaneIJqZYAkQE69YcTUrCxLItJNdA5Z8qSEM8eGdHye68V5rGP//hY81v
MjitYn532COxfibPEwx108GdaxDr8vv6PWeRd3xzQ4ZUKncbf+RMwXKI37dVwG16
2nFqpFS9H1iwnCYLyj4Vf/J7DE/vgnfzuvfkEn+S8N69jmc5A0RmNMoc1eTvZdDL
GG/1WOAKdrIlYNeJGLuMVfglsFt6eDtV2W0glN1RYEIHjd49NtynCPdD6/NWIspQ
29S8T/FwKydHNFUw1eHafiWiJPXw0QIbTyFKdrcT1mExeKAUQpUoz3yzMojjv9T0
ENpSy1I1KWFRkO+5fvtpxNa786T8Y0RJbYUtCvBUVhTVeH8pJK3/EaROcgzFc+ZB
b7ogZbBLzCU=
=m/ri
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-fatih-pool.v2_0.0~git20150325-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-fatih-pool.v2_0.0~git20150325-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-gopkg-fatih-pool.v2_0.0~git20150325-2.dsc
  golang-gopkg-fatih-pool.v2_0.0~git20150325-2.debian.tar.xz
  golang-gopkg-fatih-pool.v2_0.0~git20150325-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-vitrun-qart_0.1-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:48:17 -0500
Source: golang-github-vitrun-qart
Binary: golang-github-vitrun-qart-dev
Architecture: source
Version: 0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-vitrun-qart-dev - generates not-so-ugly qr codes
Changes:
 golang-github-vitrun-qart (0.1-2) unstable; urgency=medium
 .
   * Testsuite: autopkgtest-pkg-go
   * Move to salsa.debian.org
Checksums-Sha1:
 95deafe978befd7da6725c46a1d2b509feab440f 2193 
golang-github-vitrun-qart_0.1-2.dsc
 315dd0bf3f32716f5b28826cc343012060187f47 2540 
golang-github-vitrun-qart_0.1-2.debian.tar.xz
 d633a9c68a07e86fa9a63149f5ce6f3bad326ba8 5562 
golang-github-vitrun-qart_0.1-2_source.buildinfo
Checksums-Sha256:
 004679bf20ad31a578cac0812f31d02170349dd2f25a3569a7fde709d36146c3 2193 
golang-github-vitrun-qart_0.1-2.dsc
 5a7a4cda54f58c260e40d128bc1fe22e41c2e67237523ad2db15594d0b3d24a8 2540 
golang-github-vitrun-qart_0.1-2.debian.tar.xz
 5d8b05ead9e44015055138b7089be82fd176417f7d424bcd5d91bdca2dc941a6 5562 
golang-github-vitrun-qart_0.1-2_source.buildinfo
Files:
 2136529eebea292ccb3310e35a6eae9c 2193 devel extra 
golang-github-vitrun-qart_0.1-2.dsc
 d19dae2e3e9d54b801b9a3bfb7ecdc9d 2540 devel extra 
golang-github-vitrun-qart_0.1-2.debian.tar.xz
 4aeaf4b3d66aa640ee522b46a142136f 5562 devel extra 
golang-github-vitrun-qart_0.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHDL0RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaeQvA/+O+mMqvYn/gmBJhpl4G2hKgGXKIlXMvA+
U2KpfLHEAkvw52Wm3upG3NEWUN/vpTIHW2eWmtO7Z4MjMKC2F/c3ACjWSsdmIO0N
9yrYlhUqf1LFMj7ow81J6fDtAEr1fb9ALpXUPsEBatWBqMjhkA8Bjdx7G9VC9jA+
nUAbzwwal1Ri4FgnHfIRoKks1viRWZIFN8GeX3BSp7Wo/iPj5SKHNtV2nQh1GyYO
veyw85u2aH3TdEi9Th6LMpVPfRZRcXOXVUyclrYg5lJ0ceF//qImkFfLfOHUHTUX
mTNJc+V9pKB4GsNMifKqkdW72EWVZpG3VHhp5OgaNc6Bst2fknp0ePuXVZvWzWMg
0GZIkte5C9WWxp9CxGeCfNRsp3XxR6L/Xy72WEq+CtaUqHDjq2zcj7ySuNofrALj
SjvgxprmkxgR9qQsfr5uZSDPnN8cn/EIQuL3W7lyLlFAmAvOmAaV0WLL8gqwzHs3
+5p/IJ6UGTZ1a2ZVr7UJfPk+d8hHooZ3VmALj3IynWnYArATY1rshg/SQI8Z/bB/
6TO2uiGcfGeCjDq9uW8e9KvB+AARIWWC330CVAHcsZ6PC0/i35cDGCPORqi9mPaz
sg6k0912j4efzMPIWcWp5ShrY2x2nliy9ggZpS24jCDuucD9Fo4y4iWd3a3Fp66S
QYAadi3gbGQ=
=i9Xg
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-vjeantet-grok_1.0.0-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:39:51 -0500
Source: golang-github-vjeantet-grok
Binary: golang-github-vjeantet-grok-dev
Architecture: source
Version: 1.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-vjeantet-grok-dev - simple library to use/parse grok patterns 
with Go
Changes:
 golang-github-vjeantet-grok (1.0.0-1) unstable; urgency=medium
 .
   * New upstream snapshot.
   * Create watch file.
Checksums-Sha1:
 ec0695c82185c78df2a452a5e0faed8bb472e6aa 2236 
golang-github-vjeantet-grok_1.0.0-1.dsc
 ea3dac00b588203f2e232cfa5c7b9bf842f26e44 23528 
golang-github-vjeantet-grok_1.0.0.orig.tar.xz
 54f3c26fba7d0455ce57f9301a98b4a196044667 1876 
golang-github-vjeantet-grok_1.0.0-1.debian.tar.xz
 745cd65e61925fdde4a8d043e45b8a541005f14d 5580 
golang-github-vjeantet-grok_1.0.0-1_source.buildinfo
Checksums-Sha256:
 acb902bf3b6dc9f4ea9c1e864ec282bcf3fb55827fa683568d5d64644d582061 2236 
golang-github-vjeantet-grok_1.0.0-1.dsc
 493454d553af2391f7b804efc126efc51c32ec9c9c51f955362c46e7fb3ed917 23528 
golang-github-vjeantet-grok_1.0.0.orig.tar.xz
 e06d954b361494bc9f04eacc281b35dcc7d1fb0731b8cb3e2906c21a4066425c 1876 
golang-github-vjeantet-grok_1.0.0-1.debian.tar.xz
 968f1a868c1fc41f6d76b4760adfa244d9b8312a3bd0ced62256045bba43bc4a 5580 
golang-github-vjeantet-grok_1.0.0-1_source.buildinfo
Files:
 55cad79729f9b7afa223719f52d743eb 2236 devel optional 
golang-github-vjeantet-grok_1.0.0-1.dsc
 ba1b42796b7a9f78943a3f7cc5de805f 23528 devel optional 
golang-github-vjeantet-grok_1.0.0.orig.tar.xz
 b60f5f431ba16154ccee7a87250d1b0c 1876 devel optional 
golang-github-vjeantet-grok_1.0.0-1.debian.tar.xz
 e79c4735db0a0c0c8cdd0fdbaf592762 5580 devel optional 
golang-github-vjeantet-grok_1.0.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHCyQRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaf26w/8COjHTmSDvAtRrsR81S6jYtLxHSgcDzs/
zXD6RJQ0lTCbi2u0+PBUy8FRHgouKSczWARekvfP4pdsZrAYZPvJ/74FbQJmPXTL
BaC97HJjbGafHTHk1ttcFylYUe1IrUS1kkWoee/EHRJGJF/1meU8zGkGod9/WFky
HMhH9ru5KojR1wjoTh13XWZAcFu6x83TpLeEVBNSFziIAGre2EkKAXSJqQN4stbh
Zqh2pCF5Uaklff4XWogP0Sg6kIcY3Llq4xZzPXxtYkevYeh6D0r08LFQa42jlzHI
LhjJ7XpuUg2VhuT4dRxugVyfWc3Y2ob5kRUyV/LOosmUcSD8V7qz+5p46oBe/xh6
dN6uS1AqN1qzt09qSxQExNlpdD8WIuDgAWqQVpN2ifarOtpyaeQxmaKuW2GeSkDJ
WNNBLooIQaoS2Hv5xlrLm9noYvYMylVjF6oGYOe0cMIl6X8rlH4+Au/Pjf5MZOuv
O6maLD/UjIZuHnJ1PDBr9xbxEws1f5WqAtQ5ORelQnWrHQUsq9Z3PSuU+PZ4OwGj
iF75GDtxqvQm07YS9MgUe8BT1Sx+RHbEQ81CyKe7B1hItC4pr3SKITAJGLeyZ+BR
G0ymIDrZBle6qOcYjXpxhE/vxY+aeC3je023PXxjZIJ1xnNVdjxQtlffNs23cAKE
RKDXq3ldcOA=
=DPxn
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3.dsc
  golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3.debian.tar.xz
  golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-go.uber-zap_1.7.1+git20171031.f85c78b-3_source.changes

2017-12-29 Thread Debian FTP Masters
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3_source.changes uploaded 
successfully to localhost
along with the files:
  golang-go.uber-zap_1.7.1+git20171031.f85c78b-3.dsc
  golang-go.uber-zap_1.7.1+git20171031.f85c78b-3.debian.tar.xz
  golang-go.uber-zap_1.7.1+git20171031.f85c78b-3_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-asn1-ber.v1_1.2-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-asn1-ber.v1_1.2-2_source.changes uploaded successfully to localhost
along with the files:
  golang-gopkg-asn1-ber.v1_1.2-2.dsc
  golang-gopkg-asn1-ber.v1_1.2-2.debian.tar.xz
  golang-gopkg-asn1-ber.v1_1.2-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-zenazn-goji_1.0+git20170812.c05078c-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-zenazn-goji_1.0+git20170812.c05078c-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-zenazn-goji_1.0+git20170812.c05078c-2.dsc
  golang-github-zenazn-goji_1.0+git20170812.c05078c-2.debian.tar.xz
  golang-github-zenazn-goji_1.0+git20170812.c05078c-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-go.pedge-env_0.0~git20171203.5f5a7de-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:31:21 -0500
Source: golang-go.pedge-env
Binary: golang-go.pedge-env-dev
Architecture: source
Version: 0.0~git20171203.5f5a7de-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-go.pedge-env-dev - structured handling of environment variables in Go
Changes:
 golang-go.pedge-env (0.0~git20171203.5f5a7de-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
Checksums-Sha1:
 64f918e9cce761236336d52d9334b97d5fff78d4 2268 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2.dsc
 5de4a58aca31bbfd3884e04add00cd44b32e44a1 1820 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2.debian.tar.xz
 9f2f06c21b00ad5a7e17927144ca9707121eab62 5644 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2_source.buildinfo
Checksums-Sha256:
 68a8e69e25e66ebccdba0b6c6c75b71235af08dd1b67c302d228a798d46e13df 2268 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2.dsc
 b2e07c2cc48a31355c3825bab6199bf288edfedcfef2f1df59842f3e75f7f105 1820 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2.debian.tar.xz
 df58e9fa96365dca5b07274bf8460b42801daa3acac3aaf2fd1d00eed4df04bd 5644 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2_source.buildinfo
Files:
 8234f5342504db421b20796641f138cb 2268 devel optional 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2.dsc
 6f879bec6256f6e257c8506759efe528 1820 devel optional 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2.debian.tar.xz
 c649a9ff6d4170a07f0c020d1419685a 5644 devel optional 
golang-go.pedge-env_0.0~git20171203.5f5a7de-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHCLERHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadJYxAAjjmRZRZiiQuaC1lonkhSH1K7Vc5Z/BGv
gQ23h/smo6tysqlflWUiBSUcJA49v2zvTWQ4JMXcgQYWSibUJool/sHu6GcaMv+t
n4sQ2G4eD8O+TAjTfmSBI62JfeIgW9x1jIeVnnbSP53+W3d1efxvY4lrKTq2/O0w
bhLHSyjlpaM64sfqiW8BvyKi5wQRB6OwY0KafhWFPHc1et0MTsMlV7tiFuJDgGCF
JEFkj9/1fZM3qreX42ZjAn5jQ6WFNhkP4KJre+8IfxMGmqVpTWjtBmePvM2Irfvn
DXp9bIJsxut96vywTtHTxrHIaKNaPdTwLeg68Pulgol/Y70HHo95+ZghW8Os7/iV
n2C8gY8wa3tQDnj0n5R7sFu4fUTBi5+SkWK5UsJsznHlc8H+e3cs7iscpVlQP2LS
ljj4mtz3NPx+A1JHYdx9quDyYRq110AWzxJe08J+i7PAO+V1mSXoZ1KvTASR94/m
C+z7O6P6KT4esi4r0JeYQt4pvKsNAfKE6MYs4OQh7QbgkFWKubDjMeMGBShX7Ee4
n++SOKLRvbe1qciY4C1GUYvG7IQKxp99d6x51ywnrqbaiUYRyKg/GPtuqqd6qwdW
uhXcLFV3AWvKLlpxQEYMcE8yhR/TQckUDBjdFWrdp9dyzwjLnQsx0jFwn2dEQMF/
JxKqi/79vvM=
=lOMX
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-zenazn-goji_1.0+git20170812.c05078c-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:33:28 -0500
Source: golang-github-zenazn-goji
Binary: golang-github-zenazn-goji-dev
Architecture: source
Version: 1.0+git20170812.c05078c-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-zenazn-goji-dev - minimalistic web framework for Golang
Changes:
 golang-github-zenazn-goji (1.0+git20170812.c05078c-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org
Checksums-Sha1:
 5b2bba826346a9d89ed22b7b634231263e122979 2368 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2.dsc
 95604ea78113d0eecdb64f046e97d5809240bae9 1948 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2.debian.tar.xz
 8cb8d5906db7b753400da1de1989dc3b58f9e501 5735 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2_source.buildinfo
Checksums-Sha256:
 beada473ce8c6f61dc99513775445d4f0af410246f147c35a5db9867d73669d8 2368 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2.dsc
 fa558b944ba391a10199dd3bbf72a015411ce7bfec05f1f5e0e05b75cb70321c 1948 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2.debian.tar.xz
 98881cc166bac8c54a6e8fb894098ec6db23631fdabf5f9801b9ed68bf6f5f2a 5735 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2_source.buildinfo
Files:
 2aac412f50f01060c1413f658bdb65df 2368 devel optional 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2.dsc
 b01f020cf3bd4aeccba0a7a6d319e575 1948 devel optional 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2.debian.tar.xz
 adc908ee13cbb47f0b6db430ee325f09 5735 devel optional 
golang-github-zenazn-goji_1.0+git20170812.c05078c-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHCSwRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xad0mBAAmE9d/KH+CWVMX26EVUmnLY8irxHGDAZT
jBWNqVg3eAPuzcpx5gvfX7OmI+Kiw47ASucG0MoHpcuDB19vlY7xo+/vwD0zdEEd
DwDFGKn1xwKDZaLG9PDp5V88SrhH7N1r8ctPuwsXzme5TWf1PAb/L5lG5aRBMqei
ZQnasrnP7yoJShujsNz9/bDUUDWfw9PK4i3MapDH2B8EcVi4psY6j6PAUiZvCWK0
8Fq5dmiC85q8nwtjZEmPh5TWuOCv5WpqoCP66hO5w+pKPXwFLsM7d8xpXKILVuqe
Zx0GWaaGNr0HV3s4dmujP5eXmFxxJiTyulE91b28/YTUesa4guFRwCo4GApTtiIZ
VExqMrTNm6RY+rAVjTAOjsO3RKm2VhWIAtK4Z4TvoIrjdZ58g4xmn9Fx3IWsHp9D
cKPaBOB/nEVYs6FnaUqQEeVtLRkZeGfruIh2rzWIFKcsZIe2TMILc41uVECA9BPX
NwYap8yqLMG02tuT5evvVu2X2PL3a1WiiMuTbhrcq0MWL44BpnKBTIyz/2lozRxD
qV5r17+OJQplpPLZ1/BAlFt7VI2P4OYKbeMGPZntDnt47gPq8loqxLTOQiO7C98K
QS6xzbwqMxQT6TeBEATbXq1BnaYhQQqms/eq/cDGEpYK1BVYWOkwWNuEgYIzHhn3
3XuDRYvvs9E=
=eGgg
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-go.pedge-lion_0.0~git20171203.2a81062-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:28:29 -0500
Source: golang-go.pedge-lion
Binary: golang-go.pedge-lion-dev
Architecture: source
Version: 0.0~git20171203.2a81062-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-go.pedge-lion-dev - structured logging with Protocol Buffers
Changes:
 golang-go.pedge-lion (0.0~git20171203.2a81062-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org
Checksums-Sha1:
 fe3c48c18385b744270e15835da110c32f764c2e 2587 
golang-go.pedge-lion_0.0~git20171203.2a81062-2.dsc
 fa7864ab1b041e239964441057d5e983c5ec33ba 1948 
golang-go.pedge-lion_0.0~git20171203.2a81062-2.debian.tar.xz
 0bc49201b0fd422bb8d92d7d376d2c77eaefa928 7919 
golang-go.pedge-lion_0.0~git20171203.2a81062-2_source.buildinfo
Checksums-Sha256:
 859c2c57635e493552a07eac4986a07a4e1df5eac72fa3d186900ce81ee9bb3a 2587 
golang-go.pedge-lion_0.0~git20171203.2a81062-2.dsc
 5f03b4323e10705e9d9bc41447d3f5ade3ea995b99a6c97b08a26c272c5051de 1948 
golang-go.pedge-lion_0.0~git20171203.2a81062-2.debian.tar.xz
 ff8256c69c55f98b16b995872cfdc0e424df4adbb92c5640b6347644710fe0be 7919 
golang-go.pedge-lion_0.0~git20171203.2a81062-2_source.buildinfo
Files:
 3f01570e9864d323c4cef90c682de777 2587 devel optional 
golang-go.pedge-lion_0.0~git20171203.2a81062-2.dsc
 2ff396c14d5ed55f16df1edcf5c5e5ba 1948 devel optional 
golang-go.pedge-lion_0.0~git20171203.2a81062-2.debian.tar.xz
 2558391f3b6e98c99d6cefd09d3a89f7 7919 devel optional 
golang-go.pedge-lion_0.0~git20171203.2a81062-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHCDcRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacCTA/9HHMEKwp307glJotAeQQyfP8wYM5AEQf0
BujQeBrZHGvXX7BET9inJN7LVrFGe/BnchUa073nzKqSFfMigDh2pt5kJhCDBQC7
OQENGISZQAVDWEyBa3LAOYjUfoLlTGm89GBEn74jOcJYzoTjUsQm/NMv0uMznLnT
wlfSxNOBXmXg54pWOFXG+L84vSZ2cyYuA2aruWD2FiI0Dey+XR15w4CGeM3iDNmv
xTuGKxwPy6tsWxtPbQQlgWuQhUqpLDToEq49NbbGGNve0yruHdUsJwkH+Xvgyb9i
1zDm5lW4+mU/cZ/Cny+qopStEW1VGMtw3fwVtQx78v+p2KMVyFjMfRyvBgv27/D4
C67Zuh3xfmNbRmiW1/CfKIAIl0FW91RZz3gRqbvihS9WkUZ+Vm9Z4zMz2RE87Nll
JIMGuTqRzTn0pYFKP8Q7urszGX+k0M12Z7y+2vnoLSxsUuWi8suN8BylzimGEALK
putWVxXZniNkvynFFNXXrozjY1+QVySgi1//MGKzEahthXvvCB2Q/pvi1MoTCkyp
59ZujWB+CWfl2hlkfU3wFD6X0i6OueiUvnHR2oIVcEtT4TH2qBxRk73RHrC+nU9w
JWl4OVIp/I1r6ygvibR/n5hwq/qyXwnhQ5H4LOEoeK/go2TeISowK3RKBYL3xbzb
aYGe+MjjSLA=
=vgA9
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-eapache-queue.v1_1.0.2-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-eapache-queue.v1_1.0.2-2_source.changes uploaded successfully to 
localhost
along with the files:
  golang-gopkg-eapache-queue.v1_1.0.2-2.dsc
  golang-gopkg-eapache-queue.v1_1.0.2-2.debian.tar.xz
  golang-gopkg-eapache-queue.v1_1.0.2-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-dancannon-gorethink.v1_1.4.1-3_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:20:18 -0500
Source: golang-gopkg-dancannon-gorethink.v1
Binary: golang-gopkg-dancannon-gorethink.v1-dev
Architecture: source
Version: 1.4.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-gopkg-dancannon-gorethink.v1-dev - RethinkDB driver for Go
Changes:
 golang-gopkg-dancannon-gorethink.v1 (1.4.1-3) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
   * Testsuite: autopkgtest-pkg-go.
   * Fix priority-extra-is-replaced-by-priority-optional.
Checksums-Sha1:
 5ba247230b81f8275e540e42702c46fdbb99778b 2517 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3.dsc
 848954b6e7a9d92e2ebc9a2506c4dbf4f12803d2 2388 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3.debian.tar.xz
 cac93b10febdac2a74608e8a3c85198ba51cf075 6386 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3_source.buildinfo
Checksums-Sha256:
 30e6a336e22d7869a211ecc0d1ed965b7518e6320f428f311c3058ff1b7d7cf6 2517 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3.dsc
 b9bced1823a04ba5ccc27838cad4fdb5c55e3876735537dbefdceed0b6bc0f74 2388 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3.debian.tar.xz
 3e51ea53db5bf3cddc57f80b76426844bbd510a0f5bb1e4e7811dfc27f7646eb 6386 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3_source.buildinfo
Files:
 94d971bf5b79c5eb7c9c62a753d87c6d 2517 devel optional 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3.dsc
 50ba90e919cac68ed37282cb6fc49b42 2388 devel optional 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3.debian.tar.xz
 7a0b3de44bb9274f29e83dc902c780a4 6386 devel optional 
golang-gopkg-dancannon-gorethink.v1_1.4.1-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHBjoRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacO4BAAlMNfHMFRbI9GPw5iLcIA1MwzCCwLQJcX
Ldjb12I1E4y/WC31ww8HqcfQF5gpRrxiNp2Sh8ng/typ2x2My+32cEJlteWuH3p3
fQubUyMAreg2ZMMfWY54c/pKPnF3X0m5x5UYhwiWlrLhxJMGdmuU3WBjeQMRPm4j
yhSVGsRC0LkwVe9gDEFLe+UtudHbC6nJ9Xn0UXSpEn4Dw9zxgATj5DS1Fx2UpqBx
6CwDQMyGa4Q3IbO/MMbsIqGKCfCwPT1h+E+nERQYWPWmpWC/4xWR/cXzVxRnEZxp
mDhDHgDEaTkDziVIx90uRPMEtpju9/F4CsacuwqSWqFfvuWOqyk5XjCJ3dP+5Q8b
sa0F39tioQeCMzMNZF3G4Xo4HRQ7prRPSkBlSstR3QqlTXFh0221Z3aJXuZFety2
y2oyNIT77TQtzAhV65ayoIEvmts0GdCR0GeE5/VeYaZ/A68wN4GCavor6yA4Ft96
9YO6CVm78gVUwWodslB0z0K0RblSEXdwNrfKLHFucRNls/5KP3JHRLrQItB0mUN8
mjOR+AUYKQ8cql4zEbrE84NkH1ycJT9V+rz73c5lB4S9cHa4GH/RcNfZstLDXto9
zNiXKg08jkeT6K+40mNfeiKrylTmjk1v5t3dOKneAL3xbrkD6nt4TX0z3thdSpVE
/qa4NMXX1Ec=
=AjtM
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-asn1-ber.v1_1.2-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:23:16 -0500
Source: golang-gopkg-asn1-ber.v1
Binary: golang-gopkg-asn1-ber.v1-dev
Architecture: source
Version: 1.2-2
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-gopkg-asn1-ber.v1-dev - ASN1 BER Encoding / Decoding Library for the GO 
programming langu
Changes:
 golang-gopkg-asn1-ber.v1 (1.2-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org
Checksums-Sha1:
 1f5fc3a9109e4b0d2a9b3c150b790aa559463244 2207 
golang-gopkg-asn1-ber.v1_1.2-2.dsc
 0e55ad4c80e8af594256d6ac330a2b8a757878e4 2232 
golang-gopkg-asn1-ber.v1_1.2-2.debian.tar.xz
 7fe32be50512ac6fe00a21459884ae48043eb507 5557 
golang-gopkg-asn1-ber.v1_1.2-2_source.buildinfo
Checksums-Sha256:
 ead07b42bb6c5c517f03dd4be4cd0d355120f7931294e76f6146b8ef37038f5f 2207 
golang-gopkg-asn1-ber.v1_1.2-2.dsc
 82d826145ea458bf938e313c83acd36f11a401427b9e6476bfb421a04fd073a2 2232 
golang-gopkg-asn1-ber.v1_1.2-2.debian.tar.xz
 0b1a57057122349410ca985cd2ca57dd528f70cfcfbfb366a905d5b6e7aba9aa 5557 
golang-gopkg-asn1-ber.v1_1.2-2_source.buildinfo
Files:
 280b75be2a36151ca59eaa0270c12e52 2207 devel optional 
golang-gopkg-asn1-ber.v1_1.2-2.dsc
 4b4b09ccf20306da3ef64b441387d6d9 2232 devel optional 
golang-gopkg-asn1-ber.v1_1.2-2.debian.tar.xz
 f31d6906069633f58fe60b107287b70f 5557 devel optional 
golang-gopkg-asn1-ber.v1_1.2-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHBvkRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacUNhAAjdszdXTtKp451e8AyM9rLoemsZfqcIds
cuFWOaZ0pyoCNiNpVTHXq8C2dVsDBJbLoTtbKzveQxTUtEOSV8PbftjLuTrA1fzT
mYyp5l9Sj28HU3koMW7qD6LNo1T3uYswl6ruhKhU1XBXrlcBJIcUExDO4h2KLb2x
3yaNK00efHZO6+dewUOlhAqJQeSDwfaVExxJk9RNHvuFgBYpcIhBQ9LYNPs7m8v8
uegrV8XMDoueSOqo0EHHrw2nUj9ltEbs3Y6A0X1V/wonW4okVZVRmY0arH0wm8qZ
BZoxwTjRZUq3FX5suonodvHNADhLiBd9NgCqoz3a+W3qMQ9VPET8NtNxFEPFppto
ZcUtWtX+Xq/+L3UsZa8VXUvFmfOoeE6RI+X+smcs7ju1IniJNflsbZ/LT3u402i3
vtObNtLygviTOC4X2JlWuVYyfB2jci8I5JZIkf6WFzJzuGZaDhn6ueTGvtPI1pi5
8bbnVCueQRokqthP8wB6aP9bOgns9eZtQ3fpaXVCvXMSaNceMpJROB+HUi8QAp7D
y8eJB3/uI1gxgbLMG6fKk9No1PMUSEFtnRtV9rtNr87f361MbcaYHSg54hN90ssX
JHwD/W+qabX0lUrRjJrUzA70cs7GRQQ857Z4OJZCCaWvCeA/w2ytNjp0adjvX6tV
0yumUsx9mYA=
=i456
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-vitrun-qart_0.1-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-vitrun-qart_0.1-2_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-vitrun-qart_0.1-2.dsc
  golang-github-vitrun-qart_0.1-2.debian.tar.xz
  golang-github-vitrun-qart_0.1-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-go.pedge-env_0.0~git20171203.5f5a7de-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-go.pedge-env_0.0~git20171203.5f5a7de-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-go.pedge-env_0.0~git20171203.5f5a7de-2.dsc
  golang-go.pedge-env_0.0~git20171203.5f5a7de-2.debian.tar.xz
  golang-go.pedge-env_0.0~git20171203.5f5a7de-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-eapache-queue.v1_1.0.2-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:08:42 -0500
Source: golang-gopkg-eapache-queue.v1
Binary: golang-gopkg-eapache-queue.v1-dev
Architecture: source
Version: 1.0.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-gopkg-eapache-queue.v1-dev - fast golang queue using ring-buffer
Changes:
 golang-gopkg-eapache-queue.v1 (1.0.2-2) unstable; urgency=medium
 .
   [ Paul Tagliamonte ]
   * Use a secure transport for the Vcs-Git and Vcs-Browser URL.
 .
   [ Alexandre Viau ]
   * Use XS-Go-Import-Path.
   * Change my email to @debian.org.
   * Move to salsa.debian.org.
   * Fix priority-extra-is-replaced-by-priority-optional.
Checksums-Sha1:
 830b64b85855c715a5ab148fc58bb8eb33afcd7c 2253 
golang-gopkg-eapache-queue.v1_1.0.2-2.dsc
 14bc11aefa783b240ba1acf258ab6b0ee08d1581 2116 
golang-gopkg-eapache-queue.v1_1.0.2-2.debian.tar.xz
 28b61f06aa43bbbc32498c87538e94b07a4489b0 5590 
golang-gopkg-eapache-queue.v1_1.0.2-2_source.buildinfo
Checksums-Sha256:
 57d258d336400fea7d4d51052b1974ff39dcdc61bba69fecd4f6699f69f9854d 2253 
golang-gopkg-eapache-queue.v1_1.0.2-2.dsc
 d941b55d54784071823b4c9180fc664f14c74146c852df7b79ec087dd2ec2602 2116 
golang-gopkg-eapache-queue.v1_1.0.2-2.debian.tar.xz
 49e059c1223e8c1337526aeb3376c0bfd2bdc6917f9b5aed98b4a21a0e45cf71 5590 
golang-gopkg-eapache-queue.v1_1.0.2-2_source.buildinfo
Files:
 4f5b9251aad5f246dcda5ab0c9e527c8 2253 devel optional 
golang-gopkg-eapache-queue.v1_1.0.2-2.dsc
 4510b04d92aa935da3ca2a9ec02e5e4e 2116 devel optional 
golang-gopkg-eapache-queue.v1_1.0.2-2.debian.tar.xz
 9e449fe0ef86f2aa6107360c8a7b0871 5590 devel optional 
golang-gopkg-eapache-queue.v1_1.0.2-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHA38RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaesVA//brZZgoxa4Q+lhjpTy32UzwByv3wdqwYA
+maerA2s1TWhJ5lTym4NtsI+Bg5eUdVvvTo7uJrIDS4dslU0G2+OCFLlLUkeGZAM
EYCcbf/4/R/3Y/3/MKBVUYAIfwSkAvEDAmPLec42cq1/aAZHrUlBxKhIRQuKoJom
9lpLBoCG+BVY/+sca123Jf01tOgGIZgr4gwWK2DKaFcrNQi3z9qgu3PYi6OBUsHf
VlsS4CYMN1BFMz39GFhANk26v7ZUGqy3RBGC9m9zIYfZBxtKtWjXVAEQ5wvBd7W6
XmRCWOc4vv1RdZHyzsM/vIDyKcPvdQUOhisFoYSc2er+v7K2M4/d80ek9uRNS3bx
uDayG9YcFN2b6bQ9YKvAXvnH7kRuMSD7cGmfmRNKrr2udU139SS8mnyW5PM33ybO
0rNNpEVywwL+eXUx3sRYn1XqtMUahadtSfVBDSbK242rZheull+PcjHg5hP9dM01
PMbPDgTMv7TQZuCXNgrKVe5KpbDP5Sdv3tNUcn0hemQnFbmE/OrrmDjW8r3I9mX0
j8nSyXJQrzuDaqk7LvaR7U9ROPe80r8SEj9HU1KM760kiFy6JyxSVPN++qEFJTSK
IGwrOtEnqNxcKB+5DM28pvHGV8UevfqlUn0g+bamwKx4gu1TppIyN11VSh2v89nD
f/AmlwkEta4=
=Ki2W
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-vjeantet-grok_1.0.0-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-vjeantet-grok_1.0.0-1_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-vjeantet-grok_1.0.0-1.dsc
  golang-github-vjeantet-grok_1.0.0.orig.tar.xz
  golang-github-vjeantet-grok_1.0.0-1.debian.tar.xz
  golang-github-vjeantet-grok_1.0.0-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-go.pedge-lion_0.0~git20171203.2a81062-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-go.pedge-lion_0.0~git20171203.2a81062-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-go.pedge-lion_0.0~git20171203.2a81062-2.dsc
  golang-go.pedge-lion_0.0~git20171203.2a81062-2.debian.tar.xz
  golang-go.pedge-lion_0.0~git20171203.2a81062-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-gopkg-eapache-go-resiliency.v1_1.0.0-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:13:43 -0500
Source: golang-gopkg-eapache-go-resiliency.v1
Binary: golang-gopkg-eapache-go-resiliency.v1-dev
Architecture: source
Version: 1.0.0-2
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-gopkg-eapache-go-resiliency.v1-dev - resiliency patterns for golang
Changes:
 golang-gopkg-eapache-go-resiliency.v1 (1.0.0-2) unstable; urgency=medium
 .
   [ Paul Tagliamonte ]
   * Remove Built-Using from arch:all -dev package
 .
   [ Alexandre Viau ]
   * Testsuite: autopkgtest-pkg-go
   * Fix priority-extra-is-replaced-by-priority-optional
Checksums-Sha1:
 ed311778c6e1cddec066e244636bcebff3233e94 2369 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2.dsc
 d6758cc6c096223e4005ec9445107c882c1be773 2100 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2.debian.tar.xz
 8f69b358c86e3eab8248dd818f15cc82a6bb4224 5630 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2_source.buildinfo
Checksums-Sha256:
 45d8aeca8ed23c88179f58ecaf57647fff4f743fc29d4c3501a126aa77efd9f2 2369 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2.dsc
 73b6f0e6bdd9a038b9891644a45be44a336e5718c20e9d82527cd0586c1ca86d 2100 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2.debian.tar.xz
 69ffc021003ff3423f139451aa0d83fb308b851ec51c44c8aa0efa9e834895dd 5630 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2_source.buildinfo
Files:
 1e36dbc23419c62aab115bb4115fdc1a 2369 devel optional 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2.dsc
 d63ea9c8fc35aef7f0ee22b303455cfc 2100 devel optional 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2.debian.tar.xz
 0c38055b38a9844f831a4d9d2de111c5 5630 devel optional 
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHBMoRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacWMQ//WUFxcULeySK2byeTG56IDs50KSZBPvqy
4DrkXqUMeYgwqkqgHvtE8cYdSRBBiKVIM+vm4JqIsFbA2u/kbsEUVgTOER4WXVK6
wy2MYVn5U7/L7FndiiUiEWZk9AcqYmbsX0BFr8oaZZDLM+JPrzf5FIHIZ1U9rqAD
f37SW1/HNz71NaE1d3EApLMVD1JJDWTGCOhkzFZZHH3h/kzxDpeLpx0YtF87x0EZ
BClQcj3mMz+P/lzg3Az+/zVmJPoPJNpvVOoJenKydWSYiJnkk/pV818JI4bvsxpK
xU8PR+E7iyu+i5kt1YIlyodphTIUPcwRojXQ4PkjxPrCEbIV93/T8Yz5eCt1Wn2K
9fOWTzpqWZiN49m6XT5kiAmbJN9IU7F8kNGMHOu7Fq07rOAyBRcuJkj7cBH0qymB
ItxFdF/cm4INusytFaTQHV4GT7EGTYDweMYM8sYTB/ag2BMADPhDJhlxMLJIBJ1b
1rCvXGGtpB858EIVVHWSr29lhLkALje95JSuy8k/RVuXExRIfASiiKS3niY1mnqc
zuQ4BORjcurDt6vhrsWsQFqS8gwcKnis6a7dNJpO8mRZTZWgtj65eYZYWXe36mo1
ygLumot8/PPigtam9MlWiO6ATiqVYwRq4LcoNPb9IvchcjDGySQP1t6j62YDdKzA
pNwhHCb3Ys4=
=agDB
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-eapache-go-resiliency.v1_1.0.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-eapache-go-resiliency.v1_1.0.0-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-gopkg-eapache-go-resiliency.v1_1.0.0-2.dsc
  golang-gopkg-eapache-go-resiliency.v1_1.0.0-2.debian.tar.xz
  golang-gopkg-eapache-go-resiliency.v1_1.0.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-go.uber-zap_1.7.1+git20171031.f85c78b-3_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:26:07 -0500
Source: golang-go.uber-zap
Binary: golang-go.uber-zap-dev
Architecture: source
Version: 1.7.1+git20171031.f85c78b-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-go.uber-zap-dev - Blazing fast, structured, leveled logging in Go.
Changes:
 golang-go.uber-zap (1.7.1+git20171031.f85c78b-3) unstable; urgency=medium
 .
   * Move to salsa.debian.org
Checksums-Sha1:
 80c7669debe25ef6125ae472b7a364c7f4ab4dd1 2390 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3.dsc
 290af11a2ec630b71005250ee4bd5b14e398004a 2716 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3.debian.tar.xz
 c41f6ba25593e6a694b73f21691d2c477ef9213d 6011 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3_source.buildinfo
Checksums-Sha256:
 aafc092ae08e4c49ca0482e0cad4b660007739de0392435d488ecc03bbc27b5d 2390 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3.dsc
 3eb588b1f3dce314d140f1bcf9a1325bc9db1a2a31b915ad692f838d39edfa26 2716 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3.debian.tar.xz
 473e594c96f16a6a7055290513db9a040a7d1225d5fc9ca43a44991c1b3f240d 6011 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3_source.buildinfo
Files:
 db762b6a59e09d425ce0dd37b546ae4d 2390 devel optional 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3.dsc
 dbe73ed82318796557f1cad8d7d124f0 2716 devel optional 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3.debian.tar.xz
 d3d9811fcb92880ec3ea409052e39251 6011 devel optional 
golang-go.uber-zap_1.7.1+git20171031.f85c78b-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHB5ARHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xad/aA//VRwZmaH4HwRxIqPsS9UPR5mnhN4iMlD2
q08oHtBXlOLl3gwgTBwDIembqCZmgwtQX/7xOYK3PHqe5nFuLHAtXsyNoPmmWiti
87uAtvG+9kZv0VYfDNQsCwCakM/dwhi7OQ7HnsS75ZEXrdIu0fQjjysEqwDvXGOi
PW8wbzIdeMTUNI28mejH+yS/BceZQW3xZBtcWfnRiB02LaviHmpRjPEfP8LJjakp
nzH9oUHAbmfV8FJEf63dfV5wsjj0SrENgwXSP8iCieN/H0MwMUZw5I1zLj3CZfqT
weC2MPU28HLy5fZY+lrnmv4WyChUnfHjs+qyR5tPylTKA4aBBVXhxFGE+QpRqbIi
D0tGQI6/sJD++Npm5Q9jr5COvz3fLJDRIcPfsqGJt/YPUoDqDJplFWQMmkqm7EOu
iCEcIGh9UR9QIUocqUJxbAkYV6AIfYY2rwNGPyNQ4a7uEcHzeX/KwKJOy59nC+Bs
bU/c934FvsTCB00Ql8DKE86pQweNGJZhlSJPyiBff6Y9bh0U7zcvjWTv5Q3LNwkS
wTWdSV/E2ebpjlcGN5FilfCHAaMVskPMjg4H+4Z/b+HZ8uXlbPVtNmgOY7BNO78t
UcKP/nQNvt3BZh6GJXDD9kDLeeUmVelRhVEQiS+qCHWBBlSLbjs+llzPzEBBLkpn
/UpFlJcpNfw=
=BHOV
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 22:36:13 -0500
Source: golang-github-vjeantet-grok
Binary: golang-github-vjeantet-grok-dev
Architecture: source
Version: 0.0~git20160427.0.83bfdfd-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-vjeantet-grok-dev - simple library to use/parse grok patterns 
with Go
Changes:
 golang-github-vjeantet-grok (0.0~git20160427.0.83bfdfd-3) unstable; 
urgency=medium
 .
   [ Paul Tagliamonte ]
   * Team upload.
   * Remove Built-Using from arch:all -dev package
 .
   [ Alexandre Viau ]
   * Move to salsa.debian.org
   * Testsuite: autopkgtest-pkg-go
   * Remove supp...@sipwise.com from uploaders.
   * Fix priority-extra-is-replaced-by-priority-optional.
Checksums-Sha1:
 23a1934d488712892f98fb8c0d23e0984c41b9cf 2376 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3.dsc
 18b519ed7480979007848036d3003d0e697dcd6d 1700 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3.debian.tar.xz
 ec86c5d14a0f44e29dd79b0176c70491dd80f9c3 5660 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3_source.buildinfo
Checksums-Sha256:
 0e063103ccdcb905bc0d74d6bd4e648cf552c8c91e469fd4871ffc93caef9a23 2376 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3.dsc
 bcd42809042b07c35f40924f21387af58ca628cba644755b24490140d27f62e8 1700 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3.debian.tar.xz
 e9c3a015dff664cb6d297c7934b643b12883abad34710d9679f339800d3facda 5660 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3_source.buildinfo
Files:
 06088fd0b6746bd5bc42331b636654af 2376 devel optional 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3.dsc
 35ee6a1b5d0bd7a5751a8257c84878e0 1700 devel optional 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3.debian.tar.xz
 2a063898d6367afa0170e77f8cb97eb3 5660 devel optional 
golang-github-vjeantet-grok_0.0~git20160427.0.83bfdfd-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHCiURHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafR/hAAnGIUAirBWcPX7/iNyIgzZjq/0R+XESzE
T5fRFQrwciUQvGzdULZrjZy+hWl6UFG+0DS0ziaNsKu6hcgLvN6ntb1bWaXq9q98
JfvWV0evfyqoVgdhrzdOVXYiJMPs4Hc9F3gAUuUd0BTIC5j/9ewwpGQ693/1d4j4
I0Y2VEJsBfG01YjvWSZcwUh9HUBbvAji8yv/2ARWpSu4OYn/n/sCb32BpeLMQZfy
jjlxNING9owHXT66aVcaIlPpA501oEcnTvFauT/c1ZWBFU5BYrbdDXcfk6YyoQhT
fub8EevWLIQ8IKd/kMIrmBacn0tXMs3/jlQ+3+ii71q0xa3W/iaBZmvulxFJsL8a
agKTNXeIuwbvxzrfPueoW3/MvI+jQlr23DoJ7NKPwvL27SQGtUo1UHU4sFgOSVV+
uT/lGZieWNrKIKwIHPcjpQ1kzJ9Gm0yjzKeYIxDBqbLJoYgDYp+5kMCbooeSUj3L
yBqm6ERT9f66in/txAJAdmqw8UH8UIe4eX0juEeLBG5p1jxbh0r+DQJQo2UBb7mn
p0v6+wIsRAHGpvhFI3/swTliJyxb9PzeSDdNIIN+Te4XdFVNk8rnjasUU6jysTMf
ajdE7t2dmHNWYfYsD6qRQJi+iKy3DXiaB+tE1ccP1w4hu+Ksp1PZAen71mMANIex
5GHzBfGqB8o=
=6qyl
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-gopkg-dancannon-gorethink.v1_1.4.1-3_source.changes

2017-12-29 Thread Debian FTP Masters
golang-gopkg-dancannon-gorethink.v1_1.4.1-3_source.changes uploaded 
successfully to localhost
along with the files:
  golang-gopkg-dancannon-gorethink.v1_1.4.1-3.dsc
  golang-gopkg-dancannon-gorethink.v1_1.4.1-3.debian.tar.xz
  golang-gopkg-dancannon-gorethink.v1_1.4.1-3_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-unknwon-com_1+git20170819.13.7677a1d-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-unknwon-com_1+git20170819.13.7677a1d-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-unknwon-com_1+git20170819.13.7677a1d-2.dsc
  golang-github-unknwon-com_1+git20170819.13.7677a1d-2.debian.tar.xz
  golang-github-unknwon-com_1+git20170819.13.7677a1d-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2_source.changes 
uploaded successfully to localhost
along with the files:
  golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2.dsc
  golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2.debian.tar.xz
  golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:15:38 -0500
Source: golang-github-ugorji-go-msgpack
Binary: golang-github-ugorji-go-msgpack-dev
Architecture: source
Version: 0.0~git20130605.792643-2
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-github-ugorji-go-msgpack-dev - encode/decode and rpc library for 
msgpack and Binc
Changes:
 golang-github-ugorji-go-msgpack (0.0~git20130605.792643-2) unstable; 
urgency=medium
 .
   [ Paul Tagliamonte ]
   * Use a secure transport for the Vcs-Git and Vcs-Browser URL.
 .
   [ Alexandre Viau ]
   * Testsuite: autopkgtest-pkg-go.
   * Use XS-Go-Import-Path.
   * Move to salsa.debian.org.
   * Change my email to @debian.org.
   * Fix priority-extra-is-replaced-by-priority-optional.
Checksums-Sha1:
 83db280b4a4a03c12346595ee6324694ae853c81 2455 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2.dsc
 7445c14c85182ca769fed77650966d70ddb1749e 2140 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2.debian.tar.xz
 56960e6db04dbec6478424cffd4f41cab9808df9 5668 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2_source.buildinfo
Checksums-Sha256:
 ece582465866d7b72efbce7c3cfdd78a43a9c8044f122035e1965f2356d200f6 2455 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2.dsc
 c10c1bfece4f058481a1ae8a9880be89fea9837eac1c8378ebe16320c164251e 2140 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2.debian.tar.xz
 782bb90cbb3e09b851fcbb57754ba989d2ae2b3f1df796baeef067c6a22fb688 5668 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2_source.buildinfo
Files:
 439a89b5857c03c7de6a018a4bfb647a 2455 devel optional 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2.dsc
 de4608a23479c6e05b12eb8cca330ce1 2140 devel optional 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2.debian.tar.xz
 9e25afa5ffada47e425e6a981ece8eb2 5668 devel optional 
golang-github-ugorji-go-msgpack_0.0~git20130605.792643-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHE0IRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xad2qQ/+ILWOYbMVQdIkCwZkl4xI+JtxgSupQ4v8
tD4Q7ZScE8Eb4b06V15in1DxOfbY9N9gaEJxSOnHpJW+f0trIyzqM7ZEKKtcrTbg
vxuB7PXlVh+uzmM9oPVAYzajhyJniYvjrofrTwp9ml26EFXiA5kEvK2Tshs6fqq+
1GQRqccycBJnH1eK/xgWF8paZouBdRNd8brmYKwc3UCYWq4zzjxwoqVkIceHQKha
kVs8sI4Yc5vmpfNavfdmU7NUCCcVM9w8JQLLTZCl1Mll+i6bb/nFeIZ/5lqhnPZQ
KP+xOZ49X+zblstTjp14fL2dDXDn/BNekRylBJtJZ7GeUK/8lgKVMoLwM7f9d5R5
kFniRecwwUCi2+2bmCs5wOPjjyjLzxssu9H94RRP+b1FoMa6XIlwkpf3ok3sh9Kk
JqTkYzh3N0Iy4rTbFxiB2Cbpr4n6u8ByQx900pnaWZqqFBiKiDWzrmMi48orvECw
sZASfoothdXlebOBkD1L9VKJ6UUB4ehWDLjjSlY+b/zHgQG6z8k87stPAwB397x/
nEBthb/pX9jqeYxV1Ml5OiNsHn6YugE3mGoQyBPdD4bxWbAK/uFi2a2Zd90KtAtY
rsguMs4AKaT0rDnChAIZOreotUlu9HuWCdmhR8pSUnCNdwm4GUgDq9gM8wPiY2Ye
PoqGgjbCCLQ=
=X6EH
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-unknwon-com_1+git20170819.13.7677a1d-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:10:19 -0500
Source: golang-github-unknwon-com
Binary: golang-github-unknwon-com-dev
Architecture: source
Version: 1+git20170819.13.7677a1d-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-unknwon-com-dev - commonly used functions for Golang
Changes:
 golang-github-unknwon-com (1+git20170819.13.7677a1d-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org
Checksums-Sha1:
 8da6814227676f265d7e6d5afc8190fa58985ef2 2465 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2.dsc
 eae767658084d59f71f1ea5ca0542df45d32f39d 1896 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2.debian.tar.xz
 4058d35a8c79264168220bdf75d3c9898fc0fd06 6344 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2_source.buildinfo
Checksums-Sha256:
 2d270bf52b964db484e7abd073076332591fc6ce22b6094369ac28cab36b9336 2465 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2.dsc
 169d1a21614e241a20e0a93e7be996de164457a31ce30bc95d4b18efa651304a 1896 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2.debian.tar.xz
 07d5978adab9a0be0b3c84fa25ccb239fb501399e470dc7c7ebba417dbdb8591 6344 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2_source.buildinfo
Files:
 1d7f5b5df2372c46fdf9bf0e40d35c7c 2465 devel optional 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2.dsc
 fac3e734b206927aeb6bf8faaba3c2a0 1896 devel optional 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2.debian.tar.xz
 c495592fe210f27b77f0b4a553f93aa9 6344 devel optional 
golang-github-unknwon-com_1+git20170819.13.7677a1d-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHEmURHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xad9fg/+KAXCAJjAOqa48TbFKdl9h+aZpM+95d/4
EBm8Z5+p5osYlvQy4ilAd+mlT29EMLd3vkUnmtiPvRGaw195BUkVM5pJRAg14YdU
CcS5QOIjaYDmt6VMDvlufygwBbaZOd4JjenWSDSH+K2GSNEALOKOQid2+wfSB/qC
kRbDgqmSn0ragmWRVdBPBzA3Q6uma/5WQpnFFriQaYPCB0eI40lAc4eeqVL76c2c
jzuW0xkXZ5Z+IQXfUkR1WTc7ApsCSOZIObEadcXdFm3k7N16tqnW5xfDAlKVtF6U
2MnzdCADzGNRa3HL7JF62GAsjCdQ/ZnT0MQn+0vzPwkWMcbySfDT7gE3yVmrvrth
4yRSWGYq0BWNb8T2ZobmJiMrxmQ4K5RmmMwuAH/NYkwG96bgOsEu0yGvV7n++ojh
fLTOsmUl6EXRJzlH/zUKcL4kuiYP1nV3K+Xz5K4J92aYTqZ7kOFerKJonScb6wha
+30GkpODF4eusSll+7bdobwkTYqQA77tldBnPETQKfG/HOnTjFxP8JM68aoelULT
kvxxxOoL8X08HTEpsPJ5hBWUjUMNf3FqgVPc/WD/c+WV3CcVcQontld6mhC1cNRP
9xeimxBeKS3NdldACMFoi4J2vSATuKIAmZejsoTo7KW5yjN4PH36CMoF5CfGcUJ4
OY1Don5W5Ig=
=LUN+
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-ugorji-go-codec_1.1+git20171228.f2ec36a-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-ugorji-go-codec_1.1+git20171228.f2ec36a-1_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-ugorji-go-codec_1.1+git20171228.f2ec36a-1.dsc
  golang-github-ugorji-go-codec_1.1+git20171228.f2ec36a.orig.tar.xz
  golang-github-ugorji-go-codec_1.1+git20171228.f2ec36a-1.debian.tar.xz
  golang-github-ugorji-go-codec_1.1+git20171228.f2ec36a-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-tjfoc-gmsm_1.1-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-tjfoc-gmsm_1.1-2_source.changes uploaded successfully to localhost
along with the files:
  golang-github-tjfoc-gmsm_1.1-2.dsc
  golang-github-tjfoc-gmsm_1.1-2.debian.tar.xz
  golang-github-tjfoc-gmsm_1.1-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-tj-go-spin_1.1.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-tj-go-spin_1.1.0-2_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-tj-go-spin_1.1.0-2.dsc
  golang-github-tj-go-spin_1.1.0-2.debian.tar.xz
  golang-github-tj-go-spin_1.1.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-thejerf-suture_2.0.1-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-thejerf-suture_2.0.1-2_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-thejerf-suture_2.0.1-2.dsc
  golang-github-thejerf-suture_2.0.1-2.debian.tar.xz
  golang-github-thejerf-suture_2.0.1-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-tjfoc-gmsm_1.1-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:29:55 -0500
Source: golang-github-tjfoc-gmsm
Binary: golang-github-tjfoc-gmsm-dev
Architecture: source
Version: 1.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-tjfoc-gmsm-dev - GM SM2/3/4 library based for Golang
Changes:
 golang-github-tjfoc-gmsm (1.1-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org
Checksums-Sha1:
 f623b918cc0b54483f4e2bcd96b85f2f9ee4cc64 2213 
golang-github-tjfoc-gmsm_1.1-2.dsc
 894130e6c393bbe27dceca94837dd57a00f2d92e 1684 
golang-github-tjfoc-gmsm_1.1-2.debian.tar.xz
 a9770e298039413133bdb2933e55347c2b0b6892 5924 
golang-github-tjfoc-gmsm_1.1-2_source.buildinfo
Checksums-Sha256:
 384f2f3137e1fb52f7574ca7e3169653208e8f7789ec8979cb7b0b54810cfc2c 2213 
golang-github-tjfoc-gmsm_1.1-2.dsc
 ef16299059a15019992e0bbb0265767043e29241f59d8b5759aceb18942de58c 1684 
golang-github-tjfoc-gmsm_1.1-2.debian.tar.xz
 d6cd1cfb67647ec28f5ba1b9585de3f7fe7d0d30ebb53a6336dccea61a8df512 5924 
golang-github-tjfoc-gmsm_1.1-2_source.buildinfo
Files:
 90605bbd9cb1f6210236c66820fdaba9 2213 devel optional 
golang-github-tjfoc-gmsm_1.1-2.dsc
 a54184fd298d820e557b09e1e652f29e 1684 devel optional 
golang-github-tjfoc-gmsm_1.1-2.debian.tar.xz
 2ef0fdc860d12cbbdad6d73818813102 5924 devel optional 
golang-github-tjfoc-gmsm_1.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHFnQRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacHTg//esza9HUlqaAs7QHXWH1P3xXtVG9J4t+E
ju/eX84MeuC46FEYqZbzqfmykGZSPlgpiteYsQLXw0KaZxTu5cJWdD1F0oi7M7AY
8uuRX7CzarGDINqTLC5wdNlTuEHP+Bcg3Wp/Iw2ix9ikcd+fJgsM7RKDoPFCP9eS
Y2eWKto1Cpths4T4rq1cpmc3SVnT/hrf9pt/Ad4vYp6q8O4fJyTAS2r1cqGi6Qgk
13wANhrZS8GCeDBEkYooNCKJejK0wnGGv/fHQAmdb0vlDL5pBrTIoIHmdErVFWVR
29mh6D+e05BXNj/0M+uYNB03p4ZYww7rI5tb5iHjzU77OFJa+li3HYyjKKD6lhIG
l+JEagNOQqCKTWzUEzKb6MZTYFq9JP9e9jRsHvFmLgUKsl4+AT0YsH5d6jRc/SZg
JPzrXAk5PdTn0ZGJIig1aHNjLj+Bp9EyKonQrShDTkesp6NnvXd3Gpjv4MCMG5td
zNQwfh/gN0IEv3Khbds+SPyFwX3Xjuyof+E+cDCLTNqORdJbPNCAAQuSI8ZWHQh2
BR518VOejHtHbTFRnTVZBWkKPmOrzi5KAASumz8LsMpZ3AqYQYpvqjwdHwYXvIwR
dVtWIiFxanELdmrdSPxOMdzseT2LWQwuLbSkQUr60Vb3ui7JmMqrfXlZIlyRHyVd
OfKCD2dL0zw=
=TQwr
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-tj-go-spin_1.1.0-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:32:47 -0500
Source: golang-github-tj-go-spin
Binary: golang-github-tj-go-spin-dev
Architecture: source
Version: 1.1.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-tj-go-spin-dev - terminal spinner package for Golang
Changes:
 golang-github-tj-go-spin (1.1.0-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
Checksums-Sha1:
 f47c51098bec35f29880f8bb053a73bc4092648a 2202 
golang-github-tj-go-spin_1.1.0-2.dsc
 b44d0f675f991183aa0253771e48db85c2ea6c79 1964 
golang-github-tj-go-spin_1.1.0-2.debian.tar.xz
 cea480e6fcfee9ee15c7c3e89f251b3b784f24dc 5597 
golang-github-tj-go-spin_1.1.0-2_source.buildinfo
Checksums-Sha256:
 79fcedf66205204cfc59143e440b744e898986353d44aa96b37e9c0f85ac2dfb 2202 
golang-github-tj-go-spin_1.1.0-2.dsc
 de229c67f116a0504acc8beba94b96f335ae109d5c537c6d7ce60a65de445979 1964 
golang-github-tj-go-spin_1.1.0-2.debian.tar.xz
 d00926bab47836911848881e2835bc8cc9be846bc416077a705c5817b95ade67 5597 
golang-github-tj-go-spin_1.1.0-2_source.buildinfo
Files:
 08c854018321fb7c33ecf0c288d0f5da 2202 devel optional 
golang-github-tj-go-spin_1.1.0-2.dsc
 ec88295672c28371b6202fe2334b674a 1964 devel optional 
golang-github-tj-go-spin_1.1.0-2.debian.tar.xz
 93c1b738b2a46f03e764406964224b53 5597 devel optional 
golang-github-tj-go-spin_1.1.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHFwQRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadWvg//dDCuL6kdJauNqlCJNBywOxMNEPAmGIqV
cGYjZFHbPQ3pTwU8NLB3zlU6UWy+dUZe1qeWFEAG97fQjvFOhq3B6WT/0rCa41xF
Ro9VkKzv/tWKZBxo1WY/JgznKRswsBmXCDt+EPIg8oqHWIrEGC9V5/9gHYELD5Z1
8QAOKGb5fJ8vhMgSmfW1ULh9f9VmJtznJQS3V5wDDFnBahnke7Ebfj49sIcq8iTC
t9y7fU1/DEGFLu7HLD5r0mn5QEuPk2ToMMMWCJZDHTyBtuDchCAWqQ2Gtzhlrx2N
nAwPhH2ECkSXbncBlsVAMQ+KOYLpQaYu1RE6GjqtkR1NqmAw5SJm5GuGAItcZxgh
yt+wpXVKinDT3mMnnOT6WgB+VaDzSgH9kVfO9CJk20VZJ6jK5sOyg5f0HK45xtR9
CNe1alSdMwTAhNEW5QeLSecFGZug7Hyy28rRMTB85xWwMYG5/49Yv9pvhwUXuvnn
fzy0vRpt/4TiedMrb79dTUQVMMxOjnBAScZjigimYTqxEao9SgTkVUKwiqQzt8mN
Y4Uolin8sEmTiLtxKMOwSM7m4xJH3+RHjbg+5T1KxEdZOBwmgyS6R9BULjYPtANy
+DqOgxB3uFL12L9YQC6a9sSbSOLvAuuiOS+KtrpuXwsSvcQk0cz3FSo9c15z8WPf
fCCyOrGw408=
=7X1G
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-thejerf-suture_2.0.1-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:36:09 -0500
Source: golang-github-thejerf-suture
Binary: golang-github-thejerf-suture-dev
Architecture: source
Version: 2.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-thejerf-suture-dev - Supervisor trees for Go.
Changes:
 golang-github-thejerf-suture (2.0.1-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
   * Priority extra -> optional.
Checksums-Sha1:
 006d66632c33cd8ae092a7fb6c3416362b3b08a5 2249 
golang-github-thejerf-suture_2.0.1-2.dsc
 226a47f198deba4e51ed7f5d096898835f47e8a6 2180 
golang-github-thejerf-suture_2.0.1-2.debian.tar.xz
 5bc4b3916f8a49ba984160a5cbd0657bda6e6426 5585 
golang-github-thejerf-suture_2.0.1-2_source.buildinfo
Checksums-Sha256:
 dfc1b99814e00a71e410a4a0888074f10fb52a01eab82afbe9183cd28401 2249 
golang-github-thejerf-suture_2.0.1-2.dsc
 98f618ff52931cb81c0e9a9813e4aefc7b932e07bc82953fb700880136e405e3 2180 
golang-github-thejerf-suture_2.0.1-2.debian.tar.xz
 5b6b72c85b1c58655b11de167451c988dd139b556b242cf4357ef23132babe24 5585 
golang-github-thejerf-suture_2.0.1-2_source.buildinfo
Files:
 758531e60f65dd8daa521bd9d5e724ac 2249 devel optional 
golang-github-thejerf-suture_2.0.1-2.dsc
 c7f327cd75744819dce42dd9d4287b04 2180 devel optional 
golang-github-thejerf-suture_2.0.1-2.debian.tar.xz
 7b535235e708b5423c4f57f30daedd69 5585 devel optional 
golang-github-thejerf-suture_2.0.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHF84RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafibg//f3kQjreYWrFLmt0s4POLDdjXK09qbPaL
IQ6X3Jhtq/qYDs2nGCehBu78QKVy6yeTpltSRTl7OnExJhP74wQuTKcvUnYFVBmy
mgIUUZxxlt5TQWCJAi5fSG0LHFDX5hAvoh35Kv9BjG0xj+e2DkTBHUjsnQIdo9VD
y983mpM+WE5XzC5AclzPDvI55AnjY8pxfPnEXE5zz/H2YDwpeNqYZnWxao+FVC4B
mws2vsHcl79ISekEhqOjKXRxCc5r27qUPEOKjmcATxGorDYigIgthVfnReRl076l
S7jy3CHU9wdCwxkKkUnz8WiJdKmgmF41R9KSOF42IXVz8Vhfm0wkQdRU2x1Y6E4Z
jJbuSBS9IQwBpR2hg88vxCT2Rrw7/JeaFE/ExLN/+xmMcanXYfOE5U++6LhbJhcM
0kGuSkQjP2DcBkr+388PjccvFfSWs+Xr13iwpvqKK72/X9eLSFvLJGPdnokisiYA
HbEp1/Kf6CHmjtdaDIwZBl+rQJOc2h5OVXDZg4jTSSDoMgu9Lv1ILlQ1jQ8zL3Kb
2pibkvbUEEMiUN+1G5EcaUMwRAJU5axMKDuwqX6bl9SuzU5CM3YcoIdKJoRxlKs2
lP2uaB3yp65GOPH/h/nWTk1f+Bh9GTX2QXVOz2m42AbZqS4q43Vm5/ItLMMp7imN
ksuks2CpV7g=
=vY2p
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-ugorji-go-codec_1.1+git20171228.f2ec36a-1_source.changes REJECTED

2017-12-29 Thread Debian FTP Masters


Source-only uploads to NEW are not allowed.

source:golang-github-ugorji-go-codec is NEW.

===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4_source.changes 
uploaded successfully to localhost
along with the files:
  golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4.dsc
  golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4.debian.tar.xz
  golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2_source.changes 
uploaded successfully to localhost
along with the files:
  golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2.dsc
  golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2.debian.tar.xz
  
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2_source.changes 
uploaded successfully to localhost
along with the files:
  golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2.dsc
  golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2.debian.tar.xz
  golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-templexxx-xor_0.1.2-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-templexxx-xor_0.1.2-2_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-templexxx-xor_0.1.2-2.dsc
  golang-github-templexxx-xor_0.1.2-2.debian.tar.xz
  golang-github-templexxx-xor_0.1.2-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:46:04 -0500
Source: golang-github-templexxx-reedsolomon
Binary: golang-github-templexxx-reedsolomon-dev
Architecture: source
Version: 0.1.1+git20170927.7092926-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-templexxx-reedsolomon-dev - Reed-Solomon Erasure Code engine in 
Go
Changes:
 golang-github-templexxx-reedsolomon (0.1.1+git20170927.7092926-2) unstable; 
urgency=medium
 .
   * Move to salsa.debian.org.
Checksums-Sha1:
 7c1b9755089249e7a57bc4add3a7b6085c04beb4 2522 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2.dsc
 b904e1a03c2ec6077192bb0779facbaa3ad300de 1964 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2.debian.tar.xz
 9e42fa55dad6313bef849ba0fa116c6132b60935 5802 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2_source.buildinfo
Checksums-Sha256:
 7504cb2662de70bd95f29cbc2a552c9b6bfc1d65144ac909e0a55a3115b5d955 2522 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2.dsc
 cb25b20221c6c47c20bbc80ccbe5f954c85d3cfa8a503001db15267c8e32d02f 1964 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2.debian.tar.xz
 9cca283b168b4c7e97d5549ad6e86c5fb80f70b080bab58f94b3bef67486f1bd 5802 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2_source.buildinfo
Files:
 9152e792a3e9b63e75ed2bf39e20d595 2522 devel optional 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2.dsc
 ca409f77e232f25371beb257dc79a515 1964 devel optional 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2.debian.tar.xz
 6f506c0cf17768fb26d206ae3a3df9cb 5802 devel optional 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHGkERHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacQAw//anjvns2SlH2YZHljVwL3+VVcvRqKjF25
aOupelkiBRt7wzh5jpcY55YLzZXVZnVXDwG+XZny2HRKDq9gUj1oh11O4AmzGw3Y
8crvhb5nWngCUEgNOPdlYt3X5iRubLshCf5u6LxWOL4deP6cO6NfZgTn9k/qlygO
Bwmv4GJ8x7S5x9gn9LBJzRr1OEBu7JqNSsL+DF+Anw2tB92fsqMKJZ7l1OQqYwkU
Ui76kkRwxIr7JwRzW4HY3F78CIIqJFjuSscsq7Noxw82fAPjjL3ILqczrLWR4PUR
lahuzKtnqEgwhwolvzfOCUBfOqbOR7ilaoSIGSU3QFDm+Yl2Ug5/i7iefw5aQ3sB
Fl1VHukuxWoZOAinwKC9CPFP+RjcAIgTQYeL4KbhlQaeSTTQS++/rnsi146gUVdx
FKjBTSQAivIFOVMVa14ZFpMoFgd8/6ECvbl7+aJ31Dvy3A8uFicAyOV980oHgVzv
l6ZsTFl/9UKiNRowUqAIE9DEbj7qCVtkFSY5+qvMMIYQhZzmAtewa6txL9U1nFTJ
A6n+VM6iLyllKbMCGi0C4xCVd6Iq8zI+bJEZ4Q0Os41xVJtTn5PTGgn0l2XBw3Fl
/TA6JOi+HZI9hpY2Sg30IjEA2z8hJ1Br7Wk6ijESRkbls/ntjzEJ4C+UPug/3Waf
hl6uS5vKyuo=
=rTFg
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:40:58 -0500
Source: golang-github-tent-http-link-go
Binary: golang-github-tent-http-link-go-dev
Architecture: source
Version: 0.0~git20130702.0.ac974c6-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-tent-http-link-go-dev - HTTP Link parsing in Go
Changes:
 golang-github-tent-http-link-go (0.0~git20130702.0.ac974c6-4) unstable; 
urgency=medium
 .
   * Move to sasa.debian.org.
Checksums-Sha1:
 3c5759aac42dada563d94649c31a09f1763408bf 2454 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4.dsc
 515c2b2fae3db8ab7978d3fd3933b2fc3477699a 2540 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4.debian.tar.xz
 36962b88e0e8fae198a8f63339dde73d637eca9c 5772 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4_source.buildinfo
Checksums-Sha256:
 4f7524237e87c1b7a492cb3149369b592d6b7678377b4a023232635308d57972 2454 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4.dsc
 6c28c499e981b874b513324d52937d4065b5379ec87e1c1a4356380f7e4a727f 2540 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4.debian.tar.xz
 39cdf7551baf708191dcbb7befc4032034752cf4cab75cd46472eb869019fe63 5772 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4_source.buildinfo
Files:
 2a2efd837040e74196ef3fdc42f93541 2454 devel optional 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4.dsc
 5dbd4fe2d07d14bec508c753da45dd71 2540 devel optional 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4.debian.tar.xz
 ce2bd356bd3e77e9128ed1b9350c3d32 5772 devel optional 
golang-github-tent-http-link-go_0.0~git20130702.0.ac974c6-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHGTcRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaf3/w//aqF1HJiEH1BkrEIuFDwn8P40dBjH7Rxe
PY8HcEmUD/UHlfWK/C417DU85kEDhnOpFdKGJ9z61CX9d92etVsge028xwN9u06m
X8E+eVqpwhX88jcKS0zw+6rTBM/j8C9INAnXYEaZrkPj5SD7RMvIur6qyFnbfvXW
26UhiLYFINqDHYdUEFmPMXJ1peXbrB0VmecBFCfM60HJ6IB9iwFEAx7c7nT8EW1v
V2IjB5ulrwwVoiItfELdk+g/nbW9CcDQ+19wIuAmwHjJlnoZA/C1GQUwUqf4nndt
glKu4QxIk7te9tsnj307VgouhKlVd09l0TMN23ZJagNRLi5NCl17atijMs3Haied
v1PFjRnrwwuX0jut9VW5nXYXuSBbXqoOMmq715q74hTYqcLTaFIPN9Iq5RFbqzCK
pfam1TAxPvw2HP7H9SsYq9BuuSn1yVCRqOsvjvaPtavQmoIhXaI988UmS4qbi5J0
nS02xC+84r2FHrIMzn0nAiFJb+xJyX8Npewwv/aSVar2ePCJZP9Q4XKVkYksQMPn
J6nf7npV071QdscM5T5Gz6o0nTeCgMcEvG7IDXGcX1dVlmFNPb5D4gQraiUZPXx/
6TA5dkgn6o2EmBTpknVg3QtqFh5SS+N1jixkUhIvseTLm8FvynF5Q4SRYz5vJJNE
2oYRVWzKcSQ=
=YjSk
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:48:46 -0500
Source: golang-github-templexxx-cpufeat
Binary: golang-github-templexxx-cpufeat-dev
Architecture: source
Version: 0.0~git20170927.0.3794dfb-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-templexxx-cpufeat-dev - internal/cpu in Go
Changes:
 golang-github-templexxx-cpufeat (0.0~git20170927.0.3794dfb-2) unstable; 
urgency=medium
 .
   * Move to salsa.debian.org.
   * Priority extra -> optional.
Checksums-Sha1:
 0dfd0af15b0f6f473f1b7f9d6af74d4e6fcd8e39 2427 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2.dsc
 a07b1967229e37e277b0035f950b2d14780746e6 2040 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2.debian.tar.xz
 a004fcc50aaac3269d209eb47763e7120fd73e93 5712 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2_source.buildinfo
Checksums-Sha256:
 a92f9c7ccbcd8209b24f8eda0a94eeec485ef34fc6f135ca24e1d43bd00bd70f 2427 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2.dsc
 e5083739c64d6b15bc002cbabe4530744630ff89650a232e3363d7e7278301c6 2040 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2.debian.tar.xz
 48bd3fdf4a46b3ba8f374aa52ebab08e2a4b3c2317a1b6d9e0783d95b6569ccd 5712 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2_source.buildinfo
Files:
 de2dc7b89de6dddc6f459689bb8d732d 2427 devel optional 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2.dsc
 1543c34d1e98078084e01d2219e15b2e 2040 devel optional 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2.debian.tar.xz
 92edccbff7eb79bfbf9cdb48e2ebb45f 5712 devel optional 
golang-github-templexxx-cpufeat_0.0~git20170927.0.3794dfb-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHGsIRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaenBw/+PUoEnL6HOB4VdZm0S5dcEBzPlUixos7v
qGER/je16LvQd2THg7dBJw1A77QjGB724O0kmrMB+ollxxsjOuH0gdhkeJecEu86
OMpH616l8+frfA/ZA/IxAIjLAiTSe2XUbSHMeRq3lW6OkEKgAn5+zcXGmWLFSHQb
oFxQ6ODmXLG26y/Kah8dQc95Nlmk90QWBtRmBVzyKUNwJmzEgPZXIXLRqDEDUGXY
1ycmVamDymU0RlAZGokGd8Ig6aOb5tjYdTlPFkwkBCxPhWg3AB2pLTLG+eWGjFZm
8txnpkeDg7rzurHmnGgXG7FuUP/TBnN6BEY74wgs0qv9Yo+BrsAYpCw8LPgAHWAR
qyWahYN3YcXV39EJJYLBNmbtC+NJdYqFeZe8619baR15jmAzq1RZQT9jz0+FKLNO
3L/qCx3p4UihKY+nlKJszKUcW9shz5MzhCS6+ZBc04GnT9p6T5d53/imvu4VT1d8
n4T+ywcCVFEurXqYJfvwoGQ3nD14DUQ9U85RXb5ILRfI1YQXewxNeE+BsScz1jcs
DQ8QbPmOlaviXT0/KZlMnOhrr46Gx+7xhX2IwJ2i8AvOmBo6ZLAWuPcxOl5YR1Mf
CapUBdL86RRp1pP1gGRZX+asr90HadQQnFNwM5J6t2F1/2CIWyLhnrDSIx2ED7Lo
BTL75742e9g=
=CXVr
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-templexxx-xor_0.1.2-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:44:15 -0500
Source: golang-github-templexxx-xor
Binary: golang-github-templexxx-xor-dev
Architecture: source
Version: 0.1.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-templexxx-xor-dev - XOR in Go, more than 10GB/s per core
Changes:
 golang-github-templexxx-xor (0.1.2-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
   * Priority extra -> optional.
Checksums-Sha1:
 b086c0882fda8dbcd2e5725c68992378f6f35d4e 2272 
golang-github-templexxx-xor_0.1.2-2.dsc
 7e2b63dec60a94996ce1176390bcaec780eb4e0a 1928 
golang-github-templexxx-xor_0.1.2-2.debian.tar.xz
 3de2780fe5e4143d7a9c914ccacdbb76cfafe047 5682 
golang-github-templexxx-xor_0.1.2-2_source.buildinfo
Checksums-Sha256:
 dd01c6674be2345144c94bc17137f5dde0c4db8361a96c94b92cc493d50e666f 2272 
golang-github-templexxx-xor_0.1.2-2.dsc
 c1bafec7e5e9f6078b0ca87627652ba2903f56736c5ef4857fd65167aa7e5a0d 1928 
golang-github-templexxx-xor_0.1.2-2.debian.tar.xz
 f680161b9a8a8f19035a998160417127b75082b3c209bad8079de0ffab9095b8 5682 
golang-github-templexxx-xor_0.1.2-2_source.buildinfo
Files:
 e147a6b4089de16a0f63590b0fbf82a5 2272 devel optional 
golang-github-templexxx-xor_0.1.2-2.dsc
 975d93b067d41a0487a16df26190099b 1928 devel optional 
golang-github-templexxx-xor_0.1.2-2.debian.tar.xz
 b4564dacd898eeeb28d3144eaf193c21 5682 devel optional 
golang-github-templexxx-xor_0.1.2-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHGbERHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacQrQ/9GPXcE1cwrCgDDoCqGHPsF0EzI3Mmswic
jWmSth7SgHjHcWvbmSsy4vjNf+nDY4VPf3QBUjM8x3YoeuPKxtKiRzMFuUflT8v5
OMx03iTWRElhj0J2E8hAq45J2LAf7ki493mvJWyY8MX54VySAe6De06+0wwEHLqE
v+Fu/w0BanRIkXdwH6d3w95t7vgmjRcbH9+X7Yc0cneMGK4DYukWdjn9lmb8C9R6
+ZJyRO+y+ioaXktMZ9NqIxsbBX2qaSD+G9aADDhAjLt38pwIvWndSkkPoEq9dMd/
kdOYAI2/myOoMQwlzS5caIAaIURajeKrJ3ywfZ/9dwaGv7mXsF3WhoTgnoZg7Smw
3NeVXe3WH1wUoZLMjDGPtw02XNpO/3TeVne+U3Jjfw1ZQE35T3vGEY9dCWVPcZf7
vWAOi+GtKJoIpzUU4xsD2t5yald6ZXvL6vu4hMqdpXhOpFMuC2ee59nneHrEvENK
PioMtbw7MOMNgDH0sVpXRhWwT+UsNvmahIYO+R5zQ+wgVCiXGa/xRqXWkRfL9LTg
e9HfsPXn33espJmDxW9ABVHoYZSjjtOb31kgGNKeuHdzRh4OTIFDwtdhMaChyic9
Alvj3yUGDyLKFXssm8MVzOezuPmOoloKFTFydckN5sFb2m/yt8t8yDsgU4Lg5F+k
sQVu1gvmz4c=
=ozd/
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3_source.changes 
uploaded successfully to localhost
along with the files:
  golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3.dsc
  golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3.debian.tar.xz
  golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-spaolacci-murmur3_1.1-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-spaolacci-murmur3_1.1-1_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-spaolacci-murmur3_1.1-1.dsc
  golang-github-spaolacci-murmur3_1.1.orig.tar.gz
  golang-github-spaolacci-murmur3_1.1-1.debian.tar.xz
  golang-github-spaolacci-murmur3_1.1-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-sasha-s-go-deadlock_0.1.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-sasha-s-go-deadlock_0.1.0-2_source.changes uploaded successfully 
to localhost
along with the files:
  golang-github-sasha-s-go-deadlock_0.1.0-2.dsc
  golang-github-sasha-s-go-deadlock_0.1.0-2.debian.tar.xz
  golang-github-sasha-s-go-deadlock_0.1.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2.dsc
  golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2.debian.tar.xz
  golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-sasha-s-go-deadlock_0.1.0-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:05:42 -0500
Source: golang-github-sasha-s-go-deadlock
Binary: golang-github-sasha-s-go-deadlock-dev
Architecture: source
Version: 0.1.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-sasha-s-go-deadlock-dev - Online deadlock detection in go
Changes:
 golang-github-sasha-s-go-deadlock (0.1.0-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
   * Priority extra -> optional.
Checksums-Sha1:
 cbff7e56464a105d3e791da9a7441006db8e50b0 2311 
golang-github-sasha-s-go-deadlock_0.1.0-2.dsc
 04b9cecdd02b2f37e1c46a13a503854a994e9af8 1788 
golang-github-sasha-s-go-deadlock_0.1.0-2.debian.tar.xz
 1a776c2f8b67267554df116397e9ecf532f23eb8 5610 
golang-github-sasha-s-go-deadlock_0.1.0-2_source.buildinfo
Checksums-Sha256:
 e829e8ca57ad6f8478c393c4e15b2f9491bb19f5ef79ee7e0e0521f93f3c22f0 2311 
golang-github-sasha-s-go-deadlock_0.1.0-2.dsc
 54b78803ac7216d61ec9c3f7e5bc2d58bfe196512de5fba5e138b3510ebd88f1 1788 
golang-github-sasha-s-go-deadlock_0.1.0-2.debian.tar.xz
 5981130e176da65b11a0dad759f8c0ea8eddcdbd8e3f970c132ecff76542c4c5 5610 
golang-github-sasha-s-go-deadlock_0.1.0-2_source.buildinfo
Files:
 593b4a31b4440833d4c04b967e4b2253 2311 devel optional 
golang-github-sasha-s-go-deadlock_0.1.0-2.dsc
 f607ca58f8a62e3415e9c19e831dd40c 1788 devel optional 
golang-github-sasha-s-go-deadlock_0.1.0-2.debian.tar.xz
 fdc0182d05e59c61cde994764690d1fe 5610 devel optional 
golang-github-sasha-s-go-deadlock_0.1.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHHrkRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacg0A/7BCbgU47Zs6rd5UibV6CmZtfOegdTNwqt
TDotBrV9Yy0bxhZDhA8Mmuke/mAThJtsFTajSHVcCQf7IPPiuYKSx1VluXTMhtbd
1wsdNzy4+EUCeUvFyU4i++Pj6frZdkzyxpGrDJZoAFjb5EDhGv9iBTfvQdUBm+MA
uZ4PzH7L5DEbLo2XqwgKxFhr+fKzsql8aN81ckg3qqsZ67+nl8xgGh5k5L+IIU+j
vQyNtZQnl5ED439QOj4T7lSyXkUtUcpZQ9Sn+igJkiYmwAOdHye7gwAVbtQKcSJ0
Y3vLf5UFp+XT5Kbt2mwk8+2igXlPDajOjnd6s9enqDfhh7VNL4YvcLLUPGOJ/KAg
pRfybU0MZlVP4744/t7axh0cqRjEnK4OvUh3hGWnpHXjtJBeRBSKjNP9rFvDdaht
tz0kDxJAiuX+FyYK1Kd6z2vPgdefamCJULwvA2T8SsKk4lB7gcyPYq7OsvO83+rp
dWWwYJVs+MPdHPWMYVLRcC3bp90so1Cm7ibNa8YEXqKlQhRJwzWuaxwOjAxWholT
YTbrnb/+NlvsR/KmRie+XplFd9n6K19wgVs0Lu4qhpOYNjdFFMyghpVttF0SjoK6
xmMhO8o7WhG7hworblxBueGAB+cdLPkpbkMW496R6nB2ME50EhfPppbT3AnjMpug
J8XT//P5KCs=
=GvfA
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-spaolacci-murmur3_1.1-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:00:11 -0500
Source: golang-github-spaolacci-murmur3
Binary: golang-github-spaolacci-murmur3-dev
Architecture: source
Version: 1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-spaolacci-murmur3-dev - Native MurmurHash3 Go implementation
Changes:
 golang-github-spaolacci-murmur3 (1.1-1) unstable; urgency=medium
 .
   * New upstream version.
   * Move to salsa.debian.org.
   * Priority extra -> optional.
Checksums-Sha1:
 3b2452a2fd8c63acb2ab708cd72c7eddf236c557 2273 
golang-github-spaolacci-murmur3_1.1-1.dsc
 bc97b3b0c42545ecdc10c3028687a611a6380811 7562 
golang-github-spaolacci-murmur3_1.1.orig.tar.gz
 344aa9e621c5f5fc1ac64e837963206b6fc067d5 2196 
golang-github-spaolacci-murmur3_1.1-1.debian.tar.xz
 9b59fee76e371c1237f94dddae88adc46c655f3a 5624 
golang-github-spaolacci-murmur3_1.1-1_source.buildinfo
Checksums-Sha256:
 a038787f3cfaf73af288dbdeae1aefa9ba66562dcf8957b52eb94964157c5587 2273 
golang-github-spaolacci-murmur3_1.1-1.dsc
 75a455b2cef5cc218354344e46bd35254ea012d4b05396d0c674663e7086ec0e 7562 
golang-github-spaolacci-murmur3_1.1.orig.tar.gz
 d41e1d0f00b21b417939a29fa683113bc7b40b2f11c8bb127bd723f6b20c05fb 2196 
golang-github-spaolacci-murmur3_1.1-1.debian.tar.xz
 b4eba127f3b1d60f89faccf6b627435445aa66ed199ad1bc1a73ca457714cdba 5624 
golang-github-spaolacci-murmur3_1.1-1_source.buildinfo
Files:
 dd8d1f76fae1703943976989f74d55ed 2273 devel optional 
golang-github-spaolacci-murmur3_1.1-1.dsc
 123ce4b1865b68f668d5279984560d90 7562 devel optional 
golang-github-spaolacci-murmur3_1.1.orig.tar.gz
 e504e2a34f94e3e0157646c17759283b 2196 devel optional 
golang-github-spaolacci-murmur3_1.1-1.debian.tar.xz
 75abdadd07478d6b086b1e527964591a 5624 devel optional 
golang-github-spaolacci-murmur3_1.1-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHHiwRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xad/XxAAlfxa+Xq0mTmf6rGkfHoQ+9sFkTsnemk7
fGHkchXfdAk+DmS5XuUC0AWFna96pmfbAD7Bc6jS/tf4eZzlb1/DY0TIicvvH0qk
5OuYMGLlow/wwpIIEsG+TP4qGqo1xYc9hD+PGj/q2tewvRm9Ezu6Zv29ijzZgAer
0ZL3Ch1lYDWbBKf/FaSv+ouJbFdhBcsR73tgi8PNxVXO6g+tYryeg5jnBPGYLkNc
3k9GoK4qSYOB7A100lsdj0nF1jXGM4jc1dNjZBZA+oQNBfSp9mypfxtR2+/f/6vR
HwtuOYcMKBaaaPRz+YdWQttDm9wwfnI/vRWY3OHJq1RR5QR07Vz26etb/jWxTgGh
BtZkXQkOp/SQC5oe5qPbM/VBZ6tHd0iXInJHScrrBKHgEF7qu1vJrrA6ZoyjhM+J
Q6Fw59qOUfJCLQpuTk18c7UF+Tamru5ER+zyTZ8AFQdLCABBQFpOA6KVj3BUkeB3
g3gyz70f1LU64o57WOdpvwv5nxB8PZ14XrtSJJWbYoXvK5UelKOoGqBg0kl6z4xA
We6VwsbeBZNeluXfI9oXU599+mSccUI0INEEAmAHx+48xtNpLglySVaQlFHUz0ip
kKT8JYBnSJze59UrC3K7WjQQjXrsc2vWf69w6cBicCVaElcK68LSRgpkU6/Z+Ihu
3/U7mQTdfhs=
=QdqJ
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:07:42 -0500
Source: golang-github-rs-zerolog
Binary: golang-github-rs-zerolog-dev
Architecture: source
Version: 1.3.0+git20171214.c2fc1c6-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-rs-zerolog-dev - Zero Allocation JSON Logger
Changes:
 golang-github-rs-zerolog (1.3.0+git20171214.c2fc1c6-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
Checksums-Sha1:
 72005271044ff56042490b11c4f148ed64487bbc 2399 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2.dsc
 d493c4dad7d68e81ccd68d945809cb790dca81ad 2040 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2.debian.tar.xz
 6683338b742358c5803ab62d4bcc3b07bfc37138 6054 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2_source.buildinfo
Checksums-Sha256:
 d627e7f8319cfb3bab1a29f019cab5f66e93dfa18c1a6af55a675bf5c54be799 2399 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2.dsc
 1ec018108778ba7bc521b0cc8c43083df07eab57a4f9f4b8bddc8227a979ba46 2040 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2.debian.tar.xz
 b8365d442198da46a03720b93f4e83ab775e30ec3bd266ab63d5fce02d156b1e 6054 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2_source.buildinfo
Files:
 c2c6675ed357db7c7679b152f67bf490 2399 devel optional 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2.dsc
 c59385d2f825bc638dff15c8ab587d30 2040 devel optional 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2.debian.tar.xz
 469d429442818d68a797c775457a80ae 6054 devel optional 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHHzIRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafLZBAAgszDdxEML0KhJZh3vjMitLmS1YY3oixk
mGq8yvuiS31DhXSp471gQ/fmeape0uqpi/M/4sW85FBuBEx8ObRvmPZ+tI9h9BvE
UkGMq+JpW6J7EF11ctmo+zHCju33fo0C+dsWlKusy4KwoUBengM/SqrHwW2TaVss
DFAfeWc6vls7preKJZp6CPoq/7d1Cx6sYmx+knfLiJd4NBArw8rFKRiMsJ+1SXSB
T9aBsuYsns3cPCQXS/1VPCU7vbmUjGbGKQUIhv8q5KzjtRAPM4Xc8ANnmRW/v8fV
bNYM8/hvpv0GNfB5O5sViWCdIPtVukowkxEelnT/b4xHpU7R9tZ4o8/wSPavr3vm
UA0o7KOKDgyjJn9f7NL1qIxJ51k3nIpS7/ZxkMWRYcmyvw98zNmtvviTjYC2nxG9
S3dXrNLhUrJRw8WV23c8CJU9ROH8ntcDnmV9V7g0g9TsPNGoE59A7f1sz3Px71La
pkSLreknuAifm895GzSh8eBX4LyJk0v0L5Ch3xjtySCMZQfZv2JKxK7VTrpXApnr
h/AvAzSONvrTtmgv4p1Rq6PlLUZX4e5SwyO4lhX8hJrqtykDAqcYizU64ofzkPjs
5Tm9yJJ+nxsTIpk3iEeY7mWDYWlD6+HcOcBaTQlyWy89UtpmrxdILVr1B9MUhavi
jJhp5T8I0Xk=
=cTB3
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Dec 2017 23:52:13 -0500
Source: golang-github-streadway-amqp
Binary: golang-github-streadway-amqp-dev
Architecture: source
Version: 0.0~git20150820.0.f4879ba-3
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-github-streadway-amqp-dev - Go client for AMQP 0.9.1
Changes:
 golang-github-streadway-amqp (0.0~git20150820.0.f4879ba-3) unstable; 
urgency=medium
 .
   * Priority extra -> optional.
   * Move to salsa.debian.org.
   * Use XS-Go-Import-Path.
   * Change my email to @debian.org.
   * Testsuite: autopkgtest-pkg-go.
Checksums-Sha1:
 552402de787213ecd857ce730669125d2e9e 2399 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3.dsc
 135d59e10e9e9040e471b2795ee283633c4f1500 2700 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3.debian.tar.xz
 8809692c9ff898552a6d84fab07fa260db02efa3 5665 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3_source.buildinfo
Checksums-Sha256:
 b559be0ed036f8830184937ffcc39c63fec02e82f1f71d282e3fac8ddbd79c94 2399 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3.dsc
 b8a07cecd388a0ddc362f7558d458dcb2cafeb9f260233cc1c2fb97285d3f4c3 2700 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3.debian.tar.xz
 824a801cab11b369666ba2766cdba57eaf4b7dfcb469df579304118feb3718f3 5665 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3_source.buildinfo
Files:
 b9e48534ce9f3243e756bda3bbfdc70b 2399 devel optional 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3.dsc
 461fd38507fac7db9c6671ea5d87e256 2700 devel optional 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3.debian.tar.xz
 09b59fcb95de17cc5f6d22b57641e325 5665 devel optional 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHHCcRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadxFA//S+iqP0Em/pwSbCNy3v+iNXiu/0UKc5c/
iaATWfFVhvmNfNf/NqnEHPeex8bTROqIvGZ7LNXSrnCDb+PiXuQ31Gb3vK7qtVWt
3HuXLlBt7FjrOEMEB27ttw9vdVv14bpJVfNm9P/+TVxChWYv360lNK8osAs76T+n
sDddDW8xjl8MXYckbUlVW05nXSup60J77t0PijzfRHKfqcriQwnk/E6DhT/Uca1P
s3uThGVCe+qOGLLHh3fr8SM2FLI61qxezdtHWKme4fXIzjbcJtr3wyT3EgVnZou+
6oxbukWYVcYJaq0+Lz4kcJz4IPmE/ttOR5jgswtFO9VbLMI1F1AdVW0hB0IJ8nyH
SDGqJu+XQOIuMrNeHxhXfzYegthjT9/l43prLncvxtE6sSjYQ4m2xgul7oiBjKob
0aNbekT0LRGNHpnfJy8qwml3cc3rc1AaAMH+GkG9e9wXB15TFRt2Gva4q711UE8c
u1IXG8Q+HO1BKRo6e9zl2a1SbxjSZq7bjKkoQKJEcXlXlw23Q5Bpy0dwtPD0XgmR
V+n0WxtNTL/tGlWWyp/tjsN69o/FOKbJujG9qONF10NSweb64yW6URXEDtubyf+A
yKWf+zAIJITMv8v1ccp6O8DNf6xh4EQTZ1ZdlwVb+A7hcmD0r+AZYfRY+SUU8/CX
lLP4fikZ6/c=
=XMYV
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-rs-xid_1.1-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-rs-xid_1.1-2_source.changes uploaded successfully to localhost
along with the files:
  golang-github-rs-xid_1.1-2.dsc
  golang-github-rs-xid_1.1-2.debian.tar.xz
  golang-github-rs-xid_1.1-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1_source.changes 
uploaded successfully to localhost
along with the files:
  golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1.dsc
  golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3.orig.tar.xz
  golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1.debian.tar.xz
  golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-rakyll-statik_0.1.1-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-rakyll-statik_0.1.1-1_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-rakyll-statik_0.1.1-1.dsc
  golang-github-rakyll-statik_0.1.1.orig.tar.gz
  golang-github-rakyll-statik_0.1.1-1.debian.tar.xz
  golang-github-rakyll-statik_0.1.1-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-rs-xid_1.1-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:09:16 -0500
Source: golang-github-rs-xid
Binary: golang-github-rs-xid-dev
Architecture: source
Version: 1.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-rs-xid-dev - globally unique id generator thought for the web
Changes:
 golang-github-rs-xid (1.1-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
Checksums-Sha1:
 c1be08c8c18efdd8f8f7bc02447bf803cf1041f4 2166 golang-github-rs-xid_1.1-2.dsc
 3068c46a15c5755cd77d5cda8dc3d6bbc90bdb51 2024 
golang-github-rs-xid_1.1-2.debian.tar.xz
 b9fd3b75c0920152a75b5b27fb56b16be56f2138 5786 
golang-github-rs-xid_1.1-2_source.buildinfo
Checksums-Sha256:
 4e297fc28d4d112e3fa181ed4d375ecd15ca78a05d09962b07a33a4a168fca3f 2166 
golang-github-rs-xid_1.1-2.dsc
 370db759699586b1c9132c96ff62ec050f1789f9654aa5828c6ef3fa78c7c18a 2024 
golang-github-rs-xid_1.1-2.debian.tar.xz
 fe3819c9c65ffb00bfe34de431c4155ed9c779940a42b80186d48c6a1f726a34 5786 
golang-github-rs-xid_1.1-2_source.buildinfo
Files:
 dd13f7ae19b6e729e28c3dc6a92103af 2166 devel optional 
golang-github-rs-xid_1.1-2.dsc
 05a864a3f0166f92b37cf587cc575a2d 2024 devel optional 
golang-github-rs-xid_1.1-2.debian.tar.xz
 06439a94c32035936c15c55c0fc40902 5786 devel optional 
golang-github-rs-xid_1.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHH7QRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xac5MQ/+Ln2YpC8IeSqn8gyDjDIqijqLb2OAo+3t
xcHqXjiouJCdXGfK8TIXsZv0JlB7rKrdD6IocsL6xpkNL43cbwBCH/zHzjC/+AvP
bbye0hJV670JImjec8Fly4o97tSg9osyCJ9FLOllLTqOhBixUqBXkp0czAMNDdiu
kLUVH3ZGBzldYlkRTCH9t99ntGhoVKAZ1i0S97eU+ROf+d8kZgNV2SXq6tJIKOJh
CAmJGxM1R9dXUYb0y4oXgBGi8dvN6M+HrHc93mtFWJnuupK5Hut0aJ8SGvb2C1WJ
PpfJMDmsh4kx2IpHWZvx/ps0Qs7H/T8MOUcn2b0d6TrgioymCHS1rhIyb4pqWqO1
+H2xmArySNMiskhQeqWZq+Bg+/bTtkUAvpcUVWmjQmmU2xXCFAJHtPeHJOsR25c6
Fmke0lCRs7obO5FJGBn8agRJgx9d5UaY1nxQPoEvtPS7aZai6wlBINUNKabqVtQw
blxK8YILRZehABC6JPQhS1wcc2Brm0KNcgXh3JLvFdzG51UvpsAaT/MZOgiZnIoh
TIuxa2/m08s/i4CnPha/GiFMf3k7CJjkMlkpP6gzkJME3oWkJ8ubOEsQP3RyUJvY
WEVxkksbpjy1K/8QQAgznhrgMXNzthzLcBpuoE8xo2W2uBc5Y0jlnD1wxaXCU1tB
uFL8fslSuTU=
=ZHkV
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:16:42 -0500
Source: golang-github-retailnext-hllpp
Binary: golang-github-retailnext-hllpp-dev
Architecture: source
Version: 1.0.0+git20170901.6e8b6d3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-retailnext-hllpp-dev - HyperLogLog++ cardinality estimation 
algorithm
Changes:
 golang-github-retailnext-hllpp (1.0.0+git20170901.6e8b6d3-1) unstable; 
urgency=medium
 .
   [ Alexandre Viau]
   * New upstream version.
   * Remove supp...@sipwise.com from uploaders.
   * Testsuite: autopkgtest-pkg-go.
   * Priority extra -> optional.
   * Section database -> devel.
   * Move to salsa.debian.org.
   * Create watch file.
 .
   [ Paul Tagliamonte ]
   * Remove Built-Using from arch:all -dev package
Checksums-Sha1:
 d919edf18b27861a47c03137596b19132895f813 2424 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1.dsc
 268795e56c36303dff5bbebc271d2785eaba8d2a 33972 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3.orig.tar.xz
 889aa054331874b7eeb583b46156611f1874c459 2456 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1.debian.tar.xz
 97430da056b23a7094bdf4d5a7bc2acb03193868 5675 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1_source.buildinfo
Checksums-Sha256:
 a95a8f0d5df546c59f4b91c7ffa181556daf2a73da753198556bc08ef664ade6 2424 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1.dsc
 705f9733bc033f3fed9c783097886326363db1f6e96a833c0fb979dc185b 33972 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3.orig.tar.xz
 0e9e59215f816bcfd515aa453245bffe8d17b9768410ee23f83dcc8b4d235f3a 2456 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1.debian.tar.xz
 ceac687805ce822592e2c942bda853cfff7f27fa02b69e064bde65fc90f7335c 5675 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1_source.buildinfo
Files:
 23dfe0bae6b73b2c68fb47184c1d6789 2424 devel optional 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1.dsc
 3df0d21f5399807f4bd75a0223ee213b 33972 devel optional 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3.orig.tar.xz
 e1cc3c058064de84054a8d5a878e7958 2456 devel optional 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1.debian.tar.xz
 525d655e8247bbf5b4feb86070c9 5675 devel optional 
golang-github-retailnext-hllpp_1.0.0+git20170901.6e8b6d3-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHIVIRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaeF6A/+JTHyBQ9mFTMvRodUuvWRbBB2uE93xty5
owJvD5wtcZzOUOrOU+fWtnZ6HWN4WI5NDAaPyb9s/Lu/heqsVqr1Gi6Z/BS/yySA
U5/LaPGr21ERrNE6LReLQlR5+SiDDau4DurmxHVWDVKU7snHCwPluh7ROUjBxf7u
RiI21GrGt5B7GgwHELkxgYcFtG+6WBTAp94xaEPggnuypq4kG/yS2NPboIRCTSyQ
r8ZfDbFUcpi8a/icqoqe6GHXpOHhVvf04GvlBnc2XIov/PnrHIX38OXALIVTjDL7
WqBo+7o6hP1zArQ+ulEGnRKibBfClbRuyLWE7f5rFezGSlMAfSG1XAUy1w9i6Y59
16v7ZtdIa4nC4z82DgvLmq99hVFfXg5s4jfnn7SHQjXi81lZfYR9ek5xKXw9hfxc
lh958PNkj0do6MDOYNroRiK6s+jIFu8wlPyup//tVOQym8m/EQ8dnYBIaaHHI1A9
bKBfiymvh8BfJxlQmlEYGzrd4fcudUOL47zHVEeahSujTTFKLVxD+kMXAVTmGyTp
3gTs63G5F8ujmP0pDFFNTqDtbHOA5SnJHNUX4Sf1PA9iupwvyK/9GT556JNRWdEq
jVHUsu07x2m9zncee0SnF0iw4XSeBbEwNwdGASb0JDLeJ87AkerDxX6fQ+pl7JfO
OcdyPFAV75E=
=VMOa
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-rakyll-statik_0.1.1-1_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:20:38 -0500
Source: golang-github-rakyll-statik
Binary: golang-github-rakyll-statik-dev golang-statik
Architecture: source
Version: 0.1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-rakyll-statik-dev - embed static files into a Go executable. Dev 
package
 golang-statik - embed static files into a Go executable
Changes:
 golang-github-rakyll-statik (0.1.1-1) unstable; urgency=medium
 .
   [ Paul Tagliamonte ]
   * Remove Built-Using from arch:all -dev package.
 .
   [ Alexandre Viau ]
   * New upstream snapshot.
   * Move to salsa.debian.org.
   * Testsuite: autopkgtest-pkg-go.
   * Priority extra -> optional.
Checksums-Sha1:
 5814b71ba7750ad033726b17ee648a623a511374 2325 
golang-github-rakyll-statik_0.1.1-1.dsc
 a6ef7eaffdd865a71fb4dfaa2d58472ebf91ef16 78276 
golang-github-rakyll-statik_0.1.1.orig.tar.gz
 e8058f0abac8ffb22e83b1fb47cf5bbec2002e44 2028 
golang-github-rakyll-statik_0.1.1-1.debian.tar.xz
 bbb58a141ae8112f3b06294aaa4d9473836ac10b 5594 
golang-github-rakyll-statik_0.1.1-1_source.buildinfo
Checksums-Sha256:
 1ab7d5551aafb0c4c2f538ec4c069892f1e0b785ec0d374a0fcf2c0c3e10 2325 
golang-github-rakyll-statik_0.1.1-1.dsc
 c68ef3120a22bcf5bd5e8391db3507baeefc7047aa6539053229885287d0beb3 78276 
golang-github-rakyll-statik_0.1.1.orig.tar.gz
 ddaf17649b9b05ca01286b91db2cba56976fbaa5138bdbbffd938d16296ad200 2028 
golang-github-rakyll-statik_0.1.1-1.debian.tar.xz
 7e3cbbd752e778cfa4c70396eabd539fa8babe70a602112e8a410cfe71edbfc9 5594 
golang-github-rakyll-statik_0.1.1-1_source.buildinfo
Files:
 ce793036ee3e9c2a6692fb35b667f209 2325 devel optional 
golang-github-rakyll-statik_0.1.1-1.dsc
 54f6be96297d2479616b8df0b8128c94 78276 devel optional 
golang-github-rakyll-statik_0.1.1.orig.tar.gz
 7718010078649efd34aa0a8cb41068e4 2028 devel optional 
golang-github-rakyll-statik_0.1.1-1.debian.tar.xz
 6636d4bbfd7f6ef97a6e58d0bd491c95 5594 devel optional 
golang-github-rakyll-statik_0.1.1-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHIk4RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafTiQ/9GoFPDIxj7Dv0O98UqCTcQhinHpcU/ypR
o59o62Ecjo31V6IDlr1t/KXwegdhFQGi1dVeWCX8PvZEuGfjEx4qJ+g2PP3u58Lx
cqVxeqyz0WJpfDpzb3upj6VyU93pAOy93xPoOKo9PskkODp2L+Qy40hPR3AV//RH
gIyZCGEBc8D5MW6/JjmahEdijZNtu5DNd7NpvqNEGQuWgC5R/oIVN0bKyYLJD3Pz
vFppsli3B0HOQqz3R4Un/HDLdfcoYnKTs+BLJQkSFBdMH/Ot2wWKp+DuABAUuHdI
77DrUVpbAVpTfE6n8VQVVNa3Z9kl1GlNrFbEOabjipgpQgH8silLuY63w4FXMxlA
pLZfnSYKfF7BJ0a9/tJrb+Nd4w71QX2HcuoeDEWZ/JQRmyDfT75+gb/5nnlZEYWC
hzl9PCEblEzeV8/Bgng2MI/F0wfGKM6q9WeG9FCS8wQA1BKvo9U8+pckVKoPFKIx
9SNvri73gtG+BtgXHGgYv4/shgAn6lyDF0p2xBjkYlfYDWySROFg9G2PaT/Qxpon
ZuMUxn1XCbSVg9rH/vvJZ6MdR5oK6hHYzrVwQtiJKeS0K2kQghbB3Lm88KTKtgOB
4AWSHEnBCkSrqI23MpVjdVw9vbephTOG+894X7eMk6mcJSWJB4XLy4QecpkeOo5u
Q80i90GVPvY=
=ciCd
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-pointlander-peg_1.0.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-pointlander-peg_1.0.0-2_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-pointlander-peg_1.0.0-2.dsc
  golang-github-pointlander-peg_1.0.0-2.debian.tar.xz
  golang-github-pointlander-peg_1.0.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2_source.changes 
uploaded successfully to localhost
along with the files:
  golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2.dsc
  golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2.debian.tar.xz
  golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-pointlander-jetset_1.0.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-pointlander-jetset_1.0.0-2_source.changes uploaded successfully 
to localhost
along with the files:
  golang-github-pointlander-jetset_1.0.0-2.dsc
  golang-github-pointlander-jetset_1.0.0-2.debian.tar.xz
  golang-github-pointlander-jetset_1.0.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-pointlander-jetset_1.0.0-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:31:48 -0500
Source: golang-github-pointlander-jetset
Binary: golang-github-pointlander-jetset-dev
Architecture: source
Version: 1.0.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-pointlander-jetset-dev - JetSet is a compressed set of numbers
Changes:
 golang-github-pointlander-jetset (1.0.0-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
   * Priority extra -> optional.
   * Testsuite: autopkgtest-pkg-go.
Checksums-Sha1:
 33fb69a7bd7384aa60ca25e96fda9d2f4afbb6a9 2338 
golang-github-pointlander-jetset_1.0.0-2.dsc
 f59fbe006d61d340ddce2921924d60bba83c1b55 2088 
golang-github-pointlander-jetset_1.0.0-2.debian.tar.xz
 0a65649b519695f28b4211fe1b2b632f1e5f6af0 5763 
golang-github-pointlander-jetset_1.0.0-2_source.buildinfo
Checksums-Sha256:
 8fa4954f2d2fc44ad8e05c5a45f6a6a6822e90e0477eac3fdef8e6395ec84ac1 2338 
golang-github-pointlander-jetset_1.0.0-2.dsc
 5e502c6c1bcb7021f6094e0bc56a05a12edab41b7941fb92193cfa8693a88731 2088 
golang-github-pointlander-jetset_1.0.0-2.debian.tar.xz
 12b932ddd9524bf609792b1b2788c808a4fc1762bc85189acd0f6f45a2c90b18 5763 
golang-github-pointlander-jetset_1.0.0-2_source.buildinfo
Files:
 10f050e9ae6a1084d82bf3d6283189e1 2338 devel optional 
golang-github-pointlander-jetset_1.0.0-2.dsc
 83fdd4753c6a049a837d7fa6bd64a3d4 2088 devel optional 
golang-github-pointlander-jetset_1.0.0-2.debian.tar.xz
 38bdbde66aa1cf15b15623dcb3fd3519 5763 devel optional 
golang-github-pointlander-jetset_1.0.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHJOERHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadHHw/+NNiUIp3OIB8GlbPgPBp7+zcLplqYw1z4
bbyUaAN/QJcQE5kmHXYOC0blg3qHS0aSFe5aHOuZIFgO8hd9Hcp7TyLkRT+a6hP7
/6tMoXM3FHFncM7k3my3uAg/l2GAKwsLnrqaN6YWaXTYxlwAu8q6GITLm7cmhghW
kMmKVzGJSk1PeNUXcPdRa+0zkokOHxf63slQv4ZRm9ueUC7ey+NHR1YzEYrflifd
/Evpat+ym5/7TBboKggCUMtNAkkygcd0sH97vWmAyKWpIDR8TcPdhGZCK9nO+xP0
/cjzJV7P5ftZ73yGNHeP6gtabRvYHRalxUrbZUJGY0hiIWFntaaoT8qnO7yvA//l
yQnM0PS+rI9/rwr/mT/wq1vVM8514yi/ojA4TkW3SukpHVT8DMXcvFAZzxSNx0hR
qOYe9vFrVnLOefDNBzUZGyQWHuSPdHzwWZwdGp9DtSKZzsWMkJuuLnsB2PLhzFrt
n9FJ4YHr8xMJk4xfcDxwBpZUBNYpvMGu/+ix+bqVhLrWpx/AkrjZ+wvtM7/eZ/HE
c2UL8c/GGwdv7q2g84jZ+TkjzA171qam9iPI1T3nS2cbWNoEtumUHxyrQaK4n9gQ
PQK7Q1K7rb4r6a7tWGw+z24oMBc+wST43FjEz4dTTGj6YUYwq48S6f+172imIr2g
A76mlASLfss=
=pigv
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-pointlander-peg_1.0.0-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:27:50 -0500
Source: golang-github-pointlander-peg
Binary: peg-go golang-github-pointlander-peg-dev
Architecture: source
Version: 1.0.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-pointlander-peg-dev - implementation of a Packrat parser 
generator - dev package
 peg-go - implementation of a Packrat parser generator in Go
Changes:
 golang-github-pointlander-peg (1.0.0-2) unstable; urgency=medium
 .
   * Move to salsa.debian.org.
   * Testsuite: autopkgtest-pkg-go.
   * Priority extra -> optional.
Checksums-Sha1:
 5d59acf583790ebe4f4965b2504abbbd42f16ae7 2357 
golang-github-pointlander-peg_1.0.0-2.dsc
 959e3dca11d8b0c837819a492b92c9dca5694e7e 2876 
golang-github-pointlander-peg_1.0.0-2.debian.tar.xz
 5194fe2a319e315fcc307e01881ac935d4757e2d 5828 
golang-github-pointlander-peg_1.0.0-2_source.buildinfo
Checksums-Sha256:
 195f4365694d5e32b01986bb449a1fe05da014e571fa884b70ca7476570929cd 2357 
golang-github-pointlander-peg_1.0.0-2.dsc
 afc36b5013ade3470be8089db13938551e5ce1a6ed323ada6afe9d795d6eadc9 2876 
golang-github-pointlander-peg_1.0.0-2.debian.tar.xz
 4ff11b70b6690f68b45d0f918d859068c5388040db6c732107cb83321c51aaa2 5828 
golang-github-pointlander-peg_1.0.0-2_source.buildinfo
Files:
 4d875e5421b14da53ffedc721e28fee8 2357 devel optional 
golang-github-pointlander-peg_1.0.0-2.dsc
 5738b13973956a9ebad709a05027084a 2876 devel optional 
golang-github-pointlander-peg_1.0.0-2.debian.tar.xz
 25f6b1c26fcaf8106b6462c3d5c2c3a9 5828 devel optional 
golang-github-pointlander-peg_1.0.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHJC0RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafw0g/9EHSMp3/4uUvW1OO+73CBz0ZEc440Du6T
vbSmR+Wi7ibUr4ANwphzIvEGTR1/FUFTim4OrkcieK+WfFar0SQSgE1RYFIdXZjL
w7+FPuiRICKjqCs1VtOpAek3/Zci8WvJ5cs+LH6JcblplLIzJbldLuA1rc+F+3lC
SCHoCpHG8bGR1BfrlO0zFTOjm9R6tKg5ghkNHCVIqXCbTXiUDm/LKNYmReATXNrV
7QYsd6+Fost5U6SjU8jXXyU43RjZikrBRgg9+4U/BVMcD8SS0wgJnD7cUCvPPUig
X4OL+8k1kXCP6B7ryofolTrbxN6cLpvcAWvdjGNBRQZqo+Z48H/K9jREw03tYMWN
wj15UjnSLaR1TPPnXa3/o2mVq86WnPgEcxMT2h5XWxfQRs0OVG1SVTS5yJbkWzYr
XtsrX4Q+/yU6MOeJ+GXnuv7cFyDVrwTPtmIFZ8VBCqchBlXN6jWcyH6FAJNybDnn
xRAaGe1FTzPr1nfJPMv7GkBVDqHFEwmsnwUyzwgg/+g52mS2w8npwFZ3FNinUglk
+Ye4D3uKynpOR72vHlIBW0pJSFFc5Tl3QNhL2nr8qWbSG+A+NfcRZZWfvg+ClE/y
2fipLnzJPP1JY3gQAEiMVhePjLmPnwjpoj4dM7bw5Yh0ybITN5HU97YcJ4YyJYIq
fJ5leFrim8U=
=SvIL
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2_source.changes ACCEPTED into unstable

2017-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 00:25:21 -0500
Source: golang-github-rainycape-unidecode
Binary: golang-github-rainycape-unidecode-dev
Architecture: source
Version: 0.0~git20150906.0.c9cf8cd-2
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-github-rainycape-unidecode-dev - replace non-ASCII characters with 
their ASCII approximations
Changes:
 golang-github-rainycape-unidecode (0.0~git20150906.0.c9cf8cd-2) unstable; 
urgency=medium
 .
   [ Paul Tagliamonte ]
   * Use a secure transport for the Vcs-Git and Vcs-Browser URL.
   * Remove Built-Using from arch:all -dev package.
 .
   [ Alexandre Viau ]
   * Use XS-Go-Import-Path.
   * Testsuite: autopkgtest-pkg-go.
   * Priority extra -> optional.
   * Change my email to @debian.org.
Checksums-Sha1:
 42ad3c8c5db5bfcbf901dbf3aa049ac1027c8c64 2467 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2.dsc
 6a1b574f7d2b4426de409916ec9eee941d125d5a 2056 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2.debian.tar.xz
 400bd6fca51c10a8f2e0f85ae6b3ec8949fbbc3d 5690 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2_source.buildinfo
Checksums-Sha256:
 c8178bab48b02cc76673a9da0fd90d3bc35bcb18517199e92f2971e11a2f4f30 2467 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2.dsc
 d13e1a4dac542f739ce1f347cacd35d5dceaf972cd9d951e8afd68be170dbf03 2056 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2.debian.tar.xz
 597737b545d8613a11214d410964e454be7f4aa8b544e996a45e1275d5e76fdf 5690 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2_source.buildinfo
Files:
 baba7e1c0cdd957796b682c9aea40a58 2467 devel optional 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2.dsc
 0ad19a6d88ff2c46fa1da2a27e216d20 2056 devel optional 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2.debian.tar.xz
 32614ba7d8bf0c0de4c6e6565f7b29fa 5690 devel optional 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlpHI1URHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadInA//ZIK0MJ5gDwqdtMLRaIBUt3Le4HqeLOz5
Uex/5FVep4F5QniHPz056TpNFC8Q8al6tsuXiTcPPa1x6VVz0aY0hTLAIPQ9vTB+
o7P3KM52vWnzgeWbaK+iBC0ODXNgemaUUggzq2xHng20A2YOg8NDwP0trnLBFbx5
5o6ShX5FkEswjU8W0uGPG3j6+7FA0v4nnvH1vFAPyciEeufpJAdBlcJjpJR6rXM7
S18ZlRbUF0SDcpGEvSRGyYIoT8+ViK9HzKGDRqKSuR+pgNyJV2uuAF2ew7WYlPRx
n68NbeXLXhsKXL3Supr4O8O5Xnk85xUwmBuF9tbgvXf0mKSTYl4GIcbgZ4TgeBMB
FrkQE979DBFz/GZwVKvi2HXuq5RiPinsyCRGw6ySAecIugojuTxbPua9/6l00x2A
JM6PSX/YdGvxyCBmuXVmfe4KYPVUnuDj8fSUe+rePfiGpKizfz2ONgNyI2j2OrVr
G1wMa1EPI901zkhx+emYkBB5RtoTrH5oymPWY/St28LAPMyUkn4DgyQETJIIoFI8
OOAhKLNnR6ci3C0zzCf/Gre5AWyb9veE7M/gA/F1na4Md9B7cPY77ZTtIJosa7uU
9sy54h2JJcs5TJPjSPUHpDpEhdw45ByNwOvGN4DDymeTdoyHMoCyTZXAtGhwV5GG
jhZkq9SRRVQ=
=F2Oy
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-pierrec-xxhash_0.1.1-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-pierrec-xxhash_0.1.1-2_source.changes uploaded successfully to 
localhost
along with the files:
  golang-github-pierrec-xxhash_0.1.1-2.dsc
  golang-github-pierrec-xxhash_0.1.1-2.debian.tar.xz
  golang-github-pierrec-xxhash_0.1.1-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-pointlander-compress_1.1.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-pointlander-compress_1.1.0-2_source.changes uploaded successfully 
to localhost
along with the files:
  golang-github-pointlander-compress_1.1.0-2.dsc
  golang-github-pointlander-compress_1.1.0-2.debian.tar.xz
  golang-github-pointlander-compress_1.1.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-peterh-liner_0.0~git20171122.3681c2a-1_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-peterh-liner_0.0~git20171122.3681c2a-1_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-peterh-liner_0.0~git20171122.3681c2a-1.dsc
  golang-github-peterh-liner_0.0~git20171122.3681c2a.orig.tar.xz
  golang-github-peterh-liner_0.0~git20171122.3681c2a-1.debian.tar.xz
  golang-github-peterh-liner_0.0~git20171122.3681c2a-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-oschwald-maxminddb-golang_1.2.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-oschwald-maxminddb-golang_1.2.0-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-oschwald-maxminddb-golang_1.2.0-2.dsc
  golang-github-oschwald-maxminddb-golang_1.2.0-2.debian.tar.xz
  golang-github-oschwald-maxminddb-golang_1.2.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-paulbellamy-ratecounter_0.2.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-paulbellamy-ratecounter_0.2.0-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-paulbellamy-ratecounter_0.2.0-2.dsc
  golang-github-paulbellamy-ratecounter_0.2.0-2.debian.tar.xz
  golang-github-paulbellamy-ratecounter_0.2.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


[pkg-go] Processing of golang-github-oschwald-geoip2-golang_1.1.0-2_source.changes

2017-12-29 Thread Debian FTP Masters
golang-github-oschwald-geoip2-golang_1.1.0-2_source.changes uploaded 
successfully to localhost
along with the files:
  golang-github-oschwald-geoip2-golang_1.1.0-2.dsc
  golang-github-oschwald-geoip2-golang_1.1.0-2.debian.tar.xz
  golang-github-oschwald-geoip2-golang_1.1.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers


  1   2   >