From: "Maciej Mrozowski" <reavertm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libgadu/
Date: Fri, 17 Mar 2017 00:32:14 +0000 (UTC) [thread overview]
Message-ID: <1489710710.16a82c5ee805860ad0cfc83b7e3e563e0cb7e954.reavertm@gentoo> (raw)
commit: 16a82c5ee805860ad0cfc83b7e3e563e0cb7e954
Author: Maciej Mrozowski <reavertm <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 00:30:56 2017 +0000
Commit: Maciej Mrozowski <reavertm <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 00:31:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16a82c5e
net-libs/libgadu: Version bump 1.12.2
Package-Manager: Portage-2.3.3, Repoman-2.3.2
net-libs/libgadu/Manifest | 1 +
net-libs/libgadu/libgadu-1.12.2.ebuild | 72 ++++++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/net-libs/libgadu/Manifest b/net-libs/libgadu/Manifest
index 85b3cfca19d..093fa25888e 100644
--- a/net-libs/libgadu/Manifest
+++ b/net-libs/libgadu/Manifest
@@ -1,3 +1,4 @@
DIST libgadu-1.11.4.tar.gz 210937 SHA256 95d445a6fefa7b9c7af2f552f090cf6760e3fc7b5c563ec563f11a9fe1f408d5 SHA512 3fc8e414470864eb953d6d0d7dc6071679907c435d76e05a0b95a2e58365fc795427679f893d337dbf9896611a6bf68047c36806b977643cf4a773d930916639 WHIRLPOOL 4f13869f871e1a57f9aeccb9530c222960bee515065090a72a141d4a3212493df9007af7494598a26ee86a7e0cde18c8fd1b253024944b71538ca93bc94640f0
DIST libgadu-1.12.0.tar.gz 290361 SHA256 536862af3beeeb9a3d17bc73c880204200a8aa1e1cbbf97e01486e024b955037 SHA512 62d1db0e0a59ce7e9a27a2002eea26e69b476a5bddeec129ec6e37d6141dc74e51b177a2cacd232031253d19d223f20ae68df1981f1f673485447950a0bc6670 WHIRLPOOL 1d4cf9634dc652368ce79f276f61a48faae7759d874f906c10e0fce24b0ff76542bfa0df632eb715536c5e775352c180422cca94dfcfae9ebb5b85cbc87409c5
DIST libgadu-1.12.1.tar.gz 296079 SHA256 15a2c017274ab69b05919b1f4c1bbcec0ceab46cbe1024c5fcce63c58c660310 SHA512 4786bcc517dcead278fed05c35e254d963ee42f029b09a59bfe01052cbe438fa4a0d86c17dcfa2ee39d2365f28864f887d28772a5e70ce2ece190714bec45590 WHIRLPOOL dffc9439bf5bb79dbd3fec276535004c05d885f75649824c8538f155512869a558cf6760ae7e2329032f66cab6ec53463d9a30ce164c92d7a76e779c2ac3a6b8
+DIST libgadu-1.12.2.tar.gz 298884 SHA256 f53e703d7ad93ce222dbf7fc0cec77f62813af38817a3678e799e91f1c69c94d SHA512 d3b4fde94327ef312b1df668b8eb73fea9325c9258d85aa65e2746b73f00c2606ebe23f3330493a135a0fec1d0f24988f0cec607d4d899d880853ee8bf60e677 WHIRLPOOL 149569096dc810bcc9307c6b6d4ccf31d2f458f23d83ae6a73dcdd6e5d488c24640771a7f8130303c87148d94a8d7e245b1c2fd0af928d1b8f55993c3d5efc78
diff --git a/net-libs/libgadu/libgadu-1.12.2.ebuild b/net-libs/libgadu/libgadu-1.12.2.ebuild
new file mode 100644
index 00000000000..6864f7ad573
--- /dev/null
+++ b/net-libs/libgadu/libgadu-1.12.2.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=1
+
+inherit autotools-utils
+
+DESCRIPTION="This library implements the client side of the Gadu-Gadu protocol"
+HOMEPAGE="http://toxygen.net/libgadu/"
+SRC_URI="https://github.com/wojtekka/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+SLOT="0"
+IUSE="doc gnutls ssl static-libs test threads"
+
+REQUIRED_USE="
+ gnutls? ( ssl )
+"
+COMMON_DEPEND="
+ >=dev-libs/protobuf-c-1.0.0
+ sys-libs/zlib
+ ssl? (
+ gnutls? ( net-libs/gnutls:0 )
+ !gnutls? ( >=dev-libs/openssl-0.9.6m:0 )
+ )
+"
+DEPEND="${COMMON_DEPEND}
+ doc? ( app-doc/doxygen )
+ test? (
+ dev-libs/expat
+ dev-libs/libxml2:2
+ net-misc/curl
+ )
+"
+RDEPEND="${COMMON_DEPEND}
+ !=net-im/kadu-0.6.0.2
+ !=net-im/kadu-0.6.0.1
+"
+
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
+DOCS=(AUTHORS ChangeLog NEWS README)
+
+src_configure() {
+ local myeconfargs=(
+ --with-protobuf
+ $(use_enable test tests)
+ $(use_with threads pthread)
+ )
+
+ if use ssl; then
+ myeconfargs+=(
+ $(use_with gnutls gnutls)
+ $(use_with !gnutls openssl)
+ )
+ else
+ myeconfargs+=(
+ --without-gnutls
+ --without-openssl
+ )
+ fi
+
+ autotools-utils_src_configure
+}
+
+src_install() {
+ use doc && HTML_DOCS=(docs/html/)
+ autotools-utils_src_install
+}
next reply other threads:[~2017-03-17 0:32 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-17 0:32 Maciej Mrozowski [this message]
-- strict thread matches above, loose matches on Subject: below --
2021-02-27 17:13 [gentoo-commits] repo/gentoo:master commit in: net-libs/libgadu/ Maciej Mrozowski
2021-01-06 17:14 Andreas K. Hüttel
2021-01-06 16:35 Andreas K. Hüttel
2020-09-27 3:00 Maciej Mrozowski
2020-09-26 23:47 Maciej Mrozowski
2020-09-26 23:33 Maciej Mrozowski
2020-06-01 1:01 Matt Turner
2020-02-11 11:37 Agostino Sarubbo
2020-02-07 19:58 Sergei Trofimovich
2020-02-06 8:26 Sergei Trofimovich
2020-02-05 23:55 Sergei Trofimovich
2020-02-05 10:34 Agostino Sarubbo
2020-02-03 15:04 Andreas Sturmlechner
2020-02-03 15:04 Andreas Sturmlechner
2019-07-28 17:02 Aaron Bauman
2019-02-19 18:04 Andreas Sturmlechner
2018-08-24 1:40 Thomas Deutschmann
2018-05-09 8:52 Agostino Sarubbo
2017-01-29 19:33 Fabian Groffen
2015-11-18 10:33 Agostino Sarubbo
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=1489710710.16a82c5ee805860ad0cfc83b7e3e563e0cb7e954.reavertm@gentoo \
--to=reavertm@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