diff options
author | 2022-11-09 00:03:33 +0500 | |
---|---|---|
committer | 2022-11-09 00:03:33 +0500 | |
commit | cfeb655d90dd5cde4179c66deebd1348246b739b (patch) | |
tree | a310c65c50e22e0acd97f203aaba438da2f1cc5f /dev-crystal | |
parent | dev-crystal/jbuilder: new package, add 1.0.0 (diff) | |
download | guru-cfeb655d90dd5cde4179c66deebd1348246b739b.tar.gz guru-cfeb655d90dd5cde4179c66deebd1348246b739b.tar.bz2 guru-cfeb655d90dd5cde4179c66deebd1348246b739b.zip |
dev-crystal/inflector: new package, add 1.0.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
Diffstat (limited to 'dev-crystal')
-rw-r--r-- | dev-crystal/inflector/Manifest | 1 | ||||
-rw-r--r-- | dev-crystal/inflector/inflector-1.0.0.ebuild | 23 | ||||
-rw-r--r-- | dev-crystal/inflector/metadata.xml | 8 |
3 files changed, 32 insertions, 0 deletions
diff --git a/dev-crystal/inflector/Manifest b/dev-crystal/inflector/Manifest new file mode 100644 index 000000000..042447e60 --- /dev/null +++ b/dev-crystal/inflector/Manifest @@ -0,0 +1 @@ +DIST inflector-1.0.0.tar.gz 18959 BLAKE2B 87afb352c352ed0f6db687e523a9f79bd5533ec96a2892e617e9ec8478d5eb4913893337861b0714c70c1f1b659afaf591eb00d5eabf620e0120d04c16c572bb SHA512 3452a1c14499b7c35ab5e47b64347087cc1f24d5cd0a23373135d693a53f5d308a55e6c2e584fc39e1a6b191de8e16aab46cb0face1876cdf24c337231fd5ea2 diff --git a/dev-crystal/inflector/inflector-1.0.0.ebuild b/dev-crystal/inflector/inflector-1.0.0.ebuild new file mode 100644 index 000000000..241eef58e --- /dev/null +++ b/dev-crystal/inflector/inflector-1.0.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit shards + +MY_PN="${PN}.cr" +DESCRIPTION="String inflectors for Crystal" +HOMEPAGE="https://github.com/phoffer/inflector.cr" +SRC_URI="https://github.com/phoffer/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +src_prepare() { + default + + # test error + rm spec/inflector_spec.cr || die +} diff --git a/dev-crystal/inflector/metadata.xml b/dev-crystal/inflector/metadata.xml new file mode 100644 index 000000000..7ebbd0334 --- /dev/null +++ b/dev-crystal/inflector/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>cyber+gentoo@sysrq.in</email> + <name>Anna</name> + </maintainer> +</pkgmetadata> |