Gentoo Archives: gentoo-commits

From: "Aaron W. Swenson" <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/fossil/
Date: Mon, 08 Aug 2022 10:59:09
Message-Id: 1659956164.a4ebe4de9cb26ae441d76fe5f1238499b74ab9ca.titanofold@gentoo
1 commit: a4ebe4de9cb26ae441d76fe5f1238499b74ab9ca
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 8 10:56:04 2022 +0000
4 Commit: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 8 10:56:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ebe4de
7
8 dev-vcs/fossil: Bump to 2.19
9
10 Drop miniz use flag.
11
12 Closes: https://bugs.gentoo.org/838424
13 Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>
14
15 dev-vcs/fossil/Manifest | 1 +
16 dev-vcs/fossil/fossil-2.19.ebuild | 77 +++++++++++++++++++++++++++++++++++++++
17 2 files changed, 78 insertions(+)
18
19 diff --git a/dev-vcs/fossil/Manifest b/dev-vcs/fossil/Manifest
20 index 3c571e8e27ea..a07aa4141718 100644
21 --- a/dev-vcs/fossil/Manifest
22 +++ b/dev-vcs/fossil/Manifest
23 @@ -1,2 +1,3 @@
24 DIST fossil-src-2.16.tar.gz 6275775 BLAKE2B 504f828f121385ec73311b340e0abfdba7da6a8571adb390c55c75fea0ef027366fb914c12552e177988bedbb735a3148d87ebdb23ffc2ce4b7bef8ef603692a SHA512 0569640a3b509c592f812a42526eec88ead034ba0ba3de93da62cfb1caa751954ae185eaa3398d411a02ee2a858ecae6cdf4e47199847527f7524fc9798a4b12
25 DIST fossil-src-2.18.tar.gz 6308652 BLAKE2B 299406d365e24c139e8bfbf94dc0aee2c04aa02a9f4c48d1425d0f6d21830aece10cbc5a38cee18cec03d3d0f39db3726d4890c09ca9bfc84a5058e76756ed4d SHA512 9dfeef1cc394af7afc6b68d2ebf084d5962698123518999130162718d450d061ab286b5f4039cde1af0e17059a9c801f1ded974fdb78b0965b73a7f8c80fd277
26 +DIST fossil-src-2.19.tar.gz 6435868 BLAKE2B 414dd8b1630bb6a8bcc22f3528da60386663e7f31191e5134474e37211e55323af45947452a0f09e21964dd3cd94ca6cf6e34ecd74e0d3e4f0dce7a50146f0ff SHA512 fcd84df2d84c3a958bb19228de4320456382d3c925717c58bec42de86d96383a9208fb31ba6aaeccd9bc6bba949048d5c1ce3d2b3e8535951956ae18d9aa34e4
27
28 diff --git a/dev-vcs/fossil/fossil-2.19.ebuild b/dev-vcs/fossil/fossil-2.19.ebuild
29 new file mode 100644
30 index 000000000000..76c67fd0f147
31 --- /dev/null
32 +++ b/dev-vcs/fossil/fossil-2.19.ebuild
33 @@ -0,0 +1,77 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit toolchain-funcs
40 +
41 +MY_TAG="1e131febd3fbb028d00cab6d020214e8fe36be95daaf93237523c29c542e9a5f"
42 +
43 +DESCRIPTION="Simple, high-reliability, source control management, and more"
44 +HOMEPAGE="https://www.fossil-scm.org/"
45 +SRC_URI="https://fossil-scm.org/home/tarball/${MY_TAG}/fossil-src-${PV}.tar.gz"
46 +
47 +LICENSE="BSD-2"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~x86"
50 +IUSE="debug fusefs json system-sqlite +ssl static tcl tcl-stubs
51 + tcl-private-stubs th1-docs th1-hooks"
52 +
53 +# Please check sqlite minimum version on every release. This can be done with:
54 +# ./configure --print-minimum-sqlite-version
55 +RDEPEND="
56 + sys-libs/zlib
57 + || (
58 + sys-libs/readline:0
59 + dev-libs/libedit
60 + )
61 + system-sqlite? ( >=dev-db/sqlite-3.38.0:3 )
62 + ssl? ( dev-libs/openssl:0= )
63 + tcl? ( dev-lang/tcl:0= )
64 +"
65 +
66 +# Either tcl or jimtcl need to be present to build Fossil (Bug #675778)
67 +DEPEND="${RDEPEND}
68 + !tcl? (
69 + || (
70 + dev-lang/tcl:*
71 + dev-lang/jimtcl:*
72 + )
73 + )
74 +"
75 +
76 +# Tests can't be run from the build directory
77 +RESTRICT="test"
78 +
79 +PATCHES=(
80 + # fossil-2.10-check-lib64-for-tcl.patch: Bug 690828
81 + "${FILESDIR}"/fossil-2.10-check-lib64-for-tcl.patch
82 +)
83 +
84 +S="${WORKDIR}/fossil-src-${PV}"
85 +
86 +src_configure() {
87 + # this is not an autotools situation so don't make it seem like one
88 + # --with-tcl: works
89 + # --without-tcl: dies
90 + local myconf="--with-openssl=$(usex ssl auto none)"
91 + use debug && myconf+=' --fossil-debug'
92 + use json && myconf+=' --json'
93 + use system-sqlite && myconf+=' --disable-internal-sqlite'
94 + use static && myconf+=' --static'
95 + use tcl && myconf+=' --with-tcl=1'
96 + use fusefs || myconf+=' --disable-fusefs'
97 +
98 + local u useflags
99 + useflags=( tcl-stubs tcl-private-stubs th1-docs th1-hooks )
100 + for u in ${useflags[@]} ; do
101 + use ${u} && myconf+=" --with-${u}"
102 + done
103 +
104 + tc-export CC CXX
105 + CC_FOR_BUILD=${CC} ./configure ${myconf} || die
106 +}
107 +
108 +src_install() {
109 + dobin fossil
110 +}