From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libxmlpp/
Date: Tue, 24 Jun 2025 20:03:14 +0000 (UTC) [thread overview]
Message-ID: <1750795362.90cb2de890a3be3272cc831f1421ca366d3f9d41.sam@gentoo> (raw)
commit: 90cb2de890a3be3272cc831f1421ca366d3f9d41
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 24 19:53:34 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 24 20:02:42 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90cb2de8
dev-cpp/libxmlpp: add 2.42.3
Bug: https://bugs.gentoo.org/939534
Closes: https://bugs.gentoo.org/931859
Closes: https://bugs.gentoo.org/948325
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/libxmlpp/Manifest | 1 +
dev-cpp/libxmlpp/libxmlpp-2.42.3.ebuild | 58 +++++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/dev-cpp/libxmlpp/Manifest b/dev-cpp/libxmlpp/Manifest
index ee7bd4532903..a4ea5830fee2 100644
--- a/dev-cpp/libxmlpp/Manifest
+++ b/dev-cpp/libxmlpp/Manifest
@@ -1,3 +1,4 @@
DIST libxml++-2.42.2.tar.xz 848924 BLAKE2B 75c28447b41e50f1484a8670042af819f90619acd36eaea3bf68ed197745836c3ede38c208a851e59a345cb2657989f569fd0129724916f87d90105ec3c0fc2c SHA512 214da4c8120fedc96adf6ad965b65be9f4deb53d86f41667c236c52e1e3aace819fc61b096815879cc38aaf12ac77fbccb050088ce6bc3ff03030dcc81e4a8c9
+DIST libxml++-2.42.3.tar.xz 922400 BLAKE2B ce4538094b758f990418e1fe5f00e6b839ec82041983855d018c1ff94a3a21038f5d99456e8374aed552108a463c6481def6ac695626134dd5d514c7124c6568 SHA512 591d1a203a4c1bb2c27200322429ee68ed12e6ddfd9cb3168e50fb2382102ee113d70b66b485ccac0b4aabefa2ff567ccf813d35d3aa70251367bd07722bfb2a
DIST libxml++-5.0.3.tar.xz 843720 BLAKE2B 0c85171962c9637f71846a6a4914229f2ad6c60a0315743543526d78a33baf2e86f21eeef2279c8d51233d40fd059aad266c80c365decd587c5c54a303ad93a8 SHA512 418723a96f018fb8e332847d0ab601eda38c99d6be48c83b6cda6f07789e5ecac76bb417540e29d0abace2828a74eb1e08695ff2fc92ebf3e7458364547ef675
DIST libxml++-5.0.4.tar.xz 896868 BLAKE2B 71711163edb1c101700b4d2414ac8cb9f58116405c17bed23bef0abe664af82ddb2a4384b777bacc3035ea42177b8711ac81acb58460cd1bf4f35365a782b4e0 SHA512 449c624848b5b66b6a1a185f2486cb146bc3470e21dc0d6b56d6022ca521217e9f00e973f7085c04c64bfcd9491f16d1879e55f80996176ae62674f61acb9bd8
diff --git a/dev-cpp/libxmlpp/libxmlpp-2.42.3.ebuild b/dev-cpp/libxmlpp/libxmlpp-2.42.3.ebuild
new file mode 100644
index 000000000000..a82094867e6f
--- /dev/null
+++ b/dev-cpp/libxmlpp/libxmlpp-2.42.3.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+GNOME_ORG_MODULE="${PN/pp/++}"
+
+inherit gnome2 meson-multilib
+
+DESCRIPTION="C++ wrapper for the libxml2 XML parser library"
+HOMEPAGE="http://libxmlplusplus.sourceforge.net/"
+
+LICENSE="LGPL-2.1"
+SLOT="2.6"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-libs/libxml2-2.7.7:=[${MULTILIB_USEDEP}]
+ >=dev-cpp/glibmm-2.32.0:2[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ doc? (
+ dev-cpp/mm-common
+ app-text/doxygen
+ media-gfx/graphviz
+ dev-libs/libxslt
+ )
+"
+
+src_prepare() {
+ default
+
+ sed -i \
+ -e "/install_docdir = /s/'doc'/'gtk-doc'/" \
+ docs/reference/meson.build || die
+ sed -i \
+ -e "/install_tutorialdir = /s/'doc'/'gtk-doc'/" \
+ docs/manual/meson.build || die
+}
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Dmaintainer-mode=false
+ -Dwarnings=min
+ -Ddist-warnings=max
+ -Dbuild-deprecated-api=true
+ $(meson_native_use_bool doc build-documentation)
+ -Dvalidation=false
+ -Dbuild-pdf=false
+ -Dbuild-examples=false
+ $(meson_use test build-tests)
+ -Dmsvc14x-parallel-installable=false
+ )
+ meson_src_configure
+}
next reply other threads:[~2025-06-24 20:03 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-24 20:03 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-13 1:30 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libxmlpp/ Sam James
2025-09-12 20:14 Arthur Zamarin
2025-09-12 18:23 Michał Górny
2025-09-12 13:34 Arthur Zamarin
2025-09-10 3:39 Arthur Zamarin
2025-07-25 23:54 Sam James
2025-07-25 18:28 Arthur Zamarin
2025-07-25 15:06 Sam James
2025-07-25 15:06 Sam James
2025-07-25 14:55 Sam James
2025-06-25 6:17 Sam James
2025-06-24 20:03 Sam James
2023-05-01 6:27 Sam James
[not found] <1682912397.12ced8ec6d0dd8987aa9326944e8a066081e9631.sam@gentoo>
2023-05-01 3:40 ` Sam James
2023-05-01 3:15 Sam James
2023-05-01 0:47 Sam James
2023-05-01 0:09 Sam James
2023-05-01 0:09 Sam James
2023-03-22 15:04 Matt Turner
2023-03-10 6:05 Viorel Munteanu
2022-12-31 20:39 Matt Turner
2022-12-31 20:39 Matt Turner
2022-12-31 20:39 Matt Turner
2022-11-12 6:01 WANG Xuerui
2022-10-29 23:21 Matt Turner
2022-08-30 19:06 Sam James
2022-05-19 5:08 WANG Xuerui
2022-01-09 18:40 David Seifert
2021-08-18 1:07 Marek Szuba
2021-08-18 1:07 Marek Szuba
2021-02-16 2:12 Matt Turner
2020-05-07 16:35 Mart Raudsepp
2019-10-22 18:11 Andreas Sturmlechner
2019-10-15 22:42 Andreas Sturmlechner
2017-12-10 0:36 Sergei Trofimovich
2017-09-07 19:28 Markus Meier
2017-03-16 23:40 Mart Raudsepp
2017-03-16 13:24 Jeroen Roovers
2016-12-05 9:57 Pacho Ramos
2016-09-11 11:28 Gilles Dartiguelongue
2016-09-11 11:28 Gilles Dartiguelongue
2015-11-14 13:48 Pacho Ramos
2015-11-14 13:48 Pacho Ramos
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=1750795362.90cb2de890a3be3272cc831f1421ca366d3f9d41.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