[pkg-go] Processing of gobgp_1.10-1_amd64.changes

2016-09-02 Thread Debian FTP Masters
gobgp_1.10-1_amd64.changes uploaded successfully to localhost
along with the files:
  gobgp_1.10-1.dsc
  gobgp_1.10.orig.tar.gz
  gobgp_1.10-1.debian.tar.xz
  gobgpd-dbgsym_1.10-1_amd64.deb
  gobgpd_1.10-1_amd64.deb
  golang-github-osrg-gobgp-dev_1.10-1_all.deb

Greetings,

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

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


[pkg-go] gobgp_1.10-1_amd64.changes is NEW

2016-09-02 Thread Debian FTP Masters
binary:gobgpd is NEW.
binary:golang-github-osrg-gobgp-dev is NEW.
source:gobgp is NEW.

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

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

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

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

[1]: https://ftp-master.debian.org/new.html

___
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#836388: When cache is present, job run from incorrect working directory

2016-09-02 Thread Sam Hartman
package: gitlab-ci-multi-runner
version: 1.4.2+dfsg-1
severity: important

Hi.
If a job includes a cache, then it appears that the initial working
directory is  some directory inside the cache, *not* the top of the
project directory.

In trying to diagnose build failures I produced the following job:

install_test:
  dependencies:
- snapshot_package
  stage: test
  variables:
DEBIAN_FRONTEND: noninteractive
  cache:
key: "$CI_BUILD_NAME"
paths:
  - apt_cache
  script:
- ' if [ -d apt_cache/cache ]; then cd apt_cache/cache&&tar cf - . | (cd 
/build/unstable/var/cache/apt&& tar xpf - ); fi'
- 'if [ -d apt_cache/lists ]; then cd apt_cache/lists&&tar cf - . |( cd 
/build/unstable/var/lib/apt/lists && tar xpf - ) ; fi'
- mkdir /build/unstable/sbuild_out
- git status
- pwd
- env
- ls apt_cache
- cp sbuild_out/*.deb /build/unstable/sbuild_out
- schroot --directory / -c unstable apt-get update
- schroot --directory / -c unstable -- apt-get -y --allow-downgrades -o 
DPkg::Options::="--force-confold" install ./sbuild_out/*.deb
- mkdir -p apt_cache
- cp -a /build/unstable/var/cache/apt/. apt_cache/cache
- cp -a /build/unstable/var/lib/apt/lists/. apt_cache/lists
  tags:
- debian


And I get the following output:
[0KRunning with gitlab-ci-multi-runner dev (1.4.2)[0;m
[0;m[0KUsing Docker executor with image runner:latest ...
[0;m[0KPulling docker image runner:latest ...
[0;m[0;33mWARNING: Cannot pull the latest version of image runner:latest : 
Error: image library/runner not found
[0;m[0;33mWARNING: Locally found image will be used instead.
[0;mRunning on runner-99528d3b-project-1-concurrent-0 via gitlab-runner...
[32;1mFetching changes...[0;m
Removing sbuild_out/
HEAD is now at 84b1436 We're getting closer
[32;1mChecking out 84b14360 as master...[0;m
[32;1mChecking cache for install_test...[0;m
[32;1mDownloading artifacts for snapshot_package (150)...[0;m
Downloading artifacts from coordinator... ok  [0;m  id[0;m=150 
responseStatus[0;m=200 OK token[0;m=
[32;1m$ if [ -d apt_cache/cache ]; then cd apt_cache/cache&&tar cf - . | (cd 
/build/unstable/var/cache/apt&& tar xpf - ); fi[0;m
[32;1m$ if [ -d apt_cache/lists ]; then cd apt_cache/lists&&tar cf - . |( cd 
/build/unstable/var/lib/apt/lists && tar xpf - ) ; fi[0;m
[32;1m$ mkdir /build/unstable/sbuild_out[0;m
[32;1m$ git status[0;m
HEAD detached at 84b1436
Untracked files:
  (use "git add ..." to include in what will be committed)

../
../../sbuild_out/

nothing added to commit but untracked files present (use "git add" to track)
[32;1m$ pwd[0;m
/builds/hadron/hadron-operations/apt_cache/cache
[32;1m$ env[0;m
CI_PROJECT_NAME=hadron-operations
CI_BUILD_TOKEN=
HOSTNAME=runner-99528d3b-project-1-concurrent-0
CI_PROJECT_URL=https://gitlab.hadronindustries.com/hadron/hadron-operations
CI_BUILD_BEFORE_SHA=84b143607c165d0dd2e9382d16b20764bc0402e6
CI_SERVER_VERSION=8.11.0
CI_BUILD_ID=151
OLDPWD=/builds/hadron/hadron-operations
CI_PROJECT_ID=1
CI_RUNNER_ID=2
CI_PIPELINE_ID=576
CI_BUILD_REF_NAME=master
CI_BUILD_REF=84b143607c165d0dd2e9382d16b20764bc0402e6
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
CI_BUILD_STAGE=test
CI_PROJECT_DIR=/builds/hadron/hadron-operations
CI_RUNNER_TAGS=debian
PWD=/builds/hadron/hadron-operations/apt_cache/cache
CI_SERVER_NAME=GitLab
CI_PROJECT_PATH=hadron/hadron-operations
GITLAB_CI=true
CI_SERVER_REVISION=346e677
SHLVL=1
CI_BUILD_NAME=install_test
HOME=/root
CI_SERVER=yes
CI=true
CI_PROJECT_NAMESPACE=hadron
DEBIAN_FRONTEND=noninteractive
CI_BUILD_REPO=https://gitlab-ci-token:@gitlab.hadronindustries.com/hadron/hadron-operations.git
CI_RUNNER_DESCRIPTION=Debian Packaging Runner
_=/usr/bin/env
[32;1m$ ls apt_cache[0;m
ls: cannot access 'apt_cache': No such file or directory
[31;1mERROR: Build failed: exit code 1
[0;m

I can wor around this by changing to CI_PROJECT_DIR, but it seems fairly
clear that I'm starting in the wrong place.

___
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] cadvisor REMOVED from testing

2016-09-02 Thread Debian testing watch
FYI: The status of the cadvisor source package
in Debian's testing distribution has changed.

  Previous version: 0.23.0+dfsg-2
  Current version:  (not in testing)
  Hint: 
# 828162,834741,835336,835398 in 
golang-codegangsta-cli,golang-github-hashicorp-go-reap,influxdb,rkt

The script that generates this mail tries to extract removal
reasons from comments in the britney hint files. Those comments
were not originally meant to be machine readable, so if the
reason for removing your package seems to be nonsense, it is
probably the reporting script that got confused. Please check the
actual hints file before you complain about meaningless removals.

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

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


[pkg-go] golang-github-spf13-afero 0.0~git20160821.0.20500e2-1 MIGRATED to testing

2016-09-02 Thread Debian testing watch
FYI: The status of the golang-github-spf13-afero source package
in Debian's testing distribution has changed.

  Previous version: 0.0~git20160605.0.1a8ecf8-1
  Current version:  0.0~git20160821.0.20500e2-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

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


[pkg-go] golang-codegangsta-cli 1.18.0-1 MIGRATED to testing

2016-09-02 Thread Debian testing watch
FYI: The status of the golang-codegangsta-cli source package
in Debian's testing distribution has changed.

  Previous version: 0.0~git20151221-1
  Current version:  1.18.0-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

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


[pkg-go] golang-github-klauspost-cpuid_1.0-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports, jessie-backports

2016-09-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 18 Aug 2016 10:44:44 +1000
Source: golang-github-klauspost-cpuid
Binary: golang-github-klauspost-cpuid-dev
Architecture: source all
Version: 1.0-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Tim Potter 
Description:
 golang-github-klauspost-cpuid-dev - CPU feature identification for Go
Changes:
 golang-github-klauspost-cpuid (1.0-1~bpo8+1) jessie-backports; urgency=medium
 .
   [ Team upload ]
   * Rebuild for jessie-backports.
Checksums-Sha1:
 0f8fdff02fc832c3291ed9fce8c53687bf63e8c4 2241 
golang-github-klauspost-cpuid_1.0-1~bpo8+1.dsc
 239fad1ca386c4735d0272e380940c8f20526bf3 205089 
golang-github-klauspost-cpuid_1.0.orig.tar.gz
 7592999142f6b26d31ddb4361ae9b826bf714162 1960 
golang-github-klauspost-cpuid_1.0-1~bpo8+1.debian.tar.xz
 72bfd0c477e0ebc1f2009b9ba18fe996ac90efbe 21038 
golang-github-klauspost-cpuid-dev_1.0-1~bpo8+1_all.deb
Checksums-Sha256:
 b075b7c013dba11faeb3c76ef5ab149d9d59e05849891086960243bfdebd738b 2241 
golang-github-klauspost-cpuid_1.0-1~bpo8+1.dsc
 9739cdbf54eb6c26752c37ae567f59d52ceb879bba7b925b161caf920155d43d 205089 
golang-github-klauspost-cpuid_1.0.orig.tar.gz
 f730e87a8fb68816fecae7b1451cfdc98ef14dd5bad1bbff5dff2ea5795208bf 1960 
golang-github-klauspost-cpuid_1.0-1~bpo8+1.debian.tar.xz
 f18707dc0189509348926a8638988f07b8194cc2ab8dfc5274f94d57272f79f8 21038 
golang-github-klauspost-cpuid-dev_1.0-1~bpo8+1_all.deb
Files:
 03a0ae8226a78d7938ddc5c1888e8fcd 2241 devel extra 
golang-github-klauspost-cpuid_1.0-1~bpo8+1.dsc
 01c21cca62be0213475e33fd95170734 205089 devel extra 
golang-github-klauspost-cpuid_1.0.orig.tar.gz
 19c303b5b6889f082437ac252023e86e 1960 devel extra 
golang-github-klauspost-cpuid_1.0-1~bpo8+1.debian.tar.xz
 760d939de1041c91cc453351b5409835 21038 devel extra 
golang-github-klauspost-cpuid-dev_1.0-1~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJXxLOWAAoJELJMpj9uu+hNMLEQALVRTDU1lcFtFCZSlvbVRERQ
8zYjch9Xj7zsUrHRcIvmiLFx1FyggQ3og+NlYF+a8lJ6iSu+lNHHKV9SvbjWDyzL
QNfuKtJ3VE6dd2/OyOrrxIUUCRpubFIkIOMAxqXmEeVzDlkzLxLqgqyFBgjDQ/CE
MOjRIhakj4L0Gb9XV6tpt3cIZiV0nA16JdbuU9Q4/eJD09yHIgAIzZDffqR/hcvL
KGbPAwl4RcmyzvhfHPuha72CQUa1ubQaPIF8YPbi6NSDb084915QhBCFil9toSlr
WjVliX1nM4KVWdQkKw73JTZIksytBTlBpsakn+vlljDxkhgExILurxh2GWT2QINV
PQjp512KC5h7BVB/Ia0hbauAsJmMrWi8xYjgH5XiMH5aCGFnhmi4A3FFSu3SgxfV
MtOcFk8e9Ndcxsl5wPbtOVqW7qel6lp4Od4+vTxM/ejr8VPh0T1MMNdFjVEo+Ap9
gPN2ijwz7z1c21cjIHixiWF8SvRLRgYgJ2t13CbAjlPXGTOhPh95MNcszOZe05Sb
L8xV0cA/vTLIOSNddkJoVmyzOs2Ctg6LLySBXvmFXFkL0GDyzfiWUMGP6kLzIMkv
b85CgxjEIkbEEUtpkLgpxyRXSYwiZT6LLutZ4SkYrmtx9AL3T3hL5GuorErugGgc
BDSLhQzWr7q+oieZvoP+
=b/rl
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


[pkg-go] golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports, jessie-backports

2016-09-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 18 Aug 2016 15:08:14 +1000
Source: golang-github-cznic-zappy
Binary: golang-github-cznic-zappy-dev
Architecture: source all
Version: 0.0~git20160305.0.4f5e6ef-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Tim Potter 
Description:
 golang-github-cznic-zappy-dev - zappy block-based compression format
Changes:
 golang-github-cznic-zappy (0.0~git20160305.0.4f5e6ef-1~bpo8+1) 
jessie-backports; urgency=medium
 .
   [ Team upload ]
   * Rebuild for jessie-backports.
Checksums-Sha1:
 a9913a7f7df848f66e5c2b736b8f68abfda88813 2366 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef-1~bpo8+1.dsc
 86f1f38f5341c2de0178fa80f460d93a8fc14ce8 9980 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef.orig.tar.xz
 45f55ce9a3d0a4a386a1b9c9c81f60155d8c49c7 2492 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef-1~bpo8+1.debian.tar.xz
 1b28d6441d0085faa03966966a904ae2f4c650a7 10956 
golang-github-cznic-zappy-dev_0.0~git20160305.0.4f5e6ef-1~bpo8+1_all.deb
Checksums-Sha256:
 54f7d72c25b0de0af691ea383224e37311970c6c08d98afc1d9e27b0dd4f28af 2366 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef-1~bpo8+1.dsc
 1758bd47ec004d9594875e4c3edceffc74fd2f89460de4fb6b98056539135a5d 9980 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef.orig.tar.xz
 51296d1e721e503fd483f8262a89f01033cdb5904922a27b2578a72acb3d59c6 2492 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef-1~bpo8+1.debian.tar.xz
 eccb31eadd59e313025625618ea02ade6b863afd9d5e8317c762064a4fbba7ad 10956 
golang-github-cznic-zappy-dev_0.0~git20160305.0.4f5e6ef-1~bpo8+1_all.deb
Files:
 38d4d3cd0771cfec68be714ff6bccb4d 2366 devel extra 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef-1~bpo8+1.dsc
 06843c948b9902c617ac6a2f5d70362a 9980 devel extra 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef.orig.tar.xz
 0182dd676d4f57f56d39180b4a6788e4 2492 devel extra 
golang-github-cznic-zappy_0.0~git20160305.0.4f5e6ef-1~bpo8+1.debian.tar.xz
 5fb67d42828c9fc482347c861740b888 10956 devel extra 
golang-github-cznic-zappy-dev_0.0~git20160305.0.4f5e6ef-1~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJXxLUDAAoJELJMpj9uu+hNhWQP/Aot1FO2lDBMl+VPLkRaErGp
uO40pJNBC+GW/gB0hjsyy0nkCc7h4XzXUW/h4tgO6LfPIfXEyJBXrbdTHvLjIJvW
iFDthyUE10auJNyFc7obK40bUj3xyzBtCaPE/4P+PbGdYWuCMvJFPdydh8QfUMl7
hWfiZf92m/ks7ddr2uhVI2oUclUOO6NWbmH89VoYXzIQFMJZHDyLW252WnEPHwSB
VVP7jfo684+MtA8iE6r8t1T2eUr81Mp1WOOD54rrNHo63FExG+C0du91trAqkf9s
iPOS/v4YO8M1fR0QWHQaVDO8AgmuDKAbifJtISAYQfUWJlV5deVP9W1Pk4BPi8i7
jZR4ZQ3cmmjrePkuBoMOhykXvKSjadMbWJJMJf8L7OqfFeii18fXPoe3n2K/xieI
Es6XrdHMiW8F2qnLPTKmzOW+odVbI6MWnDa/ZwBphjCXLNZb01ZLgifk+VINEvWf
+eYaNpoF1gu/HYw4RllF6xzhHbww6hDjGUgk3JMVw1wEd8c4cHyyw8nawrJRKmPw
HWIVUTZFu/v2LKbgJcwesMotqLFCvCz5uIz6gdRhSbQPYnlaCcJaazP8gnG2p2gw
1DTn0bpbFsd1PAuPpxXFBBL8NZhhHC8rMkyH/p3zCYJ2KYr6fYgxWeXuqKicFBan
6sXP/77baMcYUQsuUNOX
=ggNz
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


[pkg-go] golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports, jessie-backports

2016-09-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 17 Aug 2016 14:16:02 +1000
Source: golang-github-hashicorp-go-multierror
Binary: golang-github-hashicorp-go-multierror-dev
Architecture: source all
Version: 0.0~git20150916.0.d30f099-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Tim Potter 
Description:
 golang-github-hashicorp-go-multierror-dev - Go package for representing a list 
of errors as a single error
Changes:
 golang-github-hashicorp-go-multierror (0.0~git20150916.0.d30f099-1~bpo8+1) 
jessie-backports; urgency=medium
 .
   * Rebuild for jessie-backports.
Checksums-Sha1:
 d71370b6d6e60d0b938c7b17d9b16438e085d8e3 2523 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099-1~bpo8+1.dsc
 6eaf33d9d15df815166aaadca82a0934f13964d6 8324 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099.orig.tar.xz
 d1b66d1cd29593231ba9f0b646ac1b80f308e44e 6440 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099-1~bpo8+1.debian.tar.xz
 010ef068b3b9288eec35d282e17067a911695651 9422 
golang-github-hashicorp-go-multierror-dev_0.0~git20150916.0.d30f099-1~bpo8+1_all.deb
Checksums-Sha256:
 6f593bd3d812d605829676629d1a0768e9e15502b7748ed74e60399ddcd5 2523 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099-1~bpo8+1.dsc
 05f0b54623b3c69ea4b7f376488bbc0e5227c50cd124c46ff2ae24d62982 8324 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099.orig.tar.xz
 3858a7418971b256ce2be1794e105b75ab958c0d259d8c076c3c7a3c00798919 6440 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099-1~bpo8+1.debian.tar.xz
 1dc3b59ae0acc9799dfdfd228ec6233df8d98407b72827901b6a3c97905f 9422 
golang-github-hashicorp-go-multierror-dev_0.0~git20150916.0.d30f099-1~bpo8+1_all.deb
Files:
 648f414c151222bf1356e79091b91ea0 2523 devel extra 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099-1~bpo8+1.dsc
 b8b25de1649019f92a1a35de2811f57a 8324 devel extra 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099.orig.tar.xz
 4ca65f7123bb38efdced1c600d2b3dd3 6440 devel extra 
golang-github-hashicorp-go-multierror_0.0~git20150916.0.d30f099-1~bpo8+1.debian.tar.xz
 7ad4f99162da38b0318e50e7479ffc7a 9422 devel extra 
golang-github-hashicorp-go-multierror-dev_0.0~git20150916.0.d30f099-1~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJXxKaGAAoJELJMpj9uu+hNF7IQAJL7hJCMsqb4hXy8uV7U95w7
1feRooyjfkeMDlFPnNp/m4WrsoqTcGoE1uP5zewZgR7Acl4QPjhmglXxOjj2lkEF
eugXZun7NR9aJszoxFOijdwWdpsn2jvzmsNedfYWCI0tA7DgSTWFSjwbcMsp5BV3
VkQ6ETvwXOQTUX8K6WNc/NSDkNO2GabbvoFs5LJetoRAq/flm4DbrPwQSFaxVHYi
KmTHlNr28XUSZSvrfV+LbItPkc1xu7iQIqa0zbhkspuMYSQ/oky2wrgFutxIbRgH
RHicdFcwCS39+gRPdMPiU35gsqoH0bgBmqW6BrOwpWIqlhA8sRP1eKe/u1QpJ1/r
kdVHtgBN2RLjbdXpnVt0Ioc3fm/r7cwTHblihXPLdaOMTwu4TrT+fT8J0iKqEsZ5
QKn8QLOJZmnluqFzgZmKDFxquU0tCHpto3N216bWb/LWQ40lVAboFGFb31c05Lwl
bzEIC5wrDY3fKIr/YpAxPCrvtCbg28Y/Uckzl/XjFjbZfwZWYLqDXMF1BP3Gdcfn
GpQrUnAlplFHrT7ruAhg1GOfSQumIxPQL2j7vHC3mgzAYXF8+nFwDPoAleYlT1SW
L3+eEN6ApcEEV4PTdGITeuudgYbdfWYLOXOhHS9t/+95JkJpcQHY/lC2pKXW/7t6
QLZ5bmXYxQ6HrRMD8SjE
=Mruw
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


[pkg-go] golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports, jessie-backports

2016-09-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 18 Aug 2016 14:44:13 +1000
Source: golang-github-remyoudompheng-bigfft
Binary: golang-github-remyoudompheng-bigfft-dev
Architecture: source all
Version: 0.0~git20130913.0.a8e77dd-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Tim Potter 
Description:
 golang-github-remyoudompheng-bigfft-dev - Golang big integer multiplication 
library
Changes:
 golang-github-remyoudompheng-bigfft (0.0~git20130913.0.a8e77dd-1~bpo8+1) 
jessie-backports; urgency=medium
 .
   [ Team upload ]
   * Rebuild for jessie-backports.
Checksums-Sha1:
 8440bbcca217eec7288d32490f8993ace64eadc1 2466 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd-1~bpo8+1.dsc
 be55e9cc97b716fad8e6b8bb78abe44edfaf59db 12936 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd.orig.tar.xz
 365913c7f49e9a4080c19edfed40445abe239338 1928 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd-1~bpo8+1.debian.tar.xz
 d335049927074e6727bcafbdef989029d257363a 13320 
golang-github-remyoudompheng-bigfft-dev_0.0~git20130913.0.a8e77dd-1~bpo8+1_all.deb
Checksums-Sha256:
 e1350a08d1c89bbf18d9d2671304270825ab10aa761c56ae3f691e93c6d2ea42 2466 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd-1~bpo8+1.dsc
 0df32186b8e449fc03ed9f7a9ebc1ace90fed2b1ab67eca9144f892fc2931774 12936 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd.orig.tar.xz
 aadb1529f35f71d2c18571ab2d8b264a75d219a11411e158fe2ca84386e5cedb 1928 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd-1~bpo8+1.debian.tar.xz
 608e279a4829fc54d7658c2dd0f640d67e76756dc6f886a3e24902f98e7eeccb 13320 
golang-github-remyoudompheng-bigfft-dev_0.0~git20130913.0.a8e77dd-1~bpo8+1_all.deb
Files:
 7f9d89925850bd9c091cb29a6557797d 2466 devel extra 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd-1~bpo8+1.dsc
 cb9e4683bb1f63527623b7c146a9aaee 12936 devel extra 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd.orig.tar.xz
 e1fe3d39d6157514e4ee41f34878c1d7 1928 devel extra 
golang-github-remyoudompheng-bigfft_0.0~git20130913.0.a8e77dd-1~bpo8+1.debian.tar.xz
 683f241b278804dad2d43f8abf15dbcd 13320 devel extra 
golang-github-remyoudompheng-bigfft-dev_0.0~git20130913.0.a8e77dd-1~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJXxLMNAAoJELJMpj9uu+hNDxwQALvfXvskP6l52ke8AqpLyC1M
YkCd8SD5lJbj/ol63R+aARLRDemBnwWlNN8RSr68suneOOKTP9ozCP0BDMVlMoZZ
qp8yRlKdkOMPSJzX8BjJTI/IQK0i8zdN2IHVkdLwyyQEtFifDqR/+Ja3VYhtcr8Z
9wp8wtR1FFRfVPyEUQ7bhDs82VnztJwwKeFLBQ607EkX99Xqag7dmVSpmrMIXz3S
3JQfCv3Ibmwqfaq07fcw6VVtlwDT0xpLq9jZJoXgllyTpvs3/3Z+uk98HHK/Q8xK
CtueDqxEHfshW29fMi6k0TmyLH5guDDX/CYQEdgk9CdWgOOP5uZm8Tj/3PjWXCIl
v10NiCXpK1rjWzJ7ya5eFR3Wqwp4laVL0dpjggkteB32yawzKBI4tSbQe7GouhjR
tBQwFefBPPq3uJfLBrJ0a8587ao3y9gFtdNtxYeaAAEo6HAi8Uw523jVf3DFPQXw
2OWIGYRaQNJCk2VTx2NDDXU3MoNneRjMPiLEOm4kUPQEjM3bBNNFwsBXTvhC/W5/
GjW8VZr0INgpvL6NvuDj/Sq9j2tbnjdcm/O9osejMV9wfZ/pbp8s6IbOiJdnA9aB
v8QbQabl4dpkwwP7x1w0aurZRTRn8ILJbpgivv7y3JIeqvQ5CeSJxvmz5OESQX42
DbHrxFXapUbTBfLZ0FJR
=xDR7
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


[pkg-go] golang-github-hashicorp-yamux_0.0~git20151129.0.df94978-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports, jessie-backports

2016-09-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 17 Aug 2016 14:36:22 +1000
Source: golang-github-hashicorp-yamux
Binary: golang-github-hashicorp-yamux-dev
Architecture: source all
Version: 0.0~git20151129.0.df94978-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Tim Potter 
Description:
 golang-github-hashicorp-yamux-dev - Golang connection multiplexing library
Changes:
 golang-github-hashicorp-yamux (0.0~git20151129.0.df94978-1~bpo8+1) 
jessie-backports; urgency=medium
 .
   * Rebuild for jessie-backports.
Checksums-Sha1:
 018c277c443cc7a65a41d46ac683316c6f599628 2385 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978-1~bpo8+1.dsc
 76039b613ea3e0810ec78076828564181bf3f34c 19544 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978.orig.tar.xz
 cbdf371f4f2dd9f7a91b1796a6a18bf79e9fce51 6664 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978-1~bpo8+1.debian.tar.xz
 0152b9b735e3cadec5adcd39ab86dc96deabb334 20182 
golang-github-hashicorp-yamux-dev_0.0~git20151129.0.df94978-1~bpo8+1_all.deb
Checksums-Sha256:
 de1185f0d71f7db8cda9b00df245301426e1938a0a6e5d5588b01be21fb84618 2385 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978-1~bpo8+1.dsc
 0bb11eaca34b471cb06683a1aa9754ce595d4e53254261ca0d6ffa725863bf40 19544 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978.orig.tar.xz
 e0771c04866cf271d9640af479129339a2dda339c139a0ce337555af37c7fdb6 6664 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978-1~bpo8+1.debian.tar.xz
 35df85d757c792ae01b06980e571e8e010c09cabfee01839215f2096977b8633 20182 
golang-github-hashicorp-yamux-dev_0.0~git20151129.0.df94978-1~bpo8+1_all.deb
Files:
 3bb574b32e437146b75368392cd24039 2385 devel extra 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978-1~bpo8+1.dsc
 f6d690db0a1f810ef21a638967fd3965 19544 devel extra 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978.orig.tar.xz
 cff4f23d6d780527e3a1fafa6f4c3042 6664 devel extra 
golang-github-hashicorp-yamux_0.0~git20151129.0.df94978-1~bpo8+1.debian.tar.xz
 bbcd511f87b6a2db30bfd92a0b428d8f 20182 devel extra 
golang-github-hashicorp-yamux-dev_0.0~git20151129.0.df94978-1~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJXxLIMAAoJELJMpj9uu+hNDYAQAK7cq7xhlGDsJAS1LVuVwy9w
fZ1aqHDA3sVBaR00BCeU5lQr7nsoWTQxgdobn5S/eA0hVySeyqmRkHaB97AZhoUx
YNKAIXb8XkPMldgOKk7sNzfGJgEYLRHhP1eujeTOyhdU3Ub1aGA/4CGXpZ7v1tpx
TDYT/9fDTANDnePfwHcGNQkzNBgNceyRCBwbVRL89Cb8btuYyPw37UQclAOScByj
jO95YIEkLPqEoYnEowlZNGkomZ8ye6oVXkazcJ9HtycUy1XX8+oDcuU9h8XR3k1w
r3YREhkm+/O1lKV99Rdwkjo/BJTayEdCofeUoIHkLQpKTHuQwisLdqMOW4JhuoIu
n4WzbC0/cejzEH4LSUPfC7Qj6pMb8CcMJ+1BbA7B7pGmUzgeym/Z87rTGF/E+uhO
syNIS7j41RH3r/MWaM860VYjP3nVYHT1NfwiWfpInK8tGBbueLCB7AzfVa1RDs5k
qXC7s+uwk4qFapg1UFQbBBwaTf3EBW/nGxNdH0JYuefgKxOZvQRyyOdWQV+AFHfI
H48j0hg8XW0GZYD/aJHmDmlSkhnd1HJrUAG0UDiIgOZLa/LOeiSMJQZl+V2ySOgF
lSq5i4Eg9Xgc7YwAB7qRktSU6UMSNELNS3ZQktaC+ijMwWh9jehmClvRcy5SQXGz
Ci8GM/G4R1TPwtrQMHY1
=G7/I
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


[pkg-go] golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports, jessie-backports

2016-09-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 18 Aug 2016 15:05:18 +1000
Source: golang-github-cznic-bufs
Binary: golang-github-cznic-bufs-dev
Architecture: source all
Version: 0.0~git20140818.0.3dcccbd-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Tim Potter 
Description:
 golang-github-cznic-bufs-dev - simple buffer cache
Changes:
 golang-github-cznic-bufs (0.0~git20140818.0.3dcccbd-1~bpo8+1) 
jessie-backports; urgency=medium
 .
   [ Team upload ]
   * Rebuild for jessie-backports.
Checksums-Sha1:
 c530886f4c4c9a42d711ad9f0ea1c56056d48209 2320 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd-1~bpo8+1.dsc
 3648a95818c456f499ef2548013a6090bcedb3ee 6088 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd.orig.tar.xz
 05e9ac13c1415b353ef6821a0d9b07da4e750144 1944 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd-1~bpo8+1.debian.tar.xz
 8a4eb6fbd894e38f756203332d6f2cabf28f2057 6986 
golang-github-cznic-bufs-dev_0.0~git20140818.0.3dcccbd-1~bpo8+1_all.deb
Checksums-Sha256:
 af2e987a4b24f6701051ee07cc06266818fdc2c2f04e022d58b8b5bf6f208682 2320 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd-1~bpo8+1.dsc
 dbeb04db3f5ce96cd6f0e1ed5dd456f412256c9b1aa196c0a42d5fceea759163 6088 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd.orig.tar.xz
 97c7832f8a8bfd71fd2d20ebf6e84aa75e36961be497194ced32a736cdc31ecf 1944 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd-1~bpo8+1.debian.tar.xz
 4ae800b148b93e828f7c1ff77428e9e45fccdd9cc50db7938a5f9edafd60b464 6986 
golang-github-cznic-bufs-dev_0.0~git20140818.0.3dcccbd-1~bpo8+1_all.deb
Files:
 54fd3dacf5ea3d5ea376abc4782e0f8b 2320 devel extra 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd-1~bpo8+1.dsc
 72386623708951817f3c32af0faf329b 6088 devel extra 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd.orig.tar.xz
 3030b4730dd56dd0dfc6119d5d297ce5 1944 devel extra 
golang-github-cznic-bufs_0.0~git20140818.0.3dcccbd-1~bpo8+1.debian.tar.xz
 5510a6f8eea15c0302176aa5ff3ebb02 6986 devel extra 
golang-github-cznic-bufs-dev_0.0~git20140818.0.3dcccbd-1~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJXxLRzAAoJELJMpj9uu+hNSw4QAKBUy/lF1oZbFdQmPOr15BZA
lLVOcKTyn+SMsIGpBgMU/k/DVFxr4wBHO+ye5CDMKRxK8Buf74hYLvfTLAdGRQpG
uSK6wQRZlO+ybEZe2bCHrIUeDe1jbdBADqBoGDNZ20UIM8AlLf8NA4IXNjFgbQd8
OIIf/0QgkVwFqFN7TIKF3Q2xZUDimyzVTqNAmRffkFf7u4aslFLeI6X0bzeZfyFy
5VA9i0GaEN/zpo9b9HXGVyQBBpYPfc6CXpDSrQdSISyBpoybFnf7dL9cvWFIHP3e
Ka6CVuyndCKvH5xyK58oveoY6QGlmoGdXUHzLqxG4bicXOd5rS14ACxqxljn6Iqc
AY819E631R+91lz8r9VgQnEm+C97oL0fXup7l/tXLEIWohev1zRnmdhRecwc+T33
KjSTiCXpytgm6O2gxLXT92Q8N83S8d40msqvl/K8SS4FELo9hD4ulwG0TmKNtCfg
YsjoJy9RnG/1AUaSwkCP2tkW8BNEoQf0eIGYOAiYcIvavCrb1gN0aQIaPf2lSo3C
aWuy7rSoWhBkmHUlj6WFIjVeTTpyTcCDoyUzC8SDakoxbCyPx6dLvOADYS6m8EM1
srJKjrc9fIYUZoL2L4ZjsnOz9tGaJRQXf17X7qkgkP4YRAChFpzVdr9YohjYfPCT
CHYE2XBcRoreO2YrlOrT
=Am1/
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


[pkg-go] Bug#836388: Bug#836388: When cache is present, job run from incorrect working directory

2016-09-02 Thread Dmitry Smirnov
On Friday, 2 September 2016 10:01:14 AM AEST Sam Hartman wrote:
> If a job includes a cache, then it appears that the initial working
> directory is  some directory inside the cache, *not* the top of the
> project directory.

Please discuss upstream. From the description of the problem I'd say it is an 
upstream issue. I don't understand the problem well enough to help. Besides 
it may be worth trying the latest version...

Thanks.

-- 
Regards,
 Dmitry Smirnov.

---

Democracy is a pathetic belief in the collective wisdom of individual
ignorance.
-- H. L. Mencken


signature.asc
Description: This is a digitally signed message part.
___
Pkg-go-maintainers mailing list
Pkg-go-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers