[pkg-go] Need review - InfluxDB dependencies

2015-07-17 Thread Alexandre Viau
Hello, pkg-go!

I have been working on packaging InfluxDB dependencies and I am done. I
could successfully compile InfluxDB 0.9.1.

I am now looking for sponsors.

Here is a list of the non-uploaded dependencies for InfluxDB.

[ source package ] | [ITP or version required ]

-> golang-bolt | ITP#781321
-> golang-gopkg-fatih-pool.v2 | ITP#792618
-> golang-github-peterh-liner | ITP#781275
-> golang-github-kimor79-gollectd | ITP#792638
-> golang-github-rakyll-statik | ITP#792634
-> golang-collectd | ITP#792638
-> golang-gogoprotobuf | (0.0~git20140719-2 - UNRELEASED)

-> golang-github-hashicorp-raft-boltdb | ITP#792754
  -> golang-github-hashicorp-raft | ITP#792620
-> golang-github-armon-go-metrics |  ITP#792628
-> golang-github-hashicorp-go-msgpack | ITP#792640
  -> golang-gopkg-mgo.v2 | ITP#732684
  -> golang-gopkg-vmihailenco-msgpack.v2 | ITP#792641
-> golang-github-ugorji-go-msgpack | ITP#792643
-> golang-github-ugorji-go-codec | ITP#792455

-> github.com/bmizerany/pat | golang-github-bmizerany-pat | ITP#792613
  -> golang-github-bmizerany-assert | ITP#785166

-> golang-github-davecgh-go-spew | ITP#792230

I intend to keep an updated version of this tree on
http://whiteboard.debian.net/influxdb.wb

I you want to sponsor some uploads, just put your name next to the
package name on the whiteboard and send me an e-mail so that we know who
is reviewing what.

All of the packages are available in pk-go on Alioth.

As far as InfluxDB itself goes, I am not done yet but I intend to do
that in the next few days.

Thank you in advance,

-- 
Alexandre Viau
alexan...@alexandreviau.net



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

Re: [pkg-go] Comments regarding golang-github-ugorji-go-codec_0.0~git20150815.821cda7e-1_amd64.changes

2015-07-22 Thread Alexandre Viau
Hello Thorsten,

Thank you for pointing this out. I have contacted upstream.

Alexandre Viau
alexan...@alexandreviau.net


On Wed, Jul 22, 2015 at 4:42 PM, Thorsten Alteholz
 wrote:
> Hi Alexandre,
>
> I marked your package for accept, but you should tell upstream that the
> license he mentions in the file header is not BSD ...
>
> Thanks!
>  Thorsten
>
>

___
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 : DH_GOLANG_INSTALL_EXTRA_EXTENSIONS option

2015-07-29 Thread Alexandre Viau
Hello,

This is new dh-golang feature should allow to include more files to the
install in an easier way. It should be useful, for example, with cgo
projects.

DH_GOLANG_INSTALL_EXTRA_EXTENSIONS := .cgo,.h,.c

Will include all files with .cgo, .h and .c extensions.

I have had this issue (not just with cgo projects) a couple times last
week so I thought this would be useful.

I have never done perl before, feel free to comment on the code.

-- 
Alexandre Viau
alexan...@alexandreviau.net
From 41130c1752ee81a5582d63dd424cbc580c081e80 Mon Sep 17 00:00:00 2001
From: aviau 
Date: Wed, 29 Jul 2015 14:51:20 -0400
Subject: [PATCH] New DH_GOLANG_INSTALL_EXTRA_EXTENSIONS option

By default, only .go files are installed.
DH_GOLANG_INSTALL_EXTRA_EXTENSIONS allows to specify more file
extensions to install.
---
 lib/Debian/Debhelper/Buildsystem/golang.pm | 22 --
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/lib/Debian/Debhelper/Buildsystem/golang.pm b/lib/Debian/Debhelper/Buildsystem/golang.pm
index 6b33f69..96a82d6 100644
--- a/lib/Debian/Debhelper/Buildsystem/golang.pm
+++ b/lib/Debian/Debhelper/Buildsystem/golang.pm
@@ -56,6 +56,14 @@ sub configure {
 
 my $install_all = (exists($ENV{DH_GOLANG_INSTALL_ALL}) &&
$ENV{DH_GOLANG_INSTALL_ALL} == 1);
+
+# By default, only .go files are installed.
+my @installed_file_extensions = ('.go');
+if (exists($ENV{DH_GOLANG_INSTALL_EXTRA_EXTENSIONS})) {
+push(@installed_file_extensions,
+ split(',', $ENV{DH_GOLANG_INSTALL_EXTRA_EXTENSIONS}));
+}
+
 my @sourcefiles;
 find({
 # Ignores ./debian entirely, but not e.g. foo/debian/debian.go
@@ -69,8 +77,18 @@ sub configure {
 my $name = $File::Find::name;
 if ($install_all) {
 # All files will be installed
-} elsif (substr($name, -3) ne '.go') {
-return;
+} else {
+my $matched_extension = 0;
+foreach (@installed_file_extensions)
+{
+  if (substr($name, -length($_)) eq $_){
+  $matched_extension = 1;
+  last;
+  }
+}
+if (not $matched_extension) {
+return;
+}
 }
 return unless -f $name;
 # Store regexp/utf.go instead of ./regexp/utf.go
-- 
2.4.6



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

Re: [pkg-go] dh-golang : DH_GOLANG_INSTALL_EXTRA_EXTENSIONS option

2015-07-30 Thread Alexandre Viau
> I think the go tools do not cover files that are referenced by test code, 
> e.g.:

Also, this does not to include files that are used in go:generate
calls. For example, .proto files.

Note that my proposed patch would also allow to specify a file name,
for example ``test.sh`` and it would be installed.

We can extend the default list of installed extensions, but I'm not
sure that I would like a black list. Simply because it would be more
complicated to maintain and I prefer to list what I want instead of
what I don't. However, that's just a matter of preference.

___
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] dh-golang : DH_GOLANG_INSTALL_EXTRA_EXTENSIONS option

2015-07-30 Thread Alexandre Viau
On 30/07/15 03:26 PM, Michael Stapelberg wrote:
> On Thu, Jul 30, 2015 at 3:02 PM, Alexandre Viau
>  wrote:
>> We can extend the default list of installed extensions, but I'm not
> 
> Can you send a patch for that please?
> 

Here you go :)!

-- 
Alexandre Viau
alexan...@alexandreviau.net
From 7d039c7236171e5e4614f42b02a0aa5a690cd429 Mon Sep 17 00:00:00 2001
From: aviau 
Date: Wed, 29 Jul 2015 14:51:20 -0400
Subject: [PATCH] New DH_GOLANG_INSTALL_EXTRA_EXTENSIONS option

By default, only .go, .c, .h and .proto files are installed.

DH_GOLANG_INSTALL_EXTRA_EXTENSIONS allows to specify more file
extensions to install. It can also be used to specify a file name.

For example:
 export DH_GOLANG_INSTALL_EXTRA_EXTENSIONS:=.py,test.sh

Will install all .py files and all files with names ending with 'test.sh'
---
 lib/Debian/Debhelper/Buildsystem/golang.pm | 24 +---
 1 file changed, 21 insertions(+), 3 deletions(-)

diff --git a/lib/Debian/Debhelper/Buildsystem/golang.pm b/lib/Debian/Debhelper/Buildsystem/golang.pm
index 6b33f69..88b323a 100644
--- a/lib/Debian/Debhelper/Buildsystem/golang.pm
+++ b/lib/Debian/Debhelper/Buildsystem/golang.pm
@@ -51,11 +51,19 @@ sub configure {
 my $builddir = $this->get_builddir();
 
 
-# Copy all .go files into the build directory $builddir/src/$go_package
+# Copy all source files into the build directory $builddir/src/$go_package
 
 
 my $install_all = (exists($ENV{DH_GOLANG_INSTALL_ALL}) &&
$ENV{DH_GOLANG_INSTALL_ALL} == 1);
+
+# By default, only .go, .c, .h and .proto files are installed.
+my @installed_file_extensions = ('.go', '.c', '.h', '.proto');
+if (exists($ENV{DH_GOLANG_INSTALL_EXTRA_EXTENSIONS})) {
+push(@installed_file_extensions,
+ split(',', $ENV{DH_GOLANG_INSTALL_EXTRA_EXTENSIONS}));
+}
+
 my @sourcefiles;
 find({
 # Ignores ./debian entirely, but not e.g. foo/debian/debian.go
@@ -69,8 +77,18 @@ sub configure {
 my $name = $File::Find::name;
 if ($install_all) {
 # All files will be installed
-} elsif (substr($name, -3) ne '.go') {
-return;
+} else {
+my $matched_extension = 0;
+foreach (@installed_file_extensions)
+{
+  if (substr($name, -length($_)) eq $_){
+  $matched_extension = 1;
+  last;
+  }
+}
+if (not $matched_extension) {
+return;
+}
 }
 return unless -f $name;
 # Store regexp/utf.go instead of ./regexp/utf.go
-- 
2.4.6



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

Re: [pkg-go] dh-golang : DH_GOLANG_INSTALL_EXTRA_EXTENSIONS option

2015-07-31 Thread Alexandre Viau
Hi,

On 31/07/15 03:59 AM, Michael Stapelberg wrote:
> Your patch still adds an extra option. Can you remove that part
> please?
>
> Also, while you’re at it, install .s files as well? :)
>

This one should work like you wanted!

-- 
Alexandre Viau
alexan...@alexandreviau.net
From 3c38a20f08306f2ee071fd79112aa1191a0d9e36 Mon Sep 17 00:00:00 2001
From: Alexandre Viau 
Date: Wed, 29 Jul 2015 14:51:20 -0400
Subject: [PATCH] Extend list of extensions installed by default

---
 lib/Debian/Debhelper/Buildsystem/golang.pm | 20 +---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/lib/Debian/Debhelper/Buildsystem/golang.pm b/lib/Debian/Debhelper/Buildsystem/golang.pm
index 6b33f69..8688973 100644
--- a/lib/Debian/Debhelper/Buildsystem/golang.pm
+++ b/lib/Debian/Debhelper/Buildsystem/golang.pm
@@ -51,11 +51,15 @@ sub configure {
 my $builddir = $this->get_builddir();
 
 
-# Copy all .go files into the build directory $builddir/src/$go_package
+# Copy all source files into the build directory $builddir/src/$go_package
 
 
 my $install_all = (exists($ENV{DH_GOLANG_INSTALL_ALL}) &&
$ENV{DH_GOLANG_INSTALL_ALL} == 1);
+
+# By default, only .go, .c, .h, .proto and .s files are installed.
+my @installed_file_extensions = ('.go', '.c', '.h', '.proto', '.s');
+
 my @sourcefiles;
 find({
 # Ignores ./debian entirely, but not e.g. foo/debian/debian.go
@@ -69,8 +73,18 @@ sub configure {
 my $name = $File::Find::name;
 if ($install_all) {
 # All files will be installed
-} elsif (substr($name, -3) ne '.go') {
-return;
+} else {
+my $matched_extension = 0;
+foreach (@installed_file_extensions)
+{
+  if (substr($name, -length($_)) eq $_){
+  $matched_extension = 1;
+  last;
+  }
+}
+if (not $matched_extension) {
+return;
+}
 }
 return unless -f $name;
 # Store regexp/utf.go instead of ./regexp/utf.go
-- 
2.4.6



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

Re: [pkg-go] dh-golang : DH_GOLANG_INSTALL_EXTRA_EXTENSIONS option

2015-08-03 Thread Alexandre Viau
Hello Michael,

On Mon, Aug 3, 2015 at 1:45 PM, Michael Stapelberg
 wrote:
> Can you confirm that this works as expected for you? Once I hear back
> from you, I’ll prepare a new dh-golang release.

Works fine for me!

--
Alexandre Viau
alexan...@alexandreviau.net

___
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#797493: Bug#797493: golang-gogoprotobuf-dev: "gogo.proto" is missing.

2015-08-30 Thread Alexandre Viau
Hello Dimitry,

On 30/08/15 10:23 PM, Dmitry Smirnov wrote:
> Re-build of the "golang-gogoprotobuf" package fixes this problem.

This has to do with .proto files now being included by default in
dh-golang. (as of 1.9)

I have prepared a new upload which includes a newer upstream version. It
is now waiting for reviews on alioth:
 - git.debian.org:/git/pkg-go/packages/golang-gogoprotobuf

If you are a DD, please upload it. If you upload the package, please tag
the repository or notify me so that I can do it.

Thanks,

-- 
Alexandre Viau
alexan...@alexandreviau.net



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] Bug#779280: Fixed in 0.0~git20150526-2

2015-09-01 Thread Alexandre Viau
Hello,

This seems to be fixed in 0.0~git20150526-2

Martín, should we close this?


-- 
Alexandre Viau
alexan...@alexandreviau.net



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] Bug#745586: Prepared new upload for golang-websocket-dev

2015-09-01 Thread Alexandre Viau
Hello,

I have prepared a new upload for  golang-websocket-dev. It fixes #745586.

It can be found on Alioth:
 - git.debian.org:/git/pkg-go/packages/golang-websocket

I have also taken the opportunity to clean the package a little bit.

Vincent, can you upload it?

If you upload it, can you please tag the repository, or notify me so
that I can do it?

Thanks,

-- 
Alexandre Viau
alexan...@alexandreviau.net



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] Bug#778629: New version was uploaded

2015-09-01 Thread Alexandre Viau
Hello Martin,

I think this was fixed by 0.0~git20150526-2

Do you agree?

Should we close this or do you need a newer version?

Thanks,

-- 
Alexandre Viau
alexan...@alexandreviau.net



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

Re: [pkg-go] Bug#797702: ITP: grafana -- feature rich metrics dashboard and graph editor

2015-09-02 Thread Alexandre Viau
Hello Dimitry,

Grafana is a great addition for InfluxDB. Thank you for packaging this!

If you can sponsor uploads for me, I will join forces with you and
help with the go dependencies.

I'll have a couple hours tonight.

--
Alexandre Viau
alexan...@alexandreviau.net


On Wed, Sep 2, 2015 at 10:38 AM, Dmitry Smirnov  wrote:
> Draft packaging is committed to
>
> http://anonscm.debian.org/cgit/collab-maint/grafana.git
>
> It is already useful but more work is needed to package golang dependencies
> and document licenses/copyrights of the files in "public" folder.
>
> Help is appreciated and welcome. :)
>
> --
> Regards,
>  Dmitry Smirnov.
>
> ---
>
> You have enemies? Good. That means you've stood up for something,
> sometime in your life.
> -- Victor Hugo, "Villemain", 1845
>(often misattributed to Winston Churchill)
>
> ___
> 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-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] gbp: how to import upstream tarball without tag?

2015-09-02 Thread Alexandre Viau
Just like Martin, my prefered setup is to follow upstream on a
separate branch and tag it.

This is currently not how dh-make-golang works. So you are not able to
pull form upstream/master on the upstream branch generated by
dh-make-golang.

In some cases, you can just download the tarball from github:

> wget -O ../golang-github-gogo-protobuf_0.0~git20150902.0.932b70a.orig.tar.gz 
> https://github.com/gogo/protobuf/archive/932b70afa8b0bf4a8e167fdf0c3367cebba45903.tar.gz
> gbp import-orig 
> ../golang-github-gogo-protobuf_0.0~git20150902.0.932b70a.orig.tar.gz

However, dh-make-golang does more than that. It excludes vendored
dependencies, for example.

--
Alexandre Viau
alexan...@alexandreviau.net

___
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#798031: influxdb: incorrectly named -dev package

2015-09-04 Thread Alexandre Viau
Hello Dimitry,

On 04/09/15 12:04 PM, Dmitry Smirnov wrote:
> There is an "influxdb-dev" but it ships golang sources so it probably should 
> have been named "golang-influxdb-dev". Please consider adding 
> 
> Provides: golang-influxdb-dev
> 
> to "influxdb-dev" and/or eventually rename the latter.
> 
> Thanks.
> 

I'll quote tianon from IRC on a discussion we had on runc:
>  "runc-dev" should probably be named "golang-github-opencontainers
>  -runc-dev" instead :)

So, what should be the name of the influxdb dev package?

- golang-influxdb-dev?
- golang-github-influxdb-influxdb-dev?

I would vote for golang-github-influxdb-influxdb-dev. Its easier to
search for packages if there is only one naming scheme.

pkg-go, any feedback on this?

-- 
Alexandre Viau
alexan...@alexandreviau.net



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] Bug#798451: Bug#798451: toxiproxy: unowned directory after purge: /var/log/toxiproxy/

2015-09-09 Thread Alexandre Viau
Hello,

On 09/09/15 09:37 AM, Andreas Beckmann wrote:> Package: toxiproxy
> Version: 1.2.1+dfsg1-2
> Severity: important
> User: debian...@lists.debian.org
> Usertags: piuparts
>
> Hi,
>
> during a test with piuparts I noticed your package left unowned
> directories on the system after purge, which is a violation of
> policy 6.8:

this is already fixed in the git repository, should be uploaded soon.

Thanks,

-- 
Alexandre Viau
alexan...@alexandreviau.net



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] Usage of Built-Using for dev packages

2015-09-10 Thread Alexandre Viau
Hello team,

During my NM process, I was asked to justify the use of Built-Using on
golang dev packages.

In the past, I was asked to add it to my golang dev packages by a
sponsor from the team.

I don't think that the intent of the Built-Using field described in the
Debian policy fits with this kind of use. It says that "the source
packages of those other packages are a required part of the complete
source".  This is not the case for source code packages.

However, I can see that it can be useful for archiving purposes. Its
easier to see in what condition the package was built.

If we choose that the Built-Using field does not make sense for source
packages, we should reflect this in dh-make-golang.

see:
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-built-using

Have I missed anything? thoughts?

Thanks,

-- 
Alexandre Viau
alexan...@alexandreviau.net



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

Re: [pkg-go] Usage of Built-Using for dev packages

2015-09-11 Thread Alexandre Viau
Hello Michael,

On 11/09/15 02:36 PM, Michael Stapelberg wrote:
> I agree that setting Built-Using on the -dev packages does not make
> sense as long as they don’t contain binaries. golang-gogoprotobuf-dev
> is an example where the -dev package does contain binaries.

About that, should -dev packages contain binaries? Would it be best that
dev packages stay arch:all and ship their binaries in a separated package?

> As the vast majority of -dev packages does not actually contain
> binaries, I’m happy to accept a pull request for dh-make-golang which
> only adds Built-Using to programs (vs. libraries).

I have sent a pull request on GitHub:
 - https://github.com/Debian/dh-make-golang/pull/24

Cheers,

-- 
Alexandre Viau
alexan...@alexandreviau.net



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

Re: [pkg-go] Usage of Built-Using for dev packages

2015-09-11 Thread Alexandre Viau
Hello Michael,

On 11/09/15 03:57 PM, Michael Stapelberg wrote:
> That’s a fair point as well. Do you want to file a bug against the
> package in question?

I will.

Should we also update our policy? We could state that tools should be
shipped in -tools packages and that -dev packages should only contain
the source.

-- 
Alexandre Viau
alexan...@alexandreviau.net



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] Bug#803388: Bug#803388: golang-gopkg-mgo.v2-dev: over-aggressive depends

2015-11-04 Thread Alexandre Viau
Hello Tianon,

Feel free to make a team upload.

Supervisor was in the dependencies as it is needed for tests, but it
should be in Build-Deps. Since we are not running tests, you should
just remove it, or maybe put it in comments in Build-Deps. The same
thing goes for mongodb-server.

This also prevented InfluxDB from building on arm64 and armel I think,
so that will be a good thing to solve.

Cheers,

--
Alexandre Viau
alexan...@alexandreviau.net


On Wed, Nov 4, 2015 at 12:04 AM, Tianon Gravi  wrote:
> Alexandre,
>
> On 29 October 2015 at 12:51, Tianon Gravi  wrote:
>> On 29 October 2015 at 07:35, Tianon Gravi  wrote:
>>> Currently, the -dev package depends on both mongodb-server and
>>> supervisor.  I can't see a reason for supervisor to be in any of the
>>> relations of this package, but mongodb-server really ought to be in
>>> Suggests instead since it's not necessary for it to be installed for
>>> the proper user of the -dev package. :)
>>
>> I'd also add that I'm happy to make the modification myself if you'd prefer. 
>> :)
>
> Mind if I make a fix for this and do a "Team Upload"?  Was there a
> particular reason for these packages to be in Depends instead of just
> Suggests?  Was there a reason for supervisor to be listed at all?  I'm
> having trouble seeing rationale but I don't want to step on toes. :)
>
> ♥,
> - Tianon
>   4096R / B42F 6819 007F 00F8 8E36  4FD4 036A 9C25 BF35 7DD4

___
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#804294: boltdb: upstream version bump: 1.1.0

2015-11-10 Thread Alexandre Viau
Hello Tianon,

Feel free to make the upload, as I am currently going trough an exams
period :)

Let me know if you have any issues, I can always find time to help.

thank you for your work!

On 06/11/15 07:52 PM, Tianon Gravi wrote:
> Package: src:golang-github-boltdb-bolt
> Version: 0.0~git20150715.980670a-1
> X-Debbugs-CC: Alexandre Viau 
> 
> It'd be really excellent if we could get a bump to the recent 1.1.0
> release, especially since it adds support for architectures like
> arm64. :)
> 
> As usual, willing to do the bump work myself as a team upload if you'd prefer!
> 
> I've tested the following patch, and it builds successfully.  I also
> tested reverse dependencies via ratt and they all build successfully
> too, so I think this is a major win:
> 
> diff --git a/debian/changelog b/debian/changelog
> index 13963ae..fd83aec 100644
> --- a/debian/changelog
> +++ b/debian/changelog
> @@ -1,3 +1,9 @@
> +golang-github-boltdb-bolt (1.1.0-1) UNRELEASED; urgency=medium
> +
> +  * Update to 1.1.0 upstream release.
> +
> + -- Tianon Gravi   Wed, 04 Nov 2015 15:14:31 -0800
> +
>  golang-github-boltdb-bolt (0.0~git20150715.980670a-1) unstable; urgency=low
> 
>* Initial release. (Closes: #781321)
> diff --git a/debian/rules b/debian/rules
> index 02f4969..b530be5 100755
> --- a/debian/rules
> +++ b/debian/rules
> @@ -13,4 +13,4 @@ override_dh_auto_install:
>   rm -rf --verbose $(TMP)/*/usr/bin
> 
>  override_dh_auto_test:
> - dh_auto_test -- -timeout 12000s
> + dh_auto_test -- -short
> diff --git a/debian/watch b/debian/watch
> new file mode 100644
> index 000..6aad255
> --- /dev/null
> +++ b/debian/watch
> @@ -0,0 +1,3 @@
> +version=3
> +opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/bolt-$1\.tar\.gz/ \
> +  https://github.com/boltdb/bolt/tags .*/v([\d\.]+)\.tar\.gz
> 
> ♥,
> - Tianon
>   4096R / B42F 6819 007F 00F8 8E36  4FD4 036A 9C25 BF35 7DD4
> 

-- 
Alexandre Viau
alexan...@alexandreviau.net



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] Bug#803359: Please upload golang-github-ugorji-go-codec-dev 0.0~git20151112.0.1a8bf87-1

2015-11-16 Thread Alexandre Viau
Hello Dimitry,

Can you please upload golang-github-ugorji-go-codec-dev
0.0~git20151112.0.1a8bf87-1 ?

I have prepared it as you requested.

It is on mentors:
 -
http://mentors.debian.net/debian/pool/main/g/golang-github-ugorji-go-codec/golang-github-ugorji-go-codec_0.0~git20151112.0.1a8bf87-1.dsc

Thanks,

-- 
Alexandre Viau
alexan...@alexandreviau.net



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] Bug#804187: Please upload golang-github-mattn-go-sqlite3 1.1.0_dfsg1-1

2015-11-18 Thread Alexandre Viau
Hello Tianon,

Can you please upload golang-github-mattn-go-sqlite3 1.1.0_dfsg1-1? I
have prepared it as you requested.

It is available on mentors:
 -
http://mentors.debian.net/debian/pool/main/g/golang-github-mattn-go-sqlite3/golang-github-mattn-go-sqlite3_1.1.0~dfsg1-1.dsc

If you could also tag the repository, that would be great.

Thanks,

-- 
Alexandre Viau
alexan...@alexandreviau.net




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] Bug#807075: ITP: golang-github-jwilder-encoding -- Library for working with compressed arrays of integers

2015-12-04 Thread Alexandre Viau
X-Debbugs-CC: pkg-go-maintainers@lists.alioth.debian.org
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-jwilder-encoding
  Version : 0.0~git20150929.0.07d88d4-1
  Upstream Author : Jason Wilder
* URL : https://github.com/jwilder/encoding
* License : Expat
  Programming Lang: Go
  Description : Library for working with compressed arrays of integers

This is needed for InfluxDB

-- 
Alexandre Viau
av...@debian.org



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] Bug#807123: ITP: golang-github-dgryski-go-bitstream -- dbitstream: read and write bits from io.Reader and io.Writer

2015-12-05 Thread Alexandre Viau
X-Debbugs-CC: pkg-go-maintainers@lists.alioth.debian.org
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-dgryski-go-bitstream
  Version : 0.0~git20151205.0.27cd597-1
  Upstream Author : Damian Gryski
* URL : https://github.com/dgryski/go-bitstream
* License : Expat
  Programming Lang: Go
  Description : dbitstream: read and write bits from io.Reader and
io.Writer

this is needed for InfluxDB



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] Bug#807243: ITP: golang-github-hashicorp-go-version -- library for parsing and verifying versions and version constraints

2015-12-06 Thread Alexandre Viau
X-Debbugs-CC: pkg-go-maintainers@lists.alioth.debian.org
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-hashicorp-go-version
  Version : 0.0~git20150915.0.2b9865f-1
  Upstream Author : HashiCorp
* URL : https://github.com/hashicorp/go-version
* License : MPL-2.0
  Programming Lang: Go
  Description : A Go (golang) library for parsing and verifying
versions and version constraints.



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] Fwd: Updating the pkg-go Team Maintenance policy

2016-01-06 Thread Alexandre Viau
I had posted this to pkg-golang-devel, but here should be a better place.

 Forwarded Message 
Subject: Updating the pkg-go Team Maintenance policy
Date: Tue, 29 Dec 2015 17:38:06 -0500
From: Alexandre Viau 
To: pkg-golang-de...@lists.alioth.debian.org

Hi team :)

I would like to propose an update to the pkg-go Team Maintenance policy.

In order to accelerate cooperation, I would like for us to be able to
upload other's packages without having to ask for permission.

The current policy states that is is strongly recommended to ask
maintainers for permission.

I propose that we change the policy like so:

- putting the team in the Maintainers field is a strong statement that
fully collaborative maintenance is preferred. Anyone can commit to the
git repository and upload as needed. A courtesy email to Uploaders can
be nice but not required.

- Team in Uploaders is a weak statement of collaboration. Help in
maintaining the package is appreciated, commits to the git repository
are freely welcomed, but before uploading, please contact the Maintainer
for the green light.

The text was copied from the Debian Python Modules Packaging Team
Policy: http://python-modules.alioth.debian.org/policy.html

This update would still provide a way for maintainers to ask for
permissions, by putting the team in Uploaders instead of Maintainers.

I personally don't care that anyone from the team uploads any of my
packages, but the current policy does not provide me with a way to
indicate that. In the past, I have slowed other people's work by taking
2-3 days to reply to a request for permission.

The downside would be that existing packages were uploaded when the
current policy was in place. So we will have to be careful for the next
few months until everyone indicates their preference by setting the
Maintainers and Uploaders field correctly.

I have attached a patch to this email.

Cheers,

-- 
Alexandre Viau
av...@debian.org



From 6c2876dde7c96b0465d1899d251240bfe183050b Mon Sep 17 00:00:00 2001
From: aviau 
Date: Tue, 29 Dec 2015 17:19:06 -0500
Subject: [PATCH] Updated Team Maintenance policy

---
 packaging.asciidoc | 17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/packaging.asciidoc b/packaging.asciidoc
index 4b402f0..1d59f92 100644
--- a/packaging.asciidoc
+++ b/packaging.asciidoc
@@ -11,16 +11,21 @@ All Go packages are team-maintained in the pkg-go team. This has multiple advant
 
  . There are no single points of failure, if one maintainer cannot continue
maintaining a package, another maintainer can easily help out or take over.
- . While it is strongly recommended to ask maintainers for permission before
-   touching their package in any significant way, cleanup changes can very
-   easily be applied to all packages.
  . All packages can share the same technical standards and workflows.
  . When working within a team anyway, it is much easier to get help on any
technical issue.
 
-On the technical side, put `Debian Go Packaging Team
-` into the Maintainer field in
-`debian/control` and add yourself as Uploader.
+A package maintained within the team should have the name of the team either in
+the Maintainer field or in the Uploaders field. We spell the team like this:
+`Debian Go Packaging Team `. This
+enables the team to have an overview of its packages on the DDPO website.
+
+ - Team in Maintainers is a strong statement that fully collaborative maintenance
+   is preferred. Anyone can commit to the git repository and upload as needed. A
+   courtesy email to Uploaders can be nice but not required.
+ - Team in Uploaders is a weak statement of collaboration. Help in maintaining
+   the package is appreciated, commits to the git repository are freely welcomed,
+   but before uploading, please contact the Maintainer for the green light.
 
 //
 // TODO: add an example link
-- 
2.6.4




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

Re: [pkg-go] Fwd: Updating the pkg-go Team Maintenance policy

2016-01-18 Thread Alexandre Viau
Michael,

As I have only received positive feedback, I wanted to go ahead and
update the pkg-go policy but only you has the permissions to edit the
repository[1].

Could you please update it with my patch?

If you have time, please also update the website on Alioth. If not, let
me know and I will do it myself.

[1] git.debian.org:/git/pkg-go/website.git

Thanks,

-- 
Alexandre Viau
av...@debian.org
From 6c2876dde7c96b0465d1899d251240bfe183050b Mon Sep 17 00:00:00 2001
From: aviau 
Date: Tue, 29 Dec 2015 17:19:06 -0500
Subject: [PATCH] Updated Team Maintenance policy

---
 packaging.asciidoc | 17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/packaging.asciidoc b/packaging.asciidoc
index 4b402f0..1d59f92 100644
--- a/packaging.asciidoc
+++ b/packaging.asciidoc
@@ -11,16 +11,21 @@ All Go packages are team-maintained in the pkg-go team. This has multiple advant
 
  . There are no single points of failure, if one maintainer cannot continue
maintaining a package, another maintainer can easily help out or take over.
- . While it is strongly recommended to ask maintainers for permission before
-   touching their package in any significant way, cleanup changes can very
-   easily be applied to all packages.
  . All packages can share the same technical standards and workflows.
  . When working within a team anyway, it is much easier to get help on any
technical issue.
 
-On the technical side, put `Debian Go Packaging Team
-` into the Maintainer field in
-`debian/control` and add yourself as Uploader.
+A package maintained within the team should have the name of the team either in
+the Maintainer field or in the Uploaders field. We spell the team like this:
+`Debian Go Packaging Team `. This
+enables the team to have an overview of its packages on the DDPO website.
+
+ - Team in Maintainers is a strong statement that fully collaborative maintenance
+   is preferred. Anyone can commit to the git repository and upload as needed. A
+   courtesy email to Uploaders can be nice but not required.
+ - Team in Uploaders is a weak statement of collaboration. Help in maintaining
+   the package is appreciated, commits to the git repository are freely welcomed,
+   but before uploading, please contact the Maintainer for the green light.
 
 //
 // TODO: add an example link
-- 
2.6.4



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

Re: [pkg-go] Fwd: Updating the pkg-go Team Maintenance policy

2016-01-19 Thread Alexandre Viau
Dimitry,

Would you like to amend my proposal? You may suggest something else.

The Debian Python Modules Team uses this policy and currently
successfully maintains 800 packages.

You may not agree with allowing new uploads without communication, but
are you also against me allowing it for my own packages? The proposed
update to the policy allows you to indicate your preference. You will be
free chose.

You may consider some of your packages to be more sensitive, so you may
decide to have a different preference on a per-package basis.

In the end, I may be the only one that uses the "feature", but that
should not be a reason to deny it to me.

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Fwd: Updating the pkg-go Team Maintenance policy

2016-01-19 Thread Alexandre Viau
Hello,

On 19/01/16 03:50 PM, Michael Stapelberg wrote:
> aviau, in which way would you want people to express their preferences?

See the patch:

> - putting the team in the Maintainers field is a strong statement that
> fully collaborative maintenance is preferred. Anyone can commit to the
> git repository and upload as needed. A courtesy email to Uploaders can
> be nice but not required.
>
> - Team in Uploaders is a weak statement of collaboration. Help in
> maintaining the package is appreciated, commits to the git repository
> are freely welcomed, but before uploading, please contact the
> Maintainer for the green light.

> Could we re-use the LowNMU mechanism that Debian has,

By putting the team in uploaders or in maintainers, you indicate your
preference. There is no need to maintain a LowThresholdNmu page or
equivalent.

> see https://wiki.debian.org/LowThresholdNmu? Or is LowNMU different than
> what your proposal wants to accomplish? If yes, can you outline the
> differences that are important to you please?

I don't consider a team upload the same as an NMU, as we are a team and
we work together. A team policy would be addressed to members of the
teams and not all DDs. However, it is true that the spirit of it is the
same.

Team uploads can be different as they would require the use of our git
repositories.

Also, it looks like the NMU policy does not apply when you are in the
uploaders, which is the case for us. For example, you subscribe to
LowThresholdNmu and it does not appear in the tracker page for
golang-golang-x-sys, which you maintain:
 - https://tracker.debian.org/pkg/golang-golang-x-sys

-- 
Alexandre Viau
av...@debian.org



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] [uscan] git mode: allow for scanning repositories without tags

2016-01-19 Thread Alexandre Viau
Package: devscripts
Version: 2.15.10
Severity: wishlist
Usertags: uscan

In the Go Packaging Team[1], we face the issue that the Golang community
does not tag releases for library packages. This practice is encouraged
by the golang tools and by the community. Whether that is a good thing
or not is the subject of a broader discussion.

When used with git mode, I would like for uscan to generate a version
number even though the repository is not tagged.

One of our tools, dh-make-golang, is able to do this. For example:
"0.0~git20151028.0.2a60fc2-1":

 - 0.0 is the latest tag. If there are no tags found, 0.0 is the default.
 - git20151028 represents the date of the last commit
 - 0 represents the number of commits that day (counting from 0)
 - 2a60fc2 is the commit id

It does not have to be this exact versioning scheme, others can work too.

I have done a quick research and it looks like this can be done with a
combination of git ls-remote, downloading the last object, and parsing
it for the date.

This would help us a great deal to keep up with our packages, and would
surely be useful for other teams/packages.

This was discussed in dh-make-golang's issue tracker (adding Michael to
CC as he has expressed a friend of his would like to code this):
 - https://github.com/Debian/dh-make-golang/issues/8

[1]:
https://qa.debian.org/developer.php?login=pkg-go-maintainers@lists.alioth.debian.org

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Fwd: Updating the pkg-go Team Maintenance policy

2016-01-19 Thread Alexandre Viau
On 19/01/16 05:50 PM, Dmitry Smirnov wrote:
> I don't understan what are you talking about and what Git have to do with it.
> You mean team repositories hosted at Alioth? That seems to be a good 
> requirement.

Yes, I agree.

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Fwd: Updating the pkg-go Team Maintenance policy

2016-01-19 Thread Alexandre Viau
Dimitry,

On 19/01/16 05:57 PM, Dmitry Smirnov wrote:
> On Tue, 19 Jan 2016 10:06:47 AM Alexandre Viau wrote:
>> You may consider some of your packages to be more sensitive, so you may
>> decide to have a different preference on a per-package basis.
> 
> Perhaps I've missed something... How do you suggest to indicate that?

From the patch:

> - putting the team in the Maintainers field is a strong statement that
> fully collaborative maintenance is preferred. Anyone can commit to the
> git repository and upload as needed. A courtesy email to Uploaders can
> be nice but not required.
>
> - Team in Uploaders is a weak statement of collaboration. Help in
> maintaining the package is appreciated, commits to the git repository
> are freely welcomed, but before uploading, please contact the
> Maintainer for the green light.

Please take the time to read the original proposal:
https://lists.alioth.debian.org/pipermail/pkg-go-maintainers/Week-of-Mon-20160104/002878.html

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Fwd: Updating the pkg-go Team Maintenance policy

2016-01-27 Thread Alexandre Viau
On 19/01/16 06:53 PM, Dmitry Smirnov wrote:
> I need some time to digest the idea

Its been 1 week. Have you thought about it?

> This is still not good as it is quite different from other teams and
> also because it implies specific  interpretation of fields that are
> not entirely obvious...

Indeed, it is not entirely obvious. This is why we specify it in the
policy. Developers not familiar with the policy will contact everyone
before uploading anyways, because they won't know that they can just
upload without asking. So there is no risk here.

Its not different from all teams as the Python Modules Team already uses
it. Also, I'm not sure this should prevent us from using a policy if we
thing its going to be useful.

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Fwd: Updating the pkg-go Team Maintenance policy

2016-02-08 Thread Alexandre Viau
Hello,

On 08/02/16 12:49 AM, Martín Ferrari wrote:
> Although I presume this change might not be acceptable for some people,
> I think the notes about changelog handling would be a good addition.

+1, I agree with this change.

Maybe we should apply the first patch right now and wait one more week
for this one.

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Fwd: Updating the pkg-go Team Maintenance policy

2016-02-26 Thread Alexandre Viau
On 13/02/16 10:34 PM, Martín Ferrari wrote:
> On 09/02/16 01:44, Alexandre Viau wrote:
>> Hello,
>>
>> On 08/02/16 12:49 AM, Martín Ferrari wrote:
>>> Although I presume this change might not be acceptable for some people,
>>> I think the notes about changelog handling would be a good addition.
>>
>> +1, I agree with this change.
>>
>> Maybe we should apply the first patch right now and wait one more week
>> for this one.
> 
> Nobody else replied, but I am in favor of this idea.

Two weeks have passed, it looks like everyone is also in favor of this
patch.

Michael, can we go ahead and apply Martin's patch?

I have attached it to this mail.

Thanks,

-- 
Alexandre Viau
av...@debian.org
diff --git a/packaging.asciidoc b/packaging.asciidoc
index 4b402f0..e473079 100644
--- a/packaging.asciidoc
+++ b/packaging.asciidoc
@@ -11,16 +11,25 @@ All Go packages are team-maintained in the pkg-go team. This has multiple advant
 
  . There are no single points of failure, if one maintainer cannot continue
maintaining a package, another maintainer can easily help out or take over.
- . While it is strongly recommended to ask maintainers for permission before
-   touching their package in any significant way, cleanup changes can very
-   easily be applied to all packages.
  . All packages can share the same technical standards and workflows.
  . When working within a team anyway, it is much easier to get help on any
technical issue.
 
-On the technical side, put `Debian Go Packaging Team
-` into the Maintainer field in
-`debian/control` and add yourself as Uploader.
+A package maintained within the team should have the name of the team either in
+the `Maintainer` field or in the `Uploaders` field. We spell the team like this:
+`Debian Go Packaging Team `. This
+enables the team to have an overview of its packages on the DDPO website.
+
+Putting the team in `Maintainers` is a strong statement that fully
+collaborative maintenance is preferred. Anyone can commit to the git repository
+and upload as needed. A courtesy email to `Uploaders` can be nice but not
+required.
+
+If for some reason, a package needs tighter control by its original
+maintainers, putting the team in `Uploaders` is a weak statement of
+collaboration. Help in maintaining the package is appreciated, commits to the
+git repository are freely welcomed, but before uploading, please contact the
+`Maintainer` for the green light.
 
 //
 // TODO: add an example link
@@ -55,15 +64,24 @@ git, hg, svn. Afterwards, a date follows in the format MMDD. The last part
 after the dash is the Debian version number.
 
 In case you make more than one snapshot per day, you can append a snapshot
-number after the date, e.g. 0.0_git201306062-1. This should rarely be
+number after the date, e.g. 0.0_git20130606*2*-1. This should rarely be
 necessary.
 
 === changelog: UNRELEASED
 
 During the time when you still work on a package, i.e. before it is ready to
-upload, please put “UNRELEASED” into the distribution field in
-debian/changelog. When the package is ready for uploading, change it to
-“unstable”.
+upload, please put `UNRELEASED` into the distribution field in
+`debian/changelog` (`dch -v ` will do it automatically). When
+the package is ready for uploading, change it to `unstable` (`dch -r`).
+
+If you change something that has to be noted in debian/changelog, just add a
+line to the current entry (dch -a). The [firstname lastname] markers added by
+dch are okay to give credit to non-upload-permitted contributors (also for the
+initial changelog entry).
+
+Important NOTES to other group members may be placed at the top of the current
+changelog entry of packages that are not yet ready for upload (e.g. why a
+package is still `UNRELEASED`, etc.).
 
 == Binary-only packages
 


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] Asking upstream to tag repositories

2016-03-29 Thread Alexandre Viau
Hello pkg-go!

I think this subject was brought in the past: we face the issue that the
Go community does not tag repositories.

Whether that is a good thing or not in general is the subject for
another discussion, but I think that we can agree that it is best for
Debian when upstream tags repositories, simply because its simpler for
us to notice new updates trough our watch system.

I have recently started doing some cleanup in my packages and I have
taken the opportunity to open a bug to upstream whenever they didn't
tag. In total, I must have opened atleast 35 bugs.

I was pleasantly surprised by upstream's reaction. Most of them
understand that it can be helpful and only **very few** have refused to tag.

Therefore, I would like to encourage all of you to take the time to open
a bug whenever you upload a new version of an un-tagged project.

When looking at my DDPO page, I feel much more in control than last
week, simply because I have more vision of what is going on :).

Maybe it could also be a good idea to post a statement on a sub-page of
the pkg-go alioth website that we can link to upstream explaining why
tagging go packages makes sense for projects like Debian.

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Asking upstream to tag repositories

2016-03-29 Thread Alexandre Viau
On 29/03/16 01:06 PM, Martín Ferrari wrote:
> Hey,
> 
> On 29/03/16 15:05, Alexandre Viau wrote:
> 
>> I was pleasantly surprised by upstream's reaction. Most of them
>> understand that it can be helpful and only **very few** have refused to tag.
> 
> This seems actually very surprising to me. Looks like most of these
> communities don't believe in releases and would easily refuse. Maybe you
> should share your template so we all can have the same success :)

Heh. Actually, it was very easy. My template is two sentences.

Successes:
 - https://github.com/kimor79/gollectd/issues/8
 - https://github.com/Unknwon/com/issues/8
 - https://github.com/pierrec/xxHash/issues/2
 - https://github.com/mattn/go-isatty/issues/7
 - https://github.com/kimor79/gollectd/issues/8
 - https://github.com/jtolds/gls/issues/4
 - https://github.com/gosimple/slug/issues/7
 - https://github.com/dylanmei/iso8601/issues/1
 - https://github.com/cenkalti/backoff/issues/23
 - https://github.com/klauspost/crc32/issues/15
 - https://github.com/klauspost/cpuid/issues/11
 - https://github.com/paulbellamy/ratecounter/issues/5
 - https://github.com/rakyll/statik/issues/15
 - https://github.com/naoina/toml/issues/20
 - https://github.com/naoina/go-stringutil/issues/2

Example of small resistance:
 - https://github.com/klauspost/compress/issues/47 (I explained uscan)

Some saying no/not answering:
 - https://github.com/tent/http-link-go/issues/1
 - https://github.com/hashicorp/raft/issues/99


I don't know what to say. I think its about making a simple request, and
explaining when they ask questions. Sometimes they say "no because of
[blablabla]" then I try to make a counter-argument. Other times they
just say yes right away.

A good amount of my bugs are still open and waiting for answer, but that
is normal. Out of the ones I got reaction, I have a high success rate.

>> Maybe it could also be a good idea to post a statement on a sub-page of
>> the pkg-go alioth website that we can link to upstream explaining why
>> tagging go packages makes sense for projects like Debian.
> 
> +1 too! I think there is somewhere some page explaining how to be a good
> upstream.
> 
> Ah, here it is: https://wiki.debian.org/UpstreamGuide#Releases_and_Versions

Ha! Thanks.

> BTW, it seems we never got around to implement the policy changes
> discussed a couple of months ago?

I have asked Michael (secure) on IRC a couple of weeks ago and he will
do it when he has time. Only him has access to the policy repository.

-- 
Alexandre Viau
av...@debian.org



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] Bug#824628: package should be removed

2016-05-18 Thread Alexandre Viau
I should have noticed this was already available.

I will file a bug to get my recently uploaded package removed.

In the meantime, I will mark it as conflicting with golang-metrics-dev.

-- 
Alexandre Viau
av...@debian.org



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] Bug#824717: FTBFS on armhf (failing tests)

2016-05-18 Thread Alexandre Viau
Source: golang-gogoprotobuf
Version: 0.2-4
Severity: important
Justification: fails to build from source

Hello,

There seems to be issue on building golang-gogoprotobuf on armhf. Only a
few tests are missing, we should contact upstream on this, or disable
tests on some architectures?

This is blocking InfluxDB from migrating to testing.

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Comments regarding golang-github-bkaradzic-go-lz4_0.0~git20150821.0.74ddf82-1_amd64.changes

2016-05-21 Thread Alexandre Viau
Hello Chris,

On 20/05/16 04:22 AM, Chris Lamb wrote:
> There's a copy of a Conan Doyle novel in here. I think that might need 
> clarifying... (+ probably others?)

Those Novels were chosen because they were released on Project
Gutenberg, which releases novels that are not or no longer copyrighted.

For example, the following source packages also embed Project Gutenberg
books without any corresponding section in d/copyright:

- golang: src/compress/testdata/
- golang-github-klauspost-compress: testdata/

Just for clarity, I have uploaded a new version of the package with a
comment.

Cheers,

-- 
Alexandre Viau
av...@debian.org



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] Bug#828767: Bug#828767: closed by Alexandre Viau (Fixed in 2.0.0+dfsg1-2)

2016-06-30 Thread Alexandre Viau
Hello,

On 29/06/16 09:45 PM, Aaron M. Ucko wrote:
> notfixed 828767 2.0.0+dfsg1-2
> found 828767 2.0.0+dfsg1-2
> thanks
> 
> Debian Bug Tracking System  writes:
> 
>> I have fixed this issue in 2.0.0+dfsg1-2.
> 
> I understand you meant to, but AFAICT you accidentally left the fix out.

Haha. Sorry for all the confusion.

My git-fu must have let me down for a second and I forgot to add the
control file to the commit :o).

For the second close email, I sent it without reading your email, adding
to the confusion even more :)!

I am preparing a new upload right now...

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] golang-github-oschwald-geoip2-golang_0.1.0-1_amd64.changes REJECTED

2016-07-20 Thread Alexandre Viau
Hello,

On 20/07/16 03:00 PM, Thorsten Alteholz wrote:
> 
> Hi Alexandre,
> 
> ok, this time geoip2-golang-0.1.0/LICENSE says it is licensed under Apache 
> and not ISC!?

Argh.

Upstream relicensed recently and I packaged a different commit this time.

Sorry.

Uploaded again.

-- 
Alexandre Viau
av...@debian.org



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] Bug#831982: Bug#831982: influxdb: Get rid of warning message during installation

2016-07-22 Thread Alexandre Viau
Hello,

On 20/07/16 07:05 PM, Vincent Blut wrote:
> The root cause is pretty obvious, adduser tries to set influxdb user
> home before it ever exist. There are many ways to fix that issue, for 
> example we could create the necessary directory before calling adduser 
> in the post-installation script, removing the “--no-create-home” from 
> adduser call, etc. In the attached patches, you’ll see that I chose 
> another solution that involves using debhelper’s facilities.
> 
> Additionaly, you’ll find patches (0003* and 0004*) handling 
> /var/log/influxdb creation using the same method.

Thank you for the patches! I have applied them all and published a new
version of the package.

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Fwd: golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1_source.changes ACCEPTED into unstable

2017-12-30 Thread Alexandre Viau
Hello,

You can find the changes for raft here:

 - https://salsa.debian.org/pkg-go-team/golang-github-hashicorp-raft

Everything that I have moved to salsa was removed from Alioth to avoid
confusion.

Cheers,


On 30/12/17 06:54 AM, Martín Ferrari wrote:
> Hi Alexandre,
>
> I see you have been pretty busy uploading stuff :-) But can you please
> push to git all these changes? We risk getting out of sync.
>
>
>  Forwarded Message 
> Subject: [pkg-go]
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1_source.changes
> ACCEPTED into unstable
> Date: Sat, 30 Dec 2017 08:51:07 +
> From: Debian FTP Masters 
> To: Alexandre Viau , Debian Go Packaging Team
> 
>
>
>
> Accepted:
>
> Format: 1.8
> Date: Sat, 30 Dec 2017 03:34:20 -0500
> Source: golang-github-hashicorp-raft
> Binary: golang-github-hashicorp-raft-dev
> Architecture: source
> Version: 1.0.0+git20171204.0919aa6-1
> Distribution: unstable
> Urgency: medium
> Maintainer: Debian Go Packaging Team
> 
> Changed-By: Alexandre Viau 
> Description:
>  golang-github-hashicorp-raft-dev - implementation of the Raft consensus
> protocol
> Changes:
>  golang-github-hashicorp-raft (1.0.0+git20171204.0919aa6-1) unstable;
> urgency=medium
>  .
>* Move to salsa.debian.org.
>* Priority extra -> optional.
>* Change my email to @debian.org.
>* New upstream snapshot.
> Checksums-Sha1:
>  60762bc4e4541b4b07f80ec36f7ee61db418b824 2494
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1.dsc
>  f439306e749d398aa8ffa090557f77568c5dae89 86544
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6.orig.tar.xz
>  8e3db27d6317991b0da2be5b0e5d3cb12b5530ce 7364
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1.debian.tar.xz
>  26216ccc61baea221083eb24db928700df67ba91 7568
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1_source.buildinfo
> Checksums-Sha256:
>  768177ff432a8bc326f2e9948179a62fff8e98b13a71924fa86527bfd171fd80 2494
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1.dsc
>  6330eafcc6b9102e5ca06954be3ba0aadc308bf6bf81b8dd8ca34ad21aa8fa37 86544
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6.orig.tar.xz
>  cc62b80bc37781c19d6a8d624f81243cb2bc3e2ba071566261ead2fbc6ef0c8f 7364
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1.debian.tar.xz
>  4dbd3995e732d8f645a6ee537532a1475c771e7c787af2c517ac10c9d42d443c 7568
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1_source.buildinfo
> Files:
>  ef8250130360b72c7ba7df37eaa25ef2 2494 devel optional
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1.dsc
>  3646e149582d1e14a66111ec5b55128a 86544 devel optional
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6.orig.tar.xz
>  f26c8abc62a6390d5bb280702af616ee 7364 devel optional
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1.debian.tar.xz
>  4d4c8569805df3d25390e217ada1ceb1 7568 devel optional
> golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1_source.buildinfo
>
>
>
> 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

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] Fwd: golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1_source.changes ACCEPTED into unstable

2017-12-31 Thread Alexandre Viau
On 31/12/17 05:19 AM, Martín Ferrari wrote:
> Salsa is still in beta, and I fear there might be downtime or
> lost data,
Chances that both salsa and my laptop lose data are very slim!

>  and it already breaks all tooling.

What tooling? We should fix it. I can help.

Cheers,

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] Fwd: golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1_source.changes ACCEPTED into unstable

2018-01-04 Thread Alexandre Viau
On 04/01/18 05:40 AM, Martín Ferrari wrote:
> On 31/12/17 15:10, Alexandre Viau wrote:
>
>>>  and it already breaks all tooling.
>> What tooling? We should fix it. I can help.
> KGB, PET, automatic marking of pending bugs,

KGB will be very easy to rewrite for the gitlab API.

There is already ongoing work for marking pending bugs:
 -
https://salsa.debian.org/salsa/webhook/blob/1a1dba64a57873dfcedbf42c0a16182120dc9989/webhook.rb

I am sure we can also adapt PET. In the meantime, maybe just use the QA
page?
 -
https://qa.debian.org/developer.php?login=pkg-go-maintainers@lists.alioth.debian.org

> Plus, all already cloned repos need to be adjusted manually, and you
> uploaded with the new salsa URLs in the Vcs links, but now it seems we
> get to maintain the anonscm links.

If you don't want to maintain the anonscm links, Alexander Wirt is
working on a solution and you will still be able to use anonscm links:
 - https://salsa.debian.org/salsa/AliothRewriter

However I think maintaining this map and a link will be even more
complicated.

> Honestly, it feels very demotivating that you did this change :(

You don't have to switch your packages now if you don't want to spend
the time. I am sure Alioth will remain usable for a while. You can do it
as you upload them, there is no rush.

You can also automate it.

For my packages, I automated the repository creation on salsa and the
removal from Alioth.

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] Fwd: golang-github-hashicorp-raft_1.0.0+git20171204.0919aa6-1_source.changes ACCEPTED into unstable

2018-01-06 Thread Alexandre Viau
On 05/01/18 08:40 PM, Martín Ferrari wrote:
> If you don't want to maintain the anonscm links, Alexander Wirt is
>> working on a solution and you will still be able to use anonscm links:
>>  - https://salsa.debian.org/salsa/AliothRewriter
> But now we are introducing inconsistencies in the group packages, while
> there was no need to change the links if we have waited.

I don't think this inconsistency matters. The links will point to the
same place anyways.

>> However I think maintaining this map and a link will be even more
>> complicated.
> But that means re-uploading every one of our 891 packages.

Of course not! You can hold uploading until you have something else to
modify in the package.

You won't be uploading 891 packages JUST to update the links.

Until you upload a new version, the packages can either remain in Alioth
or be in salsa.debian.org with a redirect from anonscm.debian.org. None
of these situations are problematic.

> Well, this is part of the problem. These are not "your packages" or "my
> packages". We have a team where we decided that mainteinance is
> collaborative and that nobody owns the packages.
>
> What you are saying here goes against all that, and reverses efforts put
> into making pkg-go collaborative and welcoming.

Maybe I should have said "the packages where I am one of the uploaders"?
I was hoping that you would understand the expression. I absolutely
agree with everything you just said, don't worry.

I was actually the one to propose that we modify the policy to prefer
team maintenance, by the way:
 -
https://lists.alioth.debian.org/pipermail/pkg-go-maintainers/Week-of-Mon-20160104/002878.html

Maybe the updated links are not much of an improvements, but I have
updated dozens of packages to new upstream versions and have fixed
hundreds of lintian warnings by the way :)

I intend to keep updating and migrating more packages, especially those
that still don't use XS-Go-Import-Path:
 - https://github.com/Debian/dh-make-golang/issues/73#issuecomment-339237871

I'll also update dh-make-golang so that it allows creating repositories
on salsa easily.

Cheers <3

-- 
Alexandre Viau
av...@debian.org




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] XS-Go-Import-Path and packages with several valid Go import paths

2018-01-07 Thread Alexandre Viau
Hello,

Some packages can be imported from several import paths. We tend to put
symlinks in /usr/share/gocode/src so that all known import paths work.

As of dh-golang 1.28[1], 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
```

dh-make-golang (in unstable) has also learned this new format.

Please use it accordingly in your packages!

Cheers,

1. https://bugs.debian.org/885780

-- 
Alexandre Viau
av...@debian.org



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] dh-make-golang: search for existing go packages

2018-01-07 Thread Alexandre Viau
Hello,

dh-make-golang now allows you to search for existing go packages.
Hopefully you guys find that useful.

Example usage:
```
$ dh-make-golang search debian
golang-godebiancontrol-dev: github.com/stapelberg/godebiancontrol
golang-pault-go-debian-dev: pault.ag/go/debian
```

Example use case: I imported a new upstream version for my existing
package and it won't build anymore because of a new dependency. I run
``dh-make-golang search `` to quickly find the Debian binary
package name and add it to the build dependencies.

See the man page for more details. (not really, that is all the details
you will get).

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Future address of Debian Go Packaging Team?

2018-01-09 Thread Alexandre Viau
On 08/01/18 08:24 PM, Julian Gilbey wrote:
> However, the lists.alioth.debian.org list is due to be shut down in
> three weeks' time (on 2018-02-01) as announced in
> https://lists.debian.org/debian-devel-announce/2017/09/msg4.html
> so what email address should I use instead?  And where is the Debian
> Go Packaging Team page going to migrate to?


> so what email address should I use instead?

Raphaël Hertzog has updated tracker.debian.org to support team email
addresses. We can now send mails to team+@tracker.debian.org.
The tracker system will also recognize the email in the maintainer field
and automatically add the packages to the tracker.debian.org team.

In our case, our tracker email would be team+pkg...@tracker.debian.org.

For now, these mails will be discarded and you will have to rely on
other tracker.debian.org features to receive updates about the packages
but more features will be added.

I have created a pkg-go team on tracker.debian.org:
 - https://tracker.debian.org/teams/pkg-go/

To join the team, ask me and I will add you to it (I still don't really
know how it works).

> And where is the Debian Go Packaging Team page going to migrate to?

I have begun testing building our team page with Gitlab Pages[2]. Salsa
is supposed to support it[3]. However, the build is stuck and it does
not work. I suppose this is going to be fixed soon. Our team page would
eventually move to https://pages.debian.net/pkg-go-team/website.

> Also, when the git.debian.org shared pkg-go repository is migrated
> over to salsa (which I understand has to happen manually), will I need
> to migrate my packages over, or will all of the pkg-go packages be
> migrated in bulk?

You can already migrate your packages in the salsa pkg-go team[4]. I
have already migrated more than a hundred.

I suggest that every time you upload a package as part of the team, you
take the time to migrate it manually to salsa, removing it from Alioth.

In a previous discussion on this list, tincho was wondering if it was a
good idea to update the VCS-* links because we can setup redirects with
AliothRewriter[5] to point anonscm.debian.org links to salsa.

However, the AliothRewriter README says:
 > The existance of this list should not mean that VCS control fields
 > shouldn't get updated with the next upload. This map is just a
 > workaround.

This means that when you upload a package, you should use the
opportunity to update the VCS-* links.

I may start working on a bulk transition script (that will also include
AliothRewriter redirects) but this does not mean that you should not
migrate package manually in the meantime, as you upload them.

Cheers,

1. https://lists.debian.org/debian-devel/2018/01/msg00265.html
2. https://salsa.debian.org/aviau/website-test
3. https://wiki.debian.org/Salsa/Doc#Host_project_web_pages
4. https://salsa.debian.org/pkg-go-team
5. https://salsa.debian.org/salsa/AliothRewriter

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Future address of Debian Go Packaging Team?

2018-01-10 Thread Alexandre Viau
On 10/01/18 03:50 AM, Clément Hermann wrote:
> Note that there is still work ongoing to keep alioth lists alive longer
> than alioth:
>
> http://lists.alioth.debian.org/pipermail/alioth-staff-replacement/Week-of-Mon-20180101/000110.html
Good news, lets just wait.

I don't think they follow the current deprecation deadline anyways, I
feel like we still have a couple months.

Cheers,

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] moving to salsa.debian.org

2018-01-16 Thread Alexandre Viau
On 16/01/18 03:08 AM, Michael Stapelberg wrote:
> How do we ensure that people are redirect from alioth to salsa? I
> think some redirection support is underway or already working, so it
> would be good to set up these redirects.

Redirects are already working. It is on a per-package basis[1].

> Redirects only cover the web interface part, so what do we do with the
> old git repositories? Could we mark them read-only, to prevent
> accidental pushes to the wrong repository?

I suggest moving them to another directory or just removing them.

I have prepared a script to migrate all packages and also setup the
redirect map automatically based on the migrated packages:

 - https://salsa.debian.org/aviau/migrate-pkg-go-to-salsa

I can do the migration whenever you guys want. The redirects would be
setup on the same day.

1. https://salsa.debian.org/salsa/AliothRewriter

Cheers,

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] moving to salsa.debian.org

2018-01-16 Thread Alexandre Viau
According to Alexander Wirt:

 > From the experience of the last weeks I think we can say that [it]
won't happen.

- https://lists.debian.org/debian-devel/2018/01/msg00256.html

On 16/01/18 02:54 AM, Michael Stapelberg wrote:
> Last I heard, there was still a chance that salsa would be reset in
> its entirety.
>
> ganneff, is this still the latest, or will salsa definitely keep its data?
>
> On Thu, Dec 28, 2017 at 11:36 PM, Alexandre Viau  <mailto:av...@debian.org>> wrote:
>
> Hello Team,
>
> Alioth will be deprecated. We have to move to salsa.debian.org
> <http://salsa.debian.org>.
>
> I have created a pkg-go team:
>  - https://salsa.debian.org/pkg-go-team
> <https://salsa.debian.org/pkg-go-team>
>
> You may request to join and I will add you as owners.
>
> I suggest we move pacakges manually, one by one, as we upload them.
>
> There is no rush because Alioth will remain accessible read-only.
>
> I will move my own packages as I go, and remove them from
> git.debian.org <http://git.debian.org>
> at the same time to avoid confusion.
>
> I'll also spend some time with dh-make-golang and see if there is an
> easy way to automatically create projects using the gitlab api...
>
> Cheers,
>
> --
> Alexandre Viau
> av...@debian.org <mailto:av...@debian.org>
>
>
> ___
> Pkg-go-maintainers mailing list
> Pkg-go-maintainers@lists.alioth.debian.org
> <mailto:Pkg-go-maintainers@lists.alioth.debian.org>
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers
> 
> <http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers>
>
>
>
>
> -- 
> Best regards,
> Michael

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] moving to salsa.debian.org

2018-01-16 Thread Alexandre Viau
I have setup redirects for already-migrated packages.

I used the ``generate-map-already-migrated.py`` script from the
following repository:
 - https://salsa.debian.org/aviau/migrate-pkg-go-to-salsa

Then, I sent a pull request to the AliothRewriter repository and created
pkg-go.conf:
 -
https://salsa.debian.org/salsa/AliothRewriter/blob/master/definitions/pkg-go.conf

For example, you may now:
 - Visit https://salsa.debian.org/pkg-go-team/syncthing
 - Clone https://salsa.debian.org/pkg-go-team/syncthing.git

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] moving to salsa.debian.org

2018-01-16 Thread Alexandre Viau
On 16/01/18 02:54 PM, Alexandre Viau wrote:
> I have setup redirects for already-migrated packages.
> 
> I used the ``generate-map-already-migrated.py`` script from the
> following repository:
>  - https://salsa.debian.org/aviau/migrate-pkg-go-to-salsa
> 
> Then, I sent a pull request to the AliothRewriter repository and created
> pkg-go.conf:
>  -
> https://salsa.debian.org/salsa/AliothRewriter/blob/master/definitions/pkg-go.conf
> 
> For example, you may now:
>  - Visit https://salsa.debian.org/pkg-go-team/syncthing
>  - Clone https://salsa.debian.org/pkg-go-team/syncthing.git

oops, wrong links!

These are the relevant links:
 - Visit: https://anonscm.debian.org/cgit/pkg-go/packages/syncthing.git
 - Clone: https://anonscm.debian.org/git/pkg-go/packages/syncthing.git

Cheers,

-- 
Alexandre Viau
av...@debian.org



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] Bug#887475: dh-golang: support comma-separated import paths in dh_golang_autopkgtest

2018-01-16 Thread Alexandre Viau
Package: dh-golang
Version: 1.28
Severity: normal
Tags: patch

Hello,

I have noticed that autopkgtests for packages with comma-separated
import paths are failing.

Here is a patch.

Would you please review and/or apply it?

Cheers,

-- 
Alexandre Viau
av...@debian.org
From 923f325dc9e7617814f43d28e898c7d8c48bb058 Mon Sep 17 00:00:00 2001
From: aviau 
Date: Wed, 17 Jan 2018 00:49:10 -0500
Subject: [PATCH] dh_golang_autopkgtest support for several import paths

---
 script/dh_golang_autopkgtest | 20 ++--
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/script/dh_golang_autopkgtest b/script/dh_golang_autopkgtest
index c15447a..ee3f125 100755
--- a/script/dh_golang_autopkgtest
+++ b/script/dh_golang_autopkgtest
@@ -57,18 +57,26 @@ call_rules() {
 }
 
 get_import_path() {
-# Find package's import path from debian/rules or debian/control.
-pkg=$(call_rules apt-print-DH_GOPKG)
+# Find package's main import path from debian/rules or debian/control.
+pkgs=$(call_rules apt-print-DH_GOPKG)
 
-if [ -z "$pkg" ]; then
+if [ -z "$pkgs" ]; then
 # DH_GOPKG not set, find it in control file.
-pkg=$(perl -w -MDpkg::Control::Info -e '
+pkgs=$(perl -w -MDpkg::Control::Info -e '
 my $s = Dpkg::Control::Info->new()->get_source();
 print $s->{"XS-Go-Import-Path"} || "";')
 fi
-if [ -z "$pkg" ]; then
-error "Can't find import path."
+
+if [ -z "$pkgs" ]; then
+error "Can't find import paths."
+else
+# One import path per line. Commas and empty lines removed.
+pkgs=$(echo $pkgs | tr -d " " | tr "," "\n" | awk "NF")
 fi
+
+# Only return the first import path.
+pkg=$(echo "$pkgs" | head -n 1)
+
 echo "$pkg"
 }
 
-- 
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] Bug#887475: dh-golang: support comma-separated import paths in dh_golang_autopkgtest

2018-01-17 Thread Alexandre Viau
Hello,

This version of the patch is simpler. It removes the awk usage and uses
an array.

Cheers,

-- 
Alexandre Viau
av...@debian.org
From fcc17f957630976a5a95a48a17b44e55472a8b4d Mon Sep 17 00:00:00 2001
From: aviau 
Date: Wed, 17 Jan 2018 14:54:58 -0500
Subject: [PATCH] dh_golang_autopkgtest support for several import paths

---
 script/dh_golang_autopkgtest | 22 +++---
 1 file changed, 15 insertions(+), 7 deletions(-)

diff --git a/script/dh_golang_autopkgtest b/script/dh_golang_autopkgtest
index c15447a..399daef 100755
--- a/script/dh_golang_autopkgtest
+++ b/script/dh_golang_autopkgtest
@@ -57,19 +57,27 @@ call_rules() {
 }
 
 get_import_path() {
-# Find package's import path from debian/rules or debian/control.
-pkg=$(call_rules apt-print-DH_GOPKG)
+# Find package's main import path from debian/rules or debian/control.
+pkgs=$(call_rules apt-print-DH_GOPKG)
 
-if [ -z "$pkg" ]; then
+if [ -z "$pkgs" ]; then
 # DH_GOPKG not set, find it in control file.
-pkg=$(perl -w -MDpkg::Control::Info -e '
+pkgs=$(perl -w -MDpkg::Control::Info -e '
 my $s = Dpkg::Control::Info->new()->get_source();
 print $s->{"XS-Go-Import-Path"} || "";')
 fi
-if [ -z "$pkg" ]; then
-error "Can't find import path."
+
+if [ -z "$pkgs" ]; then
+error "Can't find import paths."
 fi
-echo "$pkg"
+
+# Transform into a single comma-separated line.
+# Then, replace commas by spaces.
+# Place the result into an array.
+pkgs=($(echo $pkgs | tr -d " \n" | tr "," " "))
+
+# Only return the first import path.
+echo "${pkgs[0]}"
 }
 
 add_configure_override() {
-- 
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

Re: [pkg-go] moving to salsa.debian.org

2018-01-17 Thread Alexandre Viau
On 17/01/18 08:05 AM, Michael Stapelberg wrote:
> I’d be happy to review any draft announcement you come up with.
>

Alright.

Here is a draft announcement:

Dear pkg-go contributors,

I will be migrating all of pkg-go's Alioth repositories to
salsa.debian.org on January 29.

=== About the migration ===

- A mail will be sent to pkg-go-maintainers@lists.alioth.debian.org when
the migration starts and when it ends

- All repositories in git.debian.org:/git/pkg-go/packages will be
migrated to the pkg-go-team group on salsa.debian.org[1] You should join
the group if you are not already in it!

- Repositories will keep the same name, with ".git" removed.

- HTTP anonscm.debian.org links of migrated repositories will be
redirected to the new location.
 for example, you can test the following links:
  - https://anonscm.debian.org/cgit/pkg-go/packages/syncthing
  - https://anonscm.debian.org/git/pkg-go/packages/syncthing.git

=== During the migration ===

- Your pushes could be denied because the repository no longer exists.
Don't panic! It was moved to Gitlab.

- You may start using salsa repositories immediately after they are created.

- If you push during the migration, take a moment to confirm that your
changes are available on salsa

=== After the migration ===

- On the next upload of your packages, please replace the VCS-*
anonscm.debian.org links with the proper salsa.debian.org links.

For example:
 https://anonscm.debian.org/cgit/pkg-go/packages/syncthing ->
https://salsa.debian.org/pkg-go-team/syncthing
 https://anonscm.debian.org/git/pkg-go/packages/syncthing.git ->
https://salsa.debian.org/pkg-go-team/syncthing.git

You might want to wait a couple of days after the migration before
spending time doing this because I might automate it for all repositories.

- A copy of the migrated repositories will remain available in
git.debian.org:/git/pkg-go/packages-migrated-to-salsa

- You will still be able to create repositories on Alioth, but there
will be no other bulk migration.

- If all went well, we might disable repository creation on Alioth a
couple of days after the migration.

- You may point your git working directories to the new remote address
with this oneliner:
 ``git remote set-url origin g...@salsa.debian.org:pkg-go-team/$(git
config --get remote.origin.url | tr "/" "\n" | tail -n 1)``

1. https://salsa.debian.org/pkg-go-team

Cheers,

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] moving to salsa.debian.org

2018-01-19 Thread Alexandre Viau
On 19/01/18 07:26 AM, Martín Ferrari wrote:
> On 17/01/18 21:31, Alexandre Viau wrote:
>
>> I will be migrating all of pkg-go's Alioth repositories to
>> salsa.debian.org on January 29.
> Please, don't rush it: that date is way too soon. What is the rationale
> for such a sudden switch?
>
> Salsa is not ready yet, people (including me) are working on fixing the
> warts, but there are still many things to do.

The rationale is that Alioth will be deprecated.

Everything I need/use is ready.

I don't mind waiting, do you have another date to suggest? Or will you
let us know when your needs are fulfilled?

Cheers,

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] moving to salsa.debian.org

2018-01-23 Thread Alexandre Viau
On 18/01/18 04:30 PM, Michael Stapelberg wrote:
> Thanks for the draft! Comments inline:
>
> On Wed, Jan 17, 2018 at 10:31 PM, Alexandre Viau  <mailto:av...@debian.org>> wrote:
>
> You might want to wait a couple of days after the migration before
> spending time doing this because I might automate it for all
> repositories.
>
>
> Let’s figure this out before starting the process :). I’m in favor for
> automating the step. The less people have to do mindless work that can
> easily go wrong, the better (as evidenced by a number of incorrect
> Vcs-* tags in our packages).

Alright, done. I have updated my migration script to edit Vcs-* urls!
(https://salsa.debian.org/aviau/migrate-pkg-go-to-salsa)

It does not create a changelog entry yet, but I'll fix that before the
migration.
 
>
>
> - A copy of the migrated repositories will remain available in
>
>
> “A read-only copy” please.

Okay, I agree.

>  
>
> git.debian.org:/git/pkg-go/packages-migrated-to-salsa
>
> - You will still be able to create repositories on Alioth, but there
> will be no other bulk migration.
>
> - If all went well, we might disable repository creation on Alioth a
> couple of days after the migration.
>
>
> I’d like to disable repository creation at the start of the migration.
> There’s no point in allowing backslide/stragglers like that.
> Everything should be in one place.

Okay, but can you allow me to do that? You are the only owner of the
setup-repository script. I would just `chmod -x setup-repository`.

That would be my new draft announcement:

```
Dear pkg-go contributors,

I will be migrating all of pkg-go's Alioth repositories to
salsa.debian.org <http://salsa.debian.org/> on .

=== About the migration ===

- A mail will be sent to pkg-go-maintainers@lists.alioth.debian.org
<mailto:pkg-go-maintainers@lists.alioth.debian.org> when
the migration starts and when it ends

- All repositories in git.debian.org:/git/pkg-go/packages will be
migrated to the pkg-go-team group on salsa.debian.org
<http://salsa.debian.org/>[1] You should join
the group if you are not already in it!

- Repositories will keep the same name, with ".git" removed.

- HTTP anonscm.debian.org <http://anonscm.debian.org/> links of migrated
repositories will be
redirected to the new location.
 for example, you can test the following links:
  - https://anonscm.debian.org/cgit/pkg-go/packages/syncthing
<https://anonscm.debian.org/cgit/pkg-go/packages/syncthing>
  - https://anonscm.debian.org/git/pkg-go/packages/syncthing.git
<https://anonscm.debian.org/git/pkg-go/packages/syncthing.git>

- Vcs-* urls will be automatically replaced in debian/control

- Repository creation on Alioth will be created when the migration
starts. It will not be re-enabled.

=== During the migration ===

- You may still push to Alioth. However, your pushes could be denied
because the repository no longer exists.Don't panic! It was moved to
Gitlab. If you push to Alioth during the migration, take a moment to
confirm that your changes are available on salsa after the migration,
just in case there was some sort of race condition.

- You may start using salsa repositories immediately after they are
created. No need to wait for the migration to end.

=== After the migration ===

- A read-only copy of the migrated repositories will remain available in
git.debian.org:/git/pkg-go/packages-migrated-to-salsa

- You may point your git working directories to the new remote address
with this oneliner:
 ``git remote set-url origin g...@salsa.debian.org:pkg-go-team/$(git
config --get remote.origin.url | tr "/" "\n" | tail -n 1)``

1. https://salsa.debian.org/pkg-go-team
<https://salsa.debian.org/pkg-go-team>

Cheers,

```

We will wait for an answer from tincho before we pick a date, but do you
have any other comments on the announcement?

Thanks,

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] moving to salsa.debian.org

2018-01-23 Thread Alexandre Viau
On 23/01/18 03:46 AM, Julian Gilbey wrote:
> On Tue, Jan 23, 2018 at 02:35:45AM -0500, Alexandre Viau wrote:
>> That would be my new draft announcement:
>>
>> ```
>> [...]
>> - Repository creation on Alioth will be created when the migration
>> starts. It will not be re-enabled.
> You mean "Repository creation on Alioth will be DISABLED when ..."

Yeah, oops!

> I presume that when the time comes, this announcement will be emailed
> to all Go package maintainers individually, and not just to this list?
Yep!

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] moving to salsa.debian.org

2018-01-25 Thread Alexandre Viau
Originally send with wrong email.

Sending again.

On 25/01/18 12:34 PM, Alexandre Viau wrote:
> On 21/01/18 01:03 PM, Martín Ferrari wrote:
>> On 19/01/18 15:25, Alexandre Viau wrote:
>> One thing that I think has not been discussed is the repo layout: now it
>> seems we are using a flat layout, whereas before we had a packages tree,
>> separate from other things like meta, website, and even a users/
>> subtree. What are we going to do with those?
> 
> Good point. This is something that I overlooked.
> 
> I suggest creating a packages/ subgroup[1].
> 
> This also allows us to manage permissions individually. For example, we
> could give -guest access to the packages/ subgroup as masters but no to
> the other trees.
> 
> Looking at the group page will also be less cluttered.
> 
> All of the currently-migrated projects are packages. I will write a
> script to migrate them to the packages/ subgroup and edit the Vcs-* urls
> accordingly.
> 
> Please comment if you would prefer another layout.
> 
> 1. https://salsa.debian.org/pkg-go-team/packages
> 

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] moving to salsa.debian.org

2018-01-25 Thread Alexandre Viau


On 25/01/18 12:38 PM, Alexandre Viau wrote:
>> All of the currently-migrated projects are packages. I will write a
>> script to migrate them to the packages/ subgroup and edit the Vcs-* urls
>> accordingly.

I tested with a few packages, and moving them can be done relatively
quickly.

I'll migrate them over the course of the next few days, unless somebody
prefers another subgroup name.

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] moving to salsa.debian.org

2018-01-27 Thread Alexandre Viau
On 2018-01-21 01:03 PM, Martín Ferrari wrote:> My list of things I would
like to fix before migrating:
> * Automatic tagging of pending fixes

I have modified my repository setup command so that it adds a webhook to
tag pending fixes:
 - https://github.com/Debian/dh-make-golang/pull/83

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] moving to salsa.debian.org

2018-01-27 Thread Alexandre Viau
On 2018-01-21 01:03 PM, Martín Ferrari wrote:
> My list of things I would like to fix before migrating:
> * Repo setup tool: /home/groups/pkg-go/meta/setup-repository

I have sent a pull request to dh-make-golang here:
 - https://github.com/Debian/dh-make-golang/pull/83

Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] moving to salsa.debian.org

2018-01-27 Thread Alexandre Viau
I don't think the advantages are worth renaming. It could create confusion.

I don't mind doing it, but please also consider that I would have to
rename the team in the 150 packages that I already migrated.

It was announced today that Alioth lists will be maintained, they will
probably keep the same name, pkg-go.


On 2018-01-27 07:02 AM, Michael Stapelberg wrote:
> Should we take this chance to rename the team to “go-team”?
>
> The pkg- prefix was originally taken to be consistent with pkg-perl
> and pkg-python, and then kept to disambiguate the go compiler
> packaging team and the go application packaging team.
>
> Given that the compiler team is a small handful of people, and the
> application team is quite large, I think it’s fair the application
> team should get the shortest name.
>
> Given salsa’s team restrictions (team must end in “-team”), I think
> “go-team” is both descriptive and short. Thoughts?
>
> On Fri, Jan 26, 2018 at 8:00 PM, Alexandre Viau  <mailto:av...@debian.org>> wrote:
>
> On 2018-01-21 01:03 PM, Martín Ferrari wrote:> My list of things I
> would
> like to fix before migrating:
> > * Automatic tagging of pending fixes
>
> I have modified my repository setup command so that it adds a
> webhook to
> tag pending fixes:
>  - https://github.com/Debian/dh-make-golang/pull/83
>     <https://github.com/Debian/dh-make-golang/pull/83>
>
> Cheers,
>
> --
> Alexandre Viau
> av...@debian.org <mailto:av...@debian.org>
>
>
> ___
> Pkg-go-maintainers mailing list
> Pkg-go-maintainers@lists.alioth.debian.org
> <mailto:Pkg-go-maintainers@lists.alioth.debian.org>
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers
> 
> <http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers>
>
>
>
>
> -- 
> Best regards,
> Michael

-- 
Alexandre Viau
av...@debian.org



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] Bug#886816: Removing golang-go.uber-zap or zap

2018-01-28 Thread Alexandre Viau
Hello,

I have uploaded a duplicate of src:zap as src:golang-go.uber-zap.

I don't know why I missed src:zap. Probably because it didn't follow the
pkg-go naming guidelines, but even then, dh-make-golang should have told
me because it uses XS-Go-Import-Path.

Anyways. We should remove one of the two packages.

The next version of influxdb will require zap.

We should open a RM bug to ftpmasters.

Which one do you suggest removing?

Since src:golang-go.uber-zap follows pkg-go naming guidelines, I suggest
that we remove src:zap.

Do you have any objections?

I will open a bug as soon as you confirm.

Cheers,

-- 
Alexandre Viau
av...@debian.org



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] Getting a new list for actual discussions

2018-01-28 Thread Alexandre Viau
Hello,

This list is pretty spammy. How do you guys keep up with actual
discussions? Do you use filters?

I personally missed out on discussions because I didn't see the messages.

I was wondering if pkg-go would be interested in getting a new list
maybe, and leave this one for bugs/ftpmasters message?

Hopefully we get a lists.debian.org list but I don't think that is
happening, as we don't seem to fit their requirements.

So, maybe a new list on the newly announced alioth lists infrastructure?

Any ideas, comments?

-- 
Alexandre Viau
av...@debian.org



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] Bug#886816: RM: zap -- RoM; not used + duplicate package

2018-01-28 Thread Alexandre Viau
Package: ftp.debian.org
Severity: normal

This package is a duplicate of golang-go.uber-zap.

After discussion in #886816, we decided to remove src:zap.

Marking this as RoM because:
 - I am a member of the team
 - It was discussed with src:zap's original uploader

It has no reverse dependencies.

Please remove it from the archive.

Cheers,
-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] Getting a new list for actual discussions

2018-01-28 Thread Alexandre Viau
On 2018-01-29 12:09 AM, Pirate Praveen wrote:
> A discussion only list would fit their requirements. Or even a
> combined one. They don't want to host maintainer-only lists.
> So it would be a good thing to have a discussion only list there.

Michael has already asked, so we will see:
 - https://bugs.debian.org/876106

-- 
Alexandre Viau
av...@debian.org




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

Re: [pkg-go] GitLab CI: git-buildpackage and ratt

2018-01-29 Thread Alexandre Viau
This is great! Good job.

> Aside from the GitLab-side, we also need a .gitlab-ci.yml file
> in the repository itself. I can bulk-commit these, along with
> adding them to Files-Excluded in debian/copyright so that
> upstream copies are discarded.

Please do. (it looks like the d/copyright thing won't be needed if you
can change the path to debian/gitlab-ci)

> I suggest setting this path to “debian/gitlab-ci.yml” for our
> repositories, so that we don’t need to mangle upstream’s
> .gitlab-ci.yml and have all relevant files within the debian/

+1

On 2018-01-28 09:35 AM, Michael Stapelberg wrote:
> On Sat, Jan 27, 2018 at 11:21 PM, Michael Stapelberg
> mailto:stapelb...@debian.org>> wrote:
> With this feature place, the next step I’d like to implement is
> a speculative package auto-updater: upon noticing the Debian and
> upstream version have diverged, we could import the new version,
> send a Merge Request, have the CI check for breakages and
> (manually) merge and upload if no breakages are introduced.


That would be great.

Did you see the recent devscripts commit? #811565[1] was marked as pending.

We will be ale to use uscan to watch for new upstream versions. The tool
you are building could make use of this.


Maybe you want to contribute to this script:
 -
https://salsa.debian.org/pkg-go-team/migrate-pkg-go-to-salsa/blob/master/configure-all-projects.py

It protects branches and create webhooks on all repositories in the
"packages" subgroup on salsa. We should add the debian/gitlab-ci.yml
config too so that we can just run the script and have all salsa
projects configured uniformly.

By the way, don't forget to update dh-make-golang too, so that new
repositories have the setting.

1. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811565


Cheers,

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] moving to salsa.debian.org

2018-02-05 Thread Alexandre Viau
On 2018-02-04 02:50 PM, Michael Stapelberg wrote:
>
>
> On Sat, Jan 27, 2018 at 4:29 PM, Alexandre Viau  <mailto:av...@debian.org>> wrote:
>
> I don't think the advantages are worth renaming. It could create
> confusion.
>
> What confusion specifically do you have in mind? I think it would be
> more confusing to be named “pkg-go” in the long run, especially as
> other teams dropped the pkg- prefix.

Will the compiler team still exist? What name will it have?

I too have just noticed that other teams have dropped the prefix. In
that case, I tend to prefer go-team too.

I can probably rename it (and the packages)  in the next few days.

Please don't rename the team without also updating all repositories and
uploading all packages, which I intend to do, if you give me the time.

-- 
Alexandre Viau
av...@debian.org



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

Re: [pkg-go] moving to salsa.debian.org

2018-02-05 Thread Alexandre Viau
On 2018-02-05 06:38 AM, Dr. Tobias Quathamer wrote:
> how's the status on this topic? Salsa has now left the beta status, so
> from that point we should be safe to migrate. How about the things
> listed above?

Someone needs to migrate the team website to Gitlab Pages.

See this issue for guidelines:
 - https://salsa.debian.org/salsa/support/issues/43

When I last tested, it didn't work. Apparently that was fixed.

-- 
Alexandre Viau
av...@debian.org



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] Accepted golang-gopkg-tomb.v2 0.0~git20161208.d5d1b58-3 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:08:35 -0500
Source: golang-gopkg-tomb.v2
Binary: golang-gopkg-tomb.v2-dev
Architecture: source
Version: 0.0~git20161208.d5d1b58-3
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-3) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 e017b7e7516e2c9ba0cd46fa13d5c3b68471eb6a 2338 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3.dsc
 f752b19440472ee2c5e59ada036a67d0312bf085 2188 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3.debian.tar.xz
 dd139a7ec17d3df297647c8006829aabfc766c3c 5560 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3_source.buildinfo
Checksums-Sha256:
 79ac3ba35642314ff61b6bb1f01f4cc998f5b54babed45c8bbc6ba6d14c3f268 2338 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3.dsc
 c5625c4ca16f48960dd210bea38b9b5f42dc40fa78575fa38c384917f1455b25 2188 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3.debian.tar.xz
 7268e877567534edd9e59bf6da83519729f1cb90c990261ae74fde23abed7433 5560 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3_source.buildinfo
Files:
 dc495becde922b794aad35fbfc0cce99 2338 devel extra 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3.dsc
 dbb68d34e268fef4b1ec3b295221805b 2188 devel extra 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3.debian.tar.xz
 d46a6d19ea4c7ef394a8ddb01869536b 5560 devel extra 
golang-gopkg-tomb.v2_0.0~git20161208.d5d1b58-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5KkkRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xad5zQ//ducAAq6h/0KitBWRDQdPJknXPcW9Q3W3
6s2Ic6bj2wLT1JeK/+vPaH3Pd/b5Y72vQuBUWftMZBRAR9VzZHUSd7ETveQZECFo
91RglXk4h+UYxhSxRB+350osO+qZd80G6irvZL6sbYuBR2qo/ury7EAPVPG+Up6z
qQaydLH1O+XYggbH9eh9E/KEHPbORQLJ1gwXwR2ayhbUIGKcLkRdUq0y/T8FaXhx
ujdVgODU88Sf45SlL/xuHyLx5ERDCLrXQgBmBxLhMmH18+W6sAoxYah3kJuaQjsa
AOMCTnmEMTmIJVuPp1HJIUTJqsfum2+dtGkEMB599lJXo1qk+9XQc+I+5agjzuQs
f0ZYBXSCnpo2Ish0+ZBX8/0oZ7rE/YB521ht349qQmgX2FznhB+V88y6y7Q65s9k
K36lkk6xgXQsvdGkMh0V/LLaXoNlsCQ1VYZGVZIt1LaeKptyUr8GqdZLdSMf6686
PitA3Ac2tn/BHm2mFj/ijnWnBL6wMA7dKTL/AXYV5uh9Ca93lV9hRqxcSIAlFMLR
OyCi5ohHxBd4KSUVrzQtVJSpvr7C5BwREqPF1Goq2CwBMsibLx2eHm5UxDYFpdLK
BnPw/lCu034eIDlA0aP9xxEALdvpBsu7owIMtgRSBjrOw+hpxdmWZwjaB3rgOiio
GerTuNvu620=
=05oY
-END PGP 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] Accepted golang-github-pointlander-jetset 1.0.0-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:21:25 -0500
Source: golang-github-pointlander-jetset
Binary: golang-github-pointlander-jetset-dev
Architecture: source
Version: 1.0.0-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 c18746734d5c7a349ae8dc868b542b2ccd583b86 2348 
golang-github-pointlander-jetset_1.0.0-4.dsc
 3b370cf466efdb228ea8fd24c3fbaf3a4a37b1d4 2168 
golang-github-pointlander-jetset_1.0.0-4.debian.tar.xz
 dd52a0f1c192f9e18396912484dce6aed90babac 5706 
golang-github-pointlander-jetset_1.0.0-4_source.buildinfo
Checksums-Sha256:
 8ebd4ec381d243282c073039c1515a00d08d0b201c8b7b4d0b79a7cb6b421673 2348 
golang-github-pointlander-jetset_1.0.0-4.dsc
 4004d48d4c5943ebaa33099a152bf8ba21a393ef2c9c8d8a2d93d72f54a7868f 2168 
golang-github-pointlander-jetset_1.0.0-4.debian.tar.xz
 54009775cbc329fad5ef5161fc80ed82abf89d49486e0b39f50de24e6a83a4bd 5706 
golang-github-pointlander-jetset_1.0.0-4_source.buildinfo
Files:
 26d0bee04bfdee9f0ed7d13218843927 2348 devel optional 
golang-github-pointlander-jetset_1.0.0-4.dsc
 f7e65568462a4d89d2e9566b4ba7aa00 2168 devel optional 
golang-github-pointlander-jetset_1.0.0-4.debian.tar.xz
 c6019b34a89ecd0e7a776c8c906d961d 5706 devel optional 
golang-github-pointlander-jetset_1.0.0-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LUoRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacG7w//YpWKCPHKKIS+YKfsdFdnNWOb7h/ZCGpe
i9KCJ62Akip3Nm9mYYPyl6ubgF5rvKBx0rYEMNpKY01Xyk41FqqBtIRc6d+sGmYc
2ddFouafUg8+XZuC0j+M59LbYQL8hFebr1xvHFa6GpPk4UzyKljLvYxdOiGpCPa/
r6b51zhBeRb/ND7a6bC9ElKgEAuZYNi2mLHVg84iOBXZqwUkCoiW689EDZG+caXS
ljFr8WOqMIifdYgxtiaKplEcFARSjIRceKS6YO1qm2ODX6uZm97iKLPSmmyzaSHG
tbIdItDgiYaSgl49uxSpMFPDQJf4r9JUOlXknK4mNjDmYjLfsUfx3r0P4Hcftq4X
zHzXmnXB88Q/E0zFFekXNN3xapmxVClSFqMnrXIvYHC3tWx8G9VuHaFsKBYiy1GC
aI/2Hbsh0juPtKQnHkDVbrrKRQM10I2kell9Zj8gtpc1sh+3r7iJgK6gMYDXk+Hf
iY4OR+knbVB9oAN8q1JPSpO4417qETiGqPC0gtNqz8yqwdcdtzUJfd7JmcuFsD2U
7YPPYI8OmGssNvvPNDKxcGxvYsi6NX2JezugYs40bGoGJeS4UUqOpKGjhn7F+uOx
6i9dE3t/QVIhaZMC1qWWUSAVntnCJzEmYtJh7UM5CM9u3nJKVY1tsP4dF8R26R1D
/DcsIHy2sYg=
=aOvD
-END PGP 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] Accepted golang-github-templexxx-reedsolomon 0.1.1+git20170927.7092926-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:16:46 -0500
Source: golang-github-templexxx-reedsolomon
Binary: golang-github-templexxx-reedsolomon-dev
Architecture: source
Version: 0.1.1+git20170927.7092926-4
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-4) unstable; 
urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 36ef9a0193e8417bd216fd3246ced0ef6a58b66e 2532 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4.dsc
 54e5ae343ed09b7f8180b05ebc40562728d7b99c 2060 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4.debian.tar.xz
 a1bb20f57221ff69d18ae7a7b5a5e1f5d69f017d 5752 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4_source.buildinfo
Checksums-Sha256:
 5bb60e848e3e78cd04223f11e7850e2643b7b3dbd246a20e87a5b02ac82eec83 2532 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4.dsc
 e4aa4bb1b20bd533049de46e41bb05ff9ada490dc19e3a5f6ec7237b9ffd68ee 2060 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4.debian.tar.xz
 32fd7194a39d7cc593e0f3a527b273f724a2a10f76a0dcf02ba1ac8d4a6cc831 5752 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4_source.buildinfo
Files:
 f4390e48bfc45f9a4253d7e0970ec6d2 2532 devel optional 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4.dsc
 fb89b1953bd9a7b01f44decd28fb1082 2060 devel optional 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4.debian.tar.xz
 56a42cec2cc9d01f7af3b4cafa7dac2d 5752 devel optional 
golang-github-templexxx-reedsolomon_0.1.1+git20170927.7092926-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LDQRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafC9g/7BXR1Qa0630YjAB8p8hIBSGd+kFM3e0+S
XIx7E1HKYaSZ1qVZ6bUeNxI2MX/NiApHqH8Gq34mCcpdU9mV5izZ6hTsTh7Zcu4p
OqPGXUxHbBOHfGFvA1RW/ASGRupFyjRTP2RSktvWpDugPf+N9c6e0bPaQSZYWH7h
vAmlo2fJjE7wTJu3e4jFC94uROOlHAgxu9QpbQ1utFnZi8gGDk+Is9IbACPfZOc2
zmc8elJ2r7nqmOyVWjI1DEIV3Jyd14vO8y+L1euVSWMmTTuW6IIg6uAAjNIbdkPS
xhCoprO8KQ/8LjJmDk8DmgKXe34/fd54Pys+kiNp9nmTKhECSsy8gsXSoEBBJPCP
VqU7T1d6lsgrxRxPbkOlcOpSsjaBx9AK/RNJ7+X1OUjAbuRpo4VMe9GwsysTJmRP
uT+AbEoHrW6KKxI0rSw3NJ0ol7fwa8Ixy+LV4DxtAexheAf+nlx/v+1WvzSHXdlx
hgEK2DS7kTVqmnmGWAzRtjJkyXFf8NcpCz5zpFAtGzB2tl562iHEQzCx6jF0JsUY
j4fHPIPrQdu1xaOt3nIyQcbBbK4SfXVuG+hwScu5z56DMCaefF/lMhcCA1IEi1s7
xlnv4QyWiNycVSMQvk/oKOqI8f8ng4ykBrqblWBI4376hIyYELhLGqSygGPw+qMo
eHbB3UDvP9w=
=pmVt
-END PGP 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] Accepted golang-github-thejerf-suture 2.0.1-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:15:49 -0500
Source: golang-github-thejerf-suture
Binary: golang-github-thejerf-suture-dev
Architecture: source
Version: 2.0.1-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 7403fdfe8d655b91dc4d36847538d8b83cf724d2 2259 
golang-github-thejerf-suture_2.0.1-4.dsc
 f6653ee9b01ed65b52da02d56ec4488ace6cc5fa 2260 
golang-github-thejerf-suture_2.0.1-4.debian.tar.xz
 e8ff0b286aad8ce97c083e6fe88f9d9b030967d6 5528 
golang-github-thejerf-suture_2.0.1-4_source.buildinfo
Checksums-Sha256:
 07b94a32520b5b5290eedac17d5166feaefe2dac8589f79e20603b41c55d0e4f 2259 
golang-github-thejerf-suture_2.0.1-4.dsc
 2b8f613acf63a36ef44efa4ad4174feaf857a6dd6fbaedccd0be7cd3cbc027b0 2260 
golang-github-thejerf-suture_2.0.1-4.debian.tar.xz
 099844784515f9ece3e89192d120c4866d9b4be31a4d1e2fb2b1f9ca8d0f15a4 5528 
golang-github-thejerf-suture_2.0.1-4_source.buildinfo
Files:
 7af90e3226289c0478993bf17895eaa5 2259 devel optional 
golang-github-thejerf-suture_2.0.1-4.dsc
 9da9dcff90ebe5867e360bcb4b7b07d3 2260 devel optional 
golang-github-thejerf-suture_2.0.1-4.debian.tar.xz
 556f42a931d00c948bee7dca1bb33b24 5528 devel optional 
golang-github-thejerf-suture_2.0.1-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5K/sRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacY/Q/9FPjp4I5p3uWcv93Oz1bpfncBl/Qok8Y+
ZPwQZKKNyeT1TYoCU/Dp2b/MlwTogazQYA+mFNC8BStE2vp7tq2GGHYv9LbGLvJE
IgQoemjCq9M+J+6HiEj7meD8/HvU1jSMkOhaWDzWswwTJPmQP9SzCsWcqr92Beeu
g6Q5jKBXtrfwEHIonH34T9a/PlWxkI6X3uwSRzwN1JX4qPqi8ec+3nBTFZGYaShq
CHl2a+Qggv2aDle8kuY/0y3jhh2ZB2oN5AdbZPi7Xviw2KD/SvfJn3pEGE6TxHUE
1/JLHPjtowRuzhHqUpTaP5nU+8/ljY38iFf5/8y2LJToBCVzuHsZLHeN044VAaiZ
w3aOgRBq2yv49XNJSLtonpAaZzvWK/GmJxuaFrUpRcayZLFgwjy4Oqh9gHpDrS98
eHpTdQzf5LLX4aVlPN/QfS9ZBCR+jM9vl9fKWYapZo2ehdyD5ZFYIbf922YIacAU
QJ8xLVXDpma+t2pTL7KQwAwFXdc5Pv6eznFHm5GCjmzn8LJfodl10h5yxk/RSsOS
xPKj4H1aEzqgEOEhMg9ccFK/0MEsQ8xRH4R4I14bpP/xSE0GTBX1QKBlOd+6nZ5V
71H0Er61/XiNSr9aOVSb2fDyLKM9W8jcmNCtOnJadxo64z7H+z1CLvBIdvo1NF4v
MxLlPjj3QVM=
=hlbo
-END PGP 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] Accepted golang-gopkg-eapache-queue.v1 1.0.2-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:10:12 -0500
Source: golang-gopkg-eapache-queue.v1
Binary: golang-gopkg-eapache-queue.v1-dev
Architecture: source
Version: 1.0.2-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 7f415a9977ef41a2a6e9ff641ccfe09611320d41 2263 
golang-gopkg-eapache-queue.v1_1.0.2-4.dsc
 a9237ac360bc888fc2ac9853fdd7fe59de1b3c43 2204 
golang-gopkg-eapache-queue.v1_1.0.2-4.debian.tar.xz
 3f88f14b5e3d885e18f518c0f893c3ac33989cb1 5533 
golang-gopkg-eapache-queue.v1_1.0.2-4_source.buildinfo
Checksums-Sha256:
 b3b4ea377f4a3e874d8994ddb2235b31cbbe4144291d30e3468a6ed2c7a621a2 2263 
golang-gopkg-eapache-queue.v1_1.0.2-4.dsc
 90093b6e9bd29728ef215438e4abe65235d2e11d9e09566263e78c048191d456 2204 
golang-gopkg-eapache-queue.v1_1.0.2-4.debian.tar.xz
 613770b49b4affbc953b6f666268aba5681f219a25df8b0c91eae30d57d5fe1c 5533 
golang-gopkg-eapache-queue.v1_1.0.2-4_source.buildinfo
Files:
 429065a9e0ca31a42dff960f6c649a43 2263 devel optional 
golang-gopkg-eapache-queue.v1_1.0.2-4.dsc
 4b140e036a961491ec2f42844f904f30 2204 devel optional 
golang-gopkg-eapache-queue.v1_1.0.2-4.debian.tar.xz
 740b88c8858987ec15a86e06927ce185 5533 devel optional 
golang-gopkg-eapache-queue.v1_1.0.2-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5KqkRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadbWg//bgeDsdt1eFD2DuIAN8KahAG+Jd+e0LIu
LQGKElLgqalbnOl1cNlP4mAfAxiAhdrSaWemeDC0z/Yr5R3HTJw04N62FmljiEq6
vhJUmJqt5tmgRAeV7S2K41aryp3mC2+qagEM2dUI2ck3pyoK/fPhVq1RlvRzM9by
JotKAPGlSd92hkYokN8LP/a3pLfK0Z0zhWw5ysJ9vXLv3cwtbPZopjMippryAd/W
ZJmyjKT40OYh5By6zXuZf/VtWmCXx6PXu8MGFC/Jq8Ah4Hhj5bE0s/USp2PFRwiU
aExOV6H3mLSCUVyD25n28bB9LpAJJP3N57VETH2h0beX8yuH0vRjGceVthJzfUmp
/W3jGzUbsXlS7UJztVsIY3DR1j05ajPnJ4EV44m8zrJ/tsdschFdx0fbGcgrDbVH
SqTtFdPHb3jKguO4hOcR08RXjv4PNTkeG+FZiwEGF2ruwM0uJHqbCxM5LrPiq8P+
v+ELdP/ykZIHOT4J1kWT8pEsjFTXlRUuoQ01oSCiTGjoTJSmzAm0S7uU/6QlpHWz
6VZ/EIsIW3mgmWmCRvS44s5BqTLPx02Au0MeI1IfEN9InPm/9YVsR4L1/YgxjbXB
ZfSMveG08fiv7UxPrr/+8tHCV765EDKSNEY0w2KxtXhDcANew6EPEuoxamGHAKRx
Oa4kwFDwJtY=
=1Q+F
-END PGP 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] team website migrated to gitlab pages on salsa

2018-02-05 Thread Alexandre Viau
Hello Team!

I have migrated the team website to Gitlab pages on salsa.

Take a look:
 - https://salsa.debian.org/pkg-go-team/website

By the time you read this email, the repository might have moved to:
 - https://salsa.debian.org/go-team/website

The README contains links to the website.

The HTTPS certificate is self-signed for now. However, it will be signed
by lets-encrypt in the end of February[1][2].

Feel free to the proposed build system that I have setup, keeping in
mind recommendations on the Salsa Wiki[3]:
 > Note: Even though we plan to support simple page generators like
 > Jekyll or Hugo in the future, in most cases, you should content
 > yourself with the HTML template, and generate the pages locally to
 > push them afterward, in order to save the resources on the runner.
 > Some templates might require commands not available on the server
 > anyway.

 > Note 2: We mean that. Really.

Michael, would you consider disabling commits to the repository on Alioth?

1. https://salsa.debian.org/salsa/support/issues/25#note_12928
2.
https://letsencrypt.org/2017/07/06/wildcard-certificates-coming-jan-2018.html

Cheers,

-- 
Alexandre Viau
av...@debian.org



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] Accepted golang-github-pointlander-peg 1.0.0-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:20:40 -0500
Source: golang-github-pointlander-peg
Binary: peg-go golang-github-pointlander-peg-dev
Architecture: source
Version: 1.0.0-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 052699bc0f8e174cf34c24d13fe6f59a18e95ed0 2367 
golang-github-pointlander-peg_1.0.0-4.dsc
 5158d773bf0d6215d5ec025b6d8694a5178f1e0a 2956 
golang-github-pointlander-peg_1.0.0-4.debian.tar.xz
 f132df0a7b9e7eb8be08fdd666528ee269290323 5771 
golang-github-pointlander-peg_1.0.0-4_source.buildinfo
Checksums-Sha256:
 f9241e6b67b9f6a90c8e2792427515549471d9b69cd5023152516474083cfa84 2367 
golang-github-pointlander-peg_1.0.0-4.dsc
 f3e2a8f4410e4bff66cb24251dcf72352fe7c2528044a1c854ab0d1bbd01 2956 
golang-github-pointlander-peg_1.0.0-4.debian.tar.xz
 11fcc88bda677ecc772c730641e6330fb27f9b9dd5057641b43e3584bdd1d49c 5771 
golang-github-pointlander-peg_1.0.0-4_source.buildinfo
Files:
 a52fbe45e8fa1bf26a39cf0abb007f67 2367 devel optional 
golang-github-pointlander-peg_1.0.0-4.dsc
 806371ee40d7097a5519b5974fb9a490 2956 devel optional 
golang-github-pointlander-peg_1.0.0-4.debian.tar.xz
 50053d29b609fb146ef1be503e28245a 5771 devel optional 
golang-github-pointlander-peg_1.0.0-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LR4RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaeDuQ/8CCnRFBEl4wWyrEfV0B+HDHyFHulqydJJ
HiJDrMOWqPWYHqdBF+HjZKDb+t2BZmN/DwVA3imR7lJ1wc90K8nKu4YRL0rd3UaN
EwO/4GqLYzowXUKjwzizv7SwogGB3BcnNDE0ys5zYMyrctwytemhMU97s2ccSqy+
TNl+m6VulcvHGuVDhxaGCGmGC2IlHqH2lVblIknx7hEbwcb/Bphd6yNLmqILKhAQ
Jbi0qZsqoH3xWlNsGkmdCWCTUNyUa4LyJaI41xKfp7SZaUuS6H/VzfZ+E7rvA1UV
0InI1Bcema0IZehFh/lJ3tYcs2GZWC5hBSIp+0NryfDvd2zBmFg776InHhQ0A/Y/
vr9RurZB00eNIKjtfRFjgXtReyTySLHo6qGTt2GfP9KbsYDunHODmAhcVGI2OEuz
BUAMabi3eXhDjmlscJAxWeI7Y/rGBveIyIIL+1ewxq1qyCER+okRUZw16RrGLibB
V8C6xL+zIei8Mp+QTDYWBXFURiSvowfSXikHtY+/DJMp/f1KnDAVJRjfeCL+wpL4
ZS12lMHPilA+izeHl34iJV43/IVyoFiGZ2fIHkQ8o5raeJIlzCFlxSC5lWXxYFlt
GMHcTXi70nQbxFcsxY0mth7jcvJT2hFL5SPr/oraosSP2ANR3/xhrd/JskMfta+I
Iih4RoJadnk=
=aYOD
-END PGP 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] Accepted golang-gopkg-mgo.v2 2016.08.01-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:09:34 -0500
Source: golang-gopkg-mgo.v2
Binary: golang-gopkg-mgo.v2-dev
Architecture: source
Version: 2016.08.01-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 d8a838d429df42b1412615fd7621fab6ece04e9a 2292 
golang-gopkg-mgo.v2_2016.08.01-4.dsc
 866067cfb78751f762ae159be44b5d49a3bbfd2f 3416 
golang-gopkg-mgo.v2_2016.08.01-4.debian.tar.xz
 867da350a7a0bca056324daae7e2473f89b44dcf 5705 
golang-gopkg-mgo.v2_2016.08.01-4_source.buildinfo
Checksums-Sha256:
 a37646e35007bfc3914e9fe7f670146436b2996acd4edf51a2958b203e79df13 2292 
golang-gopkg-mgo.v2_2016.08.01-4.dsc
 785c1ecce39e3368a68d5aa128c308bb81e57a1dbd9efeeb94d1d72e9f9fa268 3416 
golang-gopkg-mgo.v2_2016.08.01-4.debian.tar.xz
 b85af5b34a6b1af426197eecba15291e346c5da436e45b56b47d5436dba7695c 5705 
golang-gopkg-mgo.v2_2016.08.01-4_source.buildinfo
Files:
 1881cabe1c0fc790483fe02b116947f8 2292 devel optional 
golang-gopkg-mgo.v2_2016.08.01-4.dsc
 e32885b5c0f0b96f09de8e38837ac7f3 3416 devel optional 
golang-gopkg-mgo.v2_2016.08.01-4.debian.tar.xz
 03851393847601f015204e5a9ee8c74c 5705 devel optional 
golang-gopkg-mgo.v2_2016.08.01-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5KoQRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadXRw/+PajjFVKLALqk/oKvf5ycLJAEz5eO6fa2
6mNcr2uUzxGb4x47tViia18y1tabpmJPhuuYdKIX7THuft3WgxEAkzTyVIZYiM71
Ehtk2ifdz51K25HcLBvHBvzc6PosH0VLbqy5asCNxjVpRRz/13TdLjljaCnoBWNx
+2rKEMMeJBnZe3HSfmKhWKELvW7Vhh7xVcfs9QtKX3RQaUIPG1/nX3NvxZ7wzAQu
hjkVt7E2YE6fyftrHJSeB/VD1Gtw1r6I54OqB9aglBXUzp28dCGJ8QPcmIiSAk8S
z+SihCwipA0r3lF/SnHYVN9pa1X/oRiqcbUBQ8apeF2KwVvOo2U+D6RW8gSA2tXe
E5rhVBKpPJHIHngn8t1Kd8nCJR6e2rnJqq8F/aF8F9TrPB6uxnCIiqTw2RSPs2Ls
DHjKoKpOsrEu8edERv7fFZWMz/V1vCjMQPwPCfVr+91beb2tbnBOL/ejDpeM51gf
0kk5CqzrWUl1GOazqpzmMzZguhd93b705Y1o0cnjhqI55Ztj07hOimA2h3VhL8zp
4ikWqXRZq3zLJF9HxliWqkLbIDC0T4vnZh9rLM0HJhvEurcH/m4TUEYmdiRldn+B
bplEKLcieBg+NCsMh2aOOBmM8asv1XZ+gPQzQd1IlReZwcElZM4L96x5E4Jy2vSF
V4km/5VT0Ds=
=uyM0
-END PGP 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] Accepted golang-github-oschwald-geoip2-golang 1.1.0-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:24:19 -0500
Source: golang-github-oschwald-geoip2-golang
Binary: golang-github-oschwald-geoip2-golang-dev
Architecture: source
Version: 1.1.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-oschwald-geoip2-golang-dev - Unofficial MaxMind GeoIP2 Reader 
for Go
Changes:
 golang-github-oschwald-geoip2-golang (1.1.0-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 f31d30e7a9649b45361509415af42bde1ff5d626 2443 
golang-github-oschwald-geoip2-golang_1.1.0-4.dsc
 f4c3a6b39d16a78b1dd6991c02ccf9adf16bbf04 2064 
golang-github-oschwald-geoip2-golang_1.1.0-4.debian.tar.xz
 098ef6186657f9de68582496a06f6aaa7d0f0cbb 5744 
golang-github-oschwald-geoip2-golang_1.1.0-4_source.buildinfo
Checksums-Sha256:
 8a7871b14030a000c49966ab306584f64bd285d0f16f0beb2a56e7577fbafe94 2443 
golang-github-oschwald-geoip2-golang_1.1.0-4.dsc
 89ee46793fa0cd7cef52b1c6ca4669c85c9e0f69c8664078b2dcdaf1036fdd07 2064 
golang-github-oschwald-geoip2-golang_1.1.0-4.debian.tar.xz
 99a5ef850bb21de1a7b0ea34c10c35476f906bd78cc3525f72e3404987189f31 5744 
golang-github-oschwald-geoip2-golang_1.1.0-4_source.buildinfo
Files:
 fd1a12c4955b58a4e482e5726bbcd3af 2443 devel optional 
golang-github-oschwald-geoip2-golang_1.1.0-4.dsc
 bbf6758de1cf75ada6b9d364ebebd490 2064 devel optional 
golang-github-oschwald-geoip2-golang_1.1.0-4.debian.tar.xz
 bd5c189f612d675802e8b16b6f6e5089 5744 devel optional 
golang-github-oschwald-geoip2-golang_1.1.0-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LfgRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadjrA//cZ75rG4yAmW5N2VFxxKxIbzPKPioSVUw
z+Tv+Aeqgl7Z8nVEh/H3ATzrbNIB/MISe8Uxe7hGE0pWSm5eONLLByChx+hKcdvq
9FMYi+uNmQqhW97EF3XGG4T59rCR2r82QdMUiFRYhu/xtU+Xx1iLrbHwMqfJ1D2v
oIiqI0Zq+epyeP7g+84HqVRaDrNjg/fYqXDodbemF+Cj6LacKMpr83/f1U7DUDk6
95Bx0Xl616oVP1g4dfby40bILNucgbqUzk9P9UlNqyJsrTkrsp+m05ySvvhH09VO
REaQ6WUvCmdFTamdYyoBDKVwUZp1oxcbjWLxiuIeFHSers8bEwaiTs8i1Zoj/9zo
JH/jxTm5I1alKjMtoCTPBdY3tbVJcBk3+4SSCBI8Xcmu8leSonexT6yIAKno2vpx
/JO6mc8zJAUKY6Cz2lw3K7sdjBSl9zXblGTQqI5z//IhXU54H4PDoNZO/TVbOIZ6
IcljFEnw0607TivxgfYO1YkHEF2A9PvF6RFTs08E36Ts6wQk8NrxVJ0hy+3KYCwA
C0zZbPVN3Oso1pGUYpoOfHFVblPkdwYpiNu9B9y0MvJXHv6TvQ11Tv4J1GVUW3Fw
JUBxAnillJ6Oa/LzZGajSfgE888Axga1LvzlXiSYenJ1zPtLl1zXKeb6RMCOvAaG
4pREpg7zzEY=
=11Du
-END PGP 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] Accepted golang-github-paulbellamy-ratecounter 0.2.0-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:23:28 -0500
Source: golang-github-paulbellamy-ratecounter
Binary: golang-github-paulbellamy-ratecounter-dev
Architecture: source
Version: 0.2.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-paulbellamy-ratecounter-dev - thread-safe RateCounter 
implementation in Golang
Changes:
 golang-github-paulbellamy-ratecounter (0.2.0-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 733ca077c88fbd77526c9feeacb25c0b6d71bf73 2400 
golang-github-paulbellamy-ratecounter_0.2.0-4.dsc
 237e57afaf74717fcce8ecf303d76bcc2b4d9753 2080 
golang-github-paulbellamy-ratecounter_0.2.0-4.debian.tar.xz
 cb7509b94ba99ea571d75942b60017b638739666 5573 
golang-github-paulbellamy-ratecounter_0.2.0-4_source.buildinfo
Checksums-Sha256:
 542689bec9a37d35b7ae52d97341c8253ec27c251961a965028d7e514503ef9d 2400 
golang-github-paulbellamy-ratecounter_0.2.0-4.dsc
 94d5f64226ddcd3ce78d407e0904bdd590aecd056df1fac2c9df2e505a47b025 2080 
golang-github-paulbellamy-ratecounter_0.2.0-4.debian.tar.xz
 9b5842a258f2bad7172d5f493709891e7add4221bd6b9f52ac661d84324b275f 5573 
golang-github-paulbellamy-ratecounter_0.2.0-4_source.buildinfo
Files:
 1cdf910b008a0c5589a5e1c7d97548cf 2400 devel optional 
golang-github-paulbellamy-ratecounter_0.2.0-4.dsc
 75913f88c29334b06d91209d2d8e04ae 2080 devel optional 
golang-github-paulbellamy-ratecounter_0.2.0-4.debian.tar.xz
 ef4e5865d7eb96e1e2d7786583e95a4b 5573 devel optional 
golang-github-paulbellamy-ratecounter_0.2.0-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LcYRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadDbA/+KUWsuyN7hgRpPb5nwutpVrwSkxFgyG8R
HMSPP4d0Z6rE9VhAeMrgvtJft7RzXcxyQp3gpVrQ+gF5aomv7a4Tf7BPdZyDcpjD
rPrnUsnLM5oceetBUPbLNktAEGnl8lJscq2W0DpYqjkRdzVDzcxEDeHZPVh/r1DE
Hr7ZM9SSAoRq2qfSfCDwu4W1KRaAE0EZqV5wC8w0Tra46qjZ9d6NAQBweoN6S/BK
5NxbXAziw3MQ9dLF0q0y8l5RqjRqmKXvZvwnrZvskKSVytOx5WKv5NyY4Ps50+Ou
6QGAUSxqRgs+XOvZyTt0uqQT1rxgIFD/yqoNg57HkNtpGKFGC/tX79zmOeXU9Ova
PwLXHTJ+YIRkna+pJFentcGoipzdnZSItpCQ+M2ciX1pGUy0ZL+ZqZwu4spzMe/4
5zl9dqPnlEVhsG/PJfzOh68+3vvVD74LZo8LLfurkJIyYer8oMoRExyG10MOHp2J
XOyASuixtYfm4jBFXXDKYUsoOGpuds4e/BecZc0YbchXvqUfo0bPamHdueb1qflY
EOdo2szTLZDWVOt69ovwkPvhORRKj+6NwwrQ9KIObWMgqFK6SBWHgaBcNlwLdRyR
szNBuz9XftTj3GQwC5fRTd+yGOaaR0y1pgY6ClmvU6QlvOXpdQ2ZSWsvJs9BXxc6
VLyFZbefnH4=
=Y1e2
-END PGP 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] Accepted toxiproxy 2.0.0+dfsg1-6 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:03:39 -0500
Source: toxiproxy
Binary: toxiproxy-dev toxiproxy toxiproxy-cli
Architecture: source
Version: 2.0.0+dfsg1-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 toxiproxy  - proxy to simulate network and system conditions
 toxiproxy-cli - proxy to simulate network and system conditions - CLI
 toxiproxy-dev - proxy to simulate network and system conditions - dev package
Changes:
 toxiproxy (2.0.0+dfsg1-6) unstable; urgency=medium
 .
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 3f2a670b4582bc13beed939b6ce39131f0c83680 2351 toxiproxy_2.0.0+dfsg1-6.dsc
 15ab4fd1809c6a459e5f265efa294c2987c2815b 5264 
toxiproxy_2.0.0+dfsg1-6.debian.tar.xz
 0d4638b87953a0929f548d06f9f71bc70824148a 6155 
toxiproxy_2.0.0+dfsg1-6_source.buildinfo
Checksums-Sha256:
 31bd81758d4ecdf8e4ab597da216e86fa772583f39197a461519e75ef03e4bf8 2351 
toxiproxy_2.0.0+dfsg1-6.dsc
 923e5d4beb25f6a9fb88bffad6df408249b74eaf32b78776b5cdd419a86e641a 5264 
toxiproxy_2.0.0+dfsg1-6.debian.tar.xz
 947cfd5bb9a947267653c32a593ee0a70bbb17b03abd3ff1b167dfe1d99171a2 6155 
toxiproxy_2.0.0+dfsg1-6_source.buildinfo
Files:
 df6b821db292612a1b572a03d56d1fcd 2351 net optional toxiproxy_2.0.0+dfsg1-6.dsc
 8f6dab27182117b1cc6593376b31b8f4 5264 net optional 
toxiproxy_2.0.0+dfsg1-6.debian.tar.xz
 1d0541ca716ebdcc430f337bfcf593a9 6155 net optional 
toxiproxy_2.0.0+dfsg1-6_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5KSERHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacdzA/8D8U2fU44VpTt9Wri3l0uayxZIQXj4vlz
gWDqry2Z6Q90v0FGjnL40mLc0ksSJVugzo9Ps2pbnHsANqwzGDR1n3qzl17M03nd
KdjZOquJerrhriPdl9wpA+UgCA8oDg9F+7Xvv/EJ4jeE8dA7/y+UllB4FtzNSDFf
1HIIHaVVnScHKtwvBq3WPz07hY05NQCCgjRXP6fMxzY/LuQRzRlmcnhQqGKnmdy9
7Zdd4PeqM+WzYJqKfZsWhdPPAV88tJJHHBJn+GCMSa0+YMnzaSeexTp8aULSuoMW
MgcraGdNu/d/qn7QVoZkZ8fW2wcAbLat1dzpMhi6PfbukB9RmPKj/WUqI09Z8rA3
IMBs98XOYW2fxDupM6QnevASjJ7pN8uS+wUq2/4PqKCCskf6RRyvCLfD2VSZU7JR
+l+DzVnedHAdhCs4Ks9YMlgmwJJ+ft2gXSV6v1m3gwHXPldjiTGYW+5Qe5K2lt4C
fPE0ejzT2VYAtHgvCPdPjCvW0qMvSnFlZT41JRVz0Fi6mC0hmeobwMmEKW5A1+Es
6HiGYbM8vTsuofNt7arshAS9PnZoavYp8Lacf2g9bKjU8DHRqqzjO8Jr/XwVh1mV
wHp1gK7pRjPQCMbO+fiLEXVX/4/qOFaDz5JsxEB/PzK7nKpwcSmubelWynOsSEhT
8FOakNtn3jk=
=qWtg
-END PGP 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] Accepted golang-github-pointlander-compress 1.1.0-5 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:21:53 -0500
Source: golang-github-pointlander-compress
Binary: golang-github-pointlander-compress-dev
Architecture: source
Version: 1.1.0-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-pointlander-compress-dev - parallelized modular compression 
library
Changes:
 golang-github-pointlander-compress (1.1.0-5) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 5015343d4e49e7167f10fbac69232df055b52e0b 2399 
golang-github-pointlander-compress_1.1.0-5.dsc
 c3ba47b7885f44220dd714247f5a3946bdace5e4 2492 
golang-github-pointlander-compress_1.1.0-5.debian.tar.xz
 a8e0cc82287740025db8744d932067d6bcd4ae5b 5663 
golang-github-pointlander-compress_1.1.0-5_source.buildinfo
Checksums-Sha256:
 81efcb3fa49a149385aaad07d04f2c72ab3086d4ac5f58d1b91d415cdd1d6cd6 2399 
golang-github-pointlander-compress_1.1.0-5.dsc
 49dd07f166c6ffd54e17e4d0cdd34b5d11c04b770485f139f6c5f66588a59757 2492 
golang-github-pointlander-compress_1.1.0-5.debian.tar.xz
 786e305495abc05c64c9b7764da75c81c5fa2c965d7fce815510886f835a089b 5663 
golang-github-pointlander-compress_1.1.0-5_source.buildinfo
Files:
 111e371397c77b8caae7a8a8fcdb70e4 2399 devel optional 
golang-github-pointlander-compress_1.1.0-5.dsc
 371fc9c1d9fe70f446dc78a32d4fc292 2492 devel optional 
golang-github-pointlander-compress_1.1.0-5.debian.tar.xz
 6188084a340914d27288f00da987781e 5663 devel optional 
golang-github-pointlander-compress_1.1.0-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LWcRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xae7UQ/+OtNVr0YIRoVTOlyVS7ew5cx5+2sbaPD8
nJBF5Hm4I3m3mol5XMyW/AxQbMUuTdE41Cxvo/1ldwezK6Ko6D5NqzVTYLBKb7HX
Z98SWRdQ9JY9qXI1azNcg4OcOyOPF3ZUqDEXx2XhBHYFGas5lXfK91k/r8lPhbKA
sXPpqQIDOUypf7ASH3thPRkptK6L0hB4k5O/CInJQAdl9hOZVCxxuaWQA/YcPcHc
w/tGP+bTRCaYsHv++bcgreHUwIFFGW8abL6TihLgAjwsaFGFyil4KY0iHhso7OQN
jbwYXzpuPg85EgWoiIZKrAANDPSz9Fg1T/eJAmKf8UmGXExf1Zt2HexkAoBJfL8o
2gZshd2Nj+Zo4Zdp6P3UuldITywa6oZujahazZyBX6xtG/4i3WbRITkzX4t9osHt
NzJVid2iC4jIDfjlgcohVb0785JkjbXwRAnCWL1u8K1T5jBHInZHWj+b2a0R0OKs
xPcy/j9f9IUlqCz2x5rM1/mfZGanyMyZwkpcizKGTU1IiJHXc19ZgzmwdCSAMklq
c5BEJnbYaw5U5qdtlvD49tD96CsafHppCB055JhCrpdvl0Bdle6W8akag5209OL6
616q5obUxb53T8RRNsZkReBf3fuP9SU5OyGBoqUXuh3Yfr296ZXO9JnNAZNEPoX3
QaYYh7DxIDw=
=Dq7N
-END PGP 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] Accepted golang-gopkg-vmihailenco-msgpack.v2 3.1.1-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:07:09 -0500
Source: golang-gopkg-vmihailenco-msgpack.v2
Binary: golang-gopkg-vmihailenco-msgpack.v2-dev
Architecture: source
Version: 3.1.1-4
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-4) unstable; urgency=medium
 .
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 5500321f7d6269955758c3afc31acffc 2463 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4.dsc
 292d201f0167dbc9c8eaf18978466b0caccf5614 2620 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4.debian.tar.xz
 e48030525d8b172566588037d9668e72369a0497 5758 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4_source.buildinfo
Checksums-Sha256:
 9d11d14c392a9d48697c477f4edf30cdfc7e29b11b76700076e09868f3527cf6 2463 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4.dsc
 6f7d37a977c3c94eab9b364bab780f3c24647f960d2a06aa839f87a681549d60 2620 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4.debian.tar.xz
 af0483337e7b92b502b893dd04ca20bb77b60c03e813447dec3398f6823a3419 5758 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4_source.buildinfo
Files:
 c0e03f2296d66a2863e392ffa5905684 2463 devel extra 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4.dsc
 21023183383764ea25d5902ab5513407 2620 devel extra 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4.debian.tar.xz
 b2b02a5307525c499982c2fa3762818d 5758 devel extra 
golang-gopkg-vmihailenco-msgpack.v2_3.1.1-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5KfMRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafu2Q//VRD1GQWp8awflXuOBi1ZGpG0LeC2jjn9
VOi0v+g76Hod94kR9egWC+rbgMIukpqVmkRo+w+CMwed4x9O4TV1ArrL/NUQz8yB
Y0Ef32+iu/thsNRe2peEytTq/Mil7IcWCgKDJa4lDnMSbIbuiAzi6bDPKQstYjC+
ElIGsXp6gsp9nXigYpuxPMNRVU9npimWpciYpOXxETbZpEUI/mZeUIwpI3kOkdDF
acXAcUbEiYbLfc5LN5jwEb55HI7FHeZa/9mjjSiC/kh38/yIQwrxrE1sSot2blqr
xxC/2BxIE7V1PY1kvbp81YPvexlJW9WFXI7t7GqGZFrWaLhM5llmfOAEWDEg90Eg
sMNLed+xA/kVJy9siAkWPa66SnLdtLxy/PjkQJTT9/3zIqnn120CGreRuxj/By3F
gXo9KBArXf1+3JTXFKJbGqqGH2LJgEHDJErGR45hVgZtVu6l83aywp7wNcqxc3hu
QWLT0vnPP4md4UJ7s/T+eLLACeCjOG7ht0Wpt+JcSRSlvsDqLDT7zZLMZLGNvOV0
piIGTf0lnKPKdBA/IPtTyj1znrB4cojmR8bd15nimxezVuasIUdAILWldSPKsuZV
fyUVgZilSzGcQNkMlsz/A1Or0MsKVWVf8/4gRlbkJXBY8lszhr0VYK5dKq6924VI
rqARzvaZWJE=
=eGrp
-END PGP 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] Accepted golang-github-mitchellh-multistep 0.0~git20170316.391576a-3 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:31:25 -0500
Source: golang-github-mitchellh-multistep
Binary: golang-github-mitchellh-multistep-dev
Architecture: source
Version: 0.0~git20170316.391576a-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-mitchellh-multistep-dev - library for building up complex 
actions using discrete steps
Changes:
 golang-github-mitchellh-multistep (0.0~git20170316.391576a-3) unstable; 
urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 b95d71db5326372e498a9f69c9b593aa207db866 2447 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3.dsc
 bdfe01752b4c627729673fffc2add85311bc3183 2008 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3.debian.tar.xz
 624df414be45e98cde90dadf189072bda8a95be4 5625 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3_source.buildinfo
Checksums-Sha256:
 c93cad4293dd29361a6c6c15bc00eba80b04b3e706d3f86cba118bda3f94e528 2447 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3.dsc
 e393b17bc9826af27ff3ba6e0d39c6ae950bf310f44065fe9ad2b8b88d813809 2008 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3.debian.tar.xz
 c073e8dddf4121a15544adeec2007cf9c5067141ac0d02aa8354f68a64df7a98 5625 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3_source.buildinfo
Files:
 48d6256748e98ecb6859dc29f034efff 2447 devel optional 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3.dsc
 d61af4aa58c4e868f241a5a7f0343856 2008 devel optional 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3.debian.tar.xz
 225db2bcc3227f8e2113c74bf399ec2e 5625 devel optional 
golang-github-mitchellh-multistep_0.0~git20170316.391576a-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5L6QRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaeGRg//WJ9e4NoNqXCeYyYMTU6SOtEliK46q3p/
0iYIGKaXisvdKulQPI3mFdQCrOAGHAs2+YxF/s34ag9jN5jcenJY0bbMtXfDYR7L
eipM+iXA222zN2gC4yu6bVEDSEAo9ZUQ2iClmnbHp16s4kQApSMfjUhbY/vVkHMU
IMH9JA66tdAumplg15er1u3IT1yHIFSmNl3hsvWHpFzpazpK6uK/2afUSByjOgC8
LMfbR03soSz12qBS8zgGjWRnHLIPuQO2XEZRZC2XBCQ0DPSkNvqJjzTYfyKI0BSf
EQ8TwoP8IssUHtQ6BXy4G5Bap7UVcy5IKMqByKfSXiXTXiNlFw7lNeGn83BCdueq
njxNG7VFZOAN9m8D8epQ6sA2JrOzmfz9XvjXumjefoFhE6FZi7Gfz9TWGXmfkQV4
qCDMlPaH1XA59uzWV8DUS8o47TL7c/c6h1Hs68t6RPtoa8BiGqKZlffPK9/LFn0d
iJLPAbXKl385n1wWLW4m6bHwKTzrROIsADzS0U6SDAN44RwGqHCIYw6mc7kp2pti
+ezdmZnQrO5tL/Tgh6ke2OISXF0bB+LJcPT9GghumEJS6gBla0SbV+kqMTx5zPY3
J4sIhyMDuafLh8kWQj4Bp1mzrHWvurLWK0uG1w+cv8Jt7LVXAvDSRw6d9Zi9d0NX
hJQW1TL6/+g=
=O+9x
-END PGP 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] Accepted golang-github-mitchellh-panicwrap 0.0~git20170106.fce601f-3 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:30:42 -0500
Source: golang-github-mitchellh-panicwrap
Binary: golang-github-mitchellh-panicwrap-dev
Architecture: source
Version: 0.0~git20170106.fce601f-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-mitchellh-panicwrap-dev - library for catching and handling 
panics in Go applications
Changes:
 golang-github-mitchellh-panicwrap (0.0~git20170106.fce601f-3) unstable; 
urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 109099007e9c50052397bb73ee131fcb14cf9914 2482 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3.dsc
 c18f00684f48a4db8f6e50556c460c1c9fc8c219 2112 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3.debian.tar.xz
 3e1feca482ba16b35fc300026e0e4cfbf3215d89 5693 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3_source.buildinfo
Checksums-Sha256:
 88da4a54958bbbecfd875fb06515882d80e351445c213feec7f16f4d6a4cfcc7 2482 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3.dsc
 7f009a7a581c040bb9418eb2548ec367eb4b1ee1ed4386e0926e2472b5f7623c 2112 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3.debian.tar.xz
 f83773af22b6798135a04fc1e32dac8524c28443fd18d1abd9197eb86907d662 5693 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3_source.buildinfo
Files:
 0314c544c53fabc5ef2fb437ed5fda9e 2482 devel optional 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3.dsc
 fc332316863d30a038a946b25971a428 2112 devel optional 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3.debian.tar.xz
 be506a52b03e47072754e140d0338aa1 5693 devel optional 
golang-github-mitchellh-panicwrap_0.0~git20170106.fce601f-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5L3gRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xace2Q//SDQyeNJ3Y4QLLr1usze+v3nWbQgBagaw
CnXJrIq9k2YBKzYEQMgGW/+RWSc/yiidR3lBO0g28zOOPfFuuSwP1qpuRlTl9N+f
Noauq1VHrTCJqejnItDQOlbbaf6AQ0TaK3D0bkL9CadxAh7iJS2WDHyTDzzNPUBA
uv+hVR0dl+XCJ3WwZ4hdnKN76L1yrCb2lC3atx6iYv/zD570QNlmvCmigInbqfsy
ZUqwm5LnXIt6lHc6mje4HyaJQjqfPOQQFngwjy05vO293YVu9bM+igykb4as7lnk
a7pfM/XcCdP71sKhUjNEzCINECMlt+4LuJsey/4rxFcjd8tml+r4puYpEIJlv2Zj
dyRhlJn8YPKv69PnocGXcAFaZOLmpaVD2oP7WkcOuTYkxu1n/s9qNRi9puaj9ZsY
Bha/OXdUQyPgAlycYmfA/AQEoLALRgRrS96iRp/UKlSVOPjGe2LJ8sEdm3OgjuSZ
CLx8gXmczuuAinWGipfNGWQYsf5dd9ZVvWng0ST5E8KHqrsaVIdyUojfbNX4wLdB
aBFTl3cyOhvMf4g2Ukut7ORo1hwZp6H+MD//WZlCu0Xmdbe4nmgzQgJJz8M/I9fM
HY0FSz50LymQdRz5kegYzf2CZMLyoiDJRE+4tWmKEKkP8PRBvd66feEEnD3w7cm8
vhN9MUZjCKs=
=2B0h
-END PGP 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] Accepted golang-github-naoina-toml 0.1.1-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:26:34 -0500
Source: golang-github-naoina-toml
Binary: golang-github-naoina-toml-dev
Architecture: source
Version: 0.1.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-naoina-toml-dev - TOML parser and encoder library for Golang
Changes:
 golang-github-naoina-toml (0.1.1-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 b827b7d14fba564af18d5f45a6b9fcf3cd7ee288 2306 
golang-github-naoina-toml_0.1.1-4.dsc
 ff11081c410f15394818ce38d545e22d77435edd 2312 
golang-github-naoina-toml_0.1.1-4.debian.tar.xz
 fac82658b297283aaf0f298b9f4b062bfc4e55ea 5658 
golang-github-naoina-toml_0.1.1-4_source.buildinfo
Checksums-Sha256:
 9059b9033b4a6f0afed62ec3f0443a79f27a8f771586c022d4fdc28c00e106cd 2306 
golang-github-naoina-toml_0.1.1-4.dsc
 effbee2464916ebe2da5469fc0cc559f4526a445aba22084df908df86dd61f9d 2312 
golang-github-naoina-toml_0.1.1-4.debian.tar.xz
 c24170c69124af909ae7b71f2099b0a3e361effc2cd5859db51c99b6fae218d1 5658 
golang-github-naoina-toml_0.1.1-4_source.buildinfo
Files:
 8f6b8673a082bf16dd3ceb82f7ec56f0 2306 devel optional 
golang-github-naoina-toml_0.1.1-4.dsc
 7d417dcce6b6994cc939861244cadd81 2312 devel optional 
golang-github-naoina-toml_0.1.1-4.debian.tar.xz
 e766f5eb0c457fec6ca38923813b8e9c 5658 devel optional 
golang-github-naoina-toml_0.1.1-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LoARHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacZ9Q//Yq5sw/pF1yBfvsvHMuSWQ9+x8TexPSZ2
bgnRPzVR04BeL5p9ZJ/3cARZAnaJp47m2mPmYjM2j4o9Sx9LUopUV5TFhYOzyw4G
6w8nHpQd5vf5SEQabRWjWlIHl32tULZ2Pf0xbwd7GA0VEtaFEcwJiFvczZbnVI+2
NBhWgaGG2X1Cjv47YoFcrpyDkQXd/kkJ1wHVcg50RNpRdOPDgA4PjtBLwrsJ+Wev
lyDg2gGPUGvhA22Ssu6mkgFUnYQEFg3cXIYJdSiT5CyPRPulNoUNRq0zmV0dgc8y
G/pulCupTw5i6ETTedX+QCkg0GiRBkNap4/vu2T9O6Lbw/oBSe3FBR6wwbUwRk6L
+qqlycmpHGWGiVtSWxzrBKJj+aG6Nt+njQ0dZlh2ZomkqZHK0v3h3OS2+RrHEmuK
zp3cogz8p6aJ8juwOCrifTahUrbDMuaQ82Yc6ssOtxCues3NBc1yj2hZGtBlQy8f
CxL78ul0I099bAVyGN3NHKWOPHfCaecBflLz0RnO5IDnu8eS2exbTBVzAT51b4e8
inWmZD9K6SE6nX98o8h2WCW14cim1rICepVlrcFRc1rw7T+h/pVCWZ4IqWgnBmoG
UUkTT1NYReCSTqYC8LmrJWf/XwRarKI5WyreRY4+vZJ/aebmFtKjae6W9Jo5ak5s
fVpwldCMf10=
=yyua
-END PGP 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] Accepted golang-gopkg-asn1-ber.v1 1.2-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:11:27 -0500
Source: golang-gopkg-asn1-ber.v1
Binary: golang-gopkg-asn1-ber.v1-dev
Architecture: source
Version: 1.2-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 23391f330a6f887549df6a4b4c0ef2fa8059bb9a 2217 
golang-gopkg-asn1-ber.v1_1.2-4.dsc
 e95c9285fbb8eaff36c38c7b4096f3631cae 2304 
golang-gopkg-asn1-ber.v1_1.2-4.debian.tar.xz
 f779e7241f7eb12fc334498e5a06bed4a00ea94e 5500 
golang-gopkg-asn1-ber.v1_1.2-4_source.buildinfo
Checksums-Sha256:
 7bc7567764eb8a4338263c0b11e7b2da733800a2ad3805d4323a9d9103b8c00b 2217 
golang-gopkg-asn1-ber.v1_1.2-4.dsc
 56053001f84e30a0a6974b43aeb604b151da85238ba7357292c0d76764aba033 2304 
golang-gopkg-asn1-ber.v1_1.2-4.debian.tar.xz
 63c5be17c1a35864d1a3fe3e1172e7814e392a7047b6349ab35782d6613a23c3 5500 
golang-gopkg-asn1-ber.v1_1.2-4_source.buildinfo
Files:
 c4fc17cc8f38087fcb01f7335aa77196 2217 devel optional 
golang-gopkg-asn1-ber.v1_1.2-4.dsc
 7f5b19f89aac4aff04ee8483c592e5d2 2304 devel optional 
golang-gopkg-asn1-ber.v1_1.2-4.debian.tar.xz
 0cfcd3f4f169bcbd545a1e46062d0c20 5500 devel optional 
golang-gopkg-asn1-ber.v1_1.2-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5KvURHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadIWA/9EHwRXVXr1xn7KnmUeKYAfBoTNljWLpVl
XoC9asbPEnMpaeNwoQApq4Xe9S69wk9Y8Cp1xoaWhy7k5tZBDN5c2w6eox5WnTGp
7D3bOZdtLdWR7aHsqixPpiILIJYoOHf4PbCWM43BIRsfjwnAWH6FGAxD52MIhcz8
DokstMYPtH8ap7mtnNJUi6RBE3v1veDCgyCpfE9nkCbfehhaU9VBaoVaXVkiVFxW
IebnoJJaizBGvotdJAtyFuxpoSF3hVoqXL3FglZh4/vHEmCedbNtNoCgz9WaTxV2
zH88Voj0JCMkz4kZjuTmfaCVjcHuZoz3uyuVC7p5TrqYcKiyj1tV8p4xFv8ojs1V
7JOee4nREzU+rMwAfSxakIN8LE7p1sT4c/5zIwPhnZAoFhio93gCOQb1cFYgEPac
ivD7SVrZeMNDlT6bLANm1ASZBoKf4/2KMrghLUwOAs7fyw7vGS63iu21YHG+7JSN
1XjMRVJC4Anyc6DR9IxAus0AYOzqUP+YorWuTCZd6JwGNR+rpTy/H3nbJMqth4yA
6048wmncwPO1MxOtaY1CgN8IgJ7yJnzvwAtiRMfCajSApPQCr57g/KSe3g3TEXau
Xe38L/TGoo0erZxFL/n/Mnrq7CMGQmI7k9PY3ZKdpofbhXn7A9Zod+lkDAaWDH1A
wFY9ntdSUhI=
=0xkJ
-END PGP 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] Accepted golang-github-rs-zerolog 1.3.0+git20171214.c2fc1c6-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:18:33 -0500
Source: golang-github-rs-zerolog
Binary: golang-github-rs-zerolog-dev
Architecture: source
Version: 1.3.0+git20171214.c2fc1c6-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 98878ff536c05a49de07221c91502500ed6662fe 2409 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4.dsc
 68815729923b7601e8c9169e5f70304c3638f10e 2136 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4.debian.tar.xz
 0262fe37b22a21e1a51ea14e40388e7cbee328c2 5997 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4_source.buildinfo
Checksums-Sha256:
 04f62cd4cbd6916f440c1eec3ae571c1a249b1d97eeea3bf4ac75ab01a55510b 2409 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4.dsc
 47b9ebc728036e2d1a076ab33a4c40938e750b5030acfdbaaa294e5eb3bd4d81 2136 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4.debian.tar.xz
 2604490c0fb212ea6bf5e01654115370d75a9a94b6d7f25c72639809c529585b 5997 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4_source.buildinfo
Files:
 4931fbdd06e3a0ae847add5a6aae7d35 2409 devel optional 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4.dsc
 57d412f3b71abce54b61d1cc7725c785 2136 devel optional 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4.debian.tar.xz
 636c3b03430b02ea7714fafb115a2ef6 5997 devel optional 
golang-github-rs-zerolog_1.3.0+git20171214.c2fc1c6-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LJ8RHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xac30w//UDSey/bBSZ2ZwyWZLW3HkWnIFKr9vJwe
iy+nTJ/WrtBeqxKQQwj0orjDpp2Y8HrqhVeh7JOyGU8KaIAzTR/q/vj8K9m67Peh
PuHBxZKtD/Z9+PsYnr2/N8QwtylwyIGQLbGmITBdUyp4eV2zwV86zUdC2gj9ZCjc
7ByuT0vQzeMdsfCGZ9begnYPOQRgOOW7e/0BgjfVbiVN3SBu6HKhjtm9f1YMIsqS
vasIg2QYyOD+xexMkTBI/ePgldweRLsKwxXjpZ/eP205bZftB5+jQOTFiHdoqQgr
9FUGyOJlsBKxwBJGygZF5qPsd4qbsuwioXxxdJUCZ7MRWyBSVHS1GFsiHGlqMNcv
04dbTmujUVWe8dA3K8hf8NPuVVYeR641rAxzTYChDTFePTJHIFHyoXR3VzwGqnZu
QDVl8Io0JHCUrA3jJLDrlJRSkHjRSMpoXfY2geoLz6Uci/c8OvL5VIFwzXi4/lc6
oiwH3ZH/wSbtWqG/pzyzGxX1oq0ksqsGV6OsM9nAEMcocTfzY9LF0hO34aENaqd6
ZmXtZ3wctt7dEe3E5gQGqqO4Zc4PIsFLXcCrFsvvGArMb9CqpCwzlNQZniPH45oP
gwUre5oSXv8O02Qjf1NAHPr2N7iUlZGxpkB3v9Glj+Zl8aMnp++0jw151MhnUpfI
+yOzyAe9XJI=
=9+eq
-END PGP 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] Accepted golang-github-sasha-s-go-deadlock 0.1.0-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:18:14 -0500
Source: golang-github-sasha-s-go-deadlock
Binary: golang-github-sasha-s-go-deadlock-dev
Architecture: source
Version: 0.1.0-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 4bc36e735a0528f73893397906d5f7d86a12a635 2321 
golang-github-sasha-s-go-deadlock_0.1.0-4.dsc
 3b7b0d873d7888e8b8d2fcd5672e70669fabbc03 1868 
golang-github-sasha-s-go-deadlock_0.1.0-4.debian.tar.xz
 94d80f7e6eb4aa48e18a1291217e4fa99d01a098 5553 
golang-github-sasha-s-go-deadlock_0.1.0-4_source.buildinfo
Checksums-Sha256:
 f2ae2884cdcdf7fc5c1a74cb36946db793482a5f3e4271a3079940b4b1fac06c 2321 
golang-github-sasha-s-go-deadlock_0.1.0-4.dsc
 cf73bcb0a4b18ef64470da3a618c37edb59e212e57ae85ef4e2c61c209585187 1868 
golang-github-sasha-s-go-deadlock_0.1.0-4.debian.tar.xz
 f1d40b5105dae80bba3b9dc79567bc16ef40b7e948e26037f9b17367f96df79f 5553 
golang-github-sasha-s-go-deadlock_0.1.0-4_source.buildinfo
Files:
 4fd49bee1b07ddebdaaa9844035c2ea1 2321 devel optional 
golang-github-sasha-s-go-deadlock_0.1.0-4.dsc
 772a905a677c49e91f429d26208081c3 1868 devel optional 
golang-github-sasha-s-go-deadlock_0.1.0-4.debian.tar.xz
 9d0c327c349069168c1a06df12d1cb6b 5553 devel optional 
golang-github-sasha-s-go-deadlock_0.1.0-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LIwRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaeLSw/9FwElu9IR6/a6OVXPAwJrcM4O5zO8DJqH
QfVq5vGzUTEviaJ9I/+V1dbZ60oIiiqSarwbeCBZwILqKraan+mJrqVvI1j7ZIg6
G4oetQ89h9PxFsdZIYBaSWuwTkugYHsvYVQnMWea+dXGZt84wF/vLnlAa+S8rWqV
sIxzgv3Rp9AziL7hJ8LOTm79ph3eFazLd0XhGQ8e0Dod315VkxVsQ2NUIVQ1+Wzv
nW6zxl11hWhoNW/dTikhegZKzlGWrfXpLXqpt6NE6yLVDJmymoXTtqLM6jJyGNgT
/Hrk0fv8wi3e23PyqNO7E/GAr0StiF4cP2ll9CmLSExJH3/n3MR1ApK50cbP0BG5
XR2W4+YxcgvUDPeAmWhpMVGjxTgej3ziG1M4/t1KCbkcfNRC6RYeHGrxarpMia92
8INRmY4sarpo3xslS8QCHF1mUwWD2mLMACJl4EAeHcNKek9PY9hJiXV6bD9B5uNz
S35rr7Ufebf1KOvJTbrck5m41fD8FUx2CkaqUmsZrryGOGPlAIm5YSYE3P4sF9uy
1kieBwIU4TMIH35VUvl2yLdKIyQw5bpre/72TaiGwvhTsyOw2VlYffFS0P1BjqEu
6zNzkFE2jGNWGivX4I8CirdQTXh3GznYkbf7gEczEHjyfv9QKuLa52lxpFYtsgWq
gbEisKLwZjw=
=I3ZG
-END PGP 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] Accepted golang-github-tjfoc-gmsm 1.1-5 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:15:12 -0500
Source: golang-github-tjfoc-gmsm
Binary: golang-github-tjfoc-gmsm-dev
Architecture: source
Version: 1.1-5
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-5) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 25e8f79f4db68d5c117a98aac57a0601151f5dfb 2223 
golang-github-tjfoc-gmsm_1.1-5.dsc
 1e122f0c6fb9d90365109332ba32667130724886 1888 
golang-github-tjfoc-gmsm_1.1-5.debian.tar.xz
 1c424a8d01f766b1ab3d93a83a489b35695ecb37 5867 
golang-github-tjfoc-gmsm_1.1-5_source.buildinfo
Checksums-Sha256:
 2109fff3d02bbab499de0ac6ee5fede5ef0a80742a976af828a981c02d005b70 2223 
golang-github-tjfoc-gmsm_1.1-5.dsc
 e0922fdc75b1171fa4ade91fd99de85ab28050b37ac4d5a192d001e25f3d7fcb 1888 
golang-github-tjfoc-gmsm_1.1-5.debian.tar.xz
 0f82b1215efc28fab67718be152e06e7064d3a7db07aff674ef0fca7555b1b5b 5867 
golang-github-tjfoc-gmsm_1.1-5_source.buildinfo
Files:
 cc7d58130678891d899bc6509bda679d 2223 devel optional 
golang-github-tjfoc-gmsm_1.1-5.dsc
 cd135198a65076a7cac007ba849b80e7 1888 devel optional 
golang-github-tjfoc-gmsm_1.1-5.debian.tar.xz
 640c292e506da13f1fee0a71544e2a17 5867 devel optional 
golang-github-tjfoc-gmsm_1.1-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5K9YRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafi3g/+NfhxgMJME1AKv5mFKhvKglodYh9D8Bgn
5pOhCkJXkj6cMUgSxxgUnFV5EKS1eVzo46oSJV+Zft38N7Kp8P16qGs74Y258jAk
TMmI30LLO5cKw0yDyanN3vU8RK0vFOugU5Dkg6XoeTEE0y7X41CvPNxWlAQQHwQH
G7sHMe0OYd40TGr2gLcVFU4jAkHuRlgg2HTXWnVe2V/Emxm2Dp5G6PCBFDDNZyWj
gNU90nIzuOLQnVMSEqIweRk2YWlvhMOyaPlhyJuVskCGP+hjivqw9b8Ifu4mIeP3
XHcAZ71TeiR2u30FF0O+VcyFXCWUU4AnSpNAOz76LXfieO/V7n/Cpk44JVpsB+8i
v0bh0Fk/XihyYdIJJmMV+kxaRN4tZ7bZxk/2rwS5TtJ7OefFaaDAnSWqKCyPZ7Mx
evu7GYS9Olv0itygNs/uI2fQovqlHqnxmLr5P/EYbyQuv4FI0Lg4aQ6R/+9c6Bfq
CLYmw2sDM/RxNlsQPPQcfSGpx7z0nbrnGpc2xQQHQ2jYaCrL1O84hkHjL6gecILG
1d5WykwFSU9szutHakjOJHaxqrc8b3LIVwV1ux42YLfRzzcjqRzkDiX+eeLlOyJO
bO55qzShGKKjqhlZ1os4RpNjVizKr6Z33IjB4Yq134i4OyZ6y95g5RVO0MA1cG+r
Uo7qVarIt6Q=
=p8aB
-END PGP 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] Accepted golang-github-streadway-amqp 0.0~git20150820.0.f4879ba-6 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:17:36 -0500
Source: golang-github-streadway-amqp
Binary: golang-github-streadway-amqp-dev
Architecture: source
Version: 0.0~git20150820.0.f4879ba-6
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-6) unstable; 
urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 d9da8d72100b110edd56e94bc16c1c4e8d0d11f8 2384 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6.dsc
 65246f89827b8e45e792b23518b2da5d78279487 2792 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6.debian.tar.xz
 adc540e76698c05ab63259dfe9a13b1644817eee 5608 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6_source.buildinfo
Checksums-Sha256:
 fc995ccc384481d6a4897610745bc98402f27ae6c6fc510a45cd068c91ffc4f4 2384 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6.dsc
 d27339ab27a005f3d8bafd17bdf6d2100785ebd0286fa31b8d4c55565c07123e 2792 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6.debian.tar.xz
 d7e9846992e6ed0602e7b51f7e1d040d0ab50cdc0d41ca685f4f681b69ed22fd 5608 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6_source.buildinfo
Files:
 558e4d0d64071029f1698e7ef423c89a 2384 devel optional 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6.dsc
 7d29a4142f55dd5497f92381f3c18a03 2792 devel optional 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6.debian.tar.xz
 ad1ed3bdf2b8df3457f94728fc966253 5608 devel optional 
golang-github-streadway-amqp_0.0~git20150820.0.f4879ba-6_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LGYRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacMWg//Qbb4rpXeaWrpN/NpRdwRx9LnfPAsr9cI
5AYLyCGSL16HKUVYc53hxCodjYMy8jOJUE9kXYe9YxLumS/xkP60MG5uVg1OlAp0
xTmxyjydEK8+/8jxbpC3RpcNQmehqLXclEXBhSiNHKkogHFCHeExfpQcOCLCxZHK
gf7wCg02v0Yl8XWyKZJrcdLzxorera8GegtxOpdlmnqbtqknfL+pKU4QsWt9OwIs
SV/srsVHXhbkTL3PLoSkYFdFFDTe7wkSmAkfWgjxgXYaigF89gB6nGfMTaVtt91e
qaTCPq7Ozm0srIkWPIEHR2VfL4ndsVto2qqmAw//MBcVc1Z/gBc3SW9t6xKf7qf0
n1Rd6JSZTqUbWp43IPYyVfbCWUQk+j7Gc7lepy6oZYvcHcHFPaj4VtGNuHkEwa5f
yVuKV3+x9+Hq3/mZbACek+Zy+nx3zKkH/msATGpzCceuSpq8uEpK5pbtBEvrtR9Y
sEz+s8wQsU0RwhQ27eEixvlfmjve1x7mQUQh68clDy9j/sB9Ew4pK+AuRzbOolf5
rj6NRHe0/E4GBMwmZtKBzcVOI+fxgo/8PWd6WgcAKBaytzFINrKuQv0CRw19Qit3
Z/Xo8R1VZaMU6GGGHHev0kLD9FvzU0/4WVfIijmBnvnO98CfEl6lgURAHQU5Gqck
GZvXzs3xeKI=
=BXK9
-END PGP 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] Accepted golang-github-go-xorm-xorm 0.6.4-3 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:53:32 -0500
Source: golang-github-go-xorm-xorm
Binary: golang-github-go-xorm-xorm-dev
Architecture: source
Version: 0.6.4-3
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-github-go-xorm-xorm-dev - Simple and Powerful ORM for Go, support 
mysql/sqlite3/postgres/ms
Changes:
 golang-github-go-xorm-xorm (0.6.4-3) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 c5ca7856230930ab014fd7bea49d3676c03cc89f 2517 
golang-github-go-xorm-xorm_0.6.4-3.dsc
 8c24b09513fbab4393de178ee32c82fe7cb7d505 3164 
golang-github-go-xorm-xorm_0.6.4-3.debian.tar.xz
 51c5e4d98ab655a02f643e96c2d9d564fe8336bc 6533 
golang-github-go-xorm-xorm_0.6.4-3_source.buildinfo
Checksums-Sha256:
 14f3e29e1ee6dec01c3936ba6c9f9f1f9f4667a362e86f74499e5270455f5e75 2517 
golang-github-go-xorm-xorm_0.6.4-3.dsc
 641dc43ea6b9afee413c795a8ddf7e42ae37ed83489f08b7c210fbee88322de6 3164 
golang-github-go-xorm-xorm_0.6.4-3.debian.tar.xz
 2207f13bdc0ec0ed8c573831f81296ea9398a1be657cfdc80a8591a190f48024 6533 
golang-github-go-xorm-xorm_0.6.4-3_source.buildinfo
Files:
 f1c30c3b7238c303cbfef49d381398ee 2517 devel optional 
golang-github-go-xorm-xorm_0.6.4-3.dsc
 c8253a3e577997b291c4b456334e775b 3164 devel optional 
golang-github-go-xorm-xorm_0.6.4-3.debian.tar.xz
 f81ae47d9a6a82f47647d1eb397f6b1a 6533 devel optional 
golang-github-go-xorm-xorm_0.6.4-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5NNMRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xafcDhAAmgf3/OirfzKhdJLFXjbTAo6mThay6JK8
Pe8TCb1mkYjEDcHl92RSqTrqff3QQZrUh452Wrv1dSWU8ij5bzZwJ8qRuRodP1QU
n4xeawZftp6+6VY8rLeTpgmlQljUc6FZ74mizodPA7ldWR4lF/YByJS8mkntyBig
B63nUQZHG8XPbPQFzCyfRd8Edy6dFTtOderChHCZP68i9q33QSTisGduCBn5sXfq
OMWn7dMDXO/DxpFO/i/vkeHSZQc2hAk6cd+XrwNwQeJWQGKjh+/iSFT0wFvFIIBL
yxVcmwOLl5o/YSML67epYR6c+LFFUdNsOzYHMe1636y9buU91b/polyJouSQGPKu
jCSzNHIvkEE0tIbNuMC5GiZYUBmNHQ+TC2jUukwNAcwn3Qo1EHx9BZAM351jK309
R+Sc1endQCksyKa4I0uoBMrGsEGIj81o521rtRBOf2Aj7BvEDZMOo3XVSbMvPV3m
PWz0JZacolGp8KK3YFrTlEr17ALEteXFyjp/K6qoSMgoTf0xcIeruSLC+NLiHg4D
z3avKFnREZzVmS8uwYCB4Aq23h7PakcdURp1ydkePn9dMW6ztNDQjqeX6X+rbnCl
ueTA9gM24800T96YLSeUUczlsdHCTZaFzWFSXZz1UtSBmtXtELCUfERLr/Kryty6
hbRv8xsoTNM=
=XOC/
-END PGP 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] Accepted golang-github-rainycape-unidecode 0.0~git20150906.0.c9cf8cd-6 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:20:13 -0500
Source: golang-github-rainycape-unidecode
Binary: golang-github-rainycape-unidecode-dev
Architecture: source
Version: 0.0~git20150906.0.c9cf8cd-6
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-6) unstable; 
urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 f328020b87c7cb35c8e9c2dc2d699899a19dba44 2452 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6.dsc
 93b62a2504cade368adde514c73fd0f03b62afec 2200 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6.debian.tar.xz
 447b7617395578d5cabe38b3ff8c16bf25728286 5633 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6_source.buildinfo
Checksums-Sha256:
 ba167c8b85b6b8fd213ef5faddbebeba792b012975c6dc63c3f95bca45ae5e07 2452 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6.dsc
 43c000ef4549055e03c504743c9b469f8ad4c357d5eb49d9e6a029f7e6cc088c 2200 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6.debian.tar.xz
 e5f9e392c51156c1702d1a20091335def18c343ffee159024348d84a66515e1f 5633 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6_source.buildinfo
Files:
 7a501fc60e7bd15868dc71267f45e4c7 2452 devel optional 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6.dsc
 e43b91be872d5eca010181bf89628cef 2200 devel optional 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6.debian.tar.xz
 86fc5515c521e22933496297437b3584 5633 devel optional 
golang-github-rainycape-unidecode_0.0~git20150906.0.c9cf8cd-6_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LQQRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaeM2g//VUljGVmNo0f8krK5ujy53DgwDe6lIBHA
z7Z3ZZtlbDJZGlqpbxtyhJW+5/n2Yu5QN5llI7wBmaF5nWw2aOz/Ow/F5MgLXv+H
RQrB7nvDbX9z2mmEEQNxIiVfag+B4SZ8J3LG/FNeBjkeLPK9xcjEEij3g0+MpmzO
oKNGtCHxVbUVZqbNoDhdRZwnufdyGmmTy+q0f/Z2dnmtko9sqduSzX+CLwMpHZ+9
Anr3g82O7EDO81M1aAH0Rl3Gf90EkJDnHuwV7bYkKQkhg4s7n7znYa2hRIqd/xQN
L+9a4buJtF8nS0gmDa+hGT0XWGEnZ4YzeHKqkRTVUpZ10BzT5Y0TBuKNUX4AzwZ1
hN04uAx3DOXmmZPD4/yqto3xKgF3fjegPoTLbbq2XcdtZeXccbkCLgz5PyV0KaCQ
7VGNU5LnjHpchyD2G6Yu1b0Q4opmgOTHeCLQXQ8TyXw1Ruk8CqcuJT79V7+nGpoR
yXvTXl0YUS+BNcRbKEOlH3kAdjhnvTn/+skLwhPh8lf1pQ8W4lg26Eg3RexJViEE
X+JoC7LERMWT1Ml+zTnrbH4M7hyQZVsESeHJOdI8r5f0PzDystKc0yfnGrQk1DVP
ALoYZ5LhpW/WX9ma6SDsYhsHmwzg4YDfZ9lLL/YkKwJpQkVf9DLSOvlAZ+JPmrfk
tTHeYHpn8Gk=
=1/0V
-END PGP 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] Accepted golang-github-go-xorm-core 0.5.7+git20170909.0.da1adaf-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:54:18 -0500
Source: golang-github-go-xorm-core
Binary: golang-github-go-xorm-core-dev
Architecture: source
Version: 0.5.7+git20170909.0.da1adaf-4
Distribution: unstable
Urgency: medium
Maintainer: pkg-go 
Changed-By: Alexandre Viau 
Description:
 golang-github-go-xorm-core-dev - lightweight & compatible wrapper of 
database/sql
Changes:
 golang-github-go-xorm-core (0.5.7+git20170909.0.da1adaf-4) unstable; 
urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 205ace50e22ae390e4d3071923110e6536c3ab76 2487 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4.dsc
 06d6707e8a168970e4e29887c38b0bd295b192f0 2988 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4.debian.tar.xz
 84a93a966b7e56e1244be19d2868c71927af13bf 6040 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4_source.buildinfo
Checksums-Sha256:
 324474f61b7679c3341dfc389b38d7a0b164f10d75c75ab788e47b35859d09de 2487 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4.dsc
 a959b59ffcb14628ec7aa24602dcd578a23cd054b45df933e1b84ed0c0a4ff0d 2988 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4.debian.tar.xz
 1d82a8408c1e4affc2e5cccacec60d98763e897a31b37717fbd5386a9947769f 6040 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4_source.buildinfo
Files:
 beed713fcf66d3a3eb549314c0bef707 2487 devel optional 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4.dsc
 208ed81d8a5bf1d540ee69eb6563d547 2988 devel optional 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4.debian.tar.xz
 513f90e4a834e2d7e78e6903ba580fcb 6040 devel optional 
golang-github-go-xorm-core_0.5.7+git20170909.0.da1adaf-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5NQARHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xacYgQ/9GpjkhO/wREX1SnwH/n496BmzcQnkqyuy
6OVONuOGqlUwIgIKE5xRpRqqLOPowvilEbzgwBKy/ZvHBSZmtPb8+IzncgjDUXjx
gvR4NiaKmu/2PCiAnHwmLxgRXw1vUBLZnnp42xDdqQE6qP/AiXaTnsneaaKap0O0
3nggf3027v0mFpKv3M6yycitJkNsSq2WMwxmvw6KAP6DhntGpfgFk5jVrQEHCNJg
7hHbOEH/9imaSJMYWkwNffOVtLA7ZqZ7b5dJhcKNKXfdNINghiZ+GV7coJFapTBe
XhZBXC0bZ2HezPHl6bD+DT8v2znd2sDxvLMF+97i+CzkiAXa2JK8h14vIwSVyw48
AvTU+TZGWGr7fOh1amLltluWLsY5ZnU9or3mHIFQn2MZtmv4wszMLyJ5EHNQ2buB
zEsbjFVh4qUIR2P5xCwUc4BVy1SKEbaLYAgrEEsqTEU/loBaWnr2dOIalQqRlBLB
gJKNBOL0+jHjNBAaIveKXUUkIF27k3f2rGGbbX4hwBWVneseYFW+vvYAcKF4QYeO
X0dLE1oUe2KMTDJ7IzpZgXW6i4HUsvr4Te01dUXbECIWdRTdx7y7Oq6c5CZvukaX
7JAs0chd4Bu0992XNdpll5TQBuMHRrd6DDR5OZZwjPDXBRnrd57/bwvs2heLvBaa
KA4EUFnHAfM=
=R8fl
-END PGP 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] Accepted golang-github-tj-go-spin 1.1.0-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:15:31 -0500
Source: golang-github-tj-go-spin
Binary: golang-github-tj-go-spin-dev
Architecture: source
Version: 1.1.0-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 cb40d07ca4f5eb0cc7b0f6874520ff10478c0daa 2212 
golang-github-tj-go-spin_1.1.0-4.dsc
 a983d35e96472b8a5443d826ba113f2ce85fc392 2056 
golang-github-tj-go-spin_1.1.0-4.debian.tar.xz
 4c620dfff886e6104737fd892384658745707f22 5540 
golang-github-tj-go-spin_1.1.0-4_source.buildinfo
Checksums-Sha256:
 22cbf5b8befb2e77368fca7c361abdca7c1eb25deb94eacb0657c1007f3ce5b5 2212 
golang-github-tj-go-spin_1.1.0-4.dsc
 c0b3ff93abdf4b2f690937b101adbf80d41497d9572835cd9d13f67bb7a2da74 2056 
golang-github-tj-go-spin_1.1.0-4.debian.tar.xz
 533e7bfcc829be46077910affc637c7cb88d373913c512366d0493b083a94a0c 5540 
golang-github-tj-go-spin_1.1.0-4_source.buildinfo
Files:
 f73356aa758cfc6f4f23cfbe6e9e2776 2212 devel optional 
golang-github-tj-go-spin_1.1.0-4.dsc
 8bb0626fd67b4f93137d1469d0909892 2056 devel optional 
golang-github-tj-go-spin_1.1.0-4.debian.tar.xz
 f574ab649110071489f82f9ea45b17f3 5540 devel optional 
golang-github-tj-go-spin_1.1.0-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5K+gRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xadQxA/+NdQOZPEreSoyuM/Mofe0UeletAyo+6Ra
CrgMwV0jB4t5Lp9Zp3OsUkyGiXKYvXn/QDG8VIQyWiurP1r4Xlyp1MknJSJsZKtO
s+oYm9v/q4zRPl/HAGF6SSMUMEliJP8x7u+fXqCqUJ9Xdbchj2KkCkN/er6jvqun
w8r5Jt0ZXAYJ/mYFIW1FfwzEqpQXyWihvso1tl+bioQUxHnGtXkOwhmfkE/CrTXn
0KpI/gnKfbP3HLZ0YOEoYHYfYnHqQjhD34jxtExnsc3EFlSznCUHIkTLvXYlGYWO
CgmQZW6qqQAjOVztgzQ1o3uwN6glUNk9EdBZnElyPeaUbXroOTqW1XgUJm8bDfAE
2FbrTSzOMbgDbI6PTGEy5Vy0pZYGVQbXixHGg5zbptMPXoR8QMzuno3UJXZUb0kc
UevnWj0+kjE0ZQVhRQLItQWynyJwQFHqPFjGq+rJCs4nqUH0qZvrw8VJHs18X5Vs
YwPIrT4Bq5dOgBGc3jpO/C3vPqeIf/+dtsaY+DavjxVgtHjJNNRRNVbwTrK1mhT3
W6/ZJI1bc2wwlwbcZ6WG8ZFTKSnKm3K2FEreXqH+CdWxLiLEXUicO8+6Zhylb8yo
FNagTPUm5Weo/ysBjtoqvAxT8VQy3t1tKF+PftaqTDSTXWFT3FJlcRB7X+6u6+rK
0RTj2lOJmZM=
=rmGn
-END PGP 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] Accepted golang-github-gobwas-glob 0.2.2-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:51:28 -0500
Source: golang-github-gobwas-glob
Binary: golang-github-gobwas-glob-dev
Architecture: source
Version: 0.2.2-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Alexandre Viau 
Description:
 golang-github-gobwas-glob-dev - Go glob pattern library
Changes:
 golang-github-gobwas-glob (0.2.2-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 a3bc44fee3432deb87ae590560659740bfe7aa42 2220 
golang-github-gobwas-glob_0.2.2-4.dsc
 33918ce1763a596b95cab9eb8c18cbb230a9f94a 2068 
golang-github-gobwas-glob_0.2.2-4.debian.tar.xz
 203fe49decf6a2a56008773bd57510f988cd016c 5513 
golang-github-gobwas-glob_0.2.2-4_source.buildinfo
Checksums-Sha256:
 9ca6d56805d6a33836fed58f9d77324efd03edb4e7c5f4efec259d840851070f 2220 
golang-github-gobwas-glob_0.2.2-4.dsc
 475f6dae6e23fbeab7f2e2c0f4a386bf982a4756cb8b831caff7b84871baf1e3 2068 
golang-github-gobwas-glob_0.2.2-4.debian.tar.xz
 c29d1c97331b9ca03742471eb716d7522569171d7ca5e41db378d0124e04bdaa 5513 
golang-github-gobwas-glob_0.2.2-4_source.buildinfo
Files:
 c569f174f61d34df9c19cc3448361c71 2220 devel optional 
golang-github-gobwas-glob_0.2.2-4.dsc
 514e1665ea883644128f5d0928599a8b 2068 devel optional 
golang-github-gobwas-glob_0.2.2-4.debian.tar.xz
 55d16ee1b5497571f24fd777b54912d8 5513 devel optional 
golang-github-gobwas-glob_0.2.2-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5NFcRHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xaesZg/+N27Lqzksf+LZX8TmjUSxzjJr9ZuN8y4L
WwAAG00VyEPaIzOASxTBoHeTC4ii7jZpUhlQ+JjFqKX7YC8UrYnapSd4fuI+L3hy
gJEVlOMgzMa2li3r2cM8hoF3iKULKQytME8EPReS31XB+FrWnaXkARSRW9YO71hx
7kDUCsa9BwR8wpcL8sOX+akd32W+r8/Ps60BH7vEnvjISkETcYem0UADfB9z1rpq
gPLJFLVEMZBgbYLKAwGbN8ru60ksgrpAWLYoj1GQ1DNmUnOGuhM0Kq93oZlhv2vV
/36x4A1VeB8HeHZnab6Ih3Lc/W3K2fDfla3zdNzGiomg75UOZNHPdqdJv8jkcul6
BeqRJbHGYIrg6AjLL8zQvvJKu9vKIHugtNAZFok+lvvQn33nX++j2XH+5TDYIxZj
CWgJ5XDQ7RZ9k/mucw7YiD/eEzcX7jNVT9sM27eXzGNMTcK4S1VE2dyI1yNdLYkM
Ti0rkDOHBh5/fYChaCZ3UxzcC6YOz5tfItSmxsppJ9kSTWe28SLJE1oJR4EwZGlw
HHw9DPjYpaR6KtXepjMmaGS1F/yEGeg+Z4Iij+7kvXr+5cQtAJUTimHVFyTwiJun
Pz/el4vl7gdc3TfpgpcT+9A/Vm2isodasmTqjWlpoeq3EMkAne5lNrD5dtkDjNKu
hPSECh2CSt4=
=Kve1
-END PGP 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] Accepted golang-github-templexxx-xor 0.1.2-4 (source) into unstable

2018-02-05 Thread Alexandre Viau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Feb 2018 23:16:27 -0500
Source: golang-github-templexxx-xor
Binary: golang-github-templexxx-xor-dev
Architecture: source
Version: 0.1.2-4
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-4) unstable; urgency=medium
 .
   * Team upload.
   * Vcs-* urls: pkg-go-team -> go-team.
Checksums-Sha1:
 38f07e24bfa24e9ef55ca76541c0f42a29bc469f 2282 
golang-github-templexxx-xor_0.1.2-4.dsc
 95703421d9fe956dc51e59e6a837977fa462fa75 2020 
golang-github-templexxx-xor_0.1.2-4.debian.tar.xz
 3eb867a1899118c95d35956ea688bf59ed269722 5632 
golang-github-templexxx-xor_0.1.2-4_source.buildinfo
Checksums-Sha256:
 bc2e65382051211d1cbc24a596f55d63d42e097139a5a6f1e71bfb5847c083c0 2282 
golang-github-templexxx-xor_0.1.2-4.dsc
 cb0f9367182e5d8b749f6516f86faba756b59360ff9a6f94e771dbc354e1c2ca 2020 
golang-github-templexxx-xor_0.1.2-4.debian.tar.xz
 455a04caeb1fbed3ee2f5ff8d9672970e233804e6f4ddaad39ce2c119fec423a 5632 
golang-github-templexxx-xor_0.1.2-4_source.buildinfo
Files:
 7ff46e810918bdfd66e5b3cc1564a22e 2282 devel optional 
golang-github-templexxx-xor_0.1.2-4.dsc
 d8de315f30f08f4b7685a4a30e1a7770 2020 devel optional 
golang-github-templexxx-xor_0.1.2-4.debian.tar.xz
 3f0d4d80d58ac4492b5cb8141c04705d 5632 devel optional 
golang-github-templexxx-xor_0.1.2-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEB0B3ii38SjnAyLyMjysRPGU1xacFAlp5LCERHGF2aWF1QGRl
Ymlhbi5vcmcACgkQjysRPGU1xae83g/+OsrMzmIJ6btc23UbtkqUYKKnCNlbSZAH
cxhIuwl6w7S4AdBPuZkHVzDWv+FXqwJL3yy0Bisbdxl36y/TFjiqngkhscwdoQNK
1nFJrBUey+30espQsES0o3yMDw+joCxy8633zdC4ATGRGNMjzG9Phz9DY6HB+dyM
VYRXM1EAdLVuNzg9l2EL+IMnkCoK/S8dzxWV31QoY1vc6TdrxjNTmvjnDCbG9CWE
N67ezczEjVfs1z4kMp0pk6WrJRdY60/w5ctPi03qT+iRqrmbJNE47KatA+oHTrjO
6irjxSecf0MZUYxH7iFXGiXcQgXjn0cy9H/drO1zn4iSXzSDF2rEWtQ0KB06gCpm
FSGKGlX0DNdG+FTeK4jU9amWHyPfwXMsEACNn86QvErx44ERyIkuH5MBmf8nSDk3
aLFujQI0XP/mwQGxs/W19nInpwVNHgn4vOqLYA5npuDobbljvdy5F7WhmqFTMemY
8VhTgjOOsppKJQIp4lD8a/wTUaIMNXTlvISqEfpULmzfvd7aDYwduRKSbMquTTCm
NsmUq3eeBQ9Hvyo40wMKr62G6DEBAyM1U0IqGypUnw4fwSq9MkGKHj/ZqI/A+ewZ
7tLlAAyXygyh0yk/VyeMl2ikd13ddO4zzq/i/xgeokCudkB7IHhr+PlSJsi7HYl3
+uIQf6GY0kQ=
=iAZs
-END PGP 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


  1   2   3   >