public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aaron W. Swenson" <titanofold@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/fossil/
Date: Mon,  5 Jul 2021 10:18:14 +0000 (UTC)	[thread overview]
Message-ID: <1625480025.890a83ca5a2be8f7663757c937ccfe2b349d22fc.titanofold@gentoo> (raw)

commit:     890a83ca5a2be8f7663757c937ccfe2b349d22fc
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  5 10:13:45 2021 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Mon Jul  5 10:13:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=890a83ca

dev-vcs/fossil: Bump to 2.16

Security: Fix the client-side TLS so that it verifies that the server hostname
matches its certificate.

Bug: https://bugs.gentoo.org/800638
Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-vcs/fossil/Manifest           |  1 +
 dev-vcs/fossil/fossil-2.16.ebuild | 75 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/dev-vcs/fossil/Manifest b/dev-vcs/fossil/Manifest
index 217f726d0db..412f2aab1c2 100644
--- a/dev-vcs/fossil/Manifest
+++ b/dev-vcs/fossil/Manifest
@@ -1,3 +1,4 @@
 DIST fossil-src-2.12.1.tar.gz 6011181 BLAKE2B f9437c4fb20314706bbbec70efbb6a53e2ac7760986baf88ea72505f03877a5d1069d0d2828aa2bfefac96c1358e4c8f824405d61fd24d490442fa8b768711e9 SHA512 08b7fef5a3071e968dedbc645aebf2e873ecf80049b5986d38f851a407b2b8b0c854cfcdfa5ec80eac5bc1b158c5fac3bb4b263d1adb8be470529e67dc6e8cee
 DIST fossil-src-2.13.tar.gz 6121223 BLAKE2B 41bb83b40faf05d38ccbcc13bde858ee31ab0182193631d738a6e287414b2a93bc49bfa5ed0a16aabbc26190c1a3cd993ce9f1706ecd05b214461313b13c1086 SHA512 bd756aaac2f39005b690230c5a4ef4d618a3200a8eb499aa964285050c247edfb0abfa5db5522269e0a5ee2737c71393a523dc2d7e37eae076364185137964f8
 DIST fossil-src-2.14.tar.gz 6207277 BLAKE2B 9a70a49e83e16414150e777289543a984c6b77c4c2ea245ed3187b393a80f6926c80bada31081735d09a9d0febf430587c120e16d60ddbf96d1116c9da6cf008 SHA512 f95291886484c9fb98224c17e07c9c2ada3d79974359234f1cc6a8fce603e45bf980ffe4f43a473d74d190b6975fff66e8d35ca680747385e72981caabfd6b10
+DIST fossil-src-2.16.tar.gz 6275775 BLAKE2B 504f828f121385ec73311b340e0abfdba7da6a8571adb390c55c75fea0ef027366fb914c12552e177988bedbb735a3148d87ebdb23ffc2ce4b7bef8ef603692a SHA512 0569640a3b509c592f812a42526eec88ead034ba0ba3de93da62cfb1caa751954ae185eaa3398d411a02ee2a858ecae6cdf4e47199847527f7524fc9798a4b12

diff --git a/dev-vcs/fossil/fossil-2.16.ebuild b/dev-vcs/fossil/fossil-2.16.ebuild
new file mode 100644
index 00000000000..6020baf1be3
--- /dev/null
+++ b/dev-vcs/fossil/fossil-2.16.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+MY_TAG=7aedd5675883d4412cf20917d340b6985e3ecb842e88a39f135df034b2d5f4d3
+
+DESCRIPTION="Simple, high-reliability, source control management, and more"
+HOMEPAGE="https://www.fossil-scm.org/"
+SRC_URI="https://fossil-scm.org/home/tarball/${MY_TAG}/fossil-src-${PV}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="debug fusefs json -miniz system-sqlite +ssl static tcl tcl-stubs
+	  tcl-private-stubs th1-docs th1-hooks"
+
+REQUIRED_USE="ssl? ( !miniz )"
+
+RDEPEND="
+	sys-libs/zlib
+	|| (
+		sys-libs/readline:0
+		dev-libs/libedit
+	)
+	system-sqlite? ( >=dev-db/sqlite-3.35.0:3 )
+	ssl? ( dev-libs/openssl:0 )
+	tcl? ( dev-lang/tcl:0= )
+"
+
+# Either tcl or jimtcl need to be present to build Fossil (Bug #675778)
+DEPEND="${RDEPEND}
+	!tcl? (
+		|| (
+			dev-lang/tcl:*
+			dev-lang/jimtcl:*
+		)
+	)
+"
+
+# Tests can't be run from the build directory
+RESTRICT="test"
+
+# fossil-2.10-check-lib64-for-tcl.patch: Bug 690828
+PATCHES=( "${FILESDIR}"/fossil-2.10-check-lib64-for-tcl.patch )
+
+S="${WORKDIR}/fossil-src-${PV}"
+
+src_configure() {
+	# this is not an autotools situation so don't make it seem like one
+	# --with-tcl: works
+	# --without-tcl: dies
+	local myconf="--with-openssl=$(usex ssl auto none)"
+	use debug         && myconf+=' --fossil-debug'
+	use json          && myconf+=' --json'
+	use system-sqlite && myconf+=' --disable-internal-sqlite'
+	use static        && myconf+=' --static'
+	use tcl           && myconf+=' --with-tcl=1'
+	use fusefs        || myconf+=' --disable-fusefs'
+
+	local u useflags
+	useflags=( miniz tcl-stubs tcl-private-stubs th1-docs th1-hooks )
+	for u in ${useflags[@]} ; do
+		use ${u} &&  myconf+=" --with-${u}"
+	done
+
+	tc-export CC CXX
+	CC_FOR_BUILD=${CC} ./configure ${myconf} || die
+}
+
+src_install() {
+	dobin fossil
+}


             reply	other threads:[~2021-07-05 10:18 UTC|newest]

Thread overview: 89+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-05 10:18 Aaron W. Swenson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-12 19:05 [gentoo-commits] repo/gentoo:master commit in: dev-vcs/fossil/ Arthur Zamarin
2025-03-28 15:06 Sam James
2025-03-28  8:26 Sam James
2025-03-28  8:26 Sam James
2025-03-28  8:26 Sam James
2023-12-22  9:23 Sam James
2023-12-14  4:22 Sam James
2023-09-22 14:54 Sam James
2023-09-22 14:54 Sam James
2023-09-22 14:54 Sam James
2023-09-22 14:54 Sam James
2023-06-01 17:12 Aaron W. Swenson
2023-03-20 10:50 Aaron W. Swenson
2022-10-21 12:24 Aaron W. Swenson
2022-10-20 10:56 Jakov Smolić
2022-10-20 10:52 Jakov Smolić
2022-10-18 10:23 Agostino Sarubbo
2022-10-18 10:23 Agostino Sarubbo
2022-10-18  5:42 Sam James
2022-08-09 12:27 Aaron W. Swenson
2022-08-09 12:23 Aaron W. Swenson
2022-08-08 10:59 Aaron W. Swenson
2022-04-30 12:21 Jakov Smolić
2022-03-17  2:26 Aaron W. Swenson
2021-07-17 15:07 Aaron W. Swenson
2021-07-15  0:00 Sam James
2021-07-06 11:03 Agostino Sarubbo
2021-07-06 11:02 Agostino Sarubbo
2021-07-06 11:02 Agostino Sarubbo
2021-07-06 11:01 Agostino Sarubbo
2021-07-06  0:59 Aaron W. Swenson
2021-06-22 18:19 Sam James
2021-06-03 19:15 Sam James
2021-03-02 10:25 Aaron W. Swenson
2020-12-28 11:15 Sam James
2020-12-28 10:58 Aaron W. Swenson
2020-10-02  3:40 Aaron W. Swenson
2020-10-01 19:47 Sam James
2020-10-01 11:13 Sam James
2020-09-25  8:46 Agostino Sarubbo
2020-09-24 18:22 Sergei Trofimovich
2020-09-24 18:15 Sergei Trofimovich
2020-09-23 10:39 Aaron W. Swenson
2020-08-22  1:35 Georgy Yakovlev
2020-07-26 17:44 Rafael Martins
2020-07-17  7:44 Agostino Sarubbo
2020-07-17  7:40 Agostino Sarubbo
2020-07-17  7:02 Agostino Sarubbo
2020-07-11 19:55 Sergei Trofimovich
2020-07-09  1:44 Aaron W. Swenson
2020-06-02 11:48 Aaron W. Swenson
2020-02-02 14:19 Rafael Martins
2019-08-04 10:00 Aaron W. Swenson
2019-07-29 14:34 Mikle Kolyada
2019-07-18 12:53 Aaron W. Swenson
2019-06-22  9:38 Sergei Trofimovich
2019-06-22  9:32 Sergei Trofimovich
2019-06-21 11:07 Agostino Sarubbo
2019-06-21  8:03 Agostino Sarubbo
2019-05-19 10:35 Aaron W. Swenson
2018-10-07 10:13 Aaron Swenson
2018-10-07 10:07 Aaron Swenson
2018-10-04  8:43 Mikle Kolyada
2018-09-15 18:26 Sergei Trofimovich
2018-09-15 18:23 Sergei Trofimovich
2018-09-15 17:04 Mikle Kolyada
2018-08-14 15:00 Aaron Swenson
2018-04-27 19:58 Aaron Swenson
2018-02-11 10:53 Michał Górny
2018-01-22 10:49 Aaron Swenson
2018-01-21 21:23 Thomas Deutschmann
2017-12-19 13:48 Jason Zaman
2017-12-14 21:09 Thomas Deutschmann
2017-12-14 20:27 Agostino Sarubbo
2017-11-22 11:34 Aaron Swenson
2017-11-22 11:25 Aaron Swenson
2017-10-29 21:08 Thomas Deutschmann
2017-09-22 21:37 Sergei Trofimovich
2017-08-19 12:17 Aaron Swenson
2017-08-12 12:02 Aaron Swenson
2017-05-20 19:41 Aaron Swenson
2017-01-04 15:29 Agostino Sarubbo
2016-12-21  9:40 Tobias Klausmann
2016-07-21  8:34 Patrick Lauer
2016-07-20 15:07 Aaron Swenson
2016-06-23 10:13 Aaron Swenson
2016-05-13 14:51 Agostino Sarubbo
2016-02-17 12:18 Aaron Swenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1625480025.890a83ca5a2be8f7663757c937ccfe2b349d22fc.titanofold@gentoo \
    --to=titanofold@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox