From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2CC61382C5 for ; Sun, 21 Mar 2021 20:18:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36889E081A; Sun, 21 Mar 2021 20:18:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06C00E081A for ; Sun, 21 Mar 2021 20:18:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3B95B335CC8 for ; Sun, 21 Mar 2021 20:18:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4DE756F for ; Sun, 21 Mar 2021 20:18:02 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1616357851.ec651080b5707f8581ec59c92b3ad7d298bb7679.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-text/lowdown/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/lowdown/Manifest app-text/lowdown/lowdown-0.8.3.ebuild app-text/lowdown/lowdown-9999.ebuild app-text/lowdown/metadata.xml X-VCS-Directories: app-text/lowdown/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: ec651080b5707f8581ec59c92b3ad7d298bb7679 X-VCS-Branch: dev Date: Sun, 21 Mar 2021 20:18:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b025aa5c-68f7-4fcb-b334-465eb36f7faa X-Archives-Hash: b2a5dbb380ba39418c142f39bac831e5 commit: ec651080b5707f8581ec59c92b3ad7d298bb7679 Author: Anna Vyalkova gmail com> AuthorDate: Sun Mar 21 20:17:31 2021 +0000 Commit: Anna Vyalkova gmail com> CommitDate: Sun Mar 21 20:17:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ec651080 app-text/lowdown: add package Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Anna Vyalkova gmail.com> app-text/lowdown/Manifest | 1 + app-text/lowdown/lowdown-0.8.3.ebuild | 50 +++++++++++++++++++++++++++++++++++ app-text/lowdown/lowdown-9999.ebuild | 50 +++++++++++++++++++++++++++++++++++ app-text/lowdown/metadata.xml | 17 ++++++++++++ 4 files changed, 118 insertions(+) diff --git a/app-text/lowdown/Manifest b/app-text/lowdown/Manifest new file mode 100644 index 00000000..67bc61f4 --- /dev/null +++ b/app-text/lowdown/Manifest @@ -0,0 +1 @@ +DIST lowdown-0.8.3.tar.gz 201286 BLAKE2B 7bbebfa625e98e4a23fde37e67c7a02c4113242ddd7cee249393f3f74db52a799085bb812d323e42092c823be122fac0513e9d50b69b28c02a443b7cfd7706a0 SHA512 6c1a8fe7fc9ee0a34d0be35aefbcf597e0335b31cdfc3201e5e5db58f9bc79b26ddd2495b74ce0b8e89b486df300a2ea338c18bc991c61527a2360dca2c9804f diff --git a/app-text/lowdown/lowdown-0.8.3.ebuild b/app-text/lowdown/lowdown-0.8.3.ebuild new file mode 100644 index 00000000..8f104fb8 --- /dev/null +++ b/app-text/lowdown/lowdown-0.8.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="simple markdown translator" +HOMEPAGE="https://kristaps.bsd.lv/lowdown/" + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/kristapsdz/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://kristaps.bsd.lv/${PN}/snapshots/${P}.tar.gz" + KEYWORDS="~*" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_prepare() { + default + + # note: not an autoconf configure script (oconfigure) + cat <<-EOF > "configure.local" + PREFIX="${EPREFIX}/usr" + BINDIR="${EPREFIX}/usr/bin" + SBINDIR="${EPREFIX}/usr/sbin" + LIBDIR="${EPREFIX}/usr/$(get_libdir)" + MANDIR="${EPREFIX}/usr/share/man" + INCLUDEDIR="${EPREFIX}/usr/include" + + CFLAGS="${CFLAGS} ${CPPFLAGS}" + LDFLAGS="${LDFLAGS}" + CC="$(tc-getCC)" + + # fix utf-8 locale on musl + $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '') + EOF +} + +src_configure() { + ./configure +} diff --git a/app-text/lowdown/lowdown-9999.ebuild b/app-text/lowdown/lowdown-9999.ebuild new file mode 100644 index 00000000..8f104fb8 --- /dev/null +++ b/app-text/lowdown/lowdown-9999.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="simple markdown translator" +HOMEPAGE="https://kristaps.bsd.lv/lowdown/" + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/kristapsdz/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://kristaps.bsd.lv/${PN}/snapshots/${P}.tar.gz" + KEYWORDS="~*" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_prepare() { + default + + # note: not an autoconf configure script (oconfigure) + cat <<-EOF > "configure.local" + PREFIX="${EPREFIX}/usr" + BINDIR="${EPREFIX}/usr/bin" + SBINDIR="${EPREFIX}/usr/sbin" + LIBDIR="${EPREFIX}/usr/$(get_libdir)" + MANDIR="${EPREFIX}/usr/share/man" + INCLUDEDIR="${EPREFIX}/usr/include" + + CFLAGS="${CFLAGS} ${CPPFLAGS}" + LDFLAGS="${LDFLAGS}" + CC="$(tc-getCC)" + + # fix utf-8 locale on musl + $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '') + EOF +} + +src_configure() { + ./configure +} diff --git a/app-text/lowdown/metadata.xml b/app-text/lowdown/metadata.xml new file mode 100644 index 00000000..d3650e99 --- /dev/null +++ b/app-text/lowdown/metadata.xml @@ -0,0 +1,17 @@ + + + + + + kristapsdz + kristaps@bsd.lv + + https://kristaps.bsd.lv/lowdown/archive.html + https://github.com/kristapsdz/lowdown/issues + kristapsdz/lowdown + + + cybertailor@gmail.com + Anna + +