pkgsrc-WIP-changes archive

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

go-gospel: Import as wip/go-gospel version 0.0.20190922



Module Name:	pkgsrc-wip
Committed By:	ng0 <ng0%NetBSD.org@localhost>
Pushed By:	ng0
Date:		Fri Dec 13 13:50:54 2019 +0000
Changeset:	7bb5d5af33e2430b88fac8ecd027f072dd38b416

Added Files:
	go-gospel/DESCR
	go-gospel/Makefile
	go-gospel/PLIST
	go-gospel/buildlink3.mk
	go-gospel/distinfo

Log Message:
go-gospel: Import as wip/go-gospel version 0.0.20190922

Gospel ("GO SPEcial Library") is a Go library which includes the
following packages:
- gospel/parser: Read/access/write nested data structures
- gospel/network: Network-related functionality, services, packet
  handling, TOR, SOCKS5 connection handler, SMTP/POP3 mail handling
- gospel/bitcoin: Elliptic curve crypto (Secp256k1), Bitcoin
  addresses, key exchange, raw transactions, hash functions (Hash160,
  Hash256), base58 encoding
- gospel/bitcoin/wallet: HD key space, BIP39 seed words
- gospel/bitcoin/rpc: JSON-RPC to Bitcoin server
- gospel/bitcoin/script: Bitcoin script parser/interpreter
- gospel/math: Mathematical helpers, Fast Fourier Transformation,
  Arbitrary precision integers with chainable methods
- gospel/crypto: cryptographic helpers, secret sharing, prime fields,
  PRNG, Paillier crypto scheme, cryptographic counters
- gospel/logger: logging facilities
- gospel/data: useful data structures like stacks, vectors,
  Marshal/Unmarshal Golang objects, Bloom filter

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=7bb5d5af33e2430b88fac8ecd027f072dd38b416

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 go-gospel/DESCR         |  18 +++++++++
 go-gospel/Makefile      |  20 +++++++++
 go-gospel/PLIST         | 105 ++++++++++++++++++++++++++++++++++++++++++++++++
 go-gospel/buildlink3.mk |  18 +++++++++
 go-gospel/distinfo      |   6 +++
 5 files changed, 167 insertions(+)

diffs:
diff --git a/go-gospel/DESCR b/go-gospel/DESCR
new file mode 100644
index 0000000000..a2625efc6e
--- /dev/null
+++ b/go-gospel/DESCR
@@ -0,0 +1,18 @@
+Gospel ("GO SPEcial Library") is a Go library which includes the
+following packages:
+- gospel/parser: Read/access/write nested data structures
+- gospel/network: Network-related functionality, services, packet
+  handling, TOR, SOCKS5 connection handler, SMTP/POP3 mail handling
+- gospel/bitcoin: Elliptic curve crypto (Secp256k1), Bitcoin
+  addresses, key exchange, raw transactions, hash functions (Hash160,
+  Hash256), base58 encoding
+- gospel/bitcoin/wallet: HD key space, BIP39 seed words
+- gospel/bitcoin/rpc: JSON-RPC to Bitcoin server
+- gospel/bitcoin/script: Bitcoin script parser/interpreter
+- gospel/math: Mathematical helpers, Fast Fourier Transformation,
+  Arbitrary precision integers with chainable methods
+- gospel/crypto: cryptographic helpers, secret sharing, prime fields,
+  PRNG, Paillier crypto scheme, cryptographic counters
+- gospel/logger: logging facilities
+- gospel/data: useful data structures like stacks, vectors,
+  Marshal/Unmarshal Golang objects, Bloom filter
diff --git a/go-gospel/Makefile b/go-gospel/Makefile
new file mode 100644
index 0000000000..652293286a
--- /dev/null
+++ b/go-gospel/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD$
+
+DISTNAME=	go-gospel-0.0.20190922
+CATEGORIES=	devel
+MASTER_SITES=	${MASTER_SITE_GITHUB:=bfix/}
+GITHUB_TAG=	6fcd6d4
+GITHUB_PROJECT=	gospel
+
+MAINTAINER=	ng0%NetBSD.org@localhost
+HOMEPAGE=	https://github.com/bfix/gospel/
+COMMENT=	GO SPEcial Library
+LICENSE=	gnu-gpl-v3
+
+GO_SRCPATH=	github.com/bfix/gospel
+GO_DIST_BASE=	gospel-${GITHUB_TAG}*
+
+.include "../../security/go-crypto/buildlink3.mk"
+.include "../../textproc/go-text/buildlink3.mk"
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/go-gospel/PLIST b/go-gospel/PLIST
new file mode 100644
index 0000000000..e49833994d
--- /dev/null
+++ b/go-gospel/PLIST
@@ -0,0 +1,105 @@
+@comment $NetBSD$
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/bitcoin.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/bitcoin/rpc.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/bitcoin/script.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/bitcoin/wallet.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/crypto.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/crypto/ed25519.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/data.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/logger.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/math.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/network.a
+gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/parser.a
+gopkg/src/github.com/bfix/gospel/LICENSE
+gopkg/src/github.com/bfix/gospel/README.md
+gopkg/src/github.com/bfix/gospel/bitcoin/addr.go
+gopkg/src/github.com/bfix/gospel/bitcoin/addr_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/base58.go
+gopkg/src/github.com/bfix/gospel/bitcoin/base58_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/curve.go
+gopkg/src/github.com/bfix/gospel/bitcoin/curve_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/doc.go
+gopkg/src/github.com/bfix/gospel/bitcoin/engine.go
+gopkg/src/github.com/bfix/gospel/bitcoin/engine_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/exchange.go
+gopkg/src/github.com/bfix/gospel/bitcoin/exchange_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/hash.go
+gopkg/src/github.com/bfix/gospel/bitcoin/keys.go
+gopkg/src/github.com/bfix/gospel/bitcoin/keys_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/raw.go
+gopkg/src/github.com/bfix/gospel/bitcoin/raw_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/block.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/block_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/doc.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/local.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/local_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/node.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/node_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/script.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/script_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/session.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/session_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/transaction.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/transaction_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/types.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/wallet.go
+gopkg/src/github.com/bfix/gospel/bitcoin/rpc/wallet_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/script/opcodes.go
+gopkg/src/github.com/bfix/gospel/bitcoin/script/run.go
+gopkg/src/github.com/bfix/gospel/bitcoin/script/run_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/script/script.go
+gopkg/src/github.com/bfix/gospel/bitcoin/script/script_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/script/stack.go
+gopkg/src/github.com/bfix/gospel/bitcoin/wallet/coins.go
+gopkg/src/github.com/bfix/gospel/bitcoin/wallet/hd.go
+gopkg/src/github.com/bfix/gospel/bitcoin/wallet/hd_test.go
+gopkg/src/github.com/bfix/gospel/bitcoin/wallet/seed.go
+gopkg/src/github.com/bfix/gospel/bitcoin/wallet/seed_test.go
+gopkg/src/github.com/bfix/gospel/crypto/counter.go
+gopkg/src/github.com/bfix/gospel/crypto/counter_test.go
+gopkg/src/github.com/bfix/gospel/crypto/doc.go
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/curve.go
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/curve_test.go
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/doc.go
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/keys.go
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/keys_test.go
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/signature.go
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/signature_test.go
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/signature_test.json
+gopkg/src/github.com/bfix/gospel/crypto/ed25519/util.go
+gopkg/src/github.com/bfix/gospel/crypto/openpgp.go
+gopkg/src/github.com/bfix/gospel/crypto/paillier.go
+gopkg/src/github.com/bfix/gospel/crypto/paillier_test.go
+gopkg/src/github.com/bfix/gospel/crypto/prime_field.go
+gopkg/src/github.com/bfix/gospel/crypto/shared_secret.go
+gopkg/src/github.com/bfix/gospel/crypto/shared_secret_test.go
+gopkg/src/github.com/bfix/gospel/data/bloomfilter.go
+gopkg/src/github.com/bfix/gospel/data/bloomfilter_test.go
+gopkg/src/github.com/bfix/gospel/data/doc.go
+gopkg/src/github.com/bfix/gospel/data/marshal.go
+gopkg/src/github.com/bfix/gospel/data/marshal_test.go
+gopkg/src/github.com/bfix/gospel/data/stack.go
+gopkg/src/github.com/bfix/gospel/data/stack_test.go
+gopkg/src/github.com/bfix/gospel/data/vector.go
+gopkg/src/github.com/bfix/gospel/data/vector_test.go
+gopkg/src/github.com/bfix/gospel/go.mod
+gopkg/src/github.com/bfix/gospel/go.sum
+gopkg/src/github.com/bfix/gospel/logger/log.go
+gopkg/src/github.com/bfix/gospel/math/fft.go
+gopkg/src/github.com/bfix/gospel/math/fft_test.go
+gopkg/src/github.com/bfix/gospel/math/int.go
+gopkg/src/github.com/bfix/gospel/math/int_test.go
+gopkg/src/github.com/bfix/gospel/network/.gitignore
+gopkg/src/github.com/bfix/gospel/network/doc.go
+gopkg/src/github.com/bfix/gospel/network/net.go
+gopkg/src/github.com/bfix/gospel/network/pop3.go
+gopkg/src/github.com/bfix/gospel/network/service.go
+gopkg/src/github.com/bfix/gospel/network/smtp.go
+gopkg/src/github.com/bfix/gospel/network/socks.go
+gopkg/src/github.com/bfix/gospel/network/tor.go
+gopkg/src/github.com/bfix/gospel/network/util.go
+gopkg/src/github.com/bfix/gospel/parser/data.go
+gopkg/src/github.com/bfix/gospel/parser/data_test.go
+gopkg/src/github.com/bfix/gospel/parser/doc.go
+gopkg/src/github.com/bfix/gospel/parser/parser.go
+gopkg/src/github.com/bfix/gospel/parser/parser_test.go
diff --git a/go-gospel/buildlink3.mk b/go-gospel/buildlink3.mk
new file mode 100644
index 0000000000..dc55e8c87d
--- /dev/null
+++ b/go-gospel/buildlink3.mk
@@ -0,0 +1,18 @@
+# $NetBSD$
+
+BUILDLINK_TREE+=        go-gospel
+
+.if !defined(GO_GOSPEL_BUILDLINK3_MK)
+GO_GOSPEL_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-gospel=    ${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-gospel?=         build
+
+BUILDLINK_API_DEPENDS.go-gospel+=       go-gospel>=0.0.20190922
+BUILDLINK_PKGSRCDIR.go-gospel?=         ../../wip/go-gospel
+
+.include "../../security/go-crypto/buildlink3.mk"
+.include "../../textproc/go-text/buildlink3.mk"
+.endif  # GO_GOSPEL_BUILDLINK3_MK
+
+BUILDLINK_TREE+=        -go-gospel
diff --git a/go-gospel/distinfo b/go-gospel/distinfo
new file mode 100644
index 0000000000..f022eebcef
--- /dev/null
+++ b/go-gospel/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (go-gospel-0.0.20190922-6fcd6d4.tar.gz) = dc7038d8f891e4c60ca19c7883aee9734e44b756
+RMD160 (go-gospel-0.0.20190922-6fcd6d4.tar.gz) = 56b581713ea2a6377605ffee7a08a518159b25f5
+SHA512 (go-gospel-0.0.20190922-6fcd6d4.tar.gz) = d4fd581773b7ffffa60188ebd1c473a7b0de7759f1415e5caf686a2165734de7f9f9fd24f559caeff78f0ed5388f317043fd3a9ac7ca48918b5a1b99f8d6d7ca
+Size (go-gospel-0.0.20190922-6fcd6d4.tar.gz) = 885374 bytes


Home | Main Index | Thread Index | Old Index