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 702C61382C5 for ; Sat, 17 Apr 2021 20:00:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D74EE0872; Sat, 17 Apr 2021 20:00:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7448BE086B for ; Sat, 17 Apr 2021 20:00:38 +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 8F8AD340A7F for ; Sat, 17 Apr 2021 20:00:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D417702 for ; Sat, 17 Apr 2021 20:00:28 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1618626707.169419e63c921b232f563137550b2fad2093cd20.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-text/lowdown/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/lowdown/Manifest app-text/lowdown/lowdown-0.8.4.ebuild app-text/lowdown/lowdown-9999.ebuild app-text/lowdown/metadata.xml X-VCS-Directories: app-text/lowdown/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 169419e63c921b232f563137550b2fad2093cd20 X-VCS-Branch: master Date: Sat, 17 Apr 2021 20:00:28 +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: 112f188d-625f-4833-9612-4aa6cc3c1ffb X-Archives-Hash: 8564ced4385ea4c73a0fefd09f205411 commit: 169419e63c921b232f563137550b2fad2093cd20 Author: Theo Anderson posteo de> AuthorDate: Sat Apr 17 02:31:47 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Apr 17 02:31:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=169419e6 app-text/lowdown: moved to ::gentoo Signed-off-by: Theo Anderson posteo.de> app-text/lowdown/Manifest | 1 - app-text/lowdown/lowdown-0.8.4.ebuild | 45 ----------------------------------- app-text/lowdown/lowdown-9999.ebuild | 45 ----------------------------------- app-text/lowdown/metadata.xml | 17 ------------- 4 files changed, 108 deletions(-) diff --git a/app-text/lowdown/Manifest b/app-text/lowdown/Manifest deleted file mode 100644 index 9885a61c9..000000000 --- a/app-text/lowdown/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST lowdown-0.8.4.tar.gz 210080 BLAKE2B 7cf0de77cda02f9c39df40f3e54711654d84d34941094db0d8d28ef26d385a28216e13669c08e65d13b1924a24f50a0f2815145edc4a5d89fab7659ccbe43e9d SHA512 d1d63c96a53692286285a64809317f4ff4b6d2f4499d984cd1284787f3d7ce42ff1ef842bfebd0a2cb4deccfa2bf3d20ff0deb41443b361a314fcde0ee59bd72 diff --git a/app-text/lowdown/lowdown-0.8.4.ebuild b/app-text/lowdown/lowdown-0.8.4.ebuild deleted file mode 100644 index 361710afc..000000000 --- a/app-text/lowdown/lowdown-0.8.4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# 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" -else - SRC_URI="https://kristaps.bsd.lv/${PN}/snapshots/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="ISC" -SLOT="0" - -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 deleted file mode 100644 index 361710afc..000000000 --- a/app-text/lowdown/lowdown-9999.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# 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" -else - SRC_URI="https://kristaps.bsd.lv/${PN}/snapshots/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="ISC" -SLOT="0" - -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 deleted file mode 100644 index d3650e990..000000000 --- a/app-text/lowdown/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - kristapsdz - kristaps@bsd.lv - - https://kristaps.bsd.lv/lowdown/archive.html - https://github.com/kristapsdz/lowdown/issues - kristapsdz/lowdown - - - cybertailor@gmail.com - Anna - -