public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gloox/
Date: Fri, 30 Aug 2024 07:25:31 +0000 (UTC)	[thread overview]
Message-ID: <1725002729.c6fb0d7f4590b73d7f9e91fd3a18409065b2513a.juippis@gentoo> (raw)

commit:     c6fb0d7f4590b73d7f9e91fd3a18409065b2513a
Author:     Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Wed Aug 28 15:47:52 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Aug 30 07:25:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6fb0d7f

net-libs/gloox: add 1.0.28 with xhtmlim USE flag

- add virtual/pkgconfig to BDEPEND

Thanks juippis!

Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Closes: https://github.com/gentoo/gentoo/pull/38217
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-libs/gloox/Manifest            |  1 +
 net-libs/gloox/gloox-1.0.28.ebuild | 53 ++++++++++++++++++++++++++++++++++++++
 net-libs/gloox/metadata.xml        |  3 +++
 3 files changed, 57 insertions(+)

diff --git a/net-libs/gloox/Manifest b/net-libs/gloox/Manifest
index 6f894687f9ed..595f947f50a5 100644
--- a/net-libs/gloox/Manifest
+++ b/net-libs/gloox/Manifest
@@ -1 +1,2 @@
 DIST gloox-1.0.24.tar.bz2 727442 BLAKE2B 57e8916ddf057c115350e005a027e3a81684269f688dd80126bf3753a8dd71a8d64a86e1eb59de2886a6657ad1dac5f9431549db79f314173f49233044b52cb5 SHA512 e3ddb331a57e635b8da5d8cd36a89fa9521599301d1108a025a3526a02df5bf73555d54bccd3706fdffd857134716b23df6bf57a59a17be4f6a7873a810268ee
+DIST gloox-1.0.28.tar.bz2 728337 BLAKE2B dcbabba6707fb92c8e1619ff4d4568a723c448aca2dd1fdd8fb0ca1d96e0e9f07f5848a64447c22d03a7d2ac7c80702bbdbc4d11249da1801c31e71bd17fabf3 SHA512 8be06963a54957d53bb285482d2ad01569fb281fcb53b03a29dc4444e1915f2f7d81e3fec1288f127bc09ca37d1c0beb4cb8e4f7079becb32dc223e3ceb50e00

diff --git a/net-libs/gloox/gloox-1.0.28.ebuild b/net-libs/gloox/gloox-1.0.28.ebuild
new file mode 100644
index 000000000000..4f9c9456987e
--- /dev/null
+++ b/net-libs/gloox/gloox-1.0.28.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+MY_P="${P/_/-}"
+DESCRIPTION="A portable high-level Jabber/XMPP client library for C++"
+HOMEPAGE="https://camaya.net/gloox/"
+SRC_URI="https://camaya.net/download/${MY_P}.tar.bz2"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-3"
+# Check upstream changelog: https://camaya.net/gloox/changelog/
+SLOT="0/18"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug gnutls idn ssl static-libs test +xhtmlim zlib"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	idn? ( net-dns/libidn:= )
+	gnutls? ( net-libs/gnutls:= )
+	ssl? ( dev-libs/openssl:0= )
+	zlib? ( sys-libs/zlib )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		--without-examples # not installed anyway so don't build them
+		$(usex debug "--enable-debug" '')
+		$(use_enable static-libs static)
+		$(use_enable xhtmlim)
+		$(use_with idn libidn)
+		$(use_with gnutls)
+		$(use_with ssl openssl)
+		$(use_with test tests)
+		$(use_with zlib)
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name "*.la" -delete || die
+}

diff --git a/net-libs/gloox/metadata.xml b/net-libs/gloox/metadata.xml
index 8ae7ea99aee3..f8414a9a0073 100644
--- a/net-libs/gloox/metadata.xml
+++ b/net-libs/gloox/metadata.xml
@@ -5,4 +5,7 @@
 	<upstream>
 		<changelog>https://camaya.net/gloox/changelog/</changelog>
 	</upstream>
+	<use>
+		<flag name="xhtmlim">expose internal NodeList for optional XHTML-IM rendering without external parser</flag>
+	</use>
 </pkgmetadata>


             reply	other threads:[~2024-08-30  7:25 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-30  7:25 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-19  5:45 [gentoo-commits] repo/gentoo:master commit in: net-libs/gloox/ Joonas Niilola
2024-09-17  7:41 Joonas Niilola
2024-08-30  7:25 Joonas Niilola
2021-05-02 10:16 Mikle Kolyada
2020-10-10  7:11 Sam James
2020-10-10  7:10 Sam James
2020-09-05  0:35 Sam James
2019-08-28 15:48 Stefan Strogin
2019-03-24  0:59 Lars Wendler
2019-03-24  0:59 Lars Wendler
2018-06-22 11:29 Lars Wendler
2018-05-20 23:26 Aaron Bauman
2018-05-16 19:33 Lars Wendler
2017-10-22  0:03 Andreas Sturmlechner
2017-02-28 14:59 Lars Wendler
2017-02-24 10:35 Lars Wendler
2017-02-24 10:35 Lars Wendler
2016-11-17 18:55 Lars Wendler
2016-11-17 18:55 Lars Wendler
2016-09-03  0:08 Lars Wendler
2016-09-03  0:08 Lars Wendler
2016-07-21  9:51 Lars Wendler
2016-07-21  9:51 Lars Wendler
2016-06-14 12:01 Lars Wendler
2016-06-14 12:01 Lars Wendler
2015-09-30 20:30 Julian Ospald
2015-08-26  0:53 Manuel Rüger

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=1725002729.c6fb0d7f4590b73d7f9e91fd3a18409065b2513a.juippis@gentoo \
    --to=juippis@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