pkgsrc-WIP-changes archive

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

Import go-flac-eaburns-20170903 to wip



Module Name:	pkgsrc-wip
Committed By:	K.I.A.Derouiche <kamel.derouiche%gmail.com@localhost>
Pushed By:	jihbed
Date:		Wed Jan 6 11:50:13 2021 +0100
Changeset:	8b2d8cd766eeb98a3b81a6e1d8c0d380345cdaee

Modified Files:
	Makefile
Added Files:
	go-flac-eaburns/DESCR
	go-flac-eaburns/Makefile
	go-flac-eaburns/PLIST
	go-flac-eaburns/buildlink3.mk
	go-flac-eaburns/distinfo

Log Message:
Import go-flac-eaburns-20170903 to wip

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

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

diffstat:
 Makefile                      |  1 +
 go-flac-eaburns/DESCR         | 10 ++++++++++
 go-flac-eaburns/Makefile      | 20 ++++++++++++++++++++
 go-flac-eaburns/PLIST         | 12 ++++++++++++
 go-flac-eaburns/buildlink3.mk | 17 +++++++++++++++++
 go-flac-eaburns/distinfo      |  6 ++++++
 6 files changed, 66 insertions(+)

diffs:
diff --git a/Makefile b/Makefile
index 181ed75e8e..f74c8933f5 100644
--- a/Makefile
+++ b/Makefile
@@ -1181,6 +1181,7 @@ SUBDIR+=	go-collectd
 SUBDIR+=	go-color
 SUBDIR+=	go-cyclo
 SUBDIR+=	go-dotenv
+SUBDIR+=	go-flac
 SUBDIR+=	go-flags
 SUBDIR+=	go-fsnotify
 SUBDIR+=	go-ghodss-yaml
diff --git a/go-flac-eaburns/DESCR b/go-flac-eaburns/DESCR
new file mode 100644
index 0000000000..215ca01d02
--- /dev/null
+++ b/go-flac-eaburns/DESCR
@@ -0,0 +1,10 @@
+TODO: Adjust the following lines from README.md
+
+Flac
+====
+A Free Lossless Audio Codec decoder in Go.
+
+Usage
+=====
+For the moment, you can decode foo.flac using:
+go run main.go < foo.flac
diff --git a/go-flac-eaburns/Makefile b/go-flac-eaburns/Makefile
new file mode 100644
index 0000000000..8265edafa0
--- /dev/null
+++ b/go-flac-eaburns/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD$
+
+DISTNAME=	flac-eaburns-20170903
+PKGNAME=	go-${DISTNAME}
+GITHUB_PROJECT=	flac
+GITHUB_TAG=	9a6fb92396d1ba6412b82819435dca0b46f959fb
+CATEGORIES=	audio
+MASTER_SITES=	${MASTER_SITE_GITHUB:=eaburns/}
+
+MAINTAINER=	kamelderouiche%yahoo.com@localhost
+HOMEPAGE=	https://github.com/eaburns/flac/
+COMMENT=	Free Lossless Audio Codec decoder in Go
+LICENSE=	mit
+
+GO_DIST_BASE=   ${GITHUB_PROJECT}-${GITHUB_TAG}
+GO_SRCPATH=     github.com/eaburns/${GITHUB_PROJECT}
+
+.include "../../wip/go-bit/buildlink3.mk"
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/go-flac-eaburns/PLIST b/go-flac-eaburns/PLIST
new file mode 100644
index 0000000000..b5bdcc08a0
--- /dev/null
+++ b/go-flac-eaburns/PLIST
@@ -0,0 +1,12 @@
+@comment $NetBSD$
+gopkg/pkg/${GO_PLATFORM}/github.com/eaburns/flac.a
+gopkg/src/github.com/eaburns/flac/AUTHORS
+gopkg/src/github.com/eaburns/flac/LICENSE
+gopkg/src/github.com/eaburns/flac/README.md
+gopkg/src/github.com/eaburns/flac/crc.go
+gopkg/src/github.com/eaburns/flac/decode.go
+gopkg/src/github.com/eaburns/flac/decode_test.go
+gopkg/src/github.com/eaburns/flac/gok.sh
+gopkg/src/github.com/eaburns/flac/golintignore
+gopkg/src/github.com/eaburns/flac/main.go
+gopkg/src/github.com/eaburns/flac/utf8.go
diff --git a/go-flac-eaburns/buildlink3.mk b/go-flac-eaburns/buildlink3.mk
new file mode 100644
index 0000000000..bc89de6ec2
--- /dev/null
+++ b/go-flac-eaburns/buildlink3.mk
@@ -0,0 +1,17 @@
+# $NetBSD$
+
+BUILDLINK_TREE+=	go-flac-eaburns
+
+.if !defined(GO_FLAC_EABURNS_BUILDLINK3_MK)
+GO_FLAC_EABURNS_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-flac-eaburns=	${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-flac-eaburns?=		build
+
+BUILDLINK_API_DEPENDS.go-flac-eaburns+=	go-flac-eaburns>=20170903
+BUILDLINK_PKGSRCDIR.go-flac-eaburns?=	../../wip/go-flac-eaburns
+
+.include "../../wip/go-bit/buildlink3.mk"
+.endif	# GO_FLAC_EABURNS_BUILDLINK3_MK
+
+BUILDLINK_TREE+=	-go-flac-eaburns
diff --git a/go-flac-eaburns/distinfo b/go-flac-eaburns/distinfo
new file mode 100644
index 0000000000..192c1d3054
--- /dev/null
+++ b/go-flac-eaburns/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (flac-eaburns-20170903-9a6fb92396d1ba6412b82819435dca0b46f959fb.tar.gz) = 443601064fd6ab045a3d4e0bcc319335c844108e
+RMD160 (flac-eaburns-20170903-9a6fb92396d1ba6412b82819435dca0b46f959fb.tar.gz) = 5109d52b39563944ac20ce0b16f31c1e05b1d2d9
+SHA512 (flac-eaburns-20170903-9a6fb92396d1ba6412b82819435dca0b46f959fb.tar.gz) = aa571f6721d3b018bfe1d46091f12063c57ccfb6d12a114d52a9f927aafddfbcb016711faf7786c549c575bd17be18eeaa3f5d21154bc6f81b7b4c1e2e44d922
+Size (flac-eaburns-20170903-9a6fb92396d1ba6412b82819435dca0b46f959fb.tar.gz) = 9826 bytes


Home | Main Index | Thread Index | Old Index