public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Wolfram Schlich" <wschlich@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
Date: Wed, 27 Jan 2016 06:45:53 +0000 (UTC)	[thread overview]
Message-ID: <1453877137.1cfce963ddf292815ded6cf1b9c8e452c4a012c5.wschlich@gentoo> (raw)

commit:     1cfce963ddf292815ded6cf1b9c8e452c4a012c5
Author:     Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 06:45:15 2016 +0000
Commit:     Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 06:45:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cfce963

net-libs/loudmouth: version bump (with temporarily different SRC_URI)

Package-Manager: portage-2.2.27

 net-libs/loudmouth/Manifest               |  1 +
 net-libs/loudmouth/loudmouth-1.5.2.ebuild | 57 +++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index bda3725..b1b37be 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,2 +1,3 @@
 DIST loudmouth-1.4.3.tar.bz2 366818 SHA256 95a93f5d009b71ea8193d994aa11f311bc330a3efe1b7cd74dc48f11c7f929e3 SHA512 02d1de14a4d626a4c9100bd24c06d4b4203eabb0f95bab40ee18ea5e68ed81d47aa977625140157b2d9f7974ac748af857c2ee3a916f0db700e2a2d0934940ec WHIRLPOOL 4f9e3e8e4f2fd0a36996e84deebeb26c789d5334af11a3d6cc6c742b59508945a6279715f6fbb02bbbc04a0d9709e7aae4cc39803b2a60acfd47d76f0482f969
 DIST loudmouth-1.5.1.tar.gz 115811 SHA256 9b0219233004da2f159175ef189363851b3df607e3777c422da1f5545daa17b3 SHA512 d90096a2d10819b620f366a4d6998b281692ef65e0c27f2f59031e3f7495f278ec73a8d18ff38a7234f179b4f7f6adafa532a820023fd615dcf18c2ecd0d8982 WHIRLPOOL 4c3649c9d87088d68b01f0284d1fcd3abedf31dda6c8d9527785b79802ce2c7ac2a9fe4e0d0fe7a09926e4e9f6b06661ab857f272a3db5186125b20a9ba979f0
+DIST loudmouth-1.5.2.tar.bz2 354286 SHA256 91aae2df16be6f4286506bc04feffb9eb0138cfe8ca93a3cd8c1322b458a29e9 SHA512 5c49e20e7b57768fd3dca2fe837769084287fcf3a99d26c1d25753e60eedf6bd39134ac19c4b8730530e90c0bb92f37dc01c78bddc169281693d84af50b96ae3 WHIRLPOOL b4b2040478c37be126b38bbc176f7175f9c49da1872c384aa29d02fe4c0375a1ff698de6859b75555d9fba58fb6c00293fb6c067a4357be77c0e723c25efbe9e

diff --git a/net-libs/loudmouth/loudmouth-1.5.2.ebuild b/net-libs/loudmouth/loudmouth-1.5.2.ebuild
new file mode 100644
index 0000000..f37d59f
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils
+
+DESCRIPTION="Lightweight C Jabber library"
+HOMEPAGE="https://github.com/mcabber/loudmouth"
+#SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+
+IUSE="asyncns ssl openssl static-libs test"
+
+# Automagic libidn dependency
+RDEPEND="
+	>=dev-libs/glib-2.16:2
+	net-dns/libidn
+	ssl? (
+		!openssl? ( >=net-libs/gnutls-1.4.0 )
+		openssl? ( dev-libs/openssl:0 )
+	)
+	asyncns? ( >=net-libs/libasyncns-0.3 )
+"
+DEPEND="${RDEPEND}
+	test? ( dev-libs/check )
+	virtual/pkgconfig
+	>=dev-util/gtk-doc-am-1
+"
+
+src_prepare() {
+	eautoreconf
+}
+
+src_configure() {
+	local myconf
+
+	if use ssl; then
+		if ! use openssl; then
+			myconf="${myconf} --with-ssl=gnutls"
+		else
+			myconf="${myconf} --with-ssl=openssl"
+		fi
+	else
+		myconf="${myconf} --with-ssl=no"
+	fi
+
+	econf \
+		$(use_enable static-libs static) \
+		$(use_with asyncns) \
+		${myconf}
+}


             reply	other threads:[~2016-01-27  6:45 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-27  6:45 Wolfram Schlich [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-12-18 12:28 [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/ Sam James
2022-12-18 12:26 Sam James
2022-12-18 11:44 Sam James
2022-04-13 14:46 Sam James
2021-12-13  5:54 Yixun Lan
2021-11-16 16:38 Andrey Utkin
2020-12-14  0:46 Sam James
2019-06-03 20:31 Sergei Trofimovich
2019-05-02 21:16 Mikle Kolyada
2019-03-16 14:01 Mikle Kolyada
2019-03-13 22:32 Sergei Trofimovich
2019-03-03 12:11 Mikle Kolyada
2019-03-02 23:42 Thomas Deutschmann
2019-03-02 20:02 Sergei Trofimovich
2019-03-02 19:52 Sergei Trofimovich
2019-01-31 10:39 Andrey Utkin
2019-01-31 10:39 Andrey Utkin
2019-01-31 10:39 Andrey Utkin
2018-10-29 22:27 Andrey Utkin
2018-10-29 22:27 Andrey Utkin
2018-10-29 22:27 Andrey Utkin
2018-08-21  0:20 Andrey Utkin
2018-07-30 21:50 Sergei Trofimovich
2018-07-10 20:04 Andrey Utkin
2018-07-01  8:57 Pacho Ramos
2018-06-18 20:21 Tobias Klausmann
2018-05-27 20:18 Mikle Kolyada
2018-05-26 18:11 Sergei Trofimovich
2018-05-25 23:58 Thomas Deutschmann
2018-05-25  8:41 Sergei Trofimovich
2018-04-14 16:01 Pacho Ramos
2018-04-14 16:01 Pacho Ramos
2017-11-12 10:40 Sergei Trofimovich
2017-11-07 18:22 Thomas Deutschmann
2017-11-07 12:57 Manuel Rüger
2017-11-02 20:19 Sergei Trofimovich
2017-10-29 10:18 Sergei Trofimovich
2017-09-16 11:08 Sergei Trofimovich
2016-03-29  6:58 Wolfram Schlich
2016-01-28  6:48 Wolfram Schlich
2016-01-27 10:54 Wolfram Schlich
2016-01-25 13:40 Wolfram Schlich

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=1453877137.1cfce963ddf292815ded6cf1b9c8e452c4a012c5.wschlich@gentoo \
    --to=wschlich@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