summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 16:15:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 16:15:20 +0000
commit822c36e2896577ea7e5765cc4fc536da6f3325a2 (patch)
treed158a375dc90bc2bf216c407fba0ce2848a3d0fb
parentAdding upstream version 0.20211224. (diff)
downloadgolang-github-docker-go-plugins-helpers-822c36e2896577ea7e5765cc4fc536da6f3325a2.tar.xz
golang-github-docker-go-plugins-helpers-822c36e2896577ea7e5765cc4fc536da6f3325a2.zip
Adding debian version 0.20211224-3.debian/0.20211224-3debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/changelog17
-rw-r--r--debian/control28
-rw-r--r--debian/copyright57
-rw-r--r--debian/gbp.conf3
-rw-r--r--debian/gitlab-ci.yml6
-rw-r--r--debian/golang-github-docker-go-plugins-helpers.docs1
-rwxr-xr-xdebian/rules8
-rw-r--r--debian/source/format1
8 files changed, 121 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..72e280d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,17 @@
+golang-github-docker-go-plugins-helpers (0.20211224-3) unstable; urgency=medium
+
+ * No-change rebuild to aid testing migration
+
+ -- Reinhard Tartler <siretart@tauware.de> Thu, 02 Nov 2023 18:00:26 -0400
+
+golang-github-docker-go-plugins-helpers (0.20211224-2) unstable; urgency=medium
+
+ * Fix binary package name
+
+ -- Reinhard Tartler <siretart@tauware.de> Thu, 02 Nov 2023 07:03:17 -0400
+
+golang-github-docker-go-plugins-helpers (0.20211224-1) unstable; urgency=medium
+
+ * Initial release (Closes: #1054518)
+
+ -- Reinhard Tartler <siretart@tauware.de> Fri, 20 Oct 2023 08:02:02 -0400
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..7a9fd28
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: golang-github-docker-go-plugins-helpers
+Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
+Uploaders: Reinhard Tartler <siretart@tauware.de>
+Section: golang
+Testsuite: autopkgtest-pkg-go
+Priority: optional
+Build-Depends: debhelper-compat (= 13),
+ dh-golang,
+ golang-any,
+ golang-github-coreos-go-systemd-dev,
+ golang-github-docker-go-connections-dev,
+ golang-github-stretchr-testify-dev
+Standards-Version: 4.6.2
+Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-docker-pplugins-helpers
+Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-docker-plugins-helpers.git
+Rules-Requires-Root: no
+XS-Go-Import-Path: github.com/docker/go-plugins-helpers
+
+Package: golang-github-docker-go-plugins-helpers-dev
+Architecture: all
+Multi-Arch: foreign
+Depends: golang-github-coreos-go-systemd-dev,
+ golang-github-docker-go-connections-dev,
+ golang-github-stretchr-testify-dev,
+ ${misc:Depends}
+Description: Helper packages to extend Docker Engine in Golang
+ This package contains is a rather random collection of helpers used by tools
+ that interact closely with docker source code
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..dc1f050
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,57 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: github.com/docker/go-plugins-helpers
+Source: https://github.com/docker/go-plugins-helpers
+
+Files: *
+Copyright: 2012-2015, Docker, Inc.
+ Keith Rarick
+License: Apache-2.0 or Expat
+
+Files: debian/*
+Copyright: 2023, Reinhard Tartler <siretart@tauware.de>
+License: Apache-2.0
+Comment: Debian packaging is licensed under the same terms as upstream
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+Comment:
+ On Debian systems, the complete text of the Apache version 2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".
+
+License: Expat
+ The MIT License
+ .
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated
+ documentation files (the "Software"), to deal in the Software
+ without restriction, including without limitation the rights to
+ use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to
+ whom the Software is furnished to do so, subject to the
+ following conditions:
+ .
+ The above copyright notice and this permission notice shall
+ be included in all copies or substantial portions of the
+ Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
+ WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..3d450c2
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,3 @@
+[DEFAULT]
+debian-branch = debian/sid
+dist = DEP14
diff --git a/debian/gitlab-ci.yml b/debian/gitlab-ci.yml
new file mode 100644
index 0000000..594e14e
--- /dev/null
+++ b/debian/gitlab-ci.yml
@@ -0,0 +1,6 @@
+# auto-generated, DO NOT MODIFY.
+# The authoritative copy of this file lives at:
+# https://salsa.debian.org/go-team/infra/pkg-go-tools/blob/master/config/gitlabciyml.go
+---
+include:
+ - https://salsa.debian.org/go-team/infra/pkg-go-tools/-/raw/master/pipeline/test-archive.yml
diff --git a/debian/golang-github-docker-go-plugins-helpers.docs b/debian/golang-github-docker-go-plugins-helpers.docs
new file mode 100644
index 0000000..6d5ee1d
--- /dev/null
+++ b/debian/golang-github-docker-go-plugins-helpers.docs
@@ -0,0 +1 @@
+NOTICE
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..22ffc4d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+export DH_GOLANG_BUILDPKG := \
+ github.com/docker/go-plugins-helpers/sdk \
+ github.com/docker/go-plugins-helpers/volume
+
+%:
+ dh $@ --builddirectory=_build --buildsystem=golang --with=golang
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)