Gentoo Archives: gentoo-commits

From: Erik Mackdanz <stasibear@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/ledger/
Date: Thu, 02 Mar 2023 06:04:43
Message-Id: 1677737042.da2555bd4dcd9764a6a2186b4967b7b419cb995f.stasibear@gentoo
1 commit: da2555bd4dcd9764a6a2186b4967b7b419cb995f
2 Author: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 2 06:03:57 2023 +0000
4 Commit: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 2 06:04:02 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da2555bd
7
8 app-office/ledger: add 3.3.0
9
10 Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
11
12 app-office/ledger/Manifest | 1 +
13 app-office/ledger/ledger-3.3.0.ebuild | 113 ++++++++++++++++++++++++++++++++++
14 2 files changed, 114 insertions(+)
15
16 diff --git a/app-office/ledger/Manifest b/app-office/ledger/Manifest
17 index 7a65150ea97c..894a29ed1fa2 100644
18 --- a/app-office/ledger/Manifest
19 +++ b/app-office/ledger/Manifest
20 @@ -1 +1,2 @@
21 DIST ledger-3.2.1.tar.gz 790959 BLAKE2B a25b08f37c6bcf409fb60e0bcc6e11021515fe17f7eb6f23781bd7a7c16b58ac92d4684e5936901ed87f2f5be4df427bd95fe856f8e7eff1e2609329866de71a SHA512 526c60cee354c9d2ead38cef3b89b349467e41fa3ec0927b51e7246a3352f19f0f81574211f20ba9bac5915590b870b9f9478a103ab661d3d9a10f41c52f4512
22 +DIST ledger-3.3.0.tar.gz 824584 BLAKE2B e5f5c63941025391f1e6431a5237c04c035700c7ea26e7a6b077d32195ad20ad120f001f3d630621ad702fa99491463f7235b8ab2fce6a77d4d815ce16c1be2a SHA512 2de12b46dbc770dd615fbb8a3ad951102fdf63d0de03920000361b4e8c1ef001f3f0b76911d92ec5d9ef79d6c486c9969c372f27eddc9f2e227388d4d9b7641f
23
24 diff --git a/app-office/ledger/ledger-3.3.0.ebuild b/app-office/ledger/ledger-3.3.0.ebuild
25 new file mode 100644
26 index 000000000000..833204a40ea1
27 --- /dev/null
28 +++ b/app-office/ledger/ledger-3.3.0.ebuild
29 @@ -0,0 +1,113 @@
30 +# Copyright 1999-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{9,10,11} )
36 +CMAKE_REMOVE_MODULES_LIST=( FindPython Support )
37 +inherit bash-completion-r1 check-reqs cmake python-single-r1
38 +
39 +DESCRIPTION="Double-entry accounting system with a command-line reporting interface"
40 +HOMEPAGE="https://www.ledger-cli.org/"
41 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
46 +IUSE="debug doc python"
47 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
48 +
49 +RESTRICT="test"
50 +
51 +CHECKREQS_MEMORY=8G
52 +
53 +RDEPEND="
54 + dev-libs/boost:=[python?]
55 + dev-libs/gmp:0=
56 + dev-libs/mpfr:0=
57 + python? (
58 + $(python_gen_cond_dep '
59 + dev-libs/boost:=[${PYTHON_USEDEP}]
60 + dev-python/cheetah3:=[${PYTHON_USEDEP}]
61 + ')
62 + ${PYTHON_DEPS}
63 + )
64 +"
65 +DEPEND="${RDEPEND}
66 + dev-libs/utfcpp
67 + doc? (
68 + app-text/texlive[extra]
69 + sys-apps/texinfo
70 + virtual/texi2dvi
71 + )
72 +"
73 +
74 +pkg_pretend() {
75 + if use python; then
76 + check-reqs_pkg_pretend
77 + fi
78 +}
79 +
80 +pkg_setup() {
81 + if use python; then
82 + check-reqs_pkg_setup
83 + python-single-r1_pkg_setup
84 + fi
85 +}
86 +
87 +src_prepare() {
88 + cmake_src_prepare
89 +
90 + # Want to type "info ledger" not "info ledger3"
91 + sed -i -e 's/ledger3/ledger/g' \
92 + doc/{CMakeLists.txt,ledger3.texi} test/CheckTexinfo.py \
93 + tools/{cleanup.sh,gendocs.sh,prepare-commit-msg,spellcheck.sh} \
94 + || die "Failed to update info file name in file contents"
95 +
96 + mv doc/ledger{3,}.texi || die "Failed to rename info file name"
97 +
98 + rm -r lib/utfcpp || die
99 +}
100 +
101 +src_configure() {
102 + local mycmakeargs=(
103 + -DBUILD_DOCS="$(usex doc)"
104 + -DBUILD_WEB_DOCS="$(usex doc)"
105 + -DUSE_PYTHON="$(usex python)"
106 + -DCMAKE_INSTALL_DOCDIR="/usr/share/doc/${PF}"
107 + -DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON
108 + -DBUILD_DEBUG="$(usex debug)"
109 + -DUTFCPP_PATH="${ESYSROOT}/usr/include/utf8cpp"
110 + )
111 + if use python; then
112 + mycmakeargs+=(
113 + -DPython_EXECUTABLE="${PYTHON}"
114 + -DPython_INCLUDE_DIR="$(python_get_includedir)"
115 + )
116 + fi
117 +
118 + cmake_src_configure
119 +}
120 +
121 +src_compile() {
122 + cmake_src_compile
123 +
124 + use doc && cmake_src_compile doc
125 +}
126 +
127 +src_install() {
128 + cmake_src_install
129 +
130 + newbashcomp contrib/${PN}-completion.bash ${PN}
131 +}
132 +
133 +pkg_postinst() {
134 + elog
135 + elog "Since version 3, vim support is released separately."
136 + elog "See https://github.com/ledger/vim-ledger"
137 + elog
138 + elog "For Emacs mode, emerge app-emacs/ledger-mode"
139 +}
140 +
141 +# rainy day TODO:
142 +# - IUSE test