pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www go-parse: remove, deprecated go-package, no users ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/cb4fa51ed5e6
branches:  trunk
changeset: 457417:cb4fa51ed5e6
user:      nia <nia%pkgsrc.org@localhost>
date:      Wed Aug 25 07:04:10 2021 +0000

description:
go-parse: remove, deprecated go-package, no users in pkgsrc

diffstat:

 www/Makefile               |   3 +-
 www/go-parse/DESCR         |   8 -----
 www/go-parse/Makefile      |  23 ---------------
 www/go-parse/PLIST         |  68 ----------------------------------------------
 www/go-parse/buildlink3.mk |  15 ----------
 www/go-parse/distinfo      |   6 ----
 6 files changed, 1 insertions(+), 122 deletions(-)

diffs (157 lines):

diff -r 7237eac44c26 -r cb4fa51ed5e6 www/Makefile
--- a/www/Makefile      Wed Aug 25 07:03:26 2021 +0000
+++ b/www/Makefile      Wed Aug 25 07:04:10 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1569 2021/07/28 12:11:13 adam Exp $
+# $NetBSD: Makefile,v 1.1570 2021/08/25 07:04:10 nia Exp $
 #
 
 COMMENT=       Packages related to the World Wide Web
@@ -129,7 +129,6 @@
 SUBDIR+=       go-ffuf
 SUBDIR+=       go-gohtml
 SUBDIR+=       go-minify
-SUBDIR+=       go-parse
 SUBDIR+=       goaccess
 SUBDIR+=       grafana
 SUBDIR+=       gtkasp2php
diff -r 7237eac44c26 -r cb4fa51ed5e6 www/go-parse/DESCR
--- a/www/go-parse/DESCR        Wed Aug 25 07:03:26 2021 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-This package contains several lexers and parsers written in Go.
-All subpackages are built to be streaming, high performance and to
-be in accordance with the official (latest) specifications.
-
-The lexers are implemented using buffer.Lexer in
-https://github.com/tdewolff/parse/buffer and the parsers work on
-top of the lexers. Some subpackages have hashes defined (using
-Hasher) that speed up common byte-slice comparisons.
diff -r 7237eac44c26 -r cb4fa51ed5e6 www/go-parse/Makefile
--- a/www/go-parse/Makefile     Wed Aug 25 07:03:26 2021 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-# $NetBSD: Makefile,v 1.30 2021/08/11 19:35:08 bsiegert Exp $
-
-DISTNAME=      parse-2.4.2
-PKGNAME=       go-${DISTNAME}
-PKGREVISION=   13
-MASTER_SITES=  ${MASTER_SITE_GITHUB:=tdewolff/}
-CATEGORIES=    www
-GITHUB_PROJECT=        parse
-GITHUB_TAG=    v${PKGVERSION_NOREV}
-
-MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/tdewolff/parse
-COMMENT=       Go parsers for web formats
-LICENSE=       mit
-
-GO_DIST_BASE=  ${DISTNAME}
-GO_SRCPATH=    github.com/tdewolff/parse
-
-post-install:
-       find ${DESTDIR}${PREFIX} -name "*.orig" -exec rm \{\} \;
-
-.include "../../lang/go/go-package.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r 7237eac44c26 -r cb4fa51ed5e6 www/go-parse/PLIST
--- a/www/go-parse/PLIST        Wed Aug 25 07:03:26 2021 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,68 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2020/04/18 14:18:41 nikita Exp $
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse.a
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse/buffer.a
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse/css.a
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse/html.a
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse/js.a
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse/json.a
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse/strconv.a
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse/svg.a
-gopkg/pkg/${GO_PLATFORM}/github.com/tdewolff/parse/xml.a
-gopkg/src/github.com/tdewolff/parse/LICENSE.md
-gopkg/src/github.com/tdewolff/parse/README.md
-gopkg/src/github.com/tdewolff/parse/buffer/buffer.go
-gopkg/src/github.com/tdewolff/parse/buffer/lexer.go
-gopkg/src/github.com/tdewolff/parse/buffer/lexer_test.go
-gopkg/src/github.com/tdewolff/parse/buffer/reader.go
-gopkg/src/github.com/tdewolff/parse/buffer/reader_test.go
-gopkg/src/github.com/tdewolff/parse/buffer/streamlexer.go
-gopkg/src/github.com/tdewolff/parse/buffer/streamlexer_test.go
-gopkg/src/github.com/tdewolff/parse/buffer/writer.go
-gopkg/src/github.com/tdewolff/parse/buffer/writer_test.go
-gopkg/src/github.com/tdewolff/parse/common.go
-gopkg/src/github.com/tdewolff/parse/common_test.go
-gopkg/src/github.com/tdewolff/parse/css/README.md
-gopkg/src/github.com/tdewolff/parse/css/hash.go
-gopkg/src/github.com/tdewolff/parse/css/hash_test.go
-gopkg/src/github.com/tdewolff/parse/css/lex.go
-gopkg/src/github.com/tdewolff/parse/css/lex_test.go
-gopkg/src/github.com/tdewolff/parse/css/parse.go
-gopkg/src/github.com/tdewolff/parse/css/parse_test.go
-gopkg/src/github.com/tdewolff/parse/css/util.go
-gopkg/src/github.com/tdewolff/parse/css/util_test.go
-gopkg/src/github.com/tdewolff/parse/error.go
-gopkg/src/github.com/tdewolff/parse/error_test.go
-gopkg/src/github.com/tdewolff/parse/go.mod
-gopkg/src/github.com/tdewolff/parse/go.sum
-gopkg/src/github.com/tdewolff/parse/html/README.md
-gopkg/src/github.com/tdewolff/parse/html/hash.go
-gopkg/src/github.com/tdewolff/parse/html/hash_test.go
-gopkg/src/github.com/tdewolff/parse/html/lex.go
-gopkg/src/github.com/tdewolff/parse/html/lex_test.go
-gopkg/src/github.com/tdewolff/parse/html/util.go
-gopkg/src/github.com/tdewolff/parse/html/util_test.go
-gopkg/src/github.com/tdewolff/parse/js/README.md
-gopkg/src/github.com/tdewolff/parse/js/hash.go
-gopkg/src/github.com/tdewolff/parse/js/hash_test.go
-gopkg/src/github.com/tdewolff/parse/js/lex.go
-gopkg/src/github.com/tdewolff/parse/js/lex_test.go
-gopkg/src/github.com/tdewolff/parse/json/README.md
-gopkg/src/github.com/tdewolff/parse/json/parse.go
-gopkg/src/github.com/tdewolff/parse/json/parse_test.go
-gopkg/src/github.com/tdewolff/parse/position.go
-gopkg/src/github.com/tdewolff/parse/position_test.go
-gopkg/src/github.com/tdewolff/parse/strconv/float.go
-gopkg/src/github.com/tdewolff/parse/strconv/float_test.go
-gopkg/src/github.com/tdewolff/parse/strconv/int.go
-gopkg/src/github.com/tdewolff/parse/strconv/int_test.go
-gopkg/src/github.com/tdewolff/parse/strconv/price.go
-gopkg/src/github.com/tdewolff/parse/strconv/price_test.go
-gopkg/src/github.com/tdewolff/parse/svg/hash.go
-gopkg/src/github.com/tdewolff/parse/svg/hash_test.go
-gopkg/src/github.com/tdewolff/parse/util.go
-gopkg/src/github.com/tdewolff/parse/util_test.go
-gopkg/src/github.com/tdewolff/parse/xml/README.md
-gopkg/src/github.com/tdewolff/parse/xml/lex.go
-gopkg/src/github.com/tdewolff/parse/xml/lex_test.go
-gopkg/src/github.com/tdewolff/parse/xml/util.go
-gopkg/src/github.com/tdewolff/parse/xml/util_test.go
diff -r 7237eac44c26 -r cb4fa51ed5e6 www/go-parse/buildlink3.mk
--- a/www/go-parse/buildlink3.mk        Wed Aug 25 07:03:26 2021 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.1 2018/11/18 08:42:16 ryoon Exp $
-
-BUILDLINK_TREE+=       go-parse
-
-.if !defined(GO_PARSE_BUILDLINK3_MK)
-GO_PARSE_BUILDLINK3_MK:=
-
-BUILDLINK_CONTENTS_FILTER.go-parse=    ${EGREP} gopkg/
-BUILDLINK_DEPMETHOD.go-parse?=         build
-
-BUILDLINK_API_DEPENDS.go-parse+=       go-parse>=2.3.3
-BUILDLINK_PKGSRCDIR.go-parse?=         ../../www/go-parse
-.endif # GO_PARSE_BUILDLINK3_MK
-
-BUILDLINK_TREE+=       -go-parse
diff -r 7237eac44c26 -r cb4fa51ed5e6 www/go-parse/distinfo
--- a/www/go-parse/distinfo     Wed Aug 25 07:03:26 2021 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.3 2020/04/18 14:18:41 nikita Exp $
-
-SHA1 (parse-2.4.2.tar.gz) = 499e9733005fd595fe437b523d8a3ee15d38a4c0
-RMD160 (parse-2.4.2.tar.gz) = e3660370f96ecc50c984172dea0c72a28ae50e94
-SHA512 (parse-2.4.2.tar.gz) = bcc97dff30b568d804042165d6ee8b866e84e70a3bcbecd59b237dc1add5a42ba8d01e59a163b16f7dea86dd709f2c817e23b1b1a9c68470e0e6198b10def661
-Size (parse-2.4.2.tar.gz) = 88729 bytes



Home | Main Index | Thread Index | Old Index