Gentoo Archives: gentoo-commits

From: Steven Stallion <sstallion@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-vim/vimwiki-cli/
Date: Sat, 07 May 2022 22:22:42
Message-Id: 1651962126.7e25d484b9fdd032c4aa1b11388727f519ae25dd.sstallion@gentoo
1 commit: 7e25d484b9fdd032c4aa1b11388727f519ae25dd
2 Author: Steven Stallion <sstallion <AT> gmail <DOT> com>
3 AuthorDate: Sat May 7 22:21:49 2022 +0000
4 Commit: Steven Stallion <sstallion <AT> gmail <DOT> com>
5 CommitDate: Sat May 7 22:22:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7e25d484
7
8 app-vim/vimwiki-cli: new package, add 1.0.0
9
10 Signed-off-by: Steven Stallion <sstallion <AT> gmail.com>
11
12 app-vim/vimwiki-cli/Manifest | 1 +
13 app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/app-vim/vimwiki-cli/Manifest b/app-vim/vimwiki-cli/Manifest
17 new file mode 100644
18 index 000000000..43da680a0
19 --- /dev/null
20 +++ b/app-vim/vimwiki-cli/Manifest
21 @@ -0,0 +1 @@
22 +DIST vimwiki-cli-1.0.0.tar.gz 26610 BLAKE2B addf8195480270201d7d2b8be2f400dce59fdcf7cf9a557bbb040390350be0bddd3cdb604ec6ea5de8582fcd04287a49377c79c33c82a9578278c139cafb84f7 SHA512 f7ee64ec0d748039ffa18aabf402f8c1e7e665d73ac5a2182016157a3e6eb8f711c5df986d7a7f1efec01c1041ba4d5f1d8e40f9f5d2d64dd92c8d30eaff2df5
23
24 diff --git a/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild b/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild
25 new file mode 100644
26 index 000000000..d7b8c2bf4
27 --- /dev/null
28 +++ b/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{6..10} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Command-line interface for Vimwiki"
40 +HOMEPAGE="https://github.com/sstallion/vimwiki-cli"
41 +SRC_URI="https://github.com/sstallion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="BSD-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
46 +
47 +RDEPEND="
48 + >=dev-python/click-7.1[${PYTHON_USEDEP}]
49 +"
50 +
51 +distutils_enable_tests pytest