summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2021-07-05 14:36:47 +0000
committernia <nia@pkgsrc.org>2021-07-05 14:36:47 +0000
commit338fe882660958e001288f663922742ac43e573b (patch)
tree06e216a88d60b8ffafd943250ab3c009cc74bcb4
parent96d90f4138b1b6b4f745f2fd947d2a3c8d45319f (diff)
downloadpkgsrc-338fe882660958e001288f663922742ac43e573b.tar.gz
go-xxhash: remove
deprecated go-package; no users in pkgsrc
-rw-r--r--security/Makefile3
-rw-r--r--security/go-xxhash/DESCR4
-rw-r--r--security/go-xxhash/Makefile19
-rw-r--r--security/go-xxhash/PLIST20
-rw-r--r--security/go-xxhash/buildlink3.mk15
-rw-r--r--security/go-xxhash/distinfo6
6 files changed, 1 insertions, 66 deletions
diff --git a/security/Makefile b/security/Makefile
index 2ed969a7d9d..b38fb2a88eb 100644
--- a/security/Makefile
+++ b/security/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.834 2021/07/04 12:41:23 wiz Exp $
+# $NetBSD: Makefile,v 1.835 2021/07/05 14:36:47 nia Exp $
#
COMMENT= Security and cryptography tools and libraries
@@ -107,7 +107,6 @@ SUBDIR+= gnutls
SUBDIR+= go-asn1-ber
SUBDIR+= go-crypto
SUBDIR+= go-mkcert
-SUBDIR+= go-xxhash
SUBDIR+= google-authenticator
SUBDIR+= gpa
SUBDIR+= gpg-tui
diff --git a/security/go-xxhash/DESCR b/security/go-xxhash/DESCR
deleted file mode 100644
index f659be2f3bf..00000000000
--- a/security/go-xxhash/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-Go implementation of the 64-bit xxHash algorithm (XXH64).
-
-This implementation provides a fast pure-Go implementation
-and an even faster assembly implementation for amd64.
diff --git a/security/go-xxhash/Makefile b/security/go-xxhash/Makefile
deleted file mode 100644
index a296cf05632..00000000000
--- a/security/go-xxhash/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-# $NetBSD: Makefile,v 1.18 2021/06/06 12:18:57 bsiegert Exp $
-
-GITHUB_TAG= v${PKGVERSION_NOREV}
-DISTNAME= go-xxhash-2.1.0
-PKGREVISION= 16
-CATEGORIES= security
-MASTER_SITES= ${MASTER_SITE_GITHUB:=cespare/}
-GITHUB_PROJECT= xxhash
-
-MAINTAINER= nikita@NetBSD.org
-HOMEPAGE= https://github.com/cespare/xxhash/
-COMMENT= Go implementation of the 64bit xxhash algorithm XXh64
-LICENSE= mit
-
-GO_SRCPATH= github.com/cespare/xxhash
-GO_DIST_BASE= xxhash-${PKGVERSION_NOREV}
-
-.include "../../lang/go/go-package.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/security/go-xxhash/PLIST b/security/go-xxhash/PLIST
deleted file mode 100644
index c40f8d2a04a..00000000000
--- a/security/go-xxhash/PLIST
+++ /dev/null
@@ -1,20 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2019/11/06 11:26:49 ng0 Exp $
-bin/xxhsum
-gopkg/pkg/${GO_PLATFORM}/github.com/cespare/xxhash.a
-gopkg/src/github.com/cespare/xxhash/LICENSE.txt
-gopkg/src/github.com/cespare/xxhash/README.md
-gopkg/src/github.com/cespare/xxhash/go.mod
-gopkg/src/github.com/cespare/xxhash/go.sum
-gopkg/src/github.com/cespare/xxhash/xxhash.go
-gopkg/src/github.com/cespare/xxhash/xxhash_amd64.go
-gopkg/src/github.com/cespare/xxhash/xxhash_amd64.s
-gopkg/src/github.com/cespare/xxhash/xxhash_other.go
-gopkg/src/github.com/cespare/xxhash/xxhash_safe.go
-gopkg/src/github.com/cespare/xxhash/xxhash_test.go
-gopkg/src/github.com/cespare/xxhash/xxhash_unsafe.go
-gopkg/src/github.com/cespare/xxhash/xxhash_unsafe_test.go
-gopkg/src/github.com/cespare/xxhash/xxhashbench/go.mod
-gopkg/src/github.com/cespare/xxhash/xxhashbench/go.sum
-gopkg/src/github.com/cespare/xxhash/xxhashbench/xxhashbench_test.go
-gopkg/src/github.com/cespare/xxhash/xxhsum/.gitignore
-gopkg/src/github.com/cespare/xxhash/xxhsum/xxhsum.go
diff --git a/security/go-xxhash/buildlink3.mk b/security/go-xxhash/buildlink3.mk
deleted file mode 100644
index 3b6578c1dba..00000000000
--- a/security/go-xxhash/buildlink3.mk
+++ /dev/null
@@ -1,15 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.1 2019/11/06 11:26:49 ng0 Exp $
-
-BUILDLINK_TREE+= go-xxhash
-
-.if !defined(GO_XXHASH_BUILDLINK3_MK)
-GO_XXHASH_BUILDLINK3_MK:=
-
-BUILDLINK_CONTENTS_FILTER.go-xxhash= ${EGREP} gopkg/
-BUILDLINK_DEPMETHOD.go-xxhash?= build
-
-BUILDLINK_API_DEPENDS.go-xxhash+= go-xxhash>=2.0.0
-BUILDLINK_PKGSRCDIR.go-xxhash?= ../../security/go-xxhash
-.endif # GO_XXHASH_BUILDLINK3_MK
-
-BUILDLINK_TREE+= -go-xxhash
diff --git a/security/go-xxhash/distinfo b/security/go-xxhash/distinfo
deleted file mode 100644
index afc5d0f0881..00000000000
--- a/security/go-xxhash/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.1 2019/11/06 11:26:49 ng0 Exp $
-
-SHA1 (go-xxhash-2.1.0.tar.gz) = 6d3fd375f297d4509337dbf58c006feae9537084
-RMD160 (go-xxhash-2.1.0.tar.gz) = f3720a3d42e28c2c5a40b89dafe47924e983624e
-SHA512 (go-xxhash-2.1.0.tar.gz) = 6a44b29efe90fda8cdb267d1419673a577e231398480add90e7afb7eab92ecb375c947ce68c2221ed94b1fc7032a497703ec8026bff62386f52d22cac89ae2ab
-Size (go-xxhash-2.1.0.tar.gz) = 9198 bytes