dev-util/shards: Introduce new package
authorloong0 <longlene@gmail.com>
Mon, 22 Feb 2016 06:18:13 +0000 (14:18 +0800)
committerloong0 <longlene@gmail.com>
Mon, 22 Feb 2016 16:06:44 +0000 (00:06 +0800)
Dependency manager for the Crystal language

dev-util/shards/Manifest [new file with mode: 0644]
dev-util/shards/metadata.xml [new file with mode: 0644]
dev-util/shards/shards-0.6.1.ebuild [new file with mode: 0644]

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
new file mode 100644 (file)
index 0000000..687da2c
--- /dev/null
@@ -0,0 +1 @@
+DIST shards-0.6.1.tar.gz 26505 SHA256 8e7d179a499a2fca895b534c6204e2e34828e6a645e48f83f08fbefcd6a03951 SHA512 fc1e32cf459a5c448ef780601b9515cd331fc40d3f6f0666e71e218a62e202e0d4f642f5e82660529d24145a5ed5f5cbf2fdc6fc251421850d9c7ac1ebcf4d07 WHIRLPOOL 0bf8ef2de47b6dd6be728c489b7ac9ff8101a51329d956ac2d1ad21ac9322442646d624b5b6e9baee5f1738326e3a5e039b94b5057ce6a2a5223a04db226b5a6
diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
new file mode 100644 (file)
index 0000000..2bf78bc
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>longlene@gmail.com</email>
+               <name>Lixiao Chen</name>
+       </maintainer>
+       <longdescription lang="en">
+               Dependency manager for the Crystal language
+       </longdescription>
+       <upstream>
+               <remote-id type="github">ysbaddaden/shards</remote-id>
+       </upstream>
+</pkgmetadata>
diff --git a/dev-util/shards/shards-0.6.1.ebuild b/dev-util/shards/shards-0.6.1.ebuild
new file mode 100644 (file)
index 0000000..95311f6
--- /dev/null
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Dependency manager for the Crystal language"
+HOMEPAGE="https://github.com/ysbaddaden/shards"
+SRC_URI="https://github.com/ysbaddaden/shards/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+       >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+src_install() {
+       dobin bin/${PN}
+       dodoc README.md
+}