forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.0
- Loading branch information
Sergei Trofimovich
committed
Jul 30, 2016
1 parent
bfe7e11
commit 455daa7
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST shards-0.6.1.tar.gz 26505 SHA256 8e7d179a499a2fca895b534c6204e2e34828e6a645e48f83f08fbefcd6a03951 SHA512 fc1e32cf459a5c448ef780601b9515cd331fc40d3f6f0666e71e218a62e202e0d4f642f5e82660529d24145a5ed5f5cbf2fdc6fc251421850d9c7ac1ebcf4d07 WHIRLPOOL 0bf8ef2de47b6dd6be728c489b7ac9ff8101a51329d956ac2d1ad21ac9322442646d624b5b6e9baee5f1738326e3a5e039b94b5057ce6a2a5223a04db226b5a6 | ||
DIST shards-0.6.2.tar.gz 26589 SHA256 11d22086d736598efa87eea558e7b304d538372f017fce9bb21476e40c586110 SHA512 baeebe496ea52c93313e9a550a8f1dda225674ca49e9e2b2660b059a8e7cd6a148085d33d5c70a46d2d4c7db9260f841a634c079cc590576a6d98c9308fb1100 WHIRLPOOL 944c3265aab2a7dc2e9261f68ea250b77f16ce16dd8fead8521ae367edd41b7998b624db6b1526759da60b52f6a6f02d710f9657021dd4e9ea494248ab620b6d | ||
DIST shards-0.6.3.tar.gz 26826 SHA256 5245aebb21af0a5682123732e4f4d476e7aa6910252fb3ffe4be60ee8df03ac2 SHA512 c9ef7f41dc1feb223fbaa22bc60546a6152eae44ecead6afc3ca5ed68ffb8640444efdf7817dc77f6507200993b6213293e24e006ebb483e804342b877d81c78 WHIRLPOOL 4863edf4f12871e16378a0e0854c508e7daae63ffebbeb1e0b37ba6e2d80ddd1121ae10ae8724505a49ae40bfb371c875acff9231c16a1d447d6d1573dd385f1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,10 @@ | |
<email>[email protected]</email> | ||
<name>Lixiao Chen</name> | ||
</maintainer> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Sergei Trofimovich</name> | ||
</maintainer> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo Proxy Maintainers Project</name> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/crystal-lang/shards" | ||
SRC_URI="https://github.com/crystal-lang/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 | ||
} |