[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2024-05-01 Thread Sam James
commit: a2868ccc964e993e3e5f7d29251c3e0c141a25f0
Author: Sam James  gentoo  org>
AuthorDate: Wed May  1 16:47:43 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  1 16:47:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2868ccc

dev-util/shards: Stabilize 0.18.0 amd64, #931053

Signed-off-by: Sam James  gentoo.org>

 dev-util/shards/shards-0.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/shards/shards-0.18.0.ebuild 
b/dev-util/shards/shards-0.18.0.ebuild
index 0f0cbfd373dc..d576c99e9684 100644
--- a/dev-util/shards/shards-0.18.0.ebuild
+++ b/dev-util/shards/shards-0.18.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 RESTRICT="test"  # Missing files in the tarball.
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2024-03-30 Thread Maciej Barć
commit: f27e271ea2f7dd8ad6f71431c9e6ec94225ccfc1
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Mar 30 21:33:34 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sat Mar 30 23:09:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f27e271e

dev-util/shards: bump to 0.18.0

Signed-off-by: Maciej Barć  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.18.0.ebuild | 58 
 2 files changed, 59 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 3181bb8fa3d4..e905d42a7e56 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
 DIST shards-0.17.4.tar.gz 73231 BLAKE2B 
8480d6a56fadf1dfac44262fe260365f910ba8004f2361cae5646c2fa77a0e71c46b91c9a707e7b3825ed94a31eb94dc43d16b6d7e1da5efcc52a22ea39a51bb
 SHA512 
82c7f2e4bb9b280a49cfb1a0468b2fe0a551d55b91b74e01d50478ff3b2652b872b225a345f8f7816f5130141603baad96387df2b0df45e7ec79c2d47956c011
+DIST shards-0.18.0.tar.gz 79910 BLAKE2B 
8ca2a79d89f5eb7202a8f86d39817a5d60bababbcc7a02450b30d0e0923b6e6e07db0accdc53b7de1fb9f238db797f8b6737f195666abaae5d208b884c0e86c0
 SHA512 
99f325792ab13bb1301e29b5b9cc09b10bb081c85d5f67e1a2d99b1118e23048630ffb7a8a740924b119f774cf22a8f3f223338a82a5c242460bb68f2eb7

diff --git a/dev-util/shards/shards-0.18.0.ebuild 
b/dev-util/shards/shards-0.18.0.ebuild
new file mode 100644
index ..0f0cbfd373dc
--- /dev/null
+++ b/dev-util/shards/shards-0.18.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV="0.2.0"
+CRYSTAL_MOLINILLO_P="crystal-molinillo-${CRYSTAL_MOLINILLO_PV}"
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
+   -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test"  # Missing files in the tarball.
+
+RDEPEND="
+   >dev-lang/crystal-0.11.1
+   dev-libs/libyaml:=
+"
+DEPEND="
+   ${RDEPEND}
+"
+
+DOCS=( CHANGELOG.md README.md SPEC.md )
+
+QA_PREBUILT=".*"  # Generated by Crystal.
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s "../../${CRYSTAL_MOLINILLO_P}" lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 \
+   FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   exeinto /usr/bin
+   doexe "bin/${PN}"
+
+   doman man/*
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2024-03-30 Thread Maciej Barć
commit: 9b0d57d11f8932d37a4ebf5befc19e60322c3516
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Mar 30 21:29:42 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sat Mar 30 23:09:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b0d57d1

dev-util/shards: drop old 0.17.3

Signed-off-by: Maciej Barć  gentoo.org>

 dev-util/shards/Manifest |  1 -
 dev-util/shards/shards-0.17.3.ebuild | 56 
 2 files changed, 57 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 727cfebab52c..3181bb8fa3d4 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,2 @@
 DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
-DIST shards-0.17.3.tar.gz 72539 BLAKE2B 
2be15469df4b8a53ebd480815487f782717ce9d436cddf6acc2559e4c5dd61f06a1089d34b0a31aab2ab3e5334cd10abe513edd2cbe92b84d0fbd1cfc6cb09e5
 SHA512 
0789cf1fcc0df0f2d7657c034a157f05c0d65ee2c2ecda1f3d8b2d2f1274d584769f8600985fc463bc6632fe0a0822bdc40250aef2a92d1d612d0548ed0f4d2a
 DIST shards-0.17.4.tar.gz 73231 BLAKE2B 
8480d6a56fadf1dfac44262fe260365f910ba8004f2361cae5646c2fa77a0e71c46b91c9a707e7b3825ed94a31eb94dc43d16b6d7e1da5efcc52a22ea39a51bb
 SHA512 
82c7f2e4bb9b280a49cfb1a0468b2fe0a551d55b91b74e01d50478ff3b2652b872b225a345f8f7816f5130141603baad96387df2b0df45e7ec79c2d47956c011

diff --git a/dev-util/shards/shards-0.17.3.ebuild 
b/dev-util/shards/shards-0.17.3.ebuild
deleted file mode 100644
index 7632e49c8393..
--- a/dev-util/shards/shards-0.17.3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit multiprocessing toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.2.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
-   -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-RESTRICT="test"  # missing files in tarball
-
-RDEPEND="
-   >dev-lang/crystal-0.11.1
-   dev-libs/libyaml:=
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( CHANGELOG.md README.md SPEC.md )
-
-QA_PREBUILT=".*"  # Generated by Crystal.
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_compile() {
-   emake release=1 \
-   FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
-}
-
-src_install() {
-   exeinto /usr/bin
-   doexe bin/${PN}
-
-   doman man/*
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2024-01-27 Thread Sam James
commit: 5813684a05da03d8ece8500e775acc9caefb4e50
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 06:49:31 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 06:49:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5813684a

dev-util/shards: Stabilize 0.17.4 amd64, #923058

Signed-off-by: Sam James  gentoo.org>

 dev-util/shards/shards-0.17.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/shards/shards-0.17.4.ebuild 
b/dev-util/shards/shards-0.17.4.ebuild
index 013d311a44fe..586fd199e2e8 100644
--- a/dev-util/shards/shards-0.17.4.ebuild
+++ b/dev-util/shards/shards-0.17.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -19,7 +19,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 RESTRICT="test"  # missing files in tarball
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-12-26 Thread Maciej Barć
commit: a14e2c5e0f721c65399b332b0159ffde0323f29c
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Dec 26 20:57:16 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Dec 27 01:20:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a14e2c5e

dev-util/shards: bump to 0.17.4

Signed-off-by: Maciej Barć  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.17.4.ebuild | 56 
 2 files changed, 57 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 78275916567f..727cfebab52c 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
 DIST shards-0.17.3.tar.gz 72539 BLAKE2B 
2be15469df4b8a53ebd480815487f782717ce9d436cddf6acc2559e4c5dd61f06a1089d34b0a31aab2ab3e5334cd10abe513edd2cbe92b84d0fbd1cfc6cb09e5
 SHA512 
0789cf1fcc0df0f2d7657c034a157f05c0d65ee2c2ecda1f3d8b2d2f1274d584769f8600985fc463bc6632fe0a0822bdc40250aef2a92d1d612d0548ed0f4d2a
+DIST shards-0.17.4.tar.gz 73231 BLAKE2B 
8480d6a56fadf1dfac44262fe260365f910ba8004f2361cae5646c2fa77a0e71c46b91c9a707e7b3825ed94a31eb94dc43d16b6d7e1da5efcc52a22ea39a51bb
 SHA512 
82c7f2e4bb9b280a49cfb1a0468b2fe0a551d55b91b74e01d50478ff3b2652b872b225a345f8f7816f5130141603baad96387df2b0df45e7ec79c2d47956c011

diff --git a/dev-util/shards/shards-0.17.4.ebuild 
b/dev-util/shards/shards-0.17.4.ebuild
new file mode 100644
index ..013d311a44fe
--- /dev/null
+++ b/dev-util/shards/shards-0.17.4.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.2.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
+   -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test"  # missing files in tarball
+
+RDEPEND="
+   >dev-lang/crystal-0.11.1
+   dev-libs/libyaml:=
+"
+DEPEND="${RDEPEND}"
+
+DOCS=( CHANGELOG.md README.md SPEC.md )
+
+QA_PREBUILT=".*"  # Generated by Crystal.
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 \
+   FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   exeinto /usr/bin
+   doexe bin/${PN}
+
+   doman man/*
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-06-25 Thread Maciej Barć
commit: 7f81a8ccef4a97b359e4bae4500376782145127c
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Jun 25 08:03:32 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Jun 25 08:07:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f81a8cc

dev-util/shards: drop old 0.15.0-r1

Closes: https://bugs.gentoo.org/802615
Signed-off-by: Maciej Barć  gentoo.org>

 dev-util/shards/Manifest|  1 -
 dev-util/shards/shards-0.15.0-r1.ebuild | 47 -
 2 files changed, 48 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 8b5c3d536da7..e8e87b17de0b 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,4 +1,3 @@
 DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
-DIST shards-0.15.0.tar.gz 62648 BLAKE2B 
bd36733e4a98fcc4a02038745ac2b838c61109edc593a333ebb35474d5a7ecb2767c8c1a54f7116c76e83fceb59d151813d3dd23e8afc37c29f00e6b879daf3c
 SHA512 
cbd428627c08658213494215db78c94513482aaa54038c159e8fea4819291552eda8a8f6decf5cf90134c89e98ad7fdaee5f666f02df054fb44c703179f428ca
 DIST shards-0.17.2.tar.gz 72048 BLAKE2B 
1aab6e12be7300918d2e39d3c529da852fd7bb085a23fb2b4c089901ca2188d8f707b5c6554d3912d06067c9cae2c559d415636445c771ec9ec620deabe408ed
 SHA512 
a3f4343fb3e7c653f8a61384bc159ae5c1dacc97017c7895f65f425a79bfee0af080abe2a98b7a3f2a7e4b0ee4bfc05db53af724d0ffb09cbde64f848599acd1
 DIST shards-0.17.3.tar.gz 72539 BLAKE2B 
2be15469df4b8a53ebd480815487f782717ce9d436cddf6acc2559e4c5dd61f06a1089d34b0a31aab2ab3e5334cd10abe513edd2cbe92b84d0fbd1cfc6cb09e5
 SHA512 
0789cf1fcc0df0f2d7657c034a157f05c0d65ee2c2ecda1f3d8b2d2f1274d584769f8600985fc463bc6632fe0a0822bdc40250aef2a92d1d612d0548ed0f4d2a

diff --git a/dev-util/shards/shards-0.15.0-r1.ebuild 
b/dev-util/shards/shards-0.15.0-r1.ebuild
deleted file mode 100644
index 114ec2df8040..
--- a/dev-util/shards/shards-0.15.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multiprocessing toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.2.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1
-   dev-libs/libyaml
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_compile() {
-   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-06-25 Thread Maciej Barć
commit: 8d2e62cfe45e87bb369d08afa1ec1bfcd97bd520
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Jun 25 08:04:46 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Jun 25 08:07:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d2e62cf

dev-util/shards: drop old 0.17.2

Signed-off-by: Maciej Barć  gentoo.org>

 dev-util/shards/Manifest |  1 -
 dev-util/shards/shards-0.17.2.ebuild | 56 
 2 files changed, 57 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index e8e87b17de0b..78275916567f 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,2 @@
 DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
-DIST shards-0.17.2.tar.gz 72048 BLAKE2B 
1aab6e12be7300918d2e39d3c529da852fd7bb085a23fb2b4c089901ca2188d8f707b5c6554d3912d06067c9cae2c559d415636445c771ec9ec620deabe408ed
 SHA512 
a3f4343fb3e7c653f8a61384bc159ae5c1dacc97017c7895f65f425a79bfee0af080abe2a98b7a3f2a7e4b0ee4bfc05db53af724d0ffb09cbde64f848599acd1
 DIST shards-0.17.3.tar.gz 72539 BLAKE2B 
2be15469df4b8a53ebd480815487f782717ce9d436cddf6acc2559e4c5dd61f06a1089d34b0a31aab2ab3e5334cd10abe513edd2cbe92b84d0fbd1cfc6cb09e5
 SHA512 
0789cf1fcc0df0f2d7657c034a157f05c0d65ee2c2ecda1f3d8b2d2f1274d584769f8600985fc463bc6632fe0a0822bdc40250aef2a92d1d612d0548ed0f4d2a

diff --git a/dev-util/shards/shards-0.17.2.ebuild 
b/dev-util/shards/shards-0.17.2.ebuild
deleted file mode 100644
index 7632e49c8393..
--- a/dev-util/shards/shards-0.17.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit multiprocessing toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.2.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
-   -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-RESTRICT="test"  # missing files in tarball
-
-RDEPEND="
-   >dev-lang/crystal-0.11.1
-   dev-libs/libyaml:=
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( CHANGELOG.md README.md SPEC.md )
-
-QA_PREBUILT=".*"  # Generated by Crystal.
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_compile() {
-   emake release=1 \
-   FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
-}
-
-src_install() {
-   exeinto /usr/bin
-   doexe bin/${PN}
-
-   doman man/*
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-05-19 Thread Sam James
commit: 10406925acee183c5f2dba0ace8dc3bb03345a75
Author: Sam James  gentoo  org>
AuthorDate: Fri May 19 17:44:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri May 19 17:44:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10406925

dev-util/shards: Stabilize 0.17.3 amd64, #906768

Signed-off-by: Sam James  gentoo.org>

 dev-util/shards/shards-0.17.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/shards/shards-0.17.3.ebuild 
b/dev-util/shards/shards-0.17.3.ebuild
index 013d311a44fe..7632e49c8393 100644
--- a/dev-util/shards/shards-0.17.3.ebuild
+++ b/dev-util/shards/shards-0.17.3.ebuild
@@ -19,7 +19,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 RESTRICT="test"  # missing files in tarball
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-04-16 Thread Maciej Barć
commit: 117627ad17838f77f9b33bf1f9cef66b75669e9e
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Apr 16 10:01:41 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Apr 16 10:02:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=117627ad

dev-util/shards: bump to 0.17.3

Signed-off-by: Maciej Barć  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.17.3.ebuild | 56 
 2 files changed, 57 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 171d70f4b140..8b5c3d536da7 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,4 @@
 DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
 DIST shards-0.15.0.tar.gz 62648 BLAKE2B 
bd36733e4a98fcc4a02038745ac2b838c61109edc593a333ebb35474d5a7ecb2767c8c1a54f7116c76e83fceb59d151813d3dd23e8afc37c29f00e6b879daf3c
 SHA512 
cbd428627c08658213494215db78c94513482aaa54038c159e8fea4819291552eda8a8f6decf5cf90134c89e98ad7fdaee5f666f02df054fb44c703179f428ca
 DIST shards-0.17.2.tar.gz 72048 BLAKE2B 
1aab6e12be7300918d2e39d3c529da852fd7bb085a23fb2b4c089901ca2188d8f707b5c6554d3912d06067c9cae2c559d415636445c771ec9ec620deabe408ed
 SHA512 
a3f4343fb3e7c653f8a61384bc159ae5c1dacc97017c7895f65f425a79bfee0af080abe2a98b7a3f2a7e4b0ee4bfc05db53af724d0ffb09cbde64f848599acd1
+DIST shards-0.17.3.tar.gz 72539 BLAKE2B 
2be15469df4b8a53ebd480815487f782717ce9d436cddf6acc2559e4c5dd61f06a1089d34b0a31aab2ab3e5334cd10abe513edd2cbe92b84d0fbd1cfc6cb09e5
 SHA512 
0789cf1fcc0df0f2d7657c034a157f05c0d65ee2c2ecda1f3d8b2d2f1274d584769f8600985fc463bc6632fe0a0822bdc40250aef2a92d1d612d0548ed0f4d2a

diff --git a/dev-util/shards/shards-0.17.3.ebuild 
b/dev-util/shards/shards-0.17.3.ebuild
new file mode 100644
index ..013d311a44fe
--- /dev/null
+++ b/dev-util/shards/shards-0.17.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.2.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
+   -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test"  # missing files in tarball
+
+RDEPEND="
+   >dev-lang/crystal-0.11.1
+   dev-libs/libyaml:=
+"
+DEPEND="${RDEPEND}"
+
+DOCS=( CHANGELOG.md README.md SPEC.md )
+
+QA_PREBUILT=".*"  # Generated by Crystal.
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 \
+   FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   exeinto /usr/bin
+   doexe bin/${PN}
+
+   doman man/*
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-03-25 Thread Sam James
commit: 079ddb4e8a925470dd7c231690d2d54b622e4c49
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 26 02:57:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar 26 02:57:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=079ddb4e

dev-util/shards: Stabilize 0.17.2 amd64, #903067

Signed-off-by: Sam James  gentoo.org>

 dev-util/shards/shards-0.17.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/shards/shards-0.17.2.ebuild 
b/dev-util/shards/shards-0.17.2.ebuild
index 013d311a44fe..7632e49c8393 100644
--- a/dev-util/shards/shards-0.17.2.ebuild
+++ b/dev-util/shards/shards-0.17.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 RESTRICT="test"  # missing files in tarball
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-03-03 Thread Arthur Zamarin
commit: ad9883ab5b44a62ff3552b3bec23cbd30cccf524
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar  4 07:45:35 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar  4 07:45:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad9883ab

dev-util/shards: Stabilize 0.15.0-r1 amd64, #899202

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-util/shards/shards-0.15.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/shards/shards-0.15.0-r1.ebuild 
b/dev-util/shards/shards-0.15.0-r1.ebuild
index cd40186df456..114ec2df8040 100644
--- a/dev-util/shards/shards-0.15.0-r1.ebuild
+++ b/dev-util/shards/shards-0.15.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 DEPEND="
>dev-lang/crystal-0.11.1



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-02-11 Thread Maciej Barć
commit: 41f4536b111264c713eaab46e10f52700720ba4e
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 12 00:41:16 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 12 00:47:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f4536b

dev-util/shards: bump to 0.17.2

Signed-off-by: Maciej Barć  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.17.2.ebuild | 56 
 2 files changed, 57 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index d918c3a088ea..171d70f4b140 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
 DIST shards-0.15.0.tar.gz 62648 BLAKE2B 
bd36733e4a98fcc4a02038745ac2b838c61109edc593a333ebb35474d5a7ecb2767c8c1a54f7116c76e83fceb59d151813d3dd23e8afc37c29f00e6b879daf3c
 SHA512 
cbd428627c08658213494215db78c94513482aaa54038c159e8fea4819291552eda8a8f6decf5cf90134c89e98ad7fdaee5f666f02df054fb44c703179f428ca
+DIST shards-0.17.2.tar.gz 72048 BLAKE2B 
1aab6e12be7300918d2e39d3c529da852fd7bb085a23fb2b4c089901ca2188d8f707b5c6554d3912d06067c9cae2c559d415636445c771ec9ec620deabe408ed
 SHA512 
a3f4343fb3e7c653f8a61384bc159ae5c1dacc97017c7895f65f425a79bfee0af080abe2a98b7a3f2a7e4b0ee4bfc05db53af724d0ffb09cbde64f848599acd1

diff --git a/dev-util/shards/shards-0.17.2.ebuild 
b/dev-util/shards/shards-0.17.2.ebuild
new file mode 100644
index ..013d311a44fe
--- /dev/null
+++ b/dev-util/shards/shards-0.17.2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.2.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
+   -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test"  # missing files in tarball
+
+RDEPEND="
+   >dev-lang/crystal-0.11.1
+   dev-libs/libyaml:=
+"
+DEPEND="${RDEPEND}"
+
+DOCS=( CHANGELOG.md README.md SPEC.md )
+
+QA_PREBUILT=".*"  # Generated by Crystal.
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 \
+   FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   exeinto /usr/bin
+   doexe bin/${PN}
+
+   doman man/*
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-02-11 Thread Maciej Barć
commit: d55228873d4d6aabd9c4622621e16aa50ed23d10
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 12 00:42:14 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 12 00:47:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5522887

dev-util/shards: update metadata; take up maintainership

Signed-off-by: Maciej Barć  gentoo.org>

 dev-util/shards/metadata.xml | 13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index 52620946265d..49f620cfd901 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -1,8 +1,13 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
+
 
-   
-   
-   crystal-lang/shards
-   
+  
+x...@gentoo.org
+Maciej Barć
+  
+  
+https://github.com/crystal-lang/crystal/issues/
+crystal-lang/shards
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2023-02-11 Thread Jonas Stein
commit: 5d235f3e3687867894f461df1c1469b77c5e4863
Author: Jonas Stein  gentoo  org>
AuthorDate: Sat Feb 11 18:53:35 2023 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Sat Feb 11 18:53:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d235f3e

dev-util/shards: drop to maintainer-needed

Closes: https://bugs.gentoo.org/739606
Signed-off-by: Jonas Stein  gentoo.org>

 dev-util/shards/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index 60a4fed88a2f..52620946265d 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -1,14 +1,7 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   tosho...@shojigate.net
-   J. Pz
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
+   

crystal-lang/shards




[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-08-26 Thread Joonas Niilola
commit: f2123c47a7f5789c28e5294249e31db2c5fb759a
Author: toshokan  shojigate  net>
AuthorDate: Tue Aug 24 03:39:51 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Aug 26 10:51:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2123c47

dev-util/shards: Depend on libyaml, drop old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Jason Pizzuco  shojigate.net>
Closes: https://github.com/gentoo/gentoo/pull/21848
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/shards/{shards-0.15.0.ebuild => shards-0.15.0-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-util/shards/shards-0.15.0.ebuild 
b/dev-util/shards/shards-0.15.0-r1.ebuild
similarity index 95%
rename from dev-util/shards/shards-0.15.0.ebuild
rename to dev-util/shards/shards-0.15.0-r1.ebuild
index 52270b880ee..cd40186df45 100644
--- a/dev-util/shards/shards-0.15.0.ebuild
+++ b/dev-util/shards/shards-0.15.0-r1.ebuild
@@ -20,7 +20,8 @@ SLOT="0"
 KEYWORDS="~amd64"
 
 DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
+   >dev-lang/crystal-0.11.1
+   dev-libs/libyaml
 "
 RDEPEND="${DEPEND}"
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-08-01 Thread Joonas Niilola
commit: 1954a10893171ed7fb2f2027603edb53a2166691
Author: toshokan  shojigate  net>
AuthorDate: Sun Aug  1 05:57:13 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Aug  1 06:39:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1954a108

dev-util/shards: new maintainer

Signed-off-by: Jason Pizzuco  shojigate.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/shards/metadata.xml | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index 5e1a38e3cf7..e3f76a01b65 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -1,8 +1,15 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   tosho...@shojigate.net
+   J. Pz
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

-   ysbaddaden/shards
+   crystal-lang/shards

 



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-07-23 Thread Sergei Trofimovich
commit: 8f54e44d8989621265c5c8130f3a4cd5ce7a1c79
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jul 23 07:28:42 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jul 23 07:33:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f54e44d

dev-util/shards: drop slyfox@ from maintainers, m-n orphan now

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index a6998f23f29..5e1a38e3cf7 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   sly...@gentoo.org
-   Sergei Trofimovich
-   
+   

ysbaddaden/shards




[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-07-17 Thread Sergei Trofimovich
commit: 161b231057d7f30f01cd59799d2c77ea8a28c7b3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 17 11:20:32 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 17 11:22:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=161b2310

dev-util/shards: drop old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  2 --
 dev-util/shards/shards-0.14.1.ebuild | 46 
 2 files changed, 48 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 1be8ca07c9f..d918c3a088e 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,4 +1,2 @@
-DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
 DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
-DIST shards-0.14.1.tar.gz 61664 BLAKE2B 
35f5626096266a86561f9b8613cfdb5f628e2ce247eb511dc0896c600619dcc7660b5b2b473fa0d9cec07010a5e13b8614fa63475acffe17a79cab8503cc6485
 SHA512 
be51e6d5459f0537681bea9b5c7ff048c33cd67fbb9effa20e6af8ac31f8ee0534f2012ed03712b5204451e7a48b932b0c44011dd39a7b47f81c85587579fcdf
 DIST shards-0.15.0.tar.gz 62648 BLAKE2B 
bd36733e4a98fcc4a02038745ac2b838c61109edc593a333ebb35474d5a7ecb2767c8c1a54f7116c76e83fceb59d151813d3dd23e8afc37c29f00e6b879daf3c
 SHA512 
cbd428627c08658213494215db78c94513482aaa54038c159e8fea4819291552eda8a8f6decf5cf90134c89e98ad7fdaee5f666f02df054fb44c703179f428ca

diff --git a/dev-util/shards/shards-0.14.1.ebuild 
b/dev-util/shards/shards-0.14.1.ebuild
deleted file mode 100644
index ed35979dd3c..000
--- a/dev-util/shards/shards-0.14.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multiprocessing toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.1.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_compile() {
-   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-06-30 Thread Sergei Trofimovich
commit: 5ff9b28d1666c9672de7f45c242a8dbe6ba8f939
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jun 29 20:40:00 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jun 30 06:39:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ff9b28d

dev-util/shards: bump up to 0.15.0

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  2 ++
 dev-util/shards/shards-0.15.0.ebuild | 46 
 2 files changed, 48 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index f75762bf011..1be8ca07c9f 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,4 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
+DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
 SHA512 
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
 DIST shards-0.14.1.tar.gz 61664 BLAKE2B 
35f5626096266a86561f9b8613cfdb5f628e2ce247eb511dc0896c600619dcc7660b5b2b473fa0d9cec07010a5e13b8614fa63475acffe17a79cab8503cc6485
 SHA512 
be51e6d5459f0537681bea9b5c7ff048c33cd67fbb9effa20e6af8ac31f8ee0534f2012ed03712b5204451e7a48b932b0c44011dd39a7b47f81c85587579fcdf
+DIST shards-0.15.0.tar.gz 62648 BLAKE2B 
bd36733e4a98fcc4a02038745ac2b838c61109edc593a333ebb35474d5a7ecb2767c8c1a54f7116c76e83fceb59d151813d3dd23e8afc37c29f00e6b879daf3c
 SHA512 
cbd428627c08658213494215db78c94513482aaa54038c159e8fea4819291552eda8a8f6decf5cf90134c89e98ad7fdaee5f666f02df054fb44c703179f428ca

diff --git a/dev-util/shards/shards-0.15.0.ebuild 
b/dev-util/shards/shards-0.15.0.ebuild
new file mode 100644
index 000..52270b880ee
--- /dev/null
+++ b/dev-util/shards/shards-0.15.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.2.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-03-13 Thread Sergei Trofimovich
commit: c90a14a867cfdffe5985046035069fe17ec7d412
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Mar 13 09:48:51 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Mar 13 09:53:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c90a14a8

dev-util/shards: drop old

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 -
 dev-util/shards/shards-0.14.0.ebuild | 46 
 2 files changed, 47 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index a742304c28b..f75762bf011 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,2 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
-DIST shards-0.14.0.tar.gz 61662 BLAKE2B 
f590b8eb876cb7a5d5bbade13b3ee78db443ef24f9abefe9ba662a7018ee0e543950e84ef388bd3cf81960883a60de4eb2409616790c0caef6d06f8fa19ff288
 SHA512 
214f038f3ddedca8297fe6deac1d12a632b7563c5eda796771f925abe7f197c637328eb1fd1fdd51063131e51fcc73edd6be59c9b213779b6ed5090e8a715fe6
 DIST shards-0.14.1.tar.gz 61664 BLAKE2B 
35f5626096266a86561f9b8613cfdb5f628e2ce247eb511dc0896c600619dcc7660b5b2b473fa0d9cec07010a5e13b8614fa63475acffe17a79cab8503cc6485
 SHA512 
be51e6d5459f0537681bea9b5c7ff048c33cd67fbb9effa20e6af8ac31f8ee0534f2012ed03712b5204451e7a48b932b0c44011dd39a7b47f81c85587579fcdf

diff --git a/dev-util/shards/shards-0.14.0.ebuild 
b/dev-util/shards/shards-0.14.0.ebuild
deleted file mode 100644
index ed35979dd3c..000
--- a/dev-util/shards/shards-0.14.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multiprocessing toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.1.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_compile() {
-   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-03-10 Thread Sergei Trofimovich
commit: fb057ff4e703bdac968e3b014e1c8e9c0aa8d7ca
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Mar 11 07:48:54 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Mar 11 07:49:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb057ff4

dev-util/shards: bump up to 0.14.1

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.14.1.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 50ec8f436f9..a742304c28b 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
 DIST shards-0.14.0.tar.gz 61662 BLAKE2B 
f590b8eb876cb7a5d5bbade13b3ee78db443ef24f9abefe9ba662a7018ee0e543950e84ef388bd3cf81960883a60de4eb2409616790c0caef6d06f8fa19ff288
 SHA512 
214f038f3ddedca8297fe6deac1d12a632b7563c5eda796771f925abe7f197c637328eb1fd1fdd51063131e51fcc73edd6be59c9b213779b6ed5090e8a715fe6
+DIST shards-0.14.1.tar.gz 61664 BLAKE2B 
35f5626096266a86561f9b8613cfdb5f628e2ce247eb511dc0896c600619dcc7660b5b2b473fa0d9cec07010a5e13b8614fa63475acffe17a79cab8503cc6485
 SHA512 
be51e6d5459f0537681bea9b5c7ff048c33cd67fbb9effa20e6af8ac31f8ee0534f2012ed03712b5204451e7a48b932b0c44011dd39a7b47f81c85587579fcdf

diff --git a/dev-util/shards/shards-0.14.1.ebuild 
b/dev-util/shards/shards-0.14.1.ebuild
new file mode 100644
index 000..ed35979dd3c
--- /dev/null
+++ b/dev-util/shards/shards-0.14.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.1.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-02-26 Thread Sergei Trofimovich
commit: d317a31b46478573bc9b884013f4833a480f3443
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Feb 26 10:23:26 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Feb 26 10:25:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d317a31b

dev-util/shards: drop old

Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 -
 dev-util/shards/shards-0.13.0.ebuild | 46 
 2 files changed, 47 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 097947ee678..50ec8f436f9 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,2 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
-DIST shards-0.13.0.tar.gz 55407 BLAKE2B 
430abf54b5b035e966112a5b300a8924e0d6c6c4866e4cefba816c1b901876210990678a2d9b0c6bbc9da095decc217b64da32da61a5501e6045dfe64e10bfdf
 SHA512 
7b5540b009f23cfc9630b206884a81c80a63991f64e84eed29545fef0e6a888e3854c6b0c8d958d4af3d6cef4718d7cb08d7948dcd2c9629c82b552776500b2b
 DIST shards-0.14.0.tar.gz 61662 BLAKE2B 
f590b8eb876cb7a5d5bbade13b3ee78db443ef24f9abefe9ba662a7018ee0e543950e84ef388bd3cf81960883a60de4eb2409616790c0caef6d06f8fa19ff288
 SHA512 
214f038f3ddedca8297fe6deac1d12a632b7563c5eda796771f925abe7f197c637328eb1fd1fdd51063131e51fcc73edd6be59c9b213779b6ed5090e8a715fe6

diff --git a/dev-util/shards/shards-0.13.0.ebuild 
b/dev-util/shards/shards-0.13.0.ebuild
deleted file mode 100644
index ed35979dd3c..000
--- a/dev-util/shards/shards-0.13.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multiprocessing toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.1.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_compile() {
-   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-02-24 Thread Sergei Trofimovich
commit: 38f7f70eb2ad3e1e35c56b842f7996e1b5a8d9c9
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Feb 24 08:16:07 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 24 08:16:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f7f70e

dev-util/shards: bump up to 0.14.0

Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.14.0.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 6bb7ed221d1..097947ee678 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
 DIST shards-0.13.0.tar.gz 55407 BLAKE2B 
430abf54b5b035e966112a5b300a8924e0d6c6c4866e4cefba816c1b901876210990678a2d9b0c6bbc9da095decc217b64da32da61a5501e6045dfe64e10bfdf
 SHA512 
7b5540b009f23cfc9630b206884a81c80a63991f64e84eed29545fef0e6a888e3854c6b0c8d958d4af3d6cef4718d7cb08d7948dcd2c9629c82b552776500b2b
+DIST shards-0.14.0.tar.gz 61662 BLAKE2B 
f590b8eb876cb7a5d5bbade13b3ee78db443ef24f9abefe9ba662a7018ee0e543950e84ef388bd3cf81960883a60de4eb2409616790c0caef6d06f8fa19ff288
 SHA512 
214f038f3ddedca8297fe6deac1d12a632b7563c5eda796771f925abe7f197c637328eb1fd1fdd51063131e51fcc73edd6be59c9b213779b6ed5090e8a715fe6

diff --git a/dev-util/shards/shards-0.14.0.ebuild 
b/dev-util/shards/shards-0.14.0.ebuild
new file mode 100644
index 000..ed35979dd3c
--- /dev/null
+++ b/dev-util/shards/shards-0.14.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.1.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-01-28 Thread Sergei Trofimovich
commit: 92b7efdbab6bd38fb43c4467ddc5b5b688ee3d4b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 28 08:05:06 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 28 08:09:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92b7efdb

dev-util/shards: drop old

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest|  1 -
 dev-util/shards/shards-0.12.0-r1.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 10589e93a7e..6bb7ed221d1 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,2 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
-DIST shards-0.12.0.tar.gz 52205 BLAKE2B 
6aed0be06f1f7e336861705fc0e29fbc3a97336f37d3a1eef09d3ea2ebaf2e61f1e5594f893974a6c13114ee575a69cf6a71fce0cc5f8985b8c365392735e8ca
 SHA512 
3dfdf09be8701e568614923ffd5be90c63bdefc06f310c35b1b38e4b92f8bc1f432398656c08cadd36be52491f2ae8fda3c9b4117dbc4d53dbc8068b78300468
 DIST shards-0.13.0.tar.gz 55407 BLAKE2B 
430abf54b5b035e966112a5b300a8924e0d6c6c4866e4cefba816c1b901876210990678a2d9b0c6bbc9da095decc217b64da32da61a5501e6045dfe64e10bfdf
 SHA512 
7b5540b009f23cfc9630b206884a81c80a63991f64e84eed29545fef0e6a888e3854c6b0c8d958d4af3d6cef4718d7cb08d7948dcd2c9629c82b552776500b2b

diff --git a/dev-util/shards/shards-0.12.0-r1.ebuild 
b/dev-util/shards/shards-0.12.0-r1.ebuild
deleted file mode 100644
index fca8719df78..000
--- a/dev-util/shards/shards-0.12.0-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multiprocessing toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.1.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_compile() {
-   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2021-01-23 Thread Sergei Trofimovich
commit: 6a2ce228cd50d120bdb52ccdbd61fcd96021ef53
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jan 23 11:26:31 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jan 23 11:28:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a2ce228

dev-util/shards: bump up to 0.13.0

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.13.0.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 58b22181af7..10589e93a7e 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
 DIST shards-0.12.0.tar.gz 52205 BLAKE2B 
6aed0be06f1f7e336861705fc0e29fbc3a97336f37d3a1eef09d3ea2ebaf2e61f1e5594f893974a6c13114ee575a69cf6a71fce0cc5f8985b8c365392735e8ca
 SHA512 
3dfdf09be8701e568614923ffd5be90c63bdefc06f310c35b1b38e4b92f8bc1f432398656c08cadd36be52491f2ae8fda3c9b4117dbc4d53dbc8068b78300468
+DIST shards-0.13.0.tar.gz 55407 BLAKE2B 
430abf54b5b035e966112a5b300a8924e0d6c6c4866e4cefba816c1b901876210990678a2d9b0c6bbc9da095decc217b64da32da61a5501e6045dfe64e10bfdf
 SHA512 
7b5540b009f23cfc9630b206884a81c80a63991f64e84eed29545fef0e6a888e3854c6b0c8d958d4af3d6cef4718d7cb08d7948dcd2c9629c82b552776500b2b

diff --git a/dev-util/shards/shards-0.13.0.ebuild 
b/dev-util/shards/shards-0.13.0.ebuild
new file mode 100644
index 000..ed35979dd3c
--- /dev/null
+++ b/dev-util/shards/shards-0.13.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.1.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-08-09 Thread Sergei Trofimovich
commit: ba1dd47438393f95bd20e496def00c92641a05da
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  9 18:35:09 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  9 18:35:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba1dd474

dev-util/shards: drop old

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 -
 dev-util/shards/shards-0.11.1.ebuild | 42 
 dev-util/shards/shards-0.12.0.ebuild | 42 
 3 files changed, 85 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 716c95e..58b22181af7 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,2 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
-DIST shards-0.11.1.tar.gz 45913 BLAKE2B 
43afeaaadc1b1ec68353580aacac2eb7d2d69547ba128fdb358682031d83fe28eaae159e39d519ef52f7b058228176fd6ca1aa47aeb03e4a1ccbae7306902e95
 SHA512 
59a1bd563101c3b3175bd586cc205a821b5087fc70b6bc14fbb612b325c18aa0a2d9b8159ad115e227c9321b1d40703fd7062b413b92252e6efd2ee081d1a221
 DIST shards-0.12.0.tar.gz 52205 BLAKE2B 
6aed0be06f1f7e336861705fc0e29fbc3a97336f37d3a1eef09d3ea2ebaf2e61f1e5594f893974a6c13114ee575a69cf6a71fce0cc5f8985b8c365392735e8ca
 SHA512 
3dfdf09be8701e568614923ffd5be90c63bdefc06f310c35b1b38e4b92f8bc1f432398656c08cadd36be52491f2ae8fda3c9b4117dbc4d53dbc8068b78300468

diff --git a/dev-util/shards/shards-0.11.1.ebuild 
b/dev-util/shards/shards-0.11.1.ebuild
deleted file mode 100644
index c36571a58c8..000
--- a/dev-util/shards/shards-0.11.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.1.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}

diff --git a/dev-util/shards/shards-0.12.0.ebuild 
b/dev-util/shards/shards-0.12.0.ebuild
deleted file mode 100644
index c36571a58c8..000
--- a/dev-util/shards/shards-0.12.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.1.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-08-08 Thread Sergei Trofimovich
commit: 8072397d1373efa6a3bf32fccb08a3a71dc5c6cf
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Aug  8 09:55:32 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Aug  8 09:58:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8072397d

dev-util/shards: handle user's LDFLAGS

Reported-by: Agostino Sarubbo
Closes: https://bugs.gentoo.org/736374
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/shards-0.12.0-r1.ebuild | 46 +
 1 file changed, 46 insertions(+)

diff --git a/dev-util/shards/shards-0.12.0-r1.ebuild 
b/dev-util/shards/shards-0.12.0-r1.ebuild
new file mode 100644
index 000..fca8719df78
--- /dev/null
+++ b/dev-util/shards/shards-0.12.0-r1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.1.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_compile() {
+   emake release=1 FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads 
$(makeopts_jobs)"
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-08-06 Thread Sergei Trofimovich
commit: 9de2e8fab7ed0a04ece6ce9738a25e2ee0f3cdc4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Aug  6 21:30:56 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Aug  6 21:30:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9de2e8fa

dev-util/shards: bump uo to 0.12.0

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.12.0.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 5654eeeb2af..716c95e 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
 DIST shards-0.11.1.tar.gz 45913 BLAKE2B 
43afeaaadc1b1ec68353580aacac2eb7d2d69547ba128fdb358682031d83fe28eaae159e39d519ef52f7b058228176fd6ca1aa47aeb03e4a1ccbae7306902e95
 SHA512 
59a1bd563101c3b3175bd586cc205a821b5087fc70b6bc14fbb612b325c18aa0a2d9b8159ad115e227c9321b1d40703fd7062b413b92252e6efd2ee081d1a221
+DIST shards-0.12.0.tar.gz 52205 BLAKE2B 
6aed0be06f1f7e336861705fc0e29fbc3a97336f37d3a1eef09d3ea2ebaf2e61f1e5594f893974a6c13114ee575a69cf6a71fce0cc5f8985b8c365392735e8ca
 SHA512 
3dfdf09be8701e568614923ffd5be90c63bdefc06f310c35b1b38e4b92f8bc1f432398656c08cadd36be52491f2ae8fda3c9b4117dbc4d53dbc8068b78300468

diff --git a/dev-util/shards/shards-0.12.0.ebuild 
b/dev-util/shards/shards-0.12.0.ebuild
new file mode 100644
index 000..c36571a58c8
--- /dev/null
+++ b/dev-util/shards/shards-0.12.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.1.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-06-20 Thread Sergei Trofimovich
commit: fa59312e6d3144a9bfa93c6feae80125535ee866
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jun 20 19:44:30 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jun 20 19:49:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa59312e

dev-util/shards: drop old

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  2 --
 dev-util/shards/shards-0.10.0.ebuild | 42 
 dev-util/shards/shards-0.11.0.ebuild | 42 
 3 files changed, 86 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 68d10994ab4..5654eeeb2af 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,4 +1,2 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
-DIST shards-0.10.0.tar.gz 39507 BLAKE2B 
f6b6034a626500d0459e01be73de28506dc2efe116a5f662b27edb6cbe363cf4bb3184fcce83838e02dec4db18355a85737b4783560b7d94b643145d08581174
 SHA512 
8d41a2553fd99bd44a3e8a9aacbd17f2a1e9f8730f90c4682091e8d2a4f2388818bdfc4e4bf654c3cbebd617a74474fb63f1fb86a62998cf79409d4778649757
-DIST shards-0.11.0.tar.gz 45819 BLAKE2B 
61b10f2debf6768a151959f2558f54c6cdeb9295068341007f15418f95d63747d68e7c39aa7384da80bad9af668d66906cbc7f51dd8ef93cd09d305df2edb041
 SHA512 
29190fa5fb05ddc36360674b2979efaef55a1963d77f06c7bd81e58b7e03309cab832c9ab7350017c369b9e09a3500adb2c7408c7bf6ac1888f4285128803632
 DIST shards-0.11.1.tar.gz 45913 BLAKE2B 
43afeaaadc1b1ec68353580aacac2eb7d2d69547ba128fdb358682031d83fe28eaae159e39d519ef52f7b058228176fd6ca1aa47aeb03e4a1ccbae7306902e95
 SHA512 
59a1bd563101c3b3175bd586cc205a821b5087fc70b6bc14fbb612b325c18aa0a2d9b8159ad115e227c9321b1d40703fd7062b413b92252e6efd2ee081d1a221

diff --git a/dev-util/shards/shards-0.10.0.ebuild 
b/dev-util/shards/shards-0.10.0.ebuild
deleted file mode 100644
index c36571a58c8..000
--- a/dev-util/shards/shards-0.10.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.1.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}

diff --git a/dev-util/shards/shards-0.11.0.ebuild 
b/dev-util/shards/shards-0.11.0.ebuild
deleted file mode 100644
index c36571a58c8..000
--- a/dev-util/shards/shards-0.11.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV=0.1.0
-CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
-
-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
-   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   >dev-lang/crystal-0.11.1[yaml]
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT=test # missing files in tarball
-
-src_prepare() {
-   default
-
-   # bundle crystal-molinillo to bootstrap 'shards'
-   mkdir -p lib || die
-   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
-
-   tc-export CC
-}
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-06-09 Thread Sergei Trofimovich
commit: 26d49656cd5cda42bac92ba60d4c0c4ac2151ba6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jun  9 06:42:22 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun  9 06:42:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26d49656

dev-util/shards: bump up to 0.11.1

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.11.1.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index f5a2152509c..68d10994ab4 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,4 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
 DIST shards-0.10.0.tar.gz 39507 BLAKE2B 
f6b6034a626500d0459e01be73de28506dc2efe116a5f662b27edb6cbe363cf4bb3184fcce83838e02dec4db18355a85737b4783560b7d94b643145d08581174
 SHA512 
8d41a2553fd99bd44a3e8a9aacbd17f2a1e9f8730f90c4682091e8d2a4f2388818bdfc4e4bf654c3cbebd617a74474fb63f1fb86a62998cf79409d4778649757
 DIST shards-0.11.0.tar.gz 45819 BLAKE2B 
61b10f2debf6768a151959f2558f54c6cdeb9295068341007f15418f95d63747d68e7c39aa7384da80bad9af668d66906cbc7f51dd8ef93cd09d305df2edb041
 SHA512 
29190fa5fb05ddc36360674b2979efaef55a1963d77f06c7bd81e58b7e03309cab832c9ab7350017c369b9e09a3500adb2c7408c7bf6ac1888f4285128803632
+DIST shards-0.11.1.tar.gz 45913 BLAKE2B 
43afeaaadc1b1ec68353580aacac2eb7d2d69547ba128fdb358682031d83fe28eaae159e39d519ef52f7b058228176fd6ca1aa47aeb03e4a1ccbae7306902e95
 SHA512 
59a1bd563101c3b3175bd586cc205a821b5087fc70b6bc14fbb612b325c18aa0a2d9b8159ad115e227c9321b1d40703fd7062b413b92252e6efd2ee081d1a221

diff --git a/dev-util/shards/shards-0.11.1.ebuild 
b/dev-util/shards/shards-0.11.1.ebuild
new file mode 100644
index 000..c36571a58c8
--- /dev/null
+++ b/dev-util/shards/shards-0.11.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.1.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-06-06 Thread Sergei Trofimovich
commit: ad57bc3f918589369172dd9be1efbe5d4fd401f0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jun  6 08:55:54 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jun  6 08:55:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad57bc3f

dev-util/shards: bump up to 0.11.0

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  1 +
 dev-util/shards/shards-0.11.0.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index a59a9e6d700..f5a2152509c 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
 DIST shards-0.10.0.tar.gz 39507 BLAKE2B 
f6b6034a626500d0459e01be73de28506dc2efe116a5f662b27edb6cbe363cf4bb3184fcce83838e02dec4db18355a85737b4783560b7d94b643145d08581174
 SHA512 
8d41a2553fd99bd44a3e8a9aacbd17f2a1e9f8730f90c4682091e8d2a4f2388818bdfc4e4bf654c3cbebd617a74474fb63f1fb86a62998cf79409d4778649757
+DIST shards-0.11.0.tar.gz 45819 BLAKE2B 
61b10f2debf6768a151959f2558f54c6cdeb9295068341007f15418f95d63747d68e7c39aa7384da80bad9af668d66906cbc7f51dd8ef93cd09d305df2edb041
 SHA512 
29190fa5fb05ddc36360674b2979efaef55a1963d77f06c7bd81e58b7e03309cab832c9ab7350017c369b9e09a3500adb2c7408c7bf6ac1888f4285128803632

diff --git a/dev-util/shards/shards-0.11.0.ebuild 
b/dev-util/shards/shards-0.11.0.ebuild
new file mode 100644
index 000..c36571a58c8
--- /dev/null
+++ b/dev-util/shards/shards-0.11.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.1.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-05-29 Thread Sergei Trofimovich
commit: 9335148040980be5ba5980ce1334f70bb371632f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri May 29 22:08:58 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri May 29 22:13:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93351480

dev-util/shards: drop old

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest|  1 -
 dev-util/shards/shards-0.9.0.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 8ea095c9a1c..a59a9e6d700 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,2 @@
 DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
 DIST shards-0.10.0.tar.gz 39507 BLAKE2B 
f6b6034a626500d0459e01be73de28506dc2efe116a5f662b27edb6cbe363cf4bb3184fcce83838e02dec4db18355a85737b4783560b7d94b643145d08581174
 SHA512 
8d41a2553fd99bd44a3e8a9aacbd17f2a1e9f8730f90c4682091e8d2a4f2388818bdfc4e4bf654c3cbebd617a74474fb63f1fb86a62998cf79409d4778649757
-DIST shards-0.9.0.tar.gz 41280 BLAKE2B 
a74ab96489c804da3017dc683295d1fc16ba30248015af9deccdcf52a09301f665d4848822419d263d2301969c484fae288eff63e281bd4841b1fd101c5d5383
 SHA512 
a06579f1a96cea1fb1ba97c17ae4529439fb7c54572e74b4969921b1a987a1e1be9c9eb8569db94fd4cb4adc098b3085abfd2a6f7015da7f39611a1774d30022

diff --git a/dev-util/shards/shards-0.9.0.ebuild 
b/dev-util/shards/shards-0.9.0.ebuild
deleted file mode 100644
index c11e7698cd9..000
--- a/dev-util/shards/shards-0.9.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-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}"
-
-RESTRICT=test # missing files in tarball
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-05-23 Thread Sergei Trofimovich
commit: 4268e63a833c6a64434602710ee8a91aa0036d3e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May 23 10:12:57 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 23 10:13:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4268e63a

dev-util/shards: bump up to 0.10.0

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest |  2 ++
 dev-util/shards/shards-0.10.0.ebuild | 42 
 2 files changed, 44 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 91732a057bf..8ea095c9a1c 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1 +1,3 @@
+DIST crystal-molinillo-0.1.0.tar.gz 23932 BLAKE2B 
c9bcd707a3208f5d80e6e3030523d50f86cb5977799de8ea6035d014094e3c2fff9bb189fa98f566e72e1e7ad161e47e44c89d9b264d47f109b2e891ecb469e5
 SHA512 
8d74d95896cd7ff510c87e2ffba6ae5f04ceeddde574930ee609851312b65d713a315cc24f9aa3fab02f9447ccb25ef2dd2e8179640b8c5cfb3d7d6b52d1ded5
+DIST shards-0.10.0.tar.gz 39507 BLAKE2B 
f6b6034a626500d0459e01be73de28506dc2efe116a5f662b27edb6cbe363cf4bb3184fcce83838e02dec4db18355a85737b4783560b7d94b643145d08581174
 SHA512 
8d41a2553fd99bd44a3e8a9aacbd17f2a1e9f8730f90c4682091e8d2a4f2388818bdfc4e4bf654c3cbebd617a74474fb63f1fb86a62998cf79409d4778649757
 DIST shards-0.9.0.tar.gz 41280 BLAKE2B 
a74ab96489c804da3017dc683295d1fc16ba30248015af9deccdcf52a09301f665d4848822419d263d2301969c484fae288eff63e281bd4841b1fd101c5d5383
 SHA512 
a06579f1a96cea1fb1ba97c17ae4529439fb7c54572e74b4969921b1a987a1e1be9c9eb8569db94fd4cb4adc098b3085abfd2a6f7015da7f39611a1774d30022

diff --git a/dev-util/shards/shards-0.10.0.ebuild 
b/dev-util/shards/shards-0.10.0.ebuild
new file mode 100644
index 000..c36571a58c8
--- /dev/null
+++ b/dev-util/shards/shards-0.10.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+CRYSTAL_MOLINILLO_PV=0.1.0
+CRYSTAL_MOLINILLO_P=crystal-molinillo-${CRYSTAL_MOLINILLO_PV}
+
+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
+   
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
 -> ${CRYSTAL_MOLINILLO_P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >dev-lang/crystal-0.11.1[yaml]
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # missing files in tarball
+
+src_prepare() {
+   default
+
+   # bundle crystal-molinillo to bootstrap 'shards'
+   mkdir -p lib || die
+   ln -s ../../${CRYSTAL_MOLINILLO_P} lib/molinillo || die
+
+   tc-export CC
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-03-25 Thread Sergei Trofimovich
commit: 1e293bc981c25576ae26efb2f3784b078bca9e0a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 25 22:41:03 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 25 22:41:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e293bc9

dev-util/shards: drop longdescription from metadata.xml

Package-Manager: Portage-2.3.95, Repoman-2.3.21
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index 43e1575986e..cde3551f973 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -5,9 +5,6 @@
sly...@gentoo.org
Sergei Trofimovich

-   
-   Dependency manager for the Crystal language
-   

ysbaddaden/shards




[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2020-02-12 Thread Sergei Trofimovich
commit: d8cf5c09ad9dfe63f3ba2be35e4362ec6297df1f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Feb 12 22:20:14 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 22:32:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8cf5c09

dev-util/shards: drop old

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest|  2 --
 dev-util/shards/shards-0.7.2.ebuild | 24 
 dev-util/shards/shards-0.8.1.ebuild | 24 
 3 files changed, 50 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 181f0b973a3..91732a057bf 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1 @@
-DIST shards-0.7.2.tar.gz 30398 BLAKE2B 
bf89f978cf9d4687902a8de4222f2c2121a52574c7f1ce46130a97c5770889693efc5d3fcc35208d6b1f23930f83fb98ba8f10391920ff0418c6d28eb810d6a8
 SHA512 
a99648ae292095278578e47971b556a0da90743db62689a76aae9eab986ad2185ad7adc13c4340f12fce835c5383d8aac93e35258d01fa658e521314eafaf942
-DIST shards-0.8.1.tar.gz 31388 BLAKE2B 
3442faad4a9a1bc4fed9193b7e17369913025f0c1be840de15d563a3da4f3638884ac2dbfd0610dafec5af0680f39e9983f076962c2a1167e3ebd39c4b1eeb4a
 SHA512 
c0a8a8531a37e033c6d96ac36dd30dcd3d005c6b1bd7c94dbeee7f6ea9b34a08ab2e14b826c3c18f60dca991f60ec6780df090cafc32403a7272e39dc07e99df
 DIST shards-0.9.0.tar.gz 41280 BLAKE2B 
a74ab96489c804da3017dc683295d1fc16ba30248015af9deccdcf52a09301f665d4848822419d263d2301969c484fae288eff63e281bd4841b1fd101c5d5383
 SHA512 
a06579f1a96cea1fb1ba97c17ae4529439fb7c54572e74b4969921b1a987a1e1be9c9eb8569db94fd4cb4adc098b3085abfd2a6f7015da7f39611a1774d30022

diff --git a/dev-util/shards/shards-0.7.2.ebuild 
b/dev-util/shards/shards-0.7.2.ebuild
deleted file mode 100644
index 43d89d4cedb..000
--- a/dev-util/shards/shards-0.7.2.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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}"
-
-RESTRICT=test # missing files in tarball
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}

diff --git a/dev-util/shards/shards-0.8.1.ebuild 
b/dev-util/shards/shards-0.8.1.ebuild
deleted file mode 100644
index 43d89d4cedb..000
--- a/dev-util/shards/shards-0.8.1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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}"
-
-RESTRICT=test # missing files in tarball
-
-src_install() {
-   dobin bin/${PN}
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2019-06-14 Thread Sergei Trofimovich
commit: 0d4039191a3b7a32c45ed7a85296276f65a707a2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 14 07:19:52 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 14 18:32:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d403919

dev-util/shards: bump up to 0.9.0

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/shards/Manifest|  1 +
 dev-util/shards/shards-0.9.0.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index d875081b6f5..181f0b973a3 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,3 @@
 DIST shards-0.7.2.tar.gz 30398 BLAKE2B 
bf89f978cf9d4687902a8de4222f2c2121a52574c7f1ce46130a97c5770889693efc5d3fcc35208d6b1f23930f83fb98ba8f10391920ff0418c6d28eb810d6a8
 SHA512 
a99648ae292095278578e47971b556a0da90743db62689a76aae9eab986ad2185ad7adc13c4340f12fce835c5383d8aac93e35258d01fa658e521314eafaf942
 DIST shards-0.8.1.tar.gz 31388 BLAKE2B 
3442faad4a9a1bc4fed9193b7e17369913025f0c1be840de15d563a3da4f3638884ac2dbfd0610dafec5af0680f39e9983f076962c2a1167e3ebd39c4b1eeb4a
 SHA512 
c0a8a8531a37e033c6d96ac36dd30dcd3d005c6b1bd7c94dbeee7f6ea9b34a08ab2e14b826c3c18f60dca991f60ec6780df090cafc32403a7272e39dc07e99df
+DIST shards-0.9.0.tar.gz 41280 BLAKE2B 
a74ab96489c804da3017dc683295d1fc16ba30248015af9deccdcf52a09301f665d4848822419d263d2301969c484fae288eff63e281bd4841b1fd101c5d5383
 SHA512 
a06579f1a96cea1fb1ba97c17ae4529439fb7c54572e74b4969921b1a987a1e1be9c9eb8569db94fd4cb4adc098b3085abfd2a6f7015da7f39611a1774d30022

diff --git a/dev-util/shards/shards-0.9.0.ebuild 
b/dev-util/shards/shards-0.9.0.ebuild
new file mode 100644
index 000..c11e7698cd9
--- /dev/null
+++ b/dev-util/shards/shards-0.9.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+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}"
+
+RESTRICT=test # missing files in tarball
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2018-06-17 Thread Sergei Trofimovich
commit: 3de110c8515b9b2b3ffb08f03760b6c7b189ee01
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 17 21:45:45 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 17 21:48:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de110c8

dev-util/shards: bump up to 0.8.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/shards/Manifest | 2 +-
 dev-util/shards/{shards-0.8.0.ebuild => shards-0.8.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 25df667e091..d875081b6f5 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,2 +1,2 @@
 DIST shards-0.7.2.tar.gz 30398 BLAKE2B 
bf89f978cf9d4687902a8de4222f2c2121a52574c7f1ce46130a97c5770889693efc5d3fcc35208d6b1f23930f83fb98ba8f10391920ff0418c6d28eb810d6a8
 SHA512 
a99648ae292095278578e47971b556a0da90743db62689a76aae9eab986ad2185ad7adc13c4340f12fce835c5383d8aac93e35258d01fa658e521314eafaf942
-DIST shards-0.8.0.tar.gz 30813 BLAKE2B 
1a5ce7d2cea896dd8576ab5a6387138627140a0e40ec85ad0c77cf6f6187c34bdc69d7e7403779dcbbad36f2d28b8d3942f5c917919e80ce557e946e9ef26eab
 SHA512 
c366dec216676975cadfd8210a89c407ddc6335859b323736da8e950cf70b78456b3802d2b65d1f6d71a196946a06264b97f60bdc057b6f376e191559a78584d
+DIST shards-0.8.1.tar.gz 31388 BLAKE2B 
3442faad4a9a1bc4fed9193b7e17369913025f0c1be840de15d563a3da4f3638884ac2dbfd0610dafec5af0680f39e9983f076962c2a1167e3ebd39c4b1eeb4a
 SHA512 
c0a8a8531a37e033c6d96ac36dd30dcd3d005c6b1bd7c94dbeee7f6ea9b34a08ab2e14b826c3c18f60dca991f60ec6780df090cafc32403a7272e39dc07e99df

diff --git a/dev-util/shards/shards-0.8.0.ebuild 
b/dev-util/shards/shards-0.8.1.ebuild
similarity index 100%
rename from dev-util/shards/shards-0.8.0.ebuild
rename to dev-util/shards/shards-0.8.1.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2018-06-08 Thread Sergei Trofimovich
commit: 814c7e95cdc76e2f4316ad7e3c7edeae5291f93f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun  8 15:35:59 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun  8 15:35:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=814c7e95

dev-util/shards: bump up to 0.8.0

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-util/shards/Manifest|  1 +
 dev-util/shards/shards-0.8.0.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 3661248d644..a476868a222 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -4,3 +4,4 @@ DIST shards-0.6.3.tar.gz 26826 BLAKE2B 
846e591159f10e418a464ced9078ef21dc8ae11c4
 DIST shards-0.6.4.tar.gz 26916 BLAKE2B 
d8ea6dd7796964220ff24d413a8e3af5379b52a4ad857537c2f9147ff16b1d389e07af3402a2b4d3e15b07021d6087ec9b76dc18f2de12e4585e9b896974bb0b
 SHA512 
56475ab8287f469ec0b97d9ad7fcc36e75da8a4cd3fbddadfaf0156b6b0ede25331634bb3b41fa3e4b3c46adcd881838fe56c56de6e5bbf30d03e3106458e820
 DIST shards-0.7.1.tar.gz 29722 BLAKE2B 
60b09254aa9ba6fae558665b669571038f5a841394e9d6fb54d0c6e7d8447d028c5bd66c849cd8dde902579f17a718aae2c718bb4057144c8d7851f30a90e024
 SHA512 
9371df40a5c5f0f809c5febcbdede6c743e2a0f1898d648ecb8c2be69ed746bdb879eb3653cd2c7aacd43148ac8536c401b119fcf63039b866e284e8003e73ee
 DIST shards-0.7.2.tar.gz 30398 BLAKE2B 
bf89f978cf9d4687902a8de4222f2c2121a52574c7f1ce46130a97c5770889693efc5d3fcc35208d6b1f23930f83fb98ba8f10391920ff0418c6d28eb810d6a8
 SHA512 
a99648ae292095278578e47971b556a0da90743db62689a76aae9eab986ad2185ad7adc13c4340f12fce835c5383d8aac93e35258d01fa658e521314eafaf942
+DIST shards-0.8.0.tar.gz 30813 BLAKE2B 
1a5ce7d2cea896dd8576ab5a6387138627140a0e40ec85ad0c77cf6f6187c34bdc69d7e7403779dcbbad36f2d28b8d3942f5c917919e80ce557e946e9ef26eab
 SHA512 
c366dec216676975cadfd8210a89c407ddc6335859b323736da8e950cf70b78456b3802d2b65d1f6d71a196946a06264b97f60bdc057b6f376e191559a78584d

diff --git a/dev-util/shards/shards-0.8.0.ebuild 
b/dev-util/shards/shards-0.8.0.ebuild
new file mode 100644
index 000..43d89d4cedb
--- /dev/null
+++ b/dev-util/shards/shards-0.8.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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}"
+
+RESTRICT=test # missing files in tarball
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2018-06-08 Thread Sergei Trofimovich
commit: 1d2c3d631e3155a838942955198d6975c3b83fc6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun  8 15:36:13 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun  8 15:36:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d2c3d63

dev-util/shards: drop old

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-util/shards/Manifest|  5 -
 dev-util/shards/shards-0.6.1.ebuild | 22 --
 dev-util/shards/shards-0.6.2.ebuild | 22 --
 dev-util/shards/shards-0.6.3.ebuild | 22 --
 dev-util/shards/shards-0.6.4.ebuild | 22 --
 dev-util/shards/shards-0.7.1.ebuild | 24 
 6 files changed, 117 deletions(-)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index a476868a222..25df667e091 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,7 +1,2 @@
-DIST shards-0.6.1.tar.gz 26505 BLAKE2B 
2d2f2e6b78c2736b8f42719a005b32e86702351e13b0115473b65f3fd568771d81ce3709f82cad13cb15f9aad5743b4245175d4f12b18a37ae6a963ccedc99e4
 SHA512 
fc1e32cf459a5c448ef780601b9515cd331fc40d3f6f0666e71e218a62e202e0d4f642f5e82660529d24145a5ed5f5cbf2fdc6fc251421850d9c7ac1ebcf4d07
-DIST shards-0.6.2.tar.gz 26589 BLAKE2B 
aa0c90c1acac8cbfed4c909007e2ef3abd168a315b8b94a0c807c5ebbd67869ca3080d742b34816ade883971f9e0a3cab292a4aa28fa3be445cadc6b2298e304
 SHA512 
baeebe496ea52c93313e9a550a8f1dda225674ca49e9e2b2660b059a8e7cd6a148085d33d5c70a46d2d4c7db9260f841a634c079cc590576a6d98c9308fb1100
-DIST shards-0.6.3.tar.gz 26826 BLAKE2B 
846e591159f10e418a464ced9078ef21dc8ae11c4ea2fccf619ce7a2ea38a7fff52f1c2be59a3c29e10d0d579fb589963865ec0c62e6fb546f21cb6ddc2668bc
 SHA512 
c9ef7f41dc1feb223fbaa22bc60546a6152eae44ecead6afc3ca5ed68ffb8640444efdf7817dc77f6507200993b6213293e24e006ebb483e804342b877d81c78
-DIST shards-0.6.4.tar.gz 26916 BLAKE2B 
d8ea6dd7796964220ff24d413a8e3af5379b52a4ad857537c2f9147ff16b1d389e07af3402a2b4d3e15b07021d6087ec9b76dc18f2de12e4585e9b896974bb0b
 SHA512 
56475ab8287f469ec0b97d9ad7fcc36e75da8a4cd3fbddadfaf0156b6b0ede25331634bb3b41fa3e4b3c46adcd881838fe56c56de6e5bbf30d03e3106458e820
-DIST shards-0.7.1.tar.gz 29722 BLAKE2B 
60b09254aa9ba6fae558665b669571038f5a841394e9d6fb54d0c6e7d8447d028c5bd66c849cd8dde902579f17a718aae2c718bb4057144c8d7851f30a90e024
 SHA512 
9371df40a5c5f0f809c5febcbdede6c743e2a0f1898d648ecb8c2be69ed746bdb879eb3653cd2c7aacd43148ac8536c401b119fcf63039b866e284e8003e73ee
 DIST shards-0.7.2.tar.gz 30398 BLAKE2B 
bf89f978cf9d4687902a8de4222f2c2121a52574c7f1ce46130a97c5770889693efc5d3fcc35208d6b1f23930f83fb98ba8f10391920ff0418c6d28eb810d6a8
 SHA512 
a99648ae292095278578e47971b556a0da90743db62689a76aae9eab986ad2185ad7adc13c4340f12fce835c5383d8aac93e35258d01fa658e521314eafaf942
 DIST shards-0.8.0.tar.gz 30813 BLAKE2B 
1a5ce7d2cea896dd8576ab5a6387138627140a0e40ec85ad0c77cf6f6187c34bdc69d7e7403779dcbbad36f2d28b8d3942f5c917919e80ce557e946e9ef26eab
 SHA512 
c366dec216676975cadfd8210a89c407ddc6335859b323736da8e950cf70b78456b3802d2b65d1f6d71a196946a06264b97f60bdc057b6f376e191559a78584d

diff --git a/dev-util/shards/shards-0.6.1.ebuild 
b/dev-util/shards/shards-0.6.1.ebuild
deleted file mode 100644
index 313c82834ab..000
--- a/dev-util/shards/shards-0.6.1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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
-}

diff --git a/dev-util/shards/shards-0.6.2.ebuild 
b/dev-util/shards/shards-0.6.2.ebuild
deleted file mode 100644
index 6a29317bdb1..000
--- a/dev-util/shards/shards-0.6.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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
-}

diff --git a/dev-util/shards/shards-0.6.3.ebuild 
b/dev-util/shards/shards-0.6.3.ebuild
deleted file mode 100644
index 6a29317bdb1..000
--- a/dev-util/shards/shards-0.6.3.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Dependency manager for the Crystal language"

[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2018-05-19 Thread Jonas Stein
commit: 8d6fbdc8bc4e3bd1c6f842e2d58db99bbe421c95
Author: Jonas Stein  gentoo  org>
AuthorDate: Sat May 19 16:09:21 2018 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Sat May 19 16:09:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d6fbdc8

dev-util/shards: Maintainer retired

Proxied maintainer retired due to inactivity.
Closes: https://bugs.gentoo.org/633308
Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-util/shards/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index 9c98005e23c..43e1575986e 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -1,18 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   longl...@gmail.com
-   Lixiao Chen
-   

sly...@gentoo.org
Sergei Trofimovich

-   
-   proxy-ma...@gentoo.org
-   Gentoo Proxy Maintainers Project
-   

Dependency manager for the Crystal language

@@ -20,3 +12,4 @@
ysbaddaden/shards

 
+



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2018-01-09 Thread Sergei Trofimovich
commit: 5f7fe4beb0939d19be32efdb8bd436f189f9b55c
Author: Azamat Khudaygulov  hudaygulov  ru>
AuthorDate: Tue Jan  9 22:22:35 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan  9 23:09:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7fe4be

dev-util/shards: version bump to 0.7.2

Package-Manager: Portage-2.3.19, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/6811

 dev-util/shards/Manifest|  1 +
 dev-util/shards/shards-0.7.2.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index ac13c119bd8..3661248d644 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -3,3 +3,4 @@ DIST shards-0.6.2.tar.gz 26589 BLAKE2B 
aa0c90c1acac8cbfed4c909007e2ef3abd168a315
 DIST shards-0.6.3.tar.gz 26826 BLAKE2B 
846e591159f10e418a464ced9078ef21dc8ae11c4ea2fccf619ce7a2ea38a7fff52f1c2be59a3c29e10d0d579fb589963865ec0c62e6fb546f21cb6ddc2668bc
 SHA512 
c9ef7f41dc1feb223fbaa22bc60546a6152eae44ecead6afc3ca5ed68ffb8640444efdf7817dc77f6507200993b6213293e24e006ebb483e804342b877d81c78
 DIST shards-0.6.4.tar.gz 26916 BLAKE2B 
d8ea6dd7796964220ff24d413a8e3af5379b52a4ad857537c2f9147ff16b1d389e07af3402a2b4d3e15b07021d6087ec9b76dc18f2de12e4585e9b896974bb0b
 SHA512 
56475ab8287f469ec0b97d9ad7fcc36e75da8a4cd3fbddadfaf0156b6b0ede25331634bb3b41fa3e4b3c46adcd881838fe56c56de6e5bbf30d03e3106458e820
 DIST shards-0.7.1.tar.gz 29722 BLAKE2B 
60b09254aa9ba6fae558665b669571038f5a841394e9d6fb54d0c6e7d8447d028c5bd66c849cd8dde902579f17a718aae2c718bb4057144c8d7851f30a90e024
 SHA512 
9371df40a5c5f0f809c5febcbdede6c743e2a0f1898d648ecb8c2be69ed746bdb879eb3653cd2c7aacd43148ac8536c401b119fcf63039b866e284e8003e73ee
+DIST shards-0.7.2.tar.gz 30398 BLAKE2B 
bf89f978cf9d4687902a8de4222f2c2121a52574c7f1ce46130a97c5770889693efc5d3fcc35208d6b1f23930f83fb98ba8f10391920ff0418c6d28eb810d6a8
 SHA512 
a99648ae292095278578e47971b556a0da90743db62689a76aae9eab986ad2185ad7adc13c4340f12fce835c5383d8aac93e35258d01fa658e521314eafaf942

diff --git a/dev-util/shards/shards-0.7.2.ebuild 
b/dev-util/shards/shards-0.7.2.ebuild
new file mode 100644
index 000..43d89d4cedb
--- /dev/null
+++ b/dev-util/shards/shards-0.7.2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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}"
+
+RESTRICT=test # missing files in tarball
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2016-11-25 Thread Sergei Trofimovich
commit: 4cbb7c1985252d425134eea97df88504a2fec874
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Nov 25 08:57:27 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 25 08:57:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cbb7c19

dev-util/shards: bump up to 0.7.1

Package-Manager: portage-2.3.2

 dev-util/shards/Manifest|  1 +
 dev-util/shards/shards-0.7.1.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 43edf99..a7309ca 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -2,3 +2,4 @@ DIST shards-0.6.1.tar.gz 26505 SHA256 
8e7d179a499a2fca895b534c6204e2e34828e6a645
 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
 DIST shards-0.6.4.tar.gz 26916 SHA256 
5972f1b40bb3253319f564dee513229f82b0dcb8eea1502ae7dc483a9c6da5a0 SHA512 
56475ab8287f469ec0b97d9ad7fcc36e75da8a4cd3fbddadfaf0156b6b0ede25331634bb3b41fa3e4b3c46adcd881838fe56c56de6e5bbf30d03e3106458e820
 WHIRLPOOL 
9ec386622e56a2cd3e8e494f68f1855365b8699fb229548d92e10794c421775ee855bbc0c236f5bdb1bb57406acbfa816234ae6d0785d16d5bf795fa186d8e64
+DIST shards-0.7.1.tar.gz 29722 SHA256 
31de819c66518479682ec781a39ef42c157a1a8e6e865544194534e2567cb110 SHA512 
9371df40a5c5f0f809c5febcbdede6c743e2a0f1898d648ecb8c2be69ed746bdb879eb3653cd2c7aacd43148ac8536c401b119fcf63039b866e284e8003e73ee
 WHIRLPOOL 
91b94257e177a87aebe31e9ed677c7fa5278384a86d7d210124c5741525922b27677a81d3271d1467ca792b9f8547b95f96548a962b49efa5f3245d905e660a0

diff --git a/dev-util/shards/shards-0.7.1.ebuild 
b/dev-util/shards/shards-0.7.1.ebuild
new file mode 100644
index ..826681b
--- /dev/null
+++ b/dev-util/shards/shards-0.7.1.ebuild
@@ -0,0 +1,25 @@
+# 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}"
+
+RESTRICT=test # missing files in tarball
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2016-09-02 Thread Sergei Trofimovich
commit: 1883046b47d18d86a5f2ff8c29a96642dca77edc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Sep  2 16:25:19 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Sep  2 16:38:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1883046b

dev-util/shards: bump up to 0.6.4

Package-Manager: portage-2.3.0

 dev-util/shards/Manifest|  1 +
 dev-util/shards/shards-0.6.4.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index c2f3cc0..43edf99 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,4 @@
 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
+DIST shards-0.6.4.tar.gz 26916 SHA256 
5972f1b40bb3253319f564dee513229f82b0dcb8eea1502ae7dc483a9c6da5a0 SHA512 
56475ab8287f469ec0b97d9ad7fcc36e75da8a4cd3fbddadfaf0156b6b0ede25331634bb3b41fa3e4b3c46adcd881838fe56c56de6e5bbf30d03e3106458e820
 WHIRLPOOL 
9ec386622e56a2cd3e8e494f68f1855365b8699fb229548d92e10794c421775ee855bbc0c236f5bdb1bb57406acbfa816234ae6d0785d16d5bf795fa186d8e64

diff --git a/dev-util/shards/shards-0.6.4.ebuild 
b/dev-util/shards/shards-0.6.4.ebuild
new file mode 100644
index ..c892d77
--- /dev/null
+++ b/dev-util/shards/shards-0.6.4.ebuild
@@ -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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2016-07-30 Thread Sergei Trofimovich
commit: 455daa784b1f3354f066c495bc4784e09e2b9eca
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 30 09:45:33 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 30 09:50:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=455daa78

dev-util/shards: bump up to 0.6.3

Package-Manager: portage-2.3.0

 dev-util/shards/Manifest|  1 +
 dev-util/shards/metadata.xml|  4 
 dev-util/shards/shards-0.6.3.ebuild | 23 +++
 3 files changed, 28 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 73d6f41..c2f3cc0 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -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

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index 5097e12..9c98005 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -5,6 +5,10 @@
longl...@gmail.com
Lixiao Chen

+   
+   sly...@gentoo.org
+   Sergei Trofimovich
+   

proxy-ma...@gentoo.org
Gentoo Proxy Maintainers Project

diff --git a/dev-util/shards/shards-0.6.3.ebuild 
b/dev-util/shards/shards-0.6.3.ebuild
new file mode 100644
index 000..c892d77
--- /dev/null
+++ b/dev-util/shards/shards-0.6.3.ebuild
@@ -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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2016-03-20 Thread Patrice Clement
commit: 204e437c31b7c4626d570f0ac4535f899ecd3e50
Author: loong0  gmail  com>
AuthorDate: Sun Mar 20 13:44:30 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 20 22:45:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=204e437c

dev-util/shards: version bump to 0.6.2

Closes: https://github.com/gentoo/gentoo/pull/1095

 dev-util/shards/Manifest|  1 +
 dev-util/shards/shards-0.6.2.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 687da2c..73d6f41 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1 +1,2 @@
 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

diff --git a/dev-util/shards/shards-0.6.2.ebuild 
b/dev-util/shards/shards-0.6.2.ebuild
new file mode 100644
index 000..c892d77
--- /dev/null
+++ b/dev-util/shards/shards-0.6.2.ebuild
@@ -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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2016-02-24 Thread Patrice Clement
commit: 7d2f24b624dad9d5ee5279949848c69ce9bbefd9
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Feb 24 21:25:39 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Feb 24 21:25:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d2f24b6

dev-util/shards: Add proxy-maint to metadata.xml file.

Package-Manager: portage-2.2.26

 dev-util/shards/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index 2bf78bc..5097e12 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -5,6 +5,10 @@
longl...@gmail.com
Lixiao Chen

+   
+   proxy-ma...@gentoo.org
+   Gentoo Proxy Maintainers Project
+   

Dependency manager for the Crystal language




[gentoo-commits] repo/gentoo:master commit in: dev-util/shards/

2016-02-24 Thread Patrice Clement
commit: 4042523c74e144578e2e5c675d0d25c11b557356
Author: loong0  gmail  com>
AuthorDate: Mon Feb 22 06:18:13 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Feb 22 16:06:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4042523c

dev-util/shards: Introduce new package

Dependency manager for the Crystal language

 dev-util/shards/Manifest|  1 +
 dev-util/shards/metadata.xml| 14 ++
 dev-util/shards/shards-0.6.1.ebuild | 23 +++
 3 files changed, 38 insertions(+)

diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
new file mode 100644
index 000..687da2c
--- /dev/null
+++ b/dev-util/shards/Manifest
@@ -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
index 000..2bf78bc
--- /dev/null
+++ b/dev-util/shards/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   longl...@gmail.com
+   Lixiao Chen
+   
+   
+   Dependency manager for the Crystal language
+   
+   
+   ysbaddaden/shards
+   
+

diff --git a/dev-util/shards/shards-0.6.1.ebuild 
b/dev-util/shards/shards-0.6.1.ebuild
new file mode 100644
index 000..95311f6
--- /dev/null
+++ b/dev-util/shards/shards-0.6.1.ebuild
@@ -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
+}