New Upstream Release - golang-github-knqyf263-go-cpe

Ready changes

Summary

Merged new upstream version: 0.0~git20201213.54f6ab2 (was: 0.0~git20180327.659663f6).

Resulting package

Built on 2022-09-29T21:08 (took 3m31s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-releases golang-github-knqyf263-go-cpe-dev

Lintian Result

Diff

diff --git a/.travis.yml b/.travis.yml
index 237f837..22411d0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,13 +1,14 @@
 language: go
+arch:
+  - amd64
+  - ppc64le
+  
 sudo: false
 go:
-  - 1.8
-  - 1.9
+  - 1.15
 before_install:
   - go get github.com/mattn/goveralls
-  - go get github.com/golang/dep/...
 script:
-  - $GOPATH/bin/dep ensure
   - make test
   - make cov
   - $GOPATH/bin/goveralls -service=travis-ci -coverprofile=$TRAVIS_BUILD_DIR/coverage.out
diff --git a/GNUmakefile b/GNUmakefile
index 85ab3b8..9946cbe 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,7 +1,5 @@
 .PHONY: \
 	all \
-	dep \
-	depup \
 	update \
 	build \
 	install \
@@ -17,17 +15,9 @@ SRCS = $(shell git ls-files '*.go')
 PKGS = $(shell go list ./... | grep -v /vendor/)
 COVERAGE_PKGS = $(shell go list ./... | grep -Ev "/testing|/examples")
 
-all: dep build test
+all: build test
 
-dep:
-	go get -u github.com/golang/dep/...
-	dep ensure
-
-depup:
-	go get -u github.com/golang/dep/...
-	dep ensure -u
-
-build: main.go dep
+build: main.go
 	go build -o go-cpe $<
 
 
diff --git a/Gopkg.lock b/Gopkg.lock
deleted file mode 100644
index 7f44cd8..0000000
--- a/Gopkg.lock
+++ /dev/null
@@ -1,39 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/k0kubun/pp"
-  packages = ["."]
-  revision = "027a6d1765d673d337e687394dbe780dd64e2a1e"
-  version = "v2.3.0"
-
-[[projects]]
-  name = "github.com/mattn/go-colorable"
-  packages = ["."]
-  revision = "167de6bfdfba052fa6b2d3664c8f5272e23c9072"
-  version = "v0.0.9"
-
-[[projects]]
-  name = "github.com/mattn/go-isatty"
-  packages = ["."]
-  revision = "0360b2af4f38e8d38c7fce2a9f4e702702d73a39"
-  version = "v0.0.3"
-
-[[projects]]
-  name = "github.com/pkg/errors"
-  packages = ["."]
-  revision = "645ef00459ed84a119197bfb8d8205042c6df63d"
-  version = "v0.8.0"
-
-[[projects]]
-  branch = "master"
-  name = "golang.org/x/sys"
-  packages = ["unix"]
-  revision = "3dbebcf8efb6a5011a60c2b4591c1022a759af8a"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "af95f2750e5bcf8050296ccaf309a82b5ae59ddcaf8c9492849ebd4cba0483fa"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/Gopkg.toml b/Gopkg.toml
deleted file mode 100644
index 2ea5677..0000000
--- a/Gopkg.toml
+++ /dev/null
@@ -1,21 +0,0 @@
-# Gopkg.toml example
-#
-# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
-# for detailed Gopkg.toml documentation.
-#
-# required = ["github.com/user/thing/cmd/thing"]
-# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
-#
-# [[constraint]]
-#   name = "github.com/user/project"
-#   version = "1.0.0"
-#
-# [[constraint]]
-#   name = "github.com/user/project2"
-#   branch = "dev"
-#   source = "github.com/myfork/project2"
-#
-# [[override]]
-#  name = "github.com/x/y"
-#  version = "2.4.0"
-
diff --git a/debian/changelog b/debian/changelog
index 2f2ad3d..7db7979 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,10 @@
-golang-github-knqyf263-go-cpe (0.0~git20180327.659663f6-5) UNRELEASED; urgency=medium
+golang-github-knqyf263-go-cpe (0.0~git20201213.54f6ab2-1) UNRELEASED; urgency=medium
 
   * Set upstream metadata fields: Bug-Database, Bug-Submit.
   * Update standards version to 4.5.1, no changes needed.
+  * New upstream snapshot.
 
- -- Debian Janitor <janitor@jelmer.uk>  Tue, 07 Sep 2021 06:08:37 -0000
+ -- Debian Janitor <janitor@jelmer.uk>  Thu, 29 Sep 2022 21:05:55 -0000
 
 golang-github-knqyf263-go-cpe (0.0~git20180327.659663f6-4) unstable; urgency=medium
 
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..e49a041
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,5 @@
+module github.com/knqyf263/go-cpe
+
+go 1.15
+
+require github.com/pkg/errors v0.8.1
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..f29ab35
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,2 @@
+github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
+github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=

Debdiff

[The following lists of changes regard files as different if they have different names, permissions or owners.]

Files in second set of .debs but not in first

-rw-r--r--  root/root   /usr/share/gocode/src/github.com/knqyf263/go-cpe/go.mod
-rw-r--r--  root/root   /usr/share/gocode/src/github.com/knqyf263/go-cpe/go.sum

No differences were encountered in the control files

More details

Full run details