pkgsrc-WIP-changes archive

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

Import llgo-4.0.0nb20160911 as wip/llgo-git.



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Sun Sep 11 13:25:25 2016 +0200
Changeset:	a310e574b9a1070e96e8abe5101c17138ea51edf

Added Files:
	llgo-git/DESCR
	llgo-git/Makefile
	llgo-git/PLIST
	llgo-git/buildlink3.mk
	llgo-git/distinfo

Log Message:
Import llgo-4.0.0nb20160911 as wip/llgo-git.

llgo is a Go (http://golang.org) frontend for LLVM, written in Go.

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

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

diffstat:
 llgo-git/DESCR         |  1 +
 llgo-git/Makefile      | 32 ++++++++++++++++++++++++++++++++
 llgo-git/PLIST         | 39 +++++++++++++++++++++++++++++++++++++++
 llgo-git/buildlink3.mk | 14 ++++++++++++++
 llgo-git/distinfo      | 14 ++++++++++++++
 5 files changed, 100 insertions(+)

diffs:
diff --git a/llgo-git/DESCR b/llgo-git/DESCR
new file mode 100644
index 0000000..573f455
--- /dev/null
+++ b/llgo-git/DESCR
@@ -0,0 +1 @@
+llgo is a Go (http://golang.org) frontend for LLVM, written in Go.
diff --git a/llgo-git/Makefile b/llgo-git/Makefile
new file mode 100644
index 0000000..5c614d7
--- /dev/null
+++ b/llgo-git/Makefile
@@ -0,0 +1,32 @@
+# $NetBSD: Makefile.common,v 1.7 2015/07/20 05:49:53 adam Exp $
+
+PKGNAME=	llgo-4.0.0
+CATEGORIES=	devel
+
+GIT_REPOSITORIES=	llgo
+GIT_REPO.llgo=		git://github.com/llvm-mirror/llgo.git
+
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=	http://lld.llvm.org/
+COMMENT=	Go frontend for LLVM, written in Go
+LICENSE=	modified-bsd
+
+WRKSRC=			${WRKDIR}/${PKGBASE}
+CONFIGURE_DIRS=		${WRKDIR}/build
+CMAKE_ARG_PATH=		${WRKSRC}
+
+USE_LANGUAGES=		c c++
+USE_CMAKE=		yes
+GCC_REQD+=		4.8
+
+CMAKE_ARGS+=	-DCMAKE_BUILD_TYPE=Release
+CMAKE_ARGS+=	-DCMAKE_C_COMPILER=${CC:Q}
+CMAKE_ARGS+=	-DCMAKE_CXX_COMPILER=${CXX:Q}
+
+post-extract:
+	${RUN} mkdir -p ${WRKDIR}/build
+
+DEPENDS+=	llvm-${PKGVERSION_NOREV}{,nb*}:../../wip/llvm-git
+.include "../../wip/llvm-git/buildlink3.mk"
+.include "../../wip/mk/git-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/llgo-git/PLIST b/llgo-git/PLIST
new file mode 100644
index 0000000..4e02bf6
--- /dev/null
+++ b/llgo-git/PLIST
@@ -0,0 +1,39 @@
+@comment $NetBSD$
+bin/ld.lld
+bin/lld
+bin/lld-link
+include/lld/Config/Version.h
+include/lld/Core/AbsoluteAtom.h
+include/lld/Core/ArchiveLibraryFile.h
+include/lld/Core/Atom.h
+include/lld/Core/DefinedAtom.h
+include/lld/Core/Error.h
+include/lld/Core/File.h
+include/lld/Core/Instrumentation.h
+include/lld/Core/LLVM.h
+include/lld/Core/LinkingContext.h
+include/lld/Core/Node.h
+include/lld/Core/Parallel.h
+include/lld/Core/Pass.h
+include/lld/Core/PassManager.h
+include/lld/Core/Reader.h
+include/lld/Core/Reference.h
+include/lld/Core/Reproduce.h
+include/lld/Core/Resolver.h
+include/lld/Core/SharedLibraryAtom.h
+include/lld/Core/SharedLibraryFile.h
+include/lld/Core/Simple.h
+include/lld/Core/SymbolTable.h
+include/lld/Core/UndefinedAtom.h
+include/lld/Core/Writer.h
+include/lld/Driver/Driver.h
+include/lld/ReaderWriter/MachOLinkingContext.h
+include/lld/ReaderWriter/YamlContext.h
+lib/liblldCOFF.a
+lib/liblldConfig.a
+lib/liblldCore.a
+lib/liblldDriver.a
+lib/liblldELF.a
+lib/liblldMachO.a
+lib/liblldReaderWriter.a
+lib/liblldYAML.a
diff --git a/llgo-git/buildlink3.mk b/llgo-git/buildlink3.mk
new file mode 100644
index 0000000..98c67fd
--- /dev/null
+++ b/llgo-git/buildlink3.mk
@@ -0,0 +1,14 @@
+# $NetBSD$
+
+BUILDLINK_TREE+=	lld
+
+.if !defined(LLD_BUILDLINK3_MK)
+LLD_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.lld+=	lld>=4.0.0nb20160910
+BUILDLINK_PKGSRCDIR.lld?=	../../wip/lld-git
+
+.include "../../wip/llvm-git/buildlink3.mk"
+.endif	# LLD_BUILDLINK3_MK
+
+BUILDLINK_TREE+=	-lld
diff --git a/llgo-git/distinfo b/llgo-git/distinfo
new file mode 100644
index 0000000..7931384
--- /dev/null
+++ b/llgo-git/distinfo
@@ -0,0 +1,14 @@
+$NetBSD: distinfo,v 1.35 2015/09/11 01:21:57 tnn Exp $
+
+SHA1 (cfe-3.6.2.src.tar.xz) = 7ba809c9c17819a16b668640a642ed134d7052f0
+RMD160 (cfe-3.6.2.src.tar.xz) = 10d913b4d5317f8c2520e5fc6117df30937317a8
+Size (cfe-3.6.2.src.tar.xz) = 8617576 bytes
+SHA1 (compiler-rt-3.6.2.src.tar.xz) = c6c52d2923a60f1a2ca2f22fea1770fd2e25728d
+RMD160 (compiler-rt-3.6.2.src.tar.xz) = 9b68a32d49d4bef4603d550934192f39fea42895
+Size (compiler-rt-3.6.2.src.tar.xz) = 1128080 bytes
+SHA1 (libcxx-3.6.2.src.tar.xz) = 6c5aee9f05ecf17d1e3ecb1add34a33a5a904469
+RMD160 (libcxx-3.6.2.src.tar.xz) = 42b8832d01d4e6b553babc93cb5dbd4ce2bb1931
+Size (libcxx-3.6.2.src.tar.xz) = 944020 bytes
+SHA1 (llvm-3.6.2.src.tar.xz) = 7a00257eb2bc9431e4c77c3a36b033072c54bc7e
+RMD160 (llvm-3.6.2.src.tar.xz) = 521cbc5fe2925ea3c6e90c7a31f752a04045c972
+Size (llvm-3.6.2.src.tar.xz) = 12802380 bytes


Home | Main Index | Thread Index | Old Index