From 23939737fedadea83838e693fe751f59c9531a91 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 16 Apr 2024 18:12:44 +0200 Subject: Adding debian version 8.6.1-3. Signed-off-by: Daniel Baumann --- debian/changelog | 95 ++++++++++++++++++++++++++++ debian/control | 35 ++++++++++ debian/copyright | 43 +++++++++++++ debian/gbp.conf | 3 + debian/gitlab-ci.yml | 6 ++ debian/golang-github-vbauerster-mpb-dev.docs | 1 + debian/rules | 8 +++ debian/source/format | 1 + debian/upstream/metadata | 5 ++ debian/watch | 4 ++ 10 files changed, 201 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gbp.conf create mode 100644 debian/gitlab-ci.yml create mode 100644 debian/golang-github-vbauerster-mpb-dev.docs create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/upstream/metadata create mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1aa595a --- /dev/null +++ b/debian/changelog @@ -0,0 +1,95 @@ +golang-github-vbauerster-mpb (8.6.1-3) unstable; urgency=medium + + * Add golang-github-containers-image (<< 5.25) + + -- Reinhard Tartler Mon, 11 Sep 2023 20:18:09 -0400 + +golang-github-vbauerster-mpb (8.6.1-2) unstable; urgency=medium + + * Upload to unstable + + -- Reinhard Tartler Sat, 09 Sep 2023 12:15:01 -0400 + +golang-github-vbauerster-mpb (8.6.1-1) experimental; urgency=medium + + * New upstream version 8.6.1 + + -- Reinhard Tartler Mon, 04 Sep 2023 16:58:16 -0400 + +golang-github-vbauerster-mpb (7.3.2-1) unstable; urgency=medium + + * Team upload. + * New upstream version + * Standards-Version: 4.6.0 (routine-update) + * debhelper-compat 13 (routine-update) + * Rules-Requires-Root: no (routine-update) + * (Build-)Depends: golang-github-mattn-go-runewidth-dev + + -- Andreas Tille Wed, 26 Jan 2022 20:33:53 +0100 + +golang-github-vbauerster-mpb (7.0.3-1) unstable; urgency=medium + + * New upstream release + + -- Reinhard Tartler Sat, 28 Aug 2021 22:10:19 +0200 + +golang-github-vbauerster-mpb (6.0.3-2) unstable; urgency=medium + + * Upload to unstable + + -- Reinhard Tartler Sat, 28 Aug 2021 21:11:02 +0200 + +golang-github-vbauerster-mpb (6.0.3-1) experimental; urgency=medium + + * Team upload + * Upgrade to version v6.0.3, Closes: #987511) + Breaking changes (cf. https://github.com/vbauerster/mpb/releases): + Removed: + func BarStyle(style string) BarOption + func BarReverse() BarOption + func SpinnerStyle(frames []string) BarOption + func TrimSpace() BarOption + To set bar style use BarFiller constructors. + . + Added: + func ContainerOptional(option ContainerOption, pick bool) ContainerOption + func BarOptional(option BarOption, pick bool) BarOption + + -- Reinhard Tartler Sun, 25 Apr 2021 11:32:28 -0400 + +golang-github-vbauerster-mpb (5.0.3-2) unstable; urgency=low + + [ Debian Janitor ] + * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, + Repository-Browse. + * Update standards version to 4.5.0, no changes needed. + + [ Reinhard Tartler ] + * Upload to unstable + + -- Reinhard Tartler Sun, 19 Jul 2020 09:53:22 -0400 + +golang-github-vbauerster-mpb (5.0.3-1) experimental; urgency=medium + + [ Dmitry Smirnov ] + * Added myself to Uploaders + * DH to version 12 + * Standards-Version: 4.4.1 + + [ Reinhard Tartler ] + * New upstream version 5.0.3 + + -- Reinhard Tartler Tue, 21 Apr 2020 07:52:29 -0400 + +golang-github-vbauerster-mpb (3.4.0-1) unstable; urgency=medium + + * Team upload. + * New upstream release. + + -- Dmitry Smirnov Tue, 10 Sep 2019 12:33:06 +1000 + +golang-github-vbauerster-mpb (3.3.4-1) unstable; urgency=medium + + * Initial release (Closes: #925184) + + -- Reinhard Tartler Wed, 20 Mar 2019 17:58:37 -0400 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..e185fa6 --- /dev/null +++ b/debian/control @@ -0,0 +1,35 @@ +Source: golang-github-vbauerster-mpb +Section: devel +Priority: optional +Maintainer: Debian Go Packaging Team +Uploaders: Reinhard Tartler , + Dmitry Smirnov , +Build-Depends: debhelper-compat (= 13), + dh-golang, + golang-any, + golang-github-acarl005-stripansi-dev, + golang-github-mattn-go-isatty-dev, + golang-github-mattn-go-runewidth-dev, + golang-github-vividcortex-ewma-dev, + golang-github-rivo-uniseg-dev, + golang-golang-x-crypto-dev +Standards-Version: 4.6.0 +Homepage: https://github.com/vbauerster/mpb +Rules-Requires-Root: no +Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-vbauerster-mpb +Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-vbauerster-mpb.git +XS-Go-Import-Path: github.com/vbauerster/mpb +Testsuite: autopkgtest-pkg-go + +Package: golang-github-vbauerster-mpb-dev +Architecture: all +Depends: ${misc:Depends}, + golang-github-acarl005-stripansi-dev, + golang-github-mattn-go-isatty-dev, + golang-github-mattn-go-runewidth-dev, + golang-github-rivo-uniseg-dev, + golang-github-vividcortex-ewma-dev, +Breaks: golang-github-containers-image (<< 5.25) +Description: multi progress bar for Go cli applications + mpb is a golang library for rendering progress bars in terminal + applications. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..39bedc7 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,43 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: mpb +Source: https://github.com/vbauerster/mpb + +Files: * +Copyright: 2016 Vladimir Bauer +License: BSD-3-clause + +Files: debian/* +Copyright: 2019 Reinhard Tartler +License: BSD-3-clause +Comment: Debian packaging is licensed under the same terms as upstream + +License: BSD-3-clause + BSD 3-Clause License + . + Copyright (C) 2016-2018 Vladimir Bauer + All rights reserved. + . + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + . + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + . + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..94e6b84 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,3 @@ +[DEFAULT] +debian-branch = debian/sid +pristine-tar = True 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-vbauerster-mpb-dev.docs b/debian/golang-github-vbauerster-mpb-dev.docs new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/debian/golang-github-vbauerster-mpb-dev.docs @@ -0,0 +1 @@ +README.md diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..4cf8694 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +# We want to build only the library packages themselves, not the accompanying +# example binaries. +export DH_GOLANG_EXCLUDES := examples/ + +%: + dh $@ --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..b1cebef --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,5 @@ +--- +Bug-Database: https://github.com/vbauerster/mpb/issues +Bug-Submit: https://github.com/vbauerster/mpb/issues/new +Repository: https://github.com/vbauerster/mpb.git +Repository-Browse: https://github.com/vbauerster/mpb diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..fce75e7 --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=4 +opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/golang-github-vbauerster-mpb-\$1\.tar\.gz/,\ +uversionmangle=s/(\d)[_\.\-\+]?(RC|rc|pre|dev|beta|alpha)[.]?(\d*)$/\$1~\$2\$3/ \ + https://github.com/vbauerster/mpb/tags .*/v?(\d\S*)\.tar\.gz -- cgit v1.2.3