pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel



Module Name:    pkgsrc
Committed By:   nikita
Date:           Tue Apr 28 13:14:21 UTC 2020

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

Log Message:
Add devel/go-gospel Version 0.0.20200416

Imported from wip.

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 generate a diff of this commit:
cvs rdiff -u -r1.3114 -r1.3115 pkgsrc/devel/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/go-gospel/DESCR \
    pkgsrc/devel/go-gospel/Makefile pkgsrc/devel/go-gospel/PLIST \
    pkgsrc/devel/go-gospel/buildlink3.mk pkgsrc/devel/go-gospel/distinfo

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

Modified files:

Index: pkgsrc/devel/Makefile
diff -u pkgsrc/devel/Makefile:1.3114 pkgsrc/devel/Makefile:1.3115
--- pkgsrc/devel/Makefile:1.3114        Tue Apr 28 09:42:47 2020
+++ pkgsrc/devel/Makefile       Tue Apr 28 13:14:21 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3114 2020/04/28 09:42:47 adam Exp $
+# $NetBSD: Makefile,v 1.3115 2020/04/28 13:14:21 nikita Exp $
 #
 
 COMMENT=       Development utilities
@@ -414,6 +414,7 @@ SUBDIR+=    go-goorgeous
 SUBDIR+=       go-gopkgs
 SUBDIR+=       go-goptlib
 SUBDIR+=       go-goreturns
+SUBDIR+=       go-gospel
 SUBDIR+=       go-gox
 SUBDIR+=       go-hashstructure
 SUBDIR+=       go-homedir

Added files:

Index: pkgsrc/devel/go-gospel/DESCR
diff -u /dev/null pkgsrc/devel/go-gospel/DESCR:1.1
--- /dev/null   Tue Apr 28 13:14:21 2020
+++ pkgsrc/devel/go-gospel/DESCR        Tue Apr 28 13:14:21 2020
@@ -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
Index: pkgsrc/devel/go-gospel/Makefile
diff -u /dev/null pkgsrc/devel/go-gospel/Makefile:1.1
--- /dev/null   Tue Apr 28 13:14:21 2020
+++ pkgsrc/devel/go-gospel/Makefile     Tue Apr 28 13:14:21 2020
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2020/04/28 13:14:21 nikita Exp $
+
+DISTNAME=      go-gospel-0.0.20200416
+CATEGORIES=    devel
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=bfix/}
+GITHUB_TAG=    1d04e847bea4171138af65e5dbba9c8376fd7795
+GITHUB_PROJECT=        gospel
+
+MAINTAINER=    nikita%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"
Index: pkgsrc/devel/go-gospel/PLIST
diff -u /dev/null pkgsrc/devel/go-gospel/PLIST:1.1
--- /dev/null   Tue Apr 28 13:14:21 2020
+++ pkgsrc/devel/go-gospel/PLIST        Tue Apr 28 13:14:21 2020
@@ -0,0 +1,109 @@
+@comment $NetBSD: PLIST,v 1.1 2020/04/28 13:14:21 nikita Exp $
+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/concurrent.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/concurrent/signal.go
+gopkg/src/github.com/bfix/gospel/concurrent/signal_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/logger/log_test.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
Index: pkgsrc/devel/go-gospel/buildlink3.mk
diff -u /dev/null pkgsrc/devel/go-gospel/buildlink3.mk:1.1
--- /dev/null   Tue Apr 28 13:14:21 2020
+++ pkgsrc/devel/go-gospel/buildlink3.mk        Tue Apr 28 13:14:21 2020
@@ -0,0 +1,18 @@
+# $NetBSD: buildlink3.mk,v 1.1 2020/04/28 13:14:21 nikita Exp $
+
+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.20200416
+BUILDLINK_PKGSRCDIR.go-gospel?=                ../../devel/go-gospel
+
+.include "../../security/go-crypto/buildlink3.mk"
+.include "../../textproc/go-text/buildlink3.mk"
+.endif  # GO_GOSPEL_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -go-gospel
Index: pkgsrc/devel/go-gospel/distinfo
diff -u /dev/null pkgsrc/devel/go-gospel/distinfo:1.1
--- /dev/null   Tue Apr 28 13:14:21 2020
+++ pkgsrc/devel/go-gospel/distinfo     Tue Apr 28 13:14:21 2020
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/04/28 13:14:21 nikita Exp $
+
+SHA1 (go-gospel-0.0.20200416-1d04e847bea4171138af65e5dbba9c8376fd7795.tar.gz) = bd58e444412b053fb9762eb32b57ff09b358523b
+RMD160 (go-gospel-0.0.20200416-1d04e847bea4171138af65e5dbba9c8376fd7795.tar.gz) = 1c76c95fb0f03f10b3e3521bb37560772d39a014
+SHA512 (go-gospel-0.0.20200416-1d04e847bea4171138af65e5dbba9c8376fd7795.tar.gz) = 
14aaf0b9d7239638a71a036fbd7290fbc6d3b8c8fda1b42bcd0a7731bb103268f755827f05f341ff6b82eb125a16789c11c3e51f4e1241b86735f4abdf5cdb85
+Size (go-gospel-0.0.20200416-1d04e847bea4171138af65e5dbba9c8376fd7795.tar.gz) = 888299 bytes



Home | Main Index | Thread Index | Old Index