public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libwebsockets/
Date: Wed,  1 Jul 2020 06:39:08 +0000 (UTC)	[thread overview]
Message-ID: <1593585511.caac8e6b80b698727c815c61f2c4c90b213417fa.juippis@gentoo> (raw)

commit:     caac8e6b80b698727c815c61f2c4c90b213417fa
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Mon Jun 15 15:13:03 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Jul  1 06:38:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caac8e6b

net-libs/libwebsockets: version bump to 4.0.16

Closes: https://bugs.gentoo.org/728340
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-libs/libwebsockets/Manifest                    |  1 +
 net-libs/libwebsockets/libwebsockets-4.0.16.ebuild | 84 ++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/net-libs/libwebsockets/Manifest b/net-libs/libwebsockets/Manifest
index 98c1527c4d4..218320ac46e 100644
--- a/net-libs/libwebsockets/Manifest
+++ b/net-libs/libwebsockets/Manifest
@@ -1,2 +1,3 @@
 DIST libwebsockets-3.2.1.tar.gz 9868342 BLAKE2B d822552c611f7cd0ee416bf9b9576c6052e196c1aa68b12c46a00865d3dcd131840218394317f191485fc61d8f3b7654d4a652a47f11d279a555522df84a2350 SHA512 a2d30a7a0416a26484743efdaa8635542480a74b0ef0f6e172dab5de4688486efb13457fc8a884d9916f76322cab0cbc9ab675f496558edd1dd9b833d087207d
 DIST libwebsockets-4.0.10.tar.gz 12337448 BLAKE2B 91c38703e6cb98c66fb4e5fd6939c98d98c076b5a4ebd931a23da20e834de54cd61f4e8c121245970a34210d2e8720c0c7429846101ad6f4c4d3fd9a23fcf993 SHA512 25857c03d02c0c55dea1095fd64e1df112e938e975f04d8a28b56b4899a5cce900d500a139e9353ba548b0c59a23bad982dac0e0e0621e869b78e1e130c33cfe
+DIST libwebsockets-4.0.16.tar.gz 12342950 BLAKE2B 980f3fad78f9bd2eaed3e43f71477bbe846c8ee6e26c6a66d0cb363148b81c1b16866fcbf4c91f72c61380c6503d3b4ee1f22a068223fc43bad028db87a58bd2 SHA512 aef67d622669e2efbe0f6e8a2b4be5552b3cde7281c74c9e743fc5b8c8e23243756ec8f119420a790cacd2620bcb49612ac84e0d935ef85d7f1472bc6fa97486

diff --git a/net-libs/libwebsockets/libwebsockets-4.0.16.ebuild b/net-libs/libwebsockets/libwebsockets-4.0.16.ebuild
new file mode 100644
index 00000000000..6bc4ebdb391
--- /dev/null
+++ b/net-libs/libwebsockets/libwebsockets-4.0.16.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake flag-o-matic
+
+DESCRIPTION="A flexible pure-C library for implementing network protocols"
+HOMEPAGE="https://libwebsockets.org/"
+SRC_URI="https://github.com/warmcat/libwebsockets/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/16" # libwebsockets.so.16
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="access-log caps cgi client dbus generic-sessions http-proxy http2 ipv6
+	+lejp libev libevent libressl libuv mbedtls peer-limits server-status smtp socks5
+	sqlite3 ssl static-libs threads zip"
+
+REQUIRED_USE="
+	access-log? ( http2 )
+	generic-sessions? ( smtp sqlite3 )
+	http-proxy? ( client )
+	smtp? ( libuv )
+	ssl? ( ?? ( libressl mbedtls ) )
+	?? ( libev libevent )
+"
+
+RDEPEND="
+	sys-libs/zlib
+	caps? ( sys-libs/libcap )
+	http-proxy? ( net-libs/libhubbub )
+	libev? ( dev-libs/libev )
+	libevent? ( dev-libs/libevent:= )
+	libuv? ( dev-libs/libuv:= )
+	sqlite3? ( dev-db/sqlite:= )
+	ssl? (
+		!libressl? (
+			!mbedtls? ( dev-libs/openssl:0= )
+			mbedtls? ( >net-libs/mbedtls-2.0.0 )
+		)
+	)
+"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-lang/perl"
+
+PATCHES=(
+	"${FILESDIR}/libwebsockets-3.2.0-check_chown_result.patch"
+)
+
+src_configure() {
+	append-cflags -Wno-error
+	local mycmakeargs=(
+		-DCMAKE_DISABLE_FIND_PACKAGE_Git=ON
+		-DLWS_HAVE_LIBCAP=$(usex caps)
+		-DLWS_IPV6=$(usex ipv6)
+		-DLWS_ROLE_DBUS=$(usex dbus)
+		-DLWS_WITHOUT_CLIENT=$(usex !client)
+		-DLWS_WITHOUT_TEST_CLIENT=$(usex !client)
+		-DLWS_WITH_ACCESS_LOG=$(usex access-log)
+		-DLWS_WITH_CGI=$(usex cgi)
+		-DLWS_WITH_GENERIC_SESSIONS=$(usex generic-sessions)
+		-DLWS_WITH_HTTP2=$(usex http2)
+		-DLWS_WITH_HTTP_PROXY=$(usex http-proxy)
+		-DLWS_WITH_HUBBUB=$(usex http-proxy)
+		-DLWS_WITH_LEJP=$(usex lejp)
+		-DLWS_WITH_LIBEV=$(usex libev)
+		-DLWS_WITH_LIBEVENT=$(usex libevent)
+		-DLWS_WITH_LIBUV=$(usex libuv)
+		-DLWS_WITH_MBEDTLS=$(usex mbedtls)
+		-DLWS_WITH_PEER_LIMITS=$(usex peer-limits)
+		-DLWS_WITH_SERVER_STATUS=$(usex server-status)
+		-DLWS_WITH_SMTP=$(usex smtp)
+		-DLWS_WITH_SOCKS5=$(usex socks5)
+		-DLWS_WITH_SQLITE3=$(usex sqlite3)
+		-DLWS_WITH_SSL=$(usex ssl)
+		-DLWS_WITH_STATIC=$(usex static-libs)
+		-DLWS_WITH_STRUCT_JSON=$(usex lejp)
+		-DLWS_WITH_THREADPOOL=$(usex threads)
+		-DLWS_WITH_ZIP_FOPS=$(usex zip)
+		-DLWS_WITHOUT_TESTAPPS=ON
+	)
+
+	cmake_src_configure
+}


             reply	other threads:[~2020-07-01  6:39 UTC|newest]

Thread overview: 141+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-01  6:39 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-19 22:54 [gentoo-commits] repo/gentoo:master commit in: net-libs/libwebsockets/ Mike Pagano
2024-07-08  0:56 Sam James
2024-07-08  0:48 Sam James
2024-07-08  0:48 Sam James
2024-07-07 19:46 Jakov Smolić
2024-07-07 19:46 Jakov Smolić
2024-07-07 13:59 Mike Pagano
2024-07-07 13:59 Mike Pagano
2024-06-18 18:55 Jakov Smolić
2023-12-27  0:20 Jakov Smolić
2023-10-08  8:33 WANG Xuerui
2022-10-07 12:25 Jakov Smolić
2022-10-07  9:35 Agostino Sarubbo
2022-10-05 18:56 Arthur Zamarin
2022-10-05 18:56 Arthur Zamarin
2022-10-05 11:35 Sam James
2022-10-05 11:35 Sam James
2022-08-22  8:28 Jakov Smolić
2022-08-22  8:28 Jakov Smolić
2022-08-22  8:28 Jakov Smolić
2022-06-28  7:47 Joonas Niilola
2022-06-28  6:43 Agostino Sarubbo
2022-06-27 23:32 Sam James
2022-06-27 19:32 Arthur Zamarin
2022-06-27 19:25 Arthur Zamarin
2022-05-20 18:41 Jakov Smolić
2022-03-03 15:12 Jakov Smolić
2022-02-25 21:31 Sam James
2022-02-25 20:44 Arthur Zamarin
2022-02-24 13:02 Sam James
2022-02-24  9:37 Jakov Smolić
2022-02-24  9:37 Jakov Smolić
2022-01-18 13:09 Jakov Smolić
2021-11-14 13:48 Jakov Smolić
2021-11-14  9:21 Sam James
2021-11-09 21:37 Sam James
2021-11-09 21:35 Sam James
2021-11-09 21:34 Sam James
2021-11-09 15:04 Jakov Smolić
2021-10-07  8:14 Jakov Smolić
2021-10-07  8:12 Jakov Smolić
2021-10-04 19:33 Jakov Smolić
2021-10-04 19:16 Sam James
2021-10-02  7:22 Sam James
2021-09-29 14:07 Sam James
2021-09-29 14:07 Sam James
2021-09-29 14:07 Sam James
2021-09-05  5:16 Jakov Smolić
2021-09-04 21:39 Sam James
2021-09-03  6:40 Agostino Sarubbo
2021-09-03  6:34 Agostino Sarubbo
2021-09-01 18:32 Sam James
2021-08-31 17:44 Sam James
2021-08-29 19:50 Jakov Smolić
2021-08-29 19:50 Jakov Smolić
2021-07-29 10:46 Joonas Niilola
2021-06-07 17:26 Sam James
2021-06-07  6:17 Georgy Yakovlev
2021-06-06 13:03 Sam James
2021-06-05 20:43 Sam James
2021-06-05 20:43 Sam James
2021-05-04 21:25 Sam James
2021-05-04 19:10 Sam James
2021-05-02 10:56 Mikle Kolyada
2021-01-14  1:20 Sam James
2021-01-12 18:16 Sam James
2021-01-11 19:13 Sam James
2021-01-10 22:29 Sam James
2021-01-10 21:58 Sam James
2021-01-09 16:23 Sam James
2020-12-09  9:42 Joonas Niilola
2020-12-09  9:42 Joonas Niilola
2020-12-04 18:31 Sergei Trofimovich
2020-12-02 22:58 Sam James
2020-12-02 14:58 Sam James
2020-11-29  8:09 Joonas Niilola
2020-11-29  8:09 Joonas Niilola
2020-10-28 12:10 Joonas Niilola
2020-10-27 21:22 Sam James
2020-10-27 21:22 Sam James
2020-10-17 13:19 Joonas Niilola
2020-10-17 13:19 Joonas Niilola
2020-10-10 13:48 Sergei Trofimovich
2020-10-07 16:15 Sam James
2020-10-07 16:15 Sam James
2020-10-07  0:31 Sam James
2020-10-02 13:57 Joonas Niilola
2020-10-02 13:57 Joonas Niilola
2020-09-13 23:28 Sam James
2020-09-13 21:17 Sam James
2020-09-08 17:03 Sam James
2020-09-05  2:38 Sam James
2020-09-03 14:29 Thomas Deutschmann
2020-09-02  0:45 Sam James
2020-09-01 20:46 Sam James
2020-07-24 12:03 Joonas Niilola
2020-07-24 12:03 Joonas Niilola
2020-07-01  6:39 Joonas Niilola
2020-06-14 14:05 Joonas Niilola
2020-06-14 14:05 Joonas Niilola
2020-05-13 21:07 Mart Raudsepp
2020-05-12 13:58 Joonas Niilola
2020-05-12 13:58 Joonas Niilola
2020-05-12 13:58 Joonas Niilola
2020-05-03  8:00 Joonas Niilola
2020-05-03  8:00 Joonas Niilola
2020-05-03  8:00 Joonas Niilola
2020-05-01 15:09 Joonas Niilola
2020-05-01 15:09 Joonas Niilola
2020-05-01 15:09 Joonas Niilola
2020-04-16  6:51 Joonas Niilola
2020-04-16  6:51 Joonas Niilola
2020-04-16  6:51 Joonas Niilola
2020-04-05  7:18 Joonas Niilola
2020-04-05  7:18 Joonas Niilola
2020-01-23  3:09 Matt Turner
2020-01-17 10:30 Agostino Sarubbo
2020-01-17  9:29 Agostino Sarubbo
2020-01-06 12:23 Andreas Sturmlechner
2019-12-20 21:59 Matt Turner
2019-11-23  3:37 Matt Turner
2019-11-12 14:46 Joonas Niilola
2019-04-27 20:28 David Seifert
2018-03-28 23:24 Patrick McLean
2017-09-03 12:39 Aaron Bauman
2017-09-02 18:02 Aaron Bauman
2017-09-02 18:02 Aaron Bauman
2017-05-27  7:05 Markus Meier
2017-03-30 22:02 Göktürk Yüksek
2016-10-19  7:45 Göktürk Yüksek
2016-07-03 11:57 Patrice Clement
2016-06-03  7:28 Patrice Clement
2016-06-02 17:50 Patrice Clement
2016-05-31  8:00 Patrice Clement
2016-05-25  9:03 Patrice Clement
2016-05-04  8:12 Patrice Clement
2016-05-03 12:23 Patrice Clement
2016-04-02 16:49 Tim Harder
2016-01-19 10:24 Tony Vroon
2015-09-15 13:08 Tony Vroon

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=1593585511.caac8e6b80b698727c815c61f2c4c90b213417fa.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox