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 0322D138239 for ; Sun, 18 Apr 2021 13:59:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33CE1E0798; Sun, 18 Apr 2021 13:59:18 +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 1A7E3E0798 for ; Sun, 18 Apr 2021 13:59:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 005E033BEF5 for ; Sun, 18 Apr 2021 13:59:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FA91C3 for ; Sun, 18 Apr 2021 13:59:15 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1618754337.fdbd8a3e1bacaa97edec51964b6250e9f957def7.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/fictionup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/fictionup/fictionup-0.2.1.ebuild X-VCS-Directories: app-text/fictionup/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: fdbd8a3e1bacaa97edec51964b6250e9f957def7 X-VCS-Branch: master Date: Sun, 18 Apr 2021 13:59:15 +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: 13749f8a-7c6a-42b2-bbb6-c605752092bd X-Archives-Hash: e35a7372a146afde0f4849f90775ce9e commit: fdbd8a3e1bacaa97edec51964b6250e9f957def7 Author: Andrey Grozin gentoo org> AuthorDate: Sun Apr 18 13:58:57 2021 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Sun Apr 18 13:58:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdbd8a3e app-text/fictionup: use cmake eclass Closes: https://bugs.gentoo.org/770667 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrey Grozin gentoo.org> app-text/fictionup/fictionup-0.2.1.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app-text/fictionup/fictionup-0.2.1.ebuild b/app-text/fictionup/fictionup-0.2.1.ebuild index fde9cbdf0fb..8ed3f78991a 100644 --- a/app-text/fictionup/fictionup-0.2.1.ebuild +++ b/app-text/fictionup/fictionup-0.2.1.ebuild @@ -1,15 +1,17 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils -DESCRIPTION="A command-line markdown to fb2 convertor" +inherit cmake + +DESCRIPTION="Command-line markdown to fb2 convertor" HOMEPAGE="http://cdslow.org.ru/fictionup/" SRC_URI="http://cdslow.org.ru/files/${PN}/${P}.tar.gz" + LICENSE="GPL-3" SLOT="0" -IUSE="" KEYWORDS="~amd64 ~x86" + DEPEND="dev-libs/libyaml" RDEPEND="${DEPEND}"