diff -Nru golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/changelog golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/changelog --- golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/changelog 2018-02-23 01:51:29.000000000 +0000 +++ golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/changelog 2018-03-20 10:19:07.000000000 +0000 @@ -1,3 +1,18 @@ +golang-github-containerd-cgroups (0.0~git20180223.d578e4e-2) unstable; urgency=medium + + [ Arnaud Rebillout ] + * Fix mistake in debian copyright + + [ Michael Stapelberg ] + * update debian/gitlab-ci.yml (using salsa.debian.org/go-team/ci/cmd/ci) + * update debian/gitlab-ci.yml (using salsa.debian.org/go-team/ci/cmd/ci) + + [ Arnaud Rebillout ] + * Remove shlibs:Depends from the library package + * Fix copyright + + -- Arnaud Rebillout Tue, 20 Mar 2018 17:19:07 +0700 + golang-github-containerd-cgroups (0.0~git20180223.d578e4e-1) unstable; urgency=medium * New upstream version 0.0~git20180223.d578e4e diff -Nru golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/control golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/control --- golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/control 2018-02-23 01:51:29.000000000 +0000 +++ golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/control 2018-03-20 10:19:07.000000000 +0000 @@ -22,8 +22,7 @@ Package: golang-github-containerd-cgroups-dev Architecture: all -Depends: ${shlibs:Depends}, - ${misc:Depends}, +Depends: ${misc:Depends}, golang-dbus-dev, golang-github-coreos-go-systemd-dev, golang-github-docker-go-units-dev, diff -Nru golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/copyright golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/copyright --- golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/copyright 2018-02-23 01:51:29.000000000 +0000 +++ golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/copyright 2018-03-20 10:19:07.000000000 +0000 @@ -5,11 +5,11 @@ Godeps/_workspace Files: * -Copyright: 2016 containerd +Copyright: The containerd Authors License: Apache-2.0 Files: debian/* -Copyright: 2018 Arnaud Rebillout +Copyright: 2018 Collabora Ltd License: Apache-2.0 Comment: Debian packaging is licensed under the same terms as upstream diff -Nru golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/gitlab-ci.yml golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/gitlab-ci.yml --- golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/gitlab-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ golang-github-containerd-cgroups-0.0~git20180223.d578e4e/debian/gitlab-ci.yml 2018-03-20 10:19:07.000000000 +0000 @@ -0,0 +1,28 @@ + +# auto-generated, DO NOT MODIFY. +# The authoritative copy of this file lives at: +# https://salsa.debian.org/go-team/ci/blob/master/cmd/ci/gitlabciyml.go + +# TODO: publish under debian-go-team/ci +image: stapelberg/ci2 + +test_the_archive: + artifacts: + paths: + - before-applying-commit.json + - after-applying-commit.json + script: + # Create an overlay to discard writes to /srv/gopath/src after the build: + - "rm -rf /cache/overlay/{upper,work}" + - "mkdir -p /cache/overlay/{upper,work}" + - "mount -t overlay overlay -o lowerdir=/srv/gopath/src,upperdir=/cache/overlay/upper,workdir=/cache/overlay/work /srv/gopath/src" + - "export GOPATH=/srv/gopath" + - "export GOCACHE=/cache/go" + # Build the world as-is: + - "ci-build -exemptions=/var/lib/ci-build/exemptions.json > before-applying-commit.json" + # Copy this package into the overlay: + - "GBP_CONF_FILES=:debian/gbp.conf gbp buildpackage --git-no-pristine-tar --git-ignore-branch --git-ignore-new --git-export-dir=/tmp/export --git-no-overlay --git-tarball-dir=/nonexistant --git-cleaner=/bin/true --git-builder='dpkg-buildpackage -S -d --no-sign'" + - "pgt-gopath -dsc /tmp/export/*.dsc" + # Rebuild the world: + - "ci-build -exemptions=/var/lib/ci-build/exemptions.json > after-applying-commit.json" + - "ci-diff before-applying-commit.json after-applying-commit.json"