From 6cc3ecc2b7ff6712935c54b7779ef9676ec66bca Mon Sep 17 00:00:00 2001 From: Alexander Miroshnichenko Date: Wed, 8 Apr 2020 09:34:14 +0300 Subject: [PATCH] sys-apps/musl-locales: Added locale program for musl libc --- sys-apps/musl-locales/Manifest | 2 ++ sys-apps/musl-locales/metadata.xml | 11 ++++++++++ .../musl-locales/musl-locales-9999.ebuild | 22 +++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 sys-apps/musl-locales/Manifest create mode 100644 sys-apps/musl-locales/metadata.xml create mode 100644 sys-apps/musl-locales/musl-locales-9999.ebuild diff --git a/sys-apps/musl-locales/Manifest b/sys-apps/musl-locales/Manifest new file mode 100644 index 0000000..975d7bc --- /dev/null +++ b/sys-apps/musl-locales/Manifest @@ -0,0 +1,2 @@ +EBUILD musl-locales-9999.ebuild 450 BLAKE2B 83542c591d2818ce7c62ac2c211c968b6913054b9dd9486de4da83214f7292cc21d64f1b43f533f340799c52bcc7792d73659ad931b8c317d2ac09fd228763c2 SHA512 e341181e9d446a498f1fdd68bf25775edc6eee045871573ed299d7dfe7bd7dd3b0a2da14d47d9df8ee53a2f751c49c287061ccab3c50e851f307e590d2bf0eb8 +MISC metadata.xml 345 BLAKE2B 9f4ec4fd903d6c9c242debfb1bd7df245e71737b327027f9388bde3c126c8f24ea1ab5866652d3285c5f5efd9082eae7b5ca16586a77a69d67b0ff35b122dabd SHA512 63572ae56b612a7831029de91a84717358f59d9b1daa4ec70bc2596b8784a2e5f94ca8a6a05adf9f36a9fb962792029acbdc93858406f1fe0057c257e64ddb4d diff --git a/sys-apps/musl-locales/metadata.xml b/sys-apps/musl-locales/metadata.xml new file mode 100644 index 0000000..cd805cb --- /dev/null +++ b/sys-apps/musl-locales/metadata.xml @@ -0,0 +1,11 @@ + + + + + alex@millerson.name + Alexander Miroshnichenko + + +Locale program for musl libc + + diff --git a/sys-apps/musl-locales/musl-locales-9999.ebuild b/sys-apps/musl-locales/musl-locales-9999.ebuild new file mode 100644 index 0000000..7adc502 --- /dev/null +++ b/sys-apps/musl-locales/musl-locales-9999.ebuild @@ -0,0 +1,22 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Locale program for musl libc" +HOMEPAGE="https://gitlab.com/rilian-la-te/musl-locales" + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/rilian-la-te/musl-locales.git" +fi + +inherit cmake-utils + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +DEPEND="sys-libs/musl" +RDEPEND="${DEPEND}" +BDEPEND="sys-devel/gettext"