summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorbsiegert <bsiegert@pkgsrc.org>2021-06-12 14:29:24 +0000
committerbsiegert <bsiegert@pkgsrc.org>2021-06-12 14:29:24 +0000
commit17b3bd8a96739093e8ef76a91f6f4776c429aaa3 (patch)
tree15a830e3429bf9e164e4ad85a5b9c9bdffee4d03 /lang
parent0c9775aff27bb6a05fdcb141ff044e015ccf9ad3 (diff)
downloadpkgsrc-17b3bd8a96739093e8ef76a91f6f4776c429aaa3.tar.gz
go-hcl: remove.
All its dependencies have disappeared. Not useful on its own.
Diffstat (limited to 'lang')
-rw-r--r--lang/Makefile3
-rw-r--r--lang/go-hcl/DESCR10
-rw-r--r--lang/go-hcl/Makefile20
-rw-r--r--lang/go-hcl/PLIST159
-rw-r--r--lang/go-hcl/buildlink3.mk16
-rw-r--r--lang/go-hcl/distinfo6
6 files changed, 1 insertions, 213 deletions
diff --git a/lang/Makefile b/lang/Makefile
index 2de7c78d615..a7b35d253ab 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.601 2021/05/15 11:08:58 wiz Exp $
+# $NetBSD: Makefile,v 1.602 2021/06/12 14:29:24 bsiegert Exp $
#
COMMENT= Programming languages
@@ -98,7 +98,6 @@ SUBDIR+= gnat_util
SUBDIR+= gnucobol
SUBDIR+= go
SUBDIR+= go-bin
-SUBDIR+= go-hcl
SUBDIR+= go110
SUBDIR+= go115
SUBDIR+= go116
diff --git a/lang/go-hcl/DESCR b/lang/go-hcl/DESCR
deleted file mode 100644
index c13f711dba6..00000000000
--- a/lang/go-hcl/DESCR
+++ /dev/null
@@ -1,10 +0,0 @@
-HCL (HashiCorp Configuration Language) is a configuration language built by
-HashiCorp. The goal of HCL is to build a structured configuration language that
-is both human and machine friendly for use with command-line tools, but
-specifically targeted towards DevOps tools, servers, etc.
-
-HCL is also fully JSON compatible. That is, JSON can be used as completely
-valid input to a system expecting HCL. This helps makes systems interoperable
-with other systems.
-
-HCL is heavily inspired by libucl, nginx configuration, and others similar.
diff --git a/lang/go-hcl/Makefile b/lang/go-hcl/Makefile
deleted file mode 100644
index e61bf0f2267..00000000000
--- a/lang/go-hcl/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# $NetBSD: Makefile,v 1.33 2021/06/06 12:18:53 bsiegert Exp $
-
-DISTNAME= hcl-0.0.20160616
-PKGNAME= go-${DISTNAME}
-PKGREVISION= 29
-MASTER_SITES= ${MASTER_SITE_GITHUB:=hashicorp/}
-CATEGORIES= lang
-GITHUB_TAG= d7400db7143f8e869812e50a53acd6c8d92af3b8
-GITHUB_PROJECT= ${PKGBASE:S/^go-//}
-
-MAINTAINER= pkgsrc-users@NetBSD.org
-HOMEPAGE= https://github.com/hashicorp/hcl
-COMMENT= HCL is a configuration language
-LICENSE= mpl-2.0
-
-GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG}
-GO_SRCPATH= github.com/hashicorp/hcl
-
-.include "../../lang/go/go-package.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/lang/go-hcl/PLIST b/lang/go-hcl/PLIST
deleted file mode 100644
index d1a5f9b5ba1..00000000000
--- a/lang/go-hcl/PLIST
+++ /dev/null
@@ -1,159 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/17 02:02:39 gavan Exp $
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/hcl/ast.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/hcl/fmtcmd.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/hcl/parser.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/hcl/printer.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/hcl/scanner.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/hcl/strconv.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/hcl/token.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/json/parser.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/json/scanner.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/json/token.a
-gopkg/pkg/${GO_PLATFORM}/github.com/hashicorp/hcl/testhelper.a
-gopkg/src/github.com/hashicorp/hcl/LICENSE
-gopkg/src/github.com/hashicorp/hcl/Makefile
-gopkg/src/github.com/hashicorp/hcl/README.md
-gopkg/src/github.com/hashicorp/hcl/appveyor.yml
-gopkg/src/github.com/hashicorp/hcl/decoder.go
-gopkg/src/github.com/hashicorp/hcl/decoder_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl.go
-gopkg/src/github.com/hashicorp/hcl/hcl/ast/ast.go
-gopkg/src/github.com/hashicorp/hcl/hcl/ast/ast_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl/ast/walk.go
-gopkg/src/github.com/hashicorp/hcl/hcl/fmtcmd/fmtcmd.go
-gopkg/src/github.com/hashicorp/hcl/hcl/fmtcmd/fmtcmd_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/.hidden.ignore
-gopkg/src/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/dir.ignore
-gopkg/src/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/file.ignore
-gopkg/src/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/good.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/error.go
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/error_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/parser.go
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/parser_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/array_comment.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/array_comment_2.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/assign_colon.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/assign_deep.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_lastline.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_single.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/complex.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/complex_key.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/empty.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/key_without_value.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list_comma.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/missing_braces.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/multiple.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/object_key_without_value.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/old.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure_basic.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure_empty.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/types.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/unterminated_object.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/unterminated_object_2.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/nodes.go
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/printer.go
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/printer_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/comment.golden
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/comment.input
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/comment_aligned.golden
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/comment_aligned.input
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/comment_standalone.golden
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/comment_standalone.input
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/complexhcl.golden
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/complexhcl.input
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/empty_block.golden
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/empty_block.input
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/list.golden
-gopkg/src/github.com/hashicorp/hcl/hcl/printer/testdata/list.input
-gopkg/src/github.com/hashicorp/hcl/hcl/scanner/scanner.go
-gopkg/src/github.com/hashicorp/hcl/hcl/scanner/scanner_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl/strconv/quote.go
-gopkg/src/github.com/hashicorp/hcl/hcl/strconv/quote_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/array_comment.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/assign_colon.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/assign_deep.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/comment.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/comment_single.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/complex.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/complex_key.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/empty.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/list.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/list_comma.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/multiple.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/old.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/structure.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/structure_basic.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/structure_empty.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/test-fixtures/types.hcl
-gopkg/src/github.com/hashicorp/hcl/hcl/token/position.go
-gopkg/src/github.com/hashicorp/hcl/hcl/token/token.go
-gopkg/src/github.com/hashicorp/hcl/hcl/token/token_test.go
-gopkg/src/github.com/hashicorp/hcl/hcl_test.go
-gopkg/src/github.com/hashicorp/hcl/json/parser/flatten.go
-gopkg/src/github.com/hashicorp/hcl/json/parser/parser.go
-gopkg/src/github.com/hashicorp/hcl/json/parser/parser_test.go
-gopkg/src/github.com/hashicorp/hcl/json/parser/test-fixtures/array.json
-gopkg/src/github.com/hashicorp/hcl/json/parser/test-fixtures/basic.json
-gopkg/src/github.com/hashicorp/hcl/json/parser/test-fixtures/object.json
-gopkg/src/github.com/hashicorp/hcl/json/parser/test-fixtures/types.json
-gopkg/src/github.com/hashicorp/hcl/json/scanner/scanner.go
-gopkg/src/github.com/hashicorp/hcl/json/scanner/scanner_test.go
-gopkg/src/github.com/hashicorp/hcl/json/test-fixtures/array.json
-gopkg/src/github.com/hashicorp/hcl/json/test-fixtures/basic.json
-gopkg/src/github.com/hashicorp/hcl/json/test-fixtures/object.json
-gopkg/src/github.com/hashicorp/hcl/json/test-fixtures/types.json
-gopkg/src/github.com/hashicorp/hcl/json/token/position.go
-gopkg/src/github.com/hashicorp/hcl/json/token/token.go
-gopkg/src/github.com/hashicorp/hcl/json/token/token_test.go
-gopkg/src/github.com/hashicorp/hcl/lex.go
-gopkg/src/github.com/hashicorp/hcl/lex_test.go
-gopkg/src/github.com/hashicorp/hcl/parse.go
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/basic.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/basic.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/basic_int_string.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/basic_squish.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/decode_policy.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/decode_policy.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/empty.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/escape.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/flat.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/float.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/float.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/interpolate_escape.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/multiline.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/multiline.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/multiline_bad.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/multiline_indented.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/multiline_no_eof.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/multiline_no_hanging_indent.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/multiline_no_marker.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/nested_block_comment.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/nested_provider_bad.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/object_list.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/scientific.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/scientific.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/slice_expand.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure2.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure2.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure_flat.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure_flatmap.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure_list.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure_list.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure_list_deep.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure_multi.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/structure_multi.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.json
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/tfvars.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/unterminated_block_comment.hcl
-gopkg/src/github.com/hashicorp/hcl/test-fixtures/unterminated_brace.hcl
-gopkg/src/github.com/hashicorp/hcl/testhelper/unix2dos.go
-@pkgdir bin
diff --git a/lang/go-hcl/buildlink3.mk b/lang/go-hcl/buildlink3.mk
deleted file mode 100644
index 0bdececb605..00000000000
--- a/lang/go-hcl/buildlink3.mk
+++ /dev/null
@@ -1,16 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.2 2017/08/25 16:49:14 jperkin Exp $
-
-BUILDLINK_TREE+= go-hcl
-
-.if !defined(GO_HCL_BUILDLINK3_MK)
-GO_HCL_BUILDLINK3_MK:=
-
-BUILDLINK_CONTENTS_FILTER.go-hcl= ${EGREP} gopkg/
-BUILDLINK_DEPMETHOD.go-hcl?= build
-
-BUILDLINK_API_DEPENDS.go-hcl+= go-hcl>=0.0
-BUILDLINK_PKGSRCDIR.go-hcl?= ../../lang/go-hcl
-
-.endif # GO_HCL_BUILDLINK3_MK
-
-BUILDLINK_TREE+= -go-hcl
diff --git a/lang/go-hcl/distinfo b/lang/go-hcl/distinfo
deleted file mode 100644
index 268dceabbfc..00000000000
--- a/lang/go-hcl/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.1 2017/08/17 02:02:39 gavan Exp $
-
-SHA1 (hcl-0.0.20160616-d7400db7143f8e869812e50a53acd6c8d92af3b8.tar.gz) = fc81abad5e3001dc7ae1b75d09c8b3fc6aa1dcc9
-RMD160 (hcl-0.0.20160616-d7400db7143f8e869812e50a53acd6c8d92af3b8.tar.gz) = 12f9c7f06fd88b2b3e8609409f3c526f14741708
-SHA512 (hcl-0.0.20160616-d7400db7143f8e869812e50a53acd6c8d92af3b8.tar.gz) = f2ad913f0319ec34ce2294d76f0663fabeda440b9d61270fb37fdea7a5dcb4a51131eef9e14053b8352b946529c6eb2493b22a56ea14f0abfec7acebd044304c
-Size (hcl-0.0.20160616-d7400db7143f8e869812e50a53acd6c8d92af3b8.tar.gz) = 60934 bytes