summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 17:05:05 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 17:05:05 +0000
commit7d4e6aa9f2a4c96e4406e95fc1cc851f2e2109d6 (patch)
tree9c0af2c4f6fc0e3cf9db7eea5170e23a9b066acf
parentAdding upstream version 0.6.2. (diff)
downloadgolang-github-container-orchestrated-devices-container-device-interface-debian.tar.xz
golang-github-container-orchestrated-devices-container-device-interface-debian.zip
Adding debian version 0.6.2-2.debian/0.6.2-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/.gitignore7
-rw-r--r--debian/changelog40
-rw-r--r--debian/control52
-rw-r--r--debian/copyright28
-rw-r--r--debian/gbp.conf3
-rw-r--r--debian/gitlab-ci.yml6
-rwxr-xr-xdebian/rules7
-rw-r--r--debian/source/format1
-rw-r--r--debian/upstream/metadata5
-rw-r--r--debian/watch4
10 files changed, 153 insertions, 0 deletions
diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644
index 0000000..d380030
--- /dev/null
+++ b/debian/.gitignore
@@ -0,0 +1,7 @@
+*.debhelper
+*.log
+*.substvars
+/.debhelper/
+/debhelper-build-stamp
+/files
+/golang-github-container-orchestrated-devices-container-device-interface-dev/
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1a33edd
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,40 @@
+golang-github-container-orchestrated-devices-container-device-interface (0.6.2-2) unstable; urgency=medium
+
+ * Upload to unstable
+
+ -- Reinhard Tartler <siretart@tauware.de> Sun, 21 Jan 2024 15:12:10 -0500
+
+golang-github-container-orchestrated-devices-container-device-interface (0.6.2-1) experimental; urgency=medium
+
+ * Team upload.
+ * New upstream Release
+ - rename import to tags.cncf.io, will require changes to imports
+
+ -- Reinhard Tartler <siretart@tauware.de> Thu, 23 Nov 2023 12:53:39 +0000
+
+golang-github-container-orchestrated-devices-container-device-interface (0.6.1-2) unstable; urgency=medium
+
+ * Team upload.
+ * Upload to unstable
+
+ -- Reinhard Tartler <siretart@tauware.de> Fri, 27 Oct 2023 06:43:18 -0400
+
+golang-github-container-orchestrated-devices-container-device-interface (0.6.1-1) experimental; urgency=medium
+
+ * New upstream release
+ * Team Upload.
+ * Bump Standards-version
+
+ -- Reinhard Tartler <siretart@tauware.de> Sat, 23 Sep 2023 08:51:18 -0400
+
+golang-github-container-orchestrated-devices-container-device-interface (0.5.2-2) unstable; urgency=medium
+
+ * Source-only upload for testing migration
+
+ -- Shengjing Zhu <zhsj@debian.org> Sat, 15 Oct 2022 02:45:19 +0800
+
+golang-github-container-orchestrated-devices-container-device-interface (0.5.2-1) unstable; urgency=medium
+
+ * Initial release
+
+ -- Shengjing Zhu <zhsj@debian.org> Tue, 11 Oct 2022 01:23:56 +0800
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..be566d7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,52 @@
+Source: golang-github-container-orchestrated-devices-container-device-interface
+Section: golang
+Priority: optional
+Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
+Uploaders: Shengjing Zhu <zhsj@debian.org>
+Rules-Requires-Root: no
+Build-Depends: debhelper-compat (= 13),
+ dh-sequence-golang,
+ golang-any,
+ golang-github-fsnotify-fsnotify-dev,
+ golang-github-hashicorp-go-multierror-dev,
+ golang-github-opencontainers-runc-dev,
+ golang-github-opencontainers-runtime-tools-dev,
+ golang-github-opencontainers-specs-dev,
+ golang-github-pkg-errors-dev,
+ golang-github-spf13-cobra-dev,
+ golang-github-stretchr-testify-dev,
+ golang-github-xeipuuv-gojsonschema-dev,
+ golang-golang-x-mod-dev,
+ golang-golang-x-sys-dev,
+ golang-k8s-sigs-yaml-dev
+Testsuite: autopkgtest-pkg-go
+Standards-Version: 4.6.2
+Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-container-orchestrated-devices-container-device-interface
+Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-container-orchestrated-devices-container-device-interface.git
+Homepage: https://github.com/container-orchestrated-devices/container-device-interface
+XS-Go-Import-Path: tags.cncf.io/container-device-interface
+
+Package: golang-github-container-orchestrated-devices-container-device-interface-dev
+Architecture: all
+Multi-Arch: foreign
+Depends: golang-github-fsnotify-fsnotify-dev,
+ golang-github-hashicorp-go-multierror-dev,
+ golang-github-opencontainers-runc-dev,
+ golang-github-opencontainers-runtime-tools-dev,
+ golang-github-opencontainers-specs-dev,
+ golang-github-pkg-errors-dev,
+ golang-github-spf13-cobra-dev,
+ golang-github-xeipuuv-gojsonschema-dev,
+ golang-golang-x-mod-dev,
+ golang-golang-x-sys-dev,
+ golang-k8s-sigs-yaml-dev,
+ ${misc:Depends}
+Description: container device interface
+ CDI (Container Device Interface), is a specification for container runtimes,
+ to support third party devices.
+ .
+ CDI concerns itself only with enabling container to be device aware.
+ Areas like resource management are explicitly left out of CDI (and is
+ expected to be handled by the orchestrator). Because of this focus, the
+ CDI specification is simple to implement and allows great flexibility to
+ runtimes and orchestrators.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e9c3e69
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://github.com/container-orchestrated-devices/container-device-interface
+Upstream-Name: container-device-interface
+
+Files: *
+Copyright: 2021-2022 The CDI Authors
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2022 Shengjing Zhu <zhsj@debian.org>
+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
+ .
+ https://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".
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/rules b/debian/rules
new file mode 100755
index 0000000..734ae2c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+export DH_GOLANG_EXCLUDES := cmd
+export DH_GOLANG_INSTALL_EXTRA := schema/schema.json schema/defs.json
+
+%:
+ dh $@ --builddirectory=_build --buildsystem=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)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..f333ba3
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+---
+Bug-Database: https://github.com/container-orchestrated-devices/container-device-interface/issues
+Bug-Submit: https://github.com/container-orchestrated-devices/container-device-interface/issues/new
+Repository: https://github.com/container-orchestrated-devices/container-device-interface.git
+Repository-Browse: https://github.com/container-orchestrated-devices/container-device-interface
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..caa6c01
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=4
+opts="mode=git, pgpmode=none" \
+ https://github.com/container-orchestrated-devices/container-device-interface \
+ refs/tags/v?@ANY_VERSION@ debian