* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2016-01-25 13:40 Wolfram Schlich
0 siblings, 0 replies; 43+ messages in thread
From: Wolfram Schlich @ 2016-01-25 13:40 UTC (permalink / raw
To: gentoo-commits
commit: 2ffe23c24cd6f9140032982db318aff2174d7007
Author: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 25 13:34:12 2016 +0000
Commit: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
CommitDate: Mon Jan 25 13:39:48 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffe23c2
net-libs/loudmouth: version bump (new upstream) with new USE=openssl; added myself as maintainer, removed the gnome herd as agreed upon with EvaSDK.
Package-Manager: portage-2.2.27
net-libs/loudmouth/Manifest | 1 +
net-libs/loudmouth/loudmouth-1.5.1.ebuild | 56 +++++++++++++++++++++++++++++++
net-libs/loudmouth/metadata.xml | 21 ++++++------
3 files changed, 68 insertions(+), 10 deletions(-)
diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index 10f2661..bda3725 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1 +1,2 @@
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
diff --git a/net-libs/loudmouth/loudmouth-1.5.1.ebuild b/net-libs/loudmouth/loudmouth-1.5.1.ebuild
new file mode 100644
index 0000000..23def7e
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.1.ebuild
@@ -0,0 +1,56 @@
+# 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"
+
+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}
+}
diff --git a/net-libs/loudmouth/metadata.xml b/net-libs/loudmouth/metadata.xml
index 9b8477d..528027f 100644
--- a/net-libs/loudmouth/metadata.xml
+++ b/net-libs/loudmouth/metadata.xml
@@ -1,14 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="project">
- <email>gnome@gentoo.org</email>
- <name>Gentoo GNOME Desktop</name>
- </maintainer>
- <use>
- <flag name="asyncns">Use libasyncns for asynchronous name resolution.</flag>
- </use>
- <upstream>
- <remote-id type="github">engineyard/loudmouth</remote-id>
- </upstream>
+ <maintainer type="person">
+ <email>wschlich@gentoo.org</email>
+ <name>Wolfram Schlich</name>
+ </maintainer>
+ <use>
+ <flag name="asyncns">Use <pkg>net-libs/libasyncns</pkg> for asynchronous name resolution.</flag>
+ <flag name="openssl">Enable <pkg>dev-libs/openssl</pkg> support instead of gnutls (which is the default).</flag>
+ </use>
+ <upstream>
+ <remote-id type="github">mcabber/loudmouth</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2016-01-27 6:45 Wolfram Schlich
0 siblings, 0 replies; 43+ messages in thread
From: Wolfram Schlich @ 2016-01-27 6:45 UTC (permalink / raw
To: gentoo-commits
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}
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2016-01-27 10:54 Wolfram Schlich
0 siblings, 0 replies; 43+ messages in thread
From: Wolfram Schlich @ 2016-01-27 10:54 UTC (permalink / raw
To: gentoo-commits
commit: 9818c0fbf0719fa797e80dc70310a2e933375a65
Author: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 10:53:53 2016 +0000
Commit: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 10:54:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9818c0fb
net-libs/loudmouth: switched back SRC_URI to github now that the release tag is in place
Package-Manager: portage-2.2.27
net-libs/loudmouth/Manifest | 2 +-
net-libs/loudmouth/loudmouth-1.5.2.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index b1b37be..51b46d2 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,3 +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
+DIST loudmouth-1.5.2.tar.gz 115940 SHA256 c3dd7b5690a7b6ee4768d71d2bdee4615cfb73b6eeaa342d6a931a5160e47421 SHA512 54c3eb7ef99604d7e2d5560dc6e5be176a188e6a0d82ae6c2f488e30f06553039aa03d6f818cec25f354479a2624f60f2233d7e63b54f331e934d554de9bfc87 WHIRLPOOL 99fd7fa00f08976242313c2bc11e9edfbe1aeea9918090347a1975d5ece438892afbf3b5c16ffe79b1c0a10b28f35f62937d45a234e63b26f051466799fd7685
diff --git a/net-libs/loudmouth/loudmouth-1.5.2.ebuild b/net-libs/loudmouth/loudmouth-1.5.2.ebuild
index f37d59f..387dd40 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2.ebuild
@@ -8,8 +8,8 @@ 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"
+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"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2016-01-28 6:48 Wolfram Schlich
0 siblings, 0 replies; 43+ messages in thread
From: Wolfram Schlich @ 2016-01-28 6:48 UTC (permalink / raw
To: gentoo-commits
commit: 9bc6db22aeffcf3ea99679fdc4ed05c4c85fa6d8
Author: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 28 06:47:49 2016 +0000
Commit: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
CommitDate: Thu Jan 28 06:48:02 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc6db22
net-libs/loudmouth: added dependency on dev-util/gtk-doc (fixes bug #572990); removed short-lived version 1.5.1.
Package-Manager: portage-2.2.27
net-libs/loudmouth/Manifest | 1 -
net-libs/loudmouth/loudmouth-1.5.1.ebuild | 56 ----------------------
...outh-1.5.2.ebuild => loudmouth-1.5.2-r1.ebuild} | 1 +
3 files changed, 1 insertion(+), 57 deletions(-)
diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index 51b46d2..f988948 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,3 +1,2 @@
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.gz 115940 SHA256 c3dd7b5690a7b6ee4768d71d2bdee4615cfb73b6eeaa342d6a931a5160e47421 SHA512 54c3eb7ef99604d7e2d5560dc6e5be176a188e6a0d82ae6c2f488e30f06553039aa03d6f818cec25f354479a2624f60f2233d7e63b54f331e934d554de9bfc87 WHIRLPOOL 99fd7fa00f08976242313c2bc11e9edfbe1aeea9918090347a1975d5ece438892afbf3b5c16ffe79b1c0a10b28f35f62937d45a234e63b26f051466799fd7685
diff --git a/net-libs/loudmouth/loudmouth-1.5.1.ebuild b/net-libs/loudmouth/loudmouth-1.5.1.ebuild
deleted file mode 100644
index 23def7e..0000000
--- a/net-libs/loudmouth/loudmouth-1.5.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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"
-
-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}
-}
diff --git a/net-libs/loudmouth/loudmouth-1.5.2.ebuild b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
similarity index 98%
rename from net-libs/loudmouth/loudmouth-1.5.2.ebuild
rename to net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index 387dd40..c413070 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -30,6 +30,7 @@ RDEPEND="
DEPEND="${RDEPEND}
test? ( dev-libs/check )
virtual/pkgconfig
+ >=dev-util/gtk-doc-1
>=dev-util/gtk-doc-am-1
"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2016-03-29 6:58 Wolfram Schlich
0 siblings, 0 replies; 43+ messages in thread
From: Wolfram Schlich @ 2016-03-29 6:58 UTC (permalink / raw
To: gentoo-commits
commit: 27908312b84fe2369faf4c6380738a6aa8d095d7
Author: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 29 06:58:20 2016 +0000
Commit: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
CommitDate: Tue Mar 29 06:58:53 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27908312
net-libs/loudmouth: version bump
Package-Manager: portage-2.2.28
net-libs/loudmouth/Manifest | 1 +
net-libs/loudmouth/loudmouth-1.5.3.ebuild | 58 +++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index f988948..11c504d 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.2.tar.gz 115940 SHA256 c3dd7b5690a7b6ee4768d71d2bdee4615cfb73b6eeaa342d6a931a5160e47421 SHA512 54c3eb7ef99604d7e2d5560dc6e5be176a188e6a0d82ae6c2f488e30f06553039aa03d6f818cec25f354479a2624f60f2233d7e63b54f331e934d554de9bfc87 WHIRLPOOL 99fd7fa00f08976242313c2bc11e9edfbe1aeea9918090347a1975d5ece438892afbf3b5c16ffe79b1c0a10b28f35f62937d45a234e63b26f051466799fd7685
+DIST loudmouth-1.5.3.tar.gz 114676 SHA256 12972fcffd9bbcc4a3b2b9fbf4b0e549f7b4caf0f11c8d2af2059087ce4e8792 SHA512 afae8b4ad1e9e5558cffa8f6b9f25331b01cfa09ea0b3defb74cac7d39477744e6d9181d3adefe242038020759df43558de0e61305fbc8e12a3b293b82856bf7 WHIRLPOOL 0a7d4a01ec4f0ae68f58f3267aabc2eb9f7eb0e812232a8ecd3664dd5c99ae404c4825bb5ae01f36a1cced48a9aaff67c4a92c23541e2e1fd9f69c4a67962007
diff --git a/net-libs/loudmouth/loudmouth-1.5.3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3.ebuild
new file mode 100644
index 0000000..c413070
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.3.ebuild
@@ -0,0 +1,58 @@
+# 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-1
+ >=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}
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2017-09-16 11:08 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2017-09-16 11:08 UTC (permalink / raw
To: gentoo-commits
commit: fc8ba2964d22a506212d7c3aa836437c8191ec4d
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 16 11:08:28 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Sep 16 11:08:46 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc8ba296
net-libs/loudmouth: stable 1.5.2-r1 for ia64, bug #619488
Package-Manager: Portage-2.3.8, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"
net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index b5dac8fc267..0059fb3c90f 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2017-10-29 10:18 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2017-10-29 10:18 UTC (permalink / raw
To: gentoo-commits
commit: 09bd3482ef26dc37528c4ff6425beeabff85ac82
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 29 10:14:44 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Oct 29 10:14:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09bd3482
net-libs/loudmouth: stable 1.5.2-r1 for ppc64, bug #619488
Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ppc64"
net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index 122b5dc84e8..1ff3a71e5df 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+KEYWORDS="alpha ~amd64 ~arm ia64 ~ppc ppc64 ~sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2017-11-02 20:19 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2017-11-02 20:19 UTC (permalink / raw
To: gentoo-commits
commit: 7cc813f1e2044edc0379b80ab15836754944e310
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 2 20:11:32 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Nov 2 20:19:06 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc813f1
net-libs/loudmouth: stable 1.5.2-r1 for sparc, bug #619488 (thanks to Rolf Eike Beer)
Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"
net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index 1ff3a71e5df..0e6638e9a51 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ia64 ~ppc ppc64 ~sparc ~x86 ~ppc-macos"
+KEYWORDS="alpha ~amd64 ~arm ia64 ~ppc ppc64 sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2017-11-07 12:57 Manuel Rüger
0 siblings, 0 replies; 43+ messages in thread
From: Manuel Rüger @ 2017-11-07 12:57 UTC (permalink / raw
To: gentoo-commits
commit: e67918312f736e5dbdb420d961faf91c829e86e2
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 7 12:56:23 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Nov 7 12:56:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6791831
net-libs/loudmouth: Stable on amd64
Package-Manager: Portage-2.3.12, Repoman-2.3.4
net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index 0e6638e9a51..42a2e52e051 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ia64 ~ppc ppc64 sparc ~x86 ~ppc-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ~ppc ppc64 sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2017-11-07 18:22 Thomas Deutschmann
0 siblings, 0 replies; 43+ messages in thread
From: Thomas Deutschmann @ 2017-11-07 18:22 UTC (permalink / raw
To: gentoo-commits
commit: d786b1455c6acd5dc00927e123f1489e6aedd79b
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 7 18:14:10 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Nov 7 18:22:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d786b145
net-libs/loudmouth: x86 stable (bug #619488)
Package-Manager: Portage-2.3.13, Repoman-2.3.4
net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index 42a2e52e051..321edd00966 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ~ppc ppc64 sparc ~x86 ~ppc-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ~ppc ppc64 sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2017-11-12 10:40 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2017-11-12 10:40 UTC (permalink / raw
To: gentoo-commits
commit: a3fbea21d6bffb05e33c56b04239bae840e4b6c3
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 12 10:40:32 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Nov 12 10:40:32 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3fbea21
net-libs/loudmouth: stable 1.5.2-r1 for ppc, bug #619488
Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ppc"
net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index 321edd00966..abcf62c398c 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ~ppc ppc64 sparc x86 ~ppc-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-04-14 16:01 Pacho Ramos
0 siblings, 0 replies; 43+ messages in thread
From: Pacho Ramos @ 2018-04-14 16:01 UTC (permalink / raw
To: gentoo-commits
commit: c707d7fdab665ca3dc524c8f86045e2cb0253cfb
Author: Peter Levine <plevine457 <AT> gmail <DOT> com>
AuthorDate: Mon Mar 26 05:27:01 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Apr 14 15:59:03 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c707d7fd
net-libs/loudmouth: Revbump for EAPI-6
Package-Manager: Portage-2.3.16, Repoman-2.3.6
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 59 ++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
new file mode 100644
index 00000000000..ab65db268b9
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+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"
+
+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-1
+ >=dev-util/gtk-doc-am-1
+"
+
+PATCHES=( "${FILESDIR}"/${P}-gcc7.patch )
+
+src_prepare() {
+ default
+ 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}
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-04-14 16:01 Pacho Ramos
0 siblings, 0 replies; 43+ messages in thread
From: Pacho Ramos @ 2018-04-14 16:01 UTC (permalink / raw
To: gentoo-commits
commit: ae6bf9a03ada41b29c711d066cc11eea4b3e4f1a
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 14 15:59:54 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Apr 14 15:59:54 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae6bf9a0
net-libs/loudmouth: Also set subslot dep for gnutls
Package-Manager: Portage-2.3.28, Repoman-2.3.9
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index ab65db268b9..46433a1d78f 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -2,7 +2,6 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-
inherit autotools
DESCRIPTION="Lightweight C Jabber library"
@@ -20,7 +19,7 @@ RDEPEND="
>=dev-libs/glib-2.16:2
net-dns/libidn
ssl? (
- !openssl? ( >=net-libs/gnutls-1.4.0 )
+ !openssl? ( >=net-libs/gnutls-1.4.0:0= )
openssl? ( dev-libs/openssl:0= )
)
asyncns? ( >=net-libs/libasyncns-0.3 )
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-05-25 8:41 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2018-05-25 8:41 UTC (permalink / raw
To: gentoo-commits
commit: a7595c1727921750f9b27bc72753847ba4b5f02d
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri May 25 08:41:22 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri May 25 08:41:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7595c17
net-libs/loudmouth: stable 1.5.3-r1 for ia64, bug #653156
Bug: https://bugs.gentoo.org/653156
Package-Manager: Portage-2.3.38, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index 46433a1d78f..76ee3d61471 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-05-25 23:58 Thomas Deutschmann
0 siblings, 0 replies; 43+ messages in thread
From: Thomas Deutschmann @ 2018-05-25 23:58 UTC (permalink / raw
To: gentoo-commits
commit: b8da7c0bf7b63ae1601d0324b47f11276918b6e2
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri May 25 22:37:12 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri May 25 23:57:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8da7c0b
net-libs/loudmouth: x86 stable (bug #653156)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index 76ee3d61471..4971d04dd28 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-05-26 18:11 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2018-05-26 18:11 UTC (permalink / raw
To: gentoo-commits
commit: 05f222cde0db3333e2a30206f24753fc3ded4b74
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri May 25 18:59:42 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat May 26 18:10:42 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05f222cd
net-libs/loudmouth: stable 1.5.3-r1 for sparc
Bug: https://bugs.gentoo.org/653156
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index 4971d04dd28..eea50a02aec 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-05-27 20:18 Mikle Kolyada
0 siblings, 0 replies; 43+ messages in thread
From: Mikle Kolyada @ 2018-05-27 20:18 UTC (permalink / raw
To: gentoo-commits
commit: de991c7bbf22a115f3bf53f04faaaee7be84ba5a
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 27 20:18:13 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 27 20:18:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de991c7b
net-libs/loudmouth: amd64 stable wrt bug #653156
Package-Manager: Portage-2.3.24, Repoman-2.3.6
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index eea50a02aec..4235c662202 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 sparc x86 ~ppc-macos"
+KEYWORDS="~alpha amd64 ~arm ia64 ~ppc ~ppc64 sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-06-18 20:21 Tobias Klausmann
0 siblings, 0 replies; 43+ messages in thread
From: Tobias Klausmann @ 2018-06-18 20:21 UTC (permalink / raw
To: gentoo-commits
commit: 365cc9086d0d0be14db05539dc8587667380f18a
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 18 20:21:35 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Jun 18 20:21:35 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=365cc908
net-libs/loudmouth-1.5.3-r1: alpha stable
Gentoo-Bug: http://bugs.gentoo.org/653156
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index 4235c662202..11e1b243281 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ia64 ~ppc ~ppc64 sparc x86 ~ppc-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ~ppc ~ppc64 sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-07-01 8:57 Pacho Ramos
0 siblings, 0 replies; 43+ messages in thread
From: Pacho Ramos @ 2018-07-01 8:57 UTC (permalink / raw
To: gentoo-commits
commit: 1e4caf8e1bf4b1bfa49c7b6ce53b1445f36a77c1
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 1 08:44:53 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jul 1 08:57:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4caf8e
net-libs/loudmouth: Drop old
Package-Manager: Portage-2.3.41, Repoman-2.3.9
net-libs/loudmouth/Manifest | 1 -
net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild | 57 ---------------------------
net-libs/loudmouth/loudmouth-1.5.3.ebuild | 58 ----------------------------
net-libs/loudmouth/metadata.xml | 6 +--
4 files changed, 2 insertions(+), 120 deletions(-)
diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index 16d7dfe621a..a905effb7a5 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,2 +1 @@
-DIST loudmouth-1.5.2.tar.gz 115940 BLAKE2B cf9134fb68e09c4f03e605227a42b9fc092d5f4f5524a39e044f6bd573e7b9a0e7ba1161cda2655cdc513a05673dfa3600d0548209230314a9455c7a912123b7 SHA512 54c3eb7ef99604d7e2d5560dc6e5be176a188e6a0d82ae6c2f488e30f06553039aa03d6f818cec25f354479a2624f60f2233d7e63b54f331e934d554de9bfc87
DIST loudmouth-1.5.3.tar.gz 114676 BLAKE2B 7a73e4e65046608fc8ec571b5448ab8344a8aed554fee1ecf7badd2ca5ed382ddb27e6ba7bd5d0a76d978d3079415b307f1b4ca77da450003ae936191cdbd33e SHA512 afae8b4ad1e9e5558cffa8f6b9f25331b01cfa09ea0b3defb74cac7d39477744e6d9181d3adefe242038020759df43558de0e61305fbc8e12a3b293b82856bf7
diff --git a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
deleted file mode 100644
index abcf62c398c..00000000000
--- a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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-1
- >=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}
-}
diff --git a/net-libs/loudmouth/loudmouth-1.5.3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3.ebuild
deleted file mode 100644
index 2b9a01dfa34..00000000000
--- a/net-libs/loudmouth/loudmouth-1.5.3.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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-1
- >=dev-util/gtk-doc-am-1
-"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc7.patch
- 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}
-}
diff --git a/net-libs/loudmouth/metadata.xml b/net-libs/loudmouth/metadata.xml
index 528027fd8a7..159c57ddc16 100644
--- a/net-libs/loudmouth/metadata.xml
+++ b/net-libs/loudmouth/metadata.xml
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>wschlich@gentoo.org</email>
- <name>Wolfram Schlich</name>
- </maintainer>
+ <!-- maintainer-needed -->
<use>
<flag name="asyncns">Use <pkg>net-libs/libasyncns</pkg> for asynchronous name resolution.</flag>
<flag name="openssl">Enable <pkg>dev-libs/openssl</pkg> support instead of gnutls (which is the default).</flag>
@@ -13,3 +10,4 @@
<remote-id type="github">mcabber/loudmouth</remote-id>
</upstream>
</pkgmetadata>
+
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-07-10 20:04 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2018-07-10 20:04 UTC (permalink / raw
To: gentoo-commits
commit: ed95997efff81e1e7b16bd4d17afefcdefb9561c
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 10 00:37:50 2018 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Tue Jul 10 20:03:56 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed95997e
net-libs/loudmouth: set myself as maintainer
Was up for grabs.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-libs/loudmouth/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/metadata.xml b/net-libs/loudmouth/metadata.xml
index 159c57ddc16..6b630e38e30 100644
--- a/net-libs/loudmouth/metadata.xml
+++ b/net-libs/loudmouth/metadata.xml
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>andrey_utkin@gentoo.org</email>
+ <name>Andrey Utkin</name>
+ </maintainer>
<use>
<flag name="asyncns">Use <pkg>net-libs/libasyncns</pkg> for asynchronous name resolution.</flag>
<flag name="openssl">Enable <pkg>dev-libs/openssl</pkg> support instead of gnutls (which is the default).</flag>
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-07-30 21:50 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2018-07-30 21:50 UTC (permalink / raw
To: gentoo-commits
commit: d3fcdc5eff37a3d8411bb5a8f78729caa30ef623
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 30 21:49:03 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jul 30 21:49:03 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3fcdc5e
net-libs/loudmouth: stable 1.5.3-r1 for ppc, bug #653156
Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index 09c50099a4e..8538a223d36 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ~ppc ppc64 sparc x86 ~ppc-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-08-21 0:20 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2018-08-21 0:20 UTC (permalink / raw
To: gentoo-commits
commit: b913bf8ca79ad11cade01da8b51440008f1c482b
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 21 00:18:39 2018 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Tue Aug 21 00:19:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b913bf8c
net-libs/loudmouth: drop unused doc building deps
Unconditional dependency on dev-util/gtk-doc{,-am} was declared, but the
documentation building was not implemented.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 2 --
1 file changed, 2 deletions(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index 8538a223d36..d611065e734 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -27,8 +27,6 @@ RDEPEND="
DEPEND="${RDEPEND}
test? ( dev-libs/check )
virtual/pkgconfig
- >=dev-util/gtk-doc-1
- >=dev-util/gtk-doc-am-1
"
PATCHES=( "${FILESDIR}"/${P}-gcc7.patch )
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-10-29 22:27 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2018-10-29 22:27 UTC (permalink / raw
To: gentoo-commits
commit: 3500791f6606f1a1430c1303cef87f5e5ff21b84
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 20 22:51:47 2018 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Mon Oct 29 22:27:04 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3500791f
net-libs/loudmouth: add dep dev-util/glib-utils
Add build-time dependency on dev-util/glib-utils.
Since few tools are not installed by dev-libs/glib-2.56.2 ebuild
anymore, loudmouth fails to build, emitting such error:
net-libs/loudmouth-1.5.3-r1 : /.../sh:line <snip>: glib-genmarshal: command not found
This commit fixes the error.
Conditional operator depending on dev-libs/glib version is not needed as
this is handled by dev-util/glib-utils-2.52.3 being empty and not
conflicting with dev-libs/glib.
Bug: https://bugs.gentoo.org/667392
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
index 5950fec9485..ad185ab77e8 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
@@ -25,6 +25,7 @@ RDEPEND="
asyncns? ( >=net-libs/libasyncns-0.3 )
"
DEPEND="${RDEPEND}
+ dev-util/glib-utils
test? ( dev-libs/check )
virtual/pkgconfig
"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-10-29 22:27 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2018-10-29 22:27 UTC (permalink / raw
To: gentoo-commits
commit: 498edf66e57571806e8f6f3500d9bd3019f9cec1
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 20 22:33:36 2018 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Mon Oct 29 22:27:04 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498edf66
net-libs/loudmouth: specify libidn slot
Fix repoman warning:
net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild: RDEPEND: 'net-dns/libidn' matches more than one slot, please specify an explicit slot and/or use the := or :* slot operator
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
index c00cab2c4e0..5950fec9485 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
@@ -17,7 +17,7 @@ IUSE="asyncns ssl openssl static-libs test"
# Automagic libidn dependency
RDEPEND="
>=dev-libs/glib-2.16:2
- net-dns/libidn
+ net-dns/libidn:=
ssl? (
!openssl? ( >=net-libs/gnutls-1.4.0:0= )
openssl? ( dev-libs/openssl:0= )
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2018-10-29 22:27 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2018-10-29 22:27 UTC (permalink / raw
To: gentoo-commits
commit: 6a63bd47cd2b4bab9db7f36410fd1e0aa0acb8a9
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 20 22:25:41 2018 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Mon Oct 29 22:27:03 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a63bd47
net-libs/loudmouth: add 1.5.3-r2
Clone new revision from -r1 (with keywords dropped to unstable) in order
to commit improvements here.
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild | 59 ++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
new file mode 100644
index 00000000000..c00cab2c4e0
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+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"
+
+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:0= )
+ openssl? ( dev-libs/openssl:0= )
+ )
+ asyncns? ( >=net-libs/libasyncns-0.3 )
+"
+DEPEND="${RDEPEND}
+ test? ( dev-libs/check )
+ virtual/pkgconfig
+"
+
+PATCHES=(
+ "${FILESDIR}"/${P}-gcc7.patch
+ "${FILESDIR}"/${P}-skip-gtk-doc.patch
+)
+
+src_prepare() {
+ default
+ 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}
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-01-31 10:39 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2019-01-31 10:39 UTC (permalink / raw
To: gentoo-commits
commit: 1281a108d0a381540c7ef25635db0cd27873ef87
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 28 00:25:05 2019 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Thu Jan 31 10:38:37 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1281a108
net-libs/loudmouth: add new revision 1.5.3-r3
Cloned from -r2 verbatim, for further changes.
Package-Manager: Portage-2.3.49, Repoman-2.3.12
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 60 ++++++++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
new file mode 100644
index 00000000000..f4cbccad2df
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+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"
+
+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:0= )
+ openssl? ( dev-libs/openssl:0= )
+ )
+ asyncns? ( >=net-libs/libasyncns-0.3 )
+"
+DEPEND="${RDEPEND}
+ dev-util/glib-utils
+ test? ( dev-libs/check )
+ virtual/pkgconfig
+"
+
+PATCHES=(
+ "${FILESDIR}"/${P}-gcc7.patch
+ "${FILESDIR}"/${P}-skip-gtk-doc.patch
+)
+
+src_prepare() {
+ default
+ 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}
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-01-31 10:39 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2019-01-31 10:39 UTC (permalink / raw
To: gentoo-commits
commit: 95ee0e6715003dfbc26427f1cf9eb1e0d014075d
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 28 01:22:32 2019 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Thu Jan 31 10:38:37 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ee0e67
net-libs/loudmouth: EAPI=7
Package-Manager: Portage-2.3.49, Repoman-2.3.12
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index f10f3698262..6969efe6a5e 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
DESCRIPTION="Lightweight C Jabber library"
HOMEPAGE="https://mcabber.com"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-01-31 10:39 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2019-01-31 10:39 UTC (permalink / raw
To: gentoo-commits
commit: 60d3a3eaa176e4222d46b58e1844514fddfce6dc
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 28 01:18:25 2019 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Thu Jan 31 10:38:37 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60d3a3ea
net-libs/loudmouth: use official tarballs
Previously, Github-generated tarballs were used.
These required extra build step known as "bootstrapping", which required
eautoreconf run, and imposed a dependency on dev-util/gtk-doc (which I
worked around earlier rather inelegantly).
At the same time, this change has a side effect of disabling -Werror in
compilation flags, which is the reason of bug 673434.
Suggested-by: Mart Raudsepp <leio <AT> gentoo.org>
Bug: https://bugs.gentoo.org/673434
Package-Manager: Portage-2.3.49, Repoman-2.3.12
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
net-libs/loudmouth/Manifest | 1 +
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 12 +++---------
2 files changed, 4 insertions(+), 9 deletions(-)
diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index a905effb7a5..31a751df9e2 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1 +1,2 @@
+DIST loudmouth-1.5.3.tar.bz2 375974 BLAKE2B c9707fe18560104456a624a61437240a16bb6bbaf544cdf775f6d6c64fdbeb6eb8f7042eb13fcdeb36c89bb8d9522c2eba02c24987757c0f0ac8748d92a2b166 SHA512 ab6b16b4e644b69cdb7d8df1753d1bb5b43c2f1e76944e639339169b332e1b5c6a4246053c5b8a579ee9b53c845cef610b0040dfdffeb857180b6bab71adfcce
DIST loudmouth-1.5.3.tar.gz 114676 BLAKE2B 7a73e4e65046608fc8ec571b5448ab8344a8aed554fee1ecf7badd2ca5ed382ddb27e6ba7bd5d0a76d978d3079415b307f1b4ca77da450003ae936191cdbd33e SHA512 afae8b4ad1e9e5558cffa8f6b9f25331b01cfa09ea0b3defb74cac7d39477744e6d9181d3adefe242038020759df43558de0e61305fbc8e12a3b293b82856bf7
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index f4cbccad2df..f10f3698262 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -2,11 +2,10 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit autotools
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"
+HOMEPAGE="https://mcabber.com"
+SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
@@ -26,20 +25,15 @@ RDEPEND="
"
DEPEND="${RDEPEND}
dev-util/glib-utils
+ dev-util/gtk-doc-am
test? ( dev-libs/check )
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${P}-gcc7.patch
- "${FILESDIR}"/${P}-skip-gtk-doc.patch
)
-src_prepare() {
- default
- eautoreconf
-}
-
src_configure() {
local myconf
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-03-02 19:52 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2019-03-02 19:52 UTC (permalink / raw
To: gentoo-commits
commit: 2fc7a204a8026edd990c0802fc9e9c51839fb6c6
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 2 19:51:42 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Mar 2 19:52:21 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fc7a204
net-libs/loudmouth: stable 1.5.3-r3 for ia64, bug #679180
Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index 6969efe6a5e..2b76546d869 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-03-02 20:02 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2019-03-02 20:02 UTC (permalink / raw
To: gentoo-commits
commit: 378a984839da58b31ff849fc91197a4a97ab30c8
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 2 19:59:23 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Mar 2 20:02:15 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378a9848
net-libs/loudmouth: stable 1.5.3-r3 for ppc, bug #679180
Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index 2b76546d869..25a4c0a16d5 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-03-02 23:42 Thomas Deutschmann
0 siblings, 0 replies; 43+ messages in thread
From: Thomas Deutschmann @ 2019-03-02 23:42 UTC (permalink / raw
To: gentoo-commits
commit: 2d55bfc4bd293ad7d93f922cfd7f91acdc83c6bf
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 2 23:41:04 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Mar 2 23:42:38 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d55bfc4
net-libs/loudmouth: x86 stable (bug #679180)
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index 25a4c0a16d5..34272dbb80d 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ppc ~ppc64 ~sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-03-03 12:11 Mikle Kolyada
0 siblings, 0 replies; 43+ messages in thread
From: Mikle Kolyada @ 2019-03-03 12:11 UTC (permalink / raw
To: gentoo-commits
commit: b594761028c793b5f781631e24ea96552a85a043
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 3 12:11:36 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 12:11:36 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5947610
net-libs/loudmouth: amd64 stable wrt bug #679180
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index 34272dbb80d..12a5eabfabf 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="~alpha amd64 ~arm ia64 ppc ~ppc64 ~sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-03-13 22:32 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2019-03-13 22:32 UTC (permalink / raw
To: gentoo-commits
commit: d369452d4ff952d4abdcf97185e040203d3c78c4
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 13 22:32:01 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Mar 13 22:32:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d369452d
net-libs/loudmouth: stable 1.5.3-r3 for ppc64, bug #679180
Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index 12a5eabfabf..f6758cdd285 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="~alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-03-16 14:01 Mikle Kolyada
0 siblings, 0 replies; 43+ messages in thread
From: Mikle Kolyada @ 2019-03-16 14:01 UTC (permalink / raw
To: gentoo-commits
commit: f431d092bc4fdb27f5e65642bce58e1a0e9196a1
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 16 14:00:28 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 14:00:28 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f431d092
net-libs/loudmouth: arm stable wrt bug #679180
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index f6758cdd285..1d3b7e5de53 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="~alpha amd64 arm ia64 ppc ppc64 ~sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-05-02 21:16 Mikle Kolyada
0 siblings, 0 replies; 43+ messages in thread
From: Mikle Kolyada @ 2019-05-02 21:16 UTC (permalink / raw
To: gentoo-commits
commit: 6948c11899abe684c064d6a2600e5355fed67177
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu May 2 21:15:54 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu May 2 21:15:54 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6948c118
net-libs/loudmouth: alpha stable wrt bug #679180
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="alpha"
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index 1d3b7e5de53..bbdae3b7c68 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2019-06-03 20:31 Sergei Trofimovich
0 siblings, 0 replies; 43+ messages in thread
From: Sergei Trofimovich @ 2019-06-03 20:31 UTC (permalink / raw
To: gentoo-commits
commit: d72f1c1ca87365a6cf22fdac44eff9c534fbe43c
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon Jun 3 20:24:27 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jun 3 20:30:58 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d72f1c1c
net-libs/loudmouth: stable 1.5.3-r3 for sparc, bug #679180
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index bbdae3b7c68..a0bcde42ddf 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2020-12-14 0:46 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2020-12-14 0:46 UTC (permalink / raw
To: gentoo-commits
commit: b18780de73cd59dd243dad39ec7e8580264ef09b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 14 00:42:44 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 14 00:42:44 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b18780de
net-libs/loudmouth: arm64 keyworded (bug #757669)
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index c1581eabfdf..4a48f8ae0e7 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -9,7 +9,7 @@ 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"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2021-11-16 16:38 Andrey Utkin
0 siblings, 0 replies; 43+ messages in thread
From: Andrey Utkin @ 2021-11-16 16:38 UTC (permalink / raw
To: gentoo-commits
commit: fdae047f81e796e82432dbe0f6e16550755c3e24
Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 16 16:36:21 2021 +0000
Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Tue Nov 16 16:38:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdae047f
net-libs/loudmouth: drop old revisions
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
net-libs/loudmouth/Manifest | 1 -
net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 60 ---------------------------
net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild | 61 ----------------------------
3 files changed, 122 deletions(-)
diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index 31a751df9e25..e1ff682afffe 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,2 +1 @@
DIST loudmouth-1.5.3.tar.bz2 375974 BLAKE2B c9707fe18560104456a624a61437240a16bb6bbaf544cdf775f6d6c64fdbeb6eb8f7042eb13fcdeb36c89bb8d9522c2eba02c24987757c0f0ac8748d92a2b166 SHA512 ab6b16b4e644b69cdb7d8df1753d1bb5b43c2f1e76944e639339169b332e1b5c6a4246053c5b8a579ee9b53c845cef610b0040dfdffeb857180b6bab71adfcce
-DIST loudmouth-1.5.3.tar.gz 114676 BLAKE2B 7a73e4e65046608fc8ec571b5448ab8344a8aed554fee1ecf7badd2ca5ed382ddb27e6ba7bd5d0a76d978d3079415b307f1b4ca77da450003ae936191cdbd33e SHA512 afae8b4ad1e9e5558cffa8f6b9f25331b01cfa09ea0b3defb74cac7d39477744e6d9181d3adefe242038020759df43558de0e61305fbc8e12a3b293b82856bf7
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
deleted file mode 100644
index 2ec2b71854fa..000000000000
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-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"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86 ~ppc-macos"
-
-IUSE="asyncns ssl openssl static-libs test"
-RESTRICT="!test? ( test )"
-
-# Automagic libidn dependency
-RDEPEND="
- >=dev-libs/glib-2.16:2
- net-dns/libidn
- ssl? (
- !openssl? ( >=net-libs/gnutls-1.4.0:0= )
- openssl? ( dev-libs/openssl:0= )
- )
- asyncns? ( >=net-libs/libasyncns-0.3 )
-"
-DEPEND="${RDEPEND}
- test? ( dev-libs/check )
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-gcc7.patch
- "${FILESDIR}"/${P}-skip-gtk-doc.patch
-)
-
-src_prepare() {
- default
- 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}
-}
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
deleted file mode 100644
index 6b2b320208a2..000000000000
--- a/net-libs/loudmouth/loudmouth-1.5.3-r2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-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"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
-
-IUSE="asyncns ssl openssl static-libs test"
-RESTRICT="!test? ( test )"
-
-# Automagic libidn dependency
-RDEPEND="
- >=dev-libs/glib-2.16:2
- net-dns/libidn:=
- ssl? (
- !openssl? ( >=net-libs/gnutls-1.4.0:0= )
- openssl? ( dev-libs/openssl:0= )
- )
- asyncns? ( >=net-libs/libasyncns-0.3 )
-"
-DEPEND="${RDEPEND}
- dev-util/glib-utils
- test? ( dev-libs/check )
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-gcc7.patch
- "${FILESDIR}"/${P}-skip-gtk-doc.patch
-)
-
-src_prepare() {
- default
- 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}
-}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2021-12-13 5:54 Yixun Lan
0 siblings, 0 replies; 43+ messages in thread
From: Yixun Lan @ 2021-12-13 5:54 UTC (permalink / raw
To: gentoo-commits
commit: 98e9dc6d81f13c388daa26d4ade75594c52701de
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 10 02:37:49 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Dec 13 05:52:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e9dc6d
net-libs/loudmouth: keyword ~riscv
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
index 4a48f8ae0e73..13e7508b5b20 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 sparc x86 ~ppc-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86 ~ppc-macos"
IUSE="asyncns ssl openssl static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2022-04-13 14:46 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2022-04-13 14:46 UTC (permalink / raw
To: gentoo-commits
commit: 300c4e61cede30900f292a4d0f0d85cbd09e7141
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 13 14:46:01 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 13 14:46:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=300c4e61
net-libs/loudmouth: retire andrey_utkin
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/loudmouth/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/net-libs/loudmouth/metadata.xml b/net-libs/loudmouth/metadata.xml
index b54ff2f9f0e4..88fdcd4e46d1 100644
--- a/net-libs/loudmouth/metadata.xml
+++ b/net-libs/loudmouth/metadata.xml
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>andrey_utkin@gentoo.org</email>
- <name>Andrey Utkin</name>
- </maintainer>
+ <!-- maintainer-needed -->
<use>
<flag name="asyncns">Use <pkg>net-libs/libasyncns</pkg> for asynchronous name resolution.</flag>
<flag name="openssl">Enable <pkg>dev-libs/openssl</pkg> support instead of gnutls (which is the default).</flag>
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2022-12-18 11:44 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2022-12-18 11:44 UTC (permalink / raw
To: gentoo-commits
commit: aaa08726fba82c7ca279cb30a6febddc369300df
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 11:43:26 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 11:43:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaa08726
net-libs/loudmouth: Stabilize 1.5.4 arm, #886765
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.4.ebuild b/net-libs/loudmouth/loudmouth-1.5.4.ebuild
index bd960d3f5dbc..88d3c0de3796 100644
--- a/net-libs/loudmouth/loudmouth-1.5.4.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2022-12-18 12:26 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2022-12-18 12:26 UTC (permalink / raw
To: gentoo-commits
commit: 5d87c9fb17a2d7b5dc72dafc1e91b03564954ea0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 12:25:52 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 12:25:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d87c9fb
net-libs/loudmouth: Stabilize 1.5.4 ppc, #886765
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.4.ebuild b/net-libs/loudmouth/loudmouth-1.5.4.ebuild
index 88d3c0de3796..14c305d3e0bf 100644
--- a/net-libs/loudmouth/loudmouth-1.5.4.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~ia64 ppc ~ppc64 ~riscv ~sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
@ 2022-12-18 12:28 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2022-12-18 12:28 UTC (permalink / raw
To: gentoo-commits
commit: 0639991233e3e5273fd4c877ede1ec7924671713
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 12:28:35 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 12:28:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06399912
net-libs/loudmouth: Stabilize 1.5.4 sparc, #886765
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/loudmouth/loudmouth-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/loudmouth/loudmouth-1.5.4.ebuild b/net-libs/loudmouth/loudmouth-1.5.4.ebuild
index 14c305d3e0bf..682636f2ca9e 100644
--- a/net-libs/loudmouth/loudmouth-1.5.4.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~ia64 ppc ~ppc64 ~riscv ~sparc ~x86 ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~ia64 ppc ~ppc64 ~riscv sparc ~x86 ~ppc-macos"
IUSE="asyncns ssl openssl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
end of thread, other threads:[~2022-12-18 12:28 UTC | newest]
Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-13 14:46 [gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2022-12-18 12:28 Sam James
2022-12-18 12:26 Sam James
2022-12-18 11:44 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-27 6:45 Wolfram Schlich
2016-01-25 13:40 Wolfram Schlich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox