From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xapian/
Date: Sun, 25 Feb 2024 13:36:18 +0000 (UTC) [thread overview]
Message-ID: <1708867341.d2113df30a04b943d254825dacf30969ba412195.sam@gentoo> (raw)
commit: d2113df30a04b943d254825dacf30969ba412195
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Feb 10 20:07:47 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 25 13:22:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2113df3
dev-libs/xapian: add 1.4.24
Changes:
* Remove "doc" USE flag. Since it's prebuilt, INSTALL_MASK should be
used instead.
* Add "debug" USE flag.
* Build "inmemory" and "remote" backends unconditionally.
* Depend on "uuid/uuid.h" properly.
* Pass $BUILD_CC to configure.
Other changes:
* Slot-depend on ZLIB.
* Skip checks for valgrind and eatmydata.
* Make DOCS an array.
Closes: https://bugs.gentoo.org/923506
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
Closes: https://github.com/gentoo/gentoo/pull/35263
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/xapian/Manifest | 1 +
dev-libs/xapian/xapian-1.4.24.ebuild | 62 ++++++++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/dev-libs/xapian/Manifest b/dev-libs/xapian/Manifest
index 84d8efdcab8f..eadeb4dd7e64 100644
--- a/dev-libs/xapian/Manifest
+++ b/dev-libs/xapian/Manifest
@@ -1,2 +1,3 @@
DIST xapian-core-1.4.22.tar.xz 3019608 BLAKE2B f4aec86cd5f63f6f1825a4f8f427ea23be2092ffb4ca11a2fdf20bdf652e7b9f768b1155bcf7ee5e5c5313206c92e1725d1b4d562e3074539a2e8f9901c44f8e SHA512 60d66adbacbd59622d25e392060984bd1dc6c870f9031765f54cb335fb29f72f6d006d27af82a50c8da2cfbebd08dac4503a8afa8ad51bc4e6fa9cb367a59d29
DIST xapian-core-1.4.23.tar.xz 3024644 BLAKE2B e26a9fd5e79daf553b474e3c794178df2cdcd83ce7d7a45ae112dde624d6e7add157c76fda3a333afce6103b2edaf7e3c928e78c47aa1fd19821c3c73926442f SHA512 52dffc93301f99aa150dda8ecd5fb7cc7d0f2ce30e60f393b1058055ade24281af16cf5b5c0e6b08e4754e3d18c39bb5bc068b19330a294ad460ef8a6bc56380
+DIST xapian-core-1.4.24.tar.xz 3194164 BLAKE2B fc3484df448d2102d47005b2819eea8eee3fdb4337a42967e2b535187e4b7be9841a8e12b19291f29bdef52b3270529f94376fe91d5e4c70afebaf690a23b18f SHA512 2b156dd90784264d6bf64e66aca559578f946c013bb52e14e56fcd96e9c2fece71c236735b13d2baad0d7f2d410dea3ae54c94cd80f735baf1071bafe2e5c01c
diff --git a/dev-libs/xapian/xapian-1.4.24.ebuild b/dev-libs/xapian/xapian-1.4.24.ebuild
new file mode 100644
index 000000000000..6cdb011f6f3d
--- /dev/null
+++ b/dev-libs/xapian/xapian-1.4.24.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_P="${PN}-core-${PV}"
+DESCRIPTION="Xapian Probabilistic Information Retrieval library"
+HOMEPAGE="https://xapian.org/"
+SRC_URI="https://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0/30" # ABI version of libxapian.so
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris"
+IUSE="cpu_flags_x86_sse cpu_flags_x86_sse2 debug static-libs"
+
+DEPEND="
+ sys-libs/zlib:=
+ !elibc_Darwin? ( !elibc_SunOS? ( sys-apps/util-linux ) )
+ elibc_SunOS? ( sys-libs/libuuid )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS HACKING PLATFORMS README NEWS )
+
+src_configure() {
+ tc-export_build_env BUILD_CC
+ local -x CC_FOR_BUILD="${BUILD_CC}"
+
+ # skip certain autoconf checks
+ local -x VALGRIND=
+ local -x EATMYDATA=
+
+ local -a myconf=(
+ --docdir="${EPREFIX}"/usr/share/doc/${PF}/html
+ --enable-backend-chert
+ --enable-backend-glass
+ --enable-backend-inmemory
+ --enable-backend-remote
+ --program-suffix=
+ $(use_enable debug assertions)
+ $(use_enable debug log)
+ $(use_enable static-libs static)
+ )
+
+ if use cpu_flags_x86_sse2; then
+ myconf+=( --enable-sse=sse2 )
+ elif use cpu_flags_x86_sse; then
+ myconf+=( --enable-sse=sse )
+ else
+ myconf+=( --disable-sse )
+ fi
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name "*.la" -type f -delete || die
+}
next reply other threads:[~2024-02-25 13:36 UTC|newest]
Thread overview: 188+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-25 13:36 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-23 11:25 [gentoo-commits] repo/gentoo:master commit in: dev-libs/xapian/ Arthur Zamarin
2025-03-23 11:25 Arthur Zamarin
2025-03-23 11:25 Arthur Zamarin
2024-12-07 1:16 Sam James
2024-11-24 8:42 Joonas Niilola
2024-11-24 8:35 Joonas Niilola
2024-11-23 14:53 Sam James
2024-09-08 17:16 Sam James
2024-07-15 11:14 Miroslav Šulc
2024-07-03 5:17 Ionen Wolkens
2024-07-03 5:17 Ionen Wolkens
2024-07-03 5:17 Ionen Wolkens
2024-07-03 5:17 Ionen Wolkens
2024-06-12 21:50 Sam James
2024-05-28 18:56 Arthur Zamarin
2024-05-28 12:29 Michał Górny
2024-03-21 3:46 Sam James
2024-03-08 16:40 Sam James
2024-02-25 13:36 Sam James
2023-09-23 22:55 Robin H. Johnson
2023-05-27 14:59 Pacho Ramos
2023-05-01 9:39 Sam James
2023-05-01 5:09 Sam James
2023-05-01 5:09 Sam James
2023-05-01 4:35 Sam James
2023-04-20 13:05 Joonas Niilola
2023-04-20 12:56 Joonas Niilola
2023-04-19 8:44 Arthur Zamarin
2023-04-02 10:00 Viorel Munteanu
2023-03-30 18:30 Arthur Zamarin
2023-03-17 19:47 Arthur Zamarin
2023-03-17 18:25 Sam James
2023-03-17 17:00 Sam James
2023-03-17 17:00 Sam James
2023-03-17 16:27 Arthur Zamarin
2023-03-17 16:12 Arthur Zamarin
2023-01-29 17:08 Joonas Niilola
2023-01-03 6:23 Sam James
2022-11-15 6:39 Sam James
2022-10-29 5:48 Arthur Zamarin
2022-10-29 5:48 Arthur Zamarin
2022-10-29 5:48 Arthur Zamarin
2022-10-28 20:53 Sam James
2022-10-28 18:52 Sam James
2022-10-28 18:52 Sam James
2022-10-28 18:50 Sam James
2022-10-28 18:50 Sam James
2022-09-26 0:53 Anthony G. Basile
2022-07-09 15:48 Anthony G. Basile
2022-06-30 21:41 Sam James
2022-06-28 4:18 WANG Xuerui
2022-06-21 20:22 Sam James
2022-06-21 20:22 Sam James
2022-06-07 6:32 Agostino Sarubbo
2022-01-17 1:29 Anthony G. Basile
2022-01-02 22:51 Sam James
2022-01-02 22:50 Sam James
2022-01-02 9:59 Sam James
2022-01-02 9:59 Sam James
2021-09-20 10:41 James Le Cuirot
2021-07-10 15:11 Sam James
2021-06-15 3:20 Sam James
2021-06-03 22:52 Sam James
2021-06-02 10:39 Sam James
2021-06-01 6:57 Agostino Sarubbo
2021-03-25 14:39 Sam James
2021-01-20 0:32 Anthony G. Basile
2021-01-20 0:32 Anthony G. Basile
2020-12-13 12:01 Sergei Trofimovich
2020-12-01 9:38 Sam James
2020-11-07 20:14 Sam James
2020-10-26 23:51 Sergei Trofimovich
2020-10-26 23:44 Sergei Trofimovich
2020-10-26 12:11 Sam James
2020-10-26 2:51 Sam James
2020-10-25 23:08 Thomas Deutschmann
2020-08-21 14:45 Anthony G. Basile
2020-06-10 19:20 Anthony G. Basile
2020-04-23 21:32 Anthony G. Basile
2020-04-23 21:26 Anthony G. Basile
2020-04-15 17:06 Sergei Trofimovich
2020-04-05 10:07 Sergei Trofimovich
2020-03-31 8:37 Mikle Kolyada
2020-03-29 9:40 Sergei Trofimovich
2020-03-29 9:34 Sergei Trofimovich
2020-03-22 17:53 Mikle Kolyada
2020-03-07 22:45 Anthony G. Basile
2020-03-07 22:34 Thomas Deutschmann
2020-03-07 15:50 Anthony G. Basile
2020-03-07 15:50 Anthony G. Basile
2020-01-18 10:54 Sergei Trofimovich
2020-01-18 10:54 Sergei Trofimovich
2019-12-02 17:36 Anthony G. Basile
2019-10-15 16:01 Anthony G. Basile
2019-10-15 13:59 Anthony G. Basile
2019-08-20 0:55 Anthony G. Basile
2019-08-11 11:20 David Seifert
2019-07-17 15:24 Agostino Sarubbo
2019-07-10 11:47 Agostino Sarubbo
2019-05-28 4:06 Aaron Bauman
2019-03-15 13:28 Anthony G. Basile
2019-03-15 12:29 Anthony G. Basile
2019-02-23 14:19 Thomas Deutschmann
2019-02-22 23:51 Anthony G. Basile
2019-02-22 23:00 Anthony G. Basile
2019-02-22 22:58 Anthony G. Basile
2019-01-05 17:19 Mikle Kolyada
2018-12-27 17:19 Matt Turner
2018-12-27 17:19 Matt Turner
2018-12-02 15:50 Mikle Kolyada
2018-12-02 15:50 Mikle Kolyada
2018-11-07 23:28 Sergei Trofimovich
2018-11-07 23:28 Sergei Trofimovich
2018-11-07 22:59 Sergei Trofimovich
2018-11-07 22:59 Sergei Trofimovich
2018-11-06 22:50 Anthony G. Basile
2018-11-05 19:01 Mikle Kolyada
2018-10-28 10:07 Jeroen Roovers
2018-10-27 14:18 Anthony G. Basile
2018-07-23 22:19 Mikle Kolyada
2018-07-23 22:19 Mikle Kolyada
2018-07-20 14:58 Anthony G. Basile
2018-07-02 17:49 Anthony G. Basile
2018-07-01 15:19 Pacho Ramos
2018-06-29 6:52 Sergei Trofimovich
2018-06-27 22:15 Sergei Trofimovich
2018-06-24 19:41 Sergei Trofimovich
2017-11-26 19:06 Sergei Trofimovich
2017-11-20 12:31 Anthony G. Basile
2017-11-11 10:20 Sergei Trofimovich
2017-10-18 23:05 Anthony G. Basile
2017-10-16 23:28 Sergei Trofimovich
2017-10-15 21:28 Sergei Trofimovich
2017-10-05 11:36 Anthony G. Basile
2017-09-12 9:13 Fabian Groffen
2017-09-10 1:30 Anthony G. Basile
2017-08-28 18:54 Guilherme Amadio
2017-08-12 14:31 Michael Palimaka
2017-07-24 17:58 Markus Meier
2017-07-16 11:08 Tobias Klausmann
2017-07-15 17:48 Sergei Trofimovich
2017-07-15 17:04 Tobias Klausmann
2017-07-15 14:45 Alexis Ballier
2017-04-27 0:28 Anthony G. Basile
2017-03-14 10:47 Jeroen Roovers
2017-01-29 18:40 Anthony G. Basile
2017-01-29 18:40 Anthony G. Basile
2016-12-30 0:15 Anthony G. Basile
2016-12-29 23:28 Anthony G. Basile
2016-12-21 10:27 Tobias Klausmann
2016-11-16 21:11 Markus Meier
2016-11-15 14:53 Tobias Klausmann
2016-11-03 16:19 Göktürk Yüksek
2016-10-23 17:59 Anthony G. Basile
2016-10-23 17:59 Anthony G. Basile
2016-09-29 18:57 Anthony G. Basile
2016-09-04 16:30 Anthony G. Basile
2016-08-17 4:09 Jeroen Roovers
2016-08-10 6:43 Anthony G. Basile
2016-08-10 6:43 Anthony G. Basile
2016-06-26 19:59 Anthony G. Basile
2016-06-02 23:01 Anthony G. Basile
2016-06-02 21:55 Anthony G. Basile
2016-05-25 14:28 Tobias Klausmann
2016-05-14 19:29 Anthony G. Basile
2016-05-10 17:11 Anthony G. Basile
2016-05-07 14:44 Anthony G. Basile
2016-04-02 23:04 Anthony G. Basile
2016-03-30 10:11 Anthony G. Basile
2016-02-21 19:00 Markus Meier
2016-02-13 16:46 Agostino Sarubbo
2016-02-13 15:09 Anthony G. Basile
2016-02-13 14:55 Anthony G. Basile
2016-02-13 14:44 Anthony G. Basile
2016-01-01 9:57 Anthony G. Basile
2015-12-31 13:50 Anthony G. Basile
2015-12-22 3:37 Anthony G. Basile
2015-12-22 3:37 Anthony G. Basile
2015-12-22 3:19 Anthony G. Basile
2015-12-22 3:07 Anthony G. Basile
2015-12-22 3:07 Anthony G. Basile
2015-12-22 3:07 Anthony G. Basile
2015-12-19 21:47 Anthony G. Basile
2015-10-13 18:47 Anthony G. Basile
2015-10-13 18:47 Anthony G. Basile
2015-10-13 18:02 Anthony G. Basile
2015-10-13 17:51 Anthony G. Basile
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=1708867341.d2113df30a04b943d254825dacf30969ba412195.sam@gentoo \
--to=sam@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