Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/fictionup/
Date: Sun, 18 Apr 2021 13:59:19
Message-Id: 1618754337.fdbd8a3e1bacaa97edec51964b6250e9f957def7.grozin@gentoo
1 commit: fdbd8a3e1bacaa97edec51964b6250e9f957def7
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 18 13:58:57 2021 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 13:58:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdbd8a3e
7
8 app-text/fictionup: use cmake eclass
9
10 Closes: https://bugs.gentoo.org/770667
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
13
14 app-text/fictionup/fictionup-0.2.1.ebuild | 10 ++++++----
15 1 file changed, 6 insertions(+), 4 deletions(-)
16
17 diff --git a/app-text/fictionup/fictionup-0.2.1.ebuild b/app-text/fictionup/fictionup-0.2.1.ebuild
18 index fde9cbdf0fb..8ed3f78991a 100644
19 --- a/app-text/fictionup/fictionup-0.2.1.ebuild
20 +++ b/app-text/fictionup/fictionup-0.2.1.ebuild
21 @@ -1,15 +1,17 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 -inherit cmake-utils
28
29 -DESCRIPTION="A command-line markdown to fb2 convertor"
30 +inherit cmake
31 +
32 +DESCRIPTION="Command-line markdown to fb2 convertor"
33 HOMEPAGE="http://cdslow.org.ru/fictionup/"
34 SRC_URI="http://cdslow.org.ru/files/${PN}/${P}.tar.gz"
35 +
36 LICENSE="GPL-3"
37 SLOT="0"
38 -IUSE=""
39 KEYWORDS="~amd64 ~x86"
40 +
41 DEPEND="dev-libs/libyaml"
42 RDEPEND="${DEPEND}"