Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/zim/
Date: Fri, 15 Oct 2021 16:28:04
Message-Id: 1634315135.ef103d0c54d4859b42085436d7c1abf65faa8d51.voyageur@gentoo
1 commit: ef103d0c54d4859b42085436d7c1abf65faa8d51
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 15 16:24:51 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 15 16:25:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef103d0c
7
8 x11-misc/zim: 0.74.2 bump
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 x11-misc/zim/Manifest | 1 +
14 x11-misc/zim/zim-0.74.2.ebuild | 73 ++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 74 insertions(+)
16
17 diff --git a/x11-misc/zim/Manifest b/x11-misc/zim/Manifest
18 index 02c796d9019..7eeeb63b2e6 100644
19 --- a/x11-misc/zim/Manifest
20 +++ b/x11-misc/zim/Manifest
21 @@ -1,3 +1,4 @@
22 DIST zim-0.73.5.tar.gz 2702734 BLAKE2B 494dbe8ac0cbb46c15655cdf56bc25010591bd00faec94608ccd9fa7cec01385c6756480e5a3f37b50f44984ed69d30f33570ca913dab7ede2b89a4bf0cc4016 SHA512 f2c335d4697e7d0535b2abb200af45b7d753f2964e94a35c2ec8d4fb8deae0842aef086e09430a50d4ff5ecee89eb1f6f881a0b430877209e4a8d83ee046c4f9
23 DIST zim-0.74.0.tar.gz 2917916 BLAKE2B 32b1086395142d07b46425264e3ee6d6782d62f138fb661c0bc392b09054f0664e7a2d8b75f409a843b1e85c93a11e41e041019f69ef657e11d311253ba804ae SHA512 39e3849c14bc474b90583a708c8ead287b27a8eb5f714ad63f168f205fb6584c4ff2f9df45755aa3e3b012639891587c7153ae4e0fef71276241ddce6e32c01f
24 DIST zim-0.74.1.tar.gz 2994036 BLAKE2B 9de89ce74bc08ec0b60f34d693ffdb3b8220efe6f03e3d77686c9d3db135713d7eb5e0beed35eb6f979e489f12b9d65b9b66e0e7449c45b955711684154ae6b8 SHA512 f78bf1ee6082488efe2e581984c85ffbddbfb7e5adfdf491232e93a8376580275f329e2d02c482afd70bbc70f62ca6f0b3bce636cff58b0a1d592dd4b8194e3a
25 +DIST zim-0.74.2.tar.gz 3008954 BLAKE2B d0ecf666804931412f6e32aef54193ed96c67049e0fd3e7a373973d4826f16a9483eaa0940cc953573c104c704115905b036e5d0355961c0be86bebc6189bd9a SHA512 112c1e9d28a10643711f665e03c8a37259637b3471338aaca0a834afcc96c658ca5bf863e63bd5f01ce1fcdfb3eef3f2dcf1d10f8113d2158af2e91234b023b9
26
27 diff --git a/x11-misc/zim/zim-0.74.2.ebuild b/x11-misc/zim/zim-0.74.2.ebuild
28 new file mode 100644
29 index 00000000000..131369dc028
30 --- /dev/null
31 +++ b/x11-misc/zim/zim-0.74.2.ebuild
32 @@ -0,0 +1,73 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +PYTHON_COMPAT=( python3_{8,9} )
38 +PYTHON_REQ_USE="sqlite"
39 +DISTUTILS_SINGLE_IMPL=1
40 +DISTUTILS_USE_SETUPTOOLS=no
41 +inherit distutils-r1 virtualx xdg
42 +
43 +DESCRIPTION="A desktop wiki"
44 +HOMEPAGE="
45 + https://zim-wiki.org/
46 + https://github.com/zim-desktop-wiki/zim-desktop-wiki
47 +"
48 +SRC_URI="https://github.com/${PN}-desktop-wiki/${PN}-desktop-wiki/archive/${PV/_/-}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="BSD GPL-2+"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~x86"
53 +RESTRICT="test"
54 +
55 +RDEPEND="
56 + $(python_gen_cond_dep '
57 + dev-python/pygobject:3[${PYTHON_USEDEP}]
58 + dev-python/pyxdg[${PYTHON_USEDEP}]
59 + ')
60 + x11-libs/gtk+:3[introspection]
61 + x11-misc/xdg-utils
62 +"
63 +DEPEND="
64 + ${RDEPEND}
65 +"
66 +DOCS=( CHANGELOG.md CONTRIBUTING.md PLUGIN_WRITING.md README.md )
67 +PATCHES=( "${FILESDIR}"/${PN}-0.60-remove-ubuntu-theme.patch )
68 +S=${WORKDIR}/${PN}-desktop-wiki-${PV/_/-}
69 +
70 +python_prepare_all() {
71 + sed -i -e "s/'USER'/'LOGNAME'/g" zim/__init__.py zim/fs.py || die
72 +
73 + if [[ ${LINGUAS} ]]; then
74 + local lingua
75 + for lingua in translations/*.po; do
76 + lingua=${lingua/.po}
77 + lingua=${lingua/translations\/}
78 + has ${lingua} ${LINGUAS} || \
79 + { rm translations/${lingua}.po || die; }
80 + done
81 + fi
82 +
83 + distutils-r1_python_prepare_all
84 + export XDG_RUNTIME_DIR=fakethis
85 +}
86 +
87 +python_install() {
88 + distutils-r1_python_install
89 +}
90 +
91 +pkg_postinst() {
92 + xdg_pkg_postinst
93 + if ! has_version ${CATEGORY}/${PN}; then
94 + elog "Please install these packages for additional functionality"
95 + elog " dev-lang/R"
96 + elog " dev-python/gtkspell-python"
97 + elog " dev-vcs/bzr"
98 + elog " media-gfx/graphviz"
99 + elog " media-gfx/imagemagick"
100 + elog " media-gfx/scrot"
101 + elog " media-sound/lilypond"
102 + elog " sci-visualization/gnuplot"
103 + elog " virtual/latex-base app-text/dvipng"
104 + fi
105 +}