summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 17:45:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 17:45:31 +0000
commitb6d886006c3fe1bf34539cd2b66d1da68738fade (patch)
tree6165d7cc54382972dee9e45b459da4aac9c54c32
parentAdding upstream version 3.0.1. (diff)
downloadgolang-github-jellydator-ttlcache-debian.tar.xz
golang-github-jellydator-ttlcache-debian.zip
Adding debian version 3.0.1-2.debian/3.0.1-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/changelog11
-rw-r--r--debian/control30
-rw-r--r--debian/copyright52
-rw-r--r--debian/gbp.conf3
-rw-r--r--debian/gitlab-ci.yml6
-rw-r--r--debian/patches/auto-gitignore17
-rw-r--r--debian/patches/series2
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
-rw-r--r--debian/upstream/metadata5
-rw-r--r--debian/watch4
11 files changed, 135 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6e03adf
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,11 @@
+golang-github-jellydator-ttlcache (3.0.1-2) unstable; urgency=medium
+
+ * Upload to unstable
+
+ -- Reinhard Tartler <siretart@tauware.de> Tue, 18 Jul 2023 19:58:32 -0400
+
+golang-github-jellydator-ttlcache (3.0.1-1) experimental; urgency=medium
+
+ * Initial release (Closes: #1033735)
+
+ -- Reinhard Tartler <siretart@tauware.de> Fri, 31 Mar 2023 08:16:47 -0400
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..bfae5b2
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: golang-github-jellydator-ttlcache
+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-stretchr-testify-dev,
+ golang-golang-x-sync-dev,
+ golang-uber-goleak-dev
+Standards-Version: 4.6.2
+Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-jellydator-ttlcache
+Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-jellydator-ttlcache.git
+Homepage: https://github.com/jellydator/ttlcache
+Rules-Requires-Root: no
+XS-Go-Import-Path: github.com/jellydator/ttlcache
+
+Package: golang-github-jellydator-ttlcache-dev
+Architecture: all
+Multi-Arch: foreign
+Depends: golang-github-stretchr-testify-dev,
+ golang-golang-x-sync-dev,
+ golang-uber-goleak-dev,
+ ${misc:Depends}
+Description: In-memory cache with item expiration and generics (library)
+ This golang library is used by projects such as cosign internally. Most
+ users do not need to install this package.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7f768ad
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,52 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ttlcache
+Upstream-Contact: TODO
+Source: https://github.com/jellydator/ttlcache
+
+Files: *
+Copyright: 2022, Jellydator
+ 2014, Jellydator
+License: Expat
+
+Files: CHANGELOG.md
+ README.md
+ cache.go
+ cache_test.go
+ expiration_queue.go
+ expiration_queue_test.go
+ go.mod
+ item.go
+ item_test.go
+ metrics.go
+ options.go
+ options_test.go
+Copyright: 2014, Jellydator
+License: Expat
+
+Files: bench/*
+Copyright: 2014, Jellydator
+License: Expat
+
+Files: debian/*
+Copyright: 2023, Reinhard Tartler <siretart@tauware.de>
+License: Expat
+Comment: Debian packaging is licensed under the same terms as upstream
+
+License: Expat
+ 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/patches/auto-gitignore b/debian/patches/auto-gitignore
new file mode 100644
index 0000000..ecf515d
--- /dev/null
+++ b/debian/patches/auto-gitignore
@@ -0,0 +1,17 @@
+Subject: Update .gitignore from Debian packaging branch
+
+The Debian packaging git branch contains these updates to the upstream
+.gitignore file(s). This patch is autogenerated, to provide these
+updates to users of the official Debian archive view of the package.
+
+[dgit (11.0) update-gitignore]
+---
+diff --git a/.gitignore b/.gitignore
+new file mode 100644
+index 0000000..f0cb01c
+--- /dev/null
++++ b/.gitignore
+@@ -0,0 +1,3 @@
++
++/.pc/
++/_build/
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..a22980a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+
+auto-gitignore
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..44584c3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ 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)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..70b7a10
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+---
+Bug-Database: https://github.com/jellydator/ttlcache/issues
+Bug-Submit: https://github.com/jellydator/ttlcache/issues/new
+Repository: https://github.com/jellydator/ttlcache.git
+Repository-Browse: https://github.com/jellydator/ttlcache
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..6d5451c
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=4
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%@PACKAGE@-$1.tar.gz%,\
+ uversionmangle=s/(\d)[_\.\-\+]?(RC|rc|pre|dev|beta|alpha)[.]?(\d*)$/$1~$2$3/" \
+ https://github.com/jellydator/ttlcache/tags .*/v?(\d\S*)\.tar\.gz debian