Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: www-apps/uwebsockets/
Date: Thu, 25 Jun 2020 07:30:02
Message-Id: 1592873628.066d7b853f1b1d77e0532bb38f5df724bd9b073e.andrewammerlaan@gentoo
1 commit: 066d7b853f1b1d77e0532bb38f5df724bd9b073e
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Tue Jun 23 00:52:49 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Tue Jun 23 00:53:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=066d7b85
7
8 www-apps/uwebsockets: version bump to 18.5.0
9
10 Package-Manager: Portage-2.3.101, Repoman-2.3.22
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 www-apps/uwebsockets/Manifest | 1 +
14 www-apps/uwebsockets/uwebsockets-18.5.0.ebuild | 37 ++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/www-apps/uwebsockets/Manifest b/www-apps/uwebsockets/Manifest
18 index 62cd730..41c8135 100644
19 --- a/www-apps/uwebsockets/Manifest
20 +++ b/www-apps/uwebsockets/Manifest
21 @@ -1 +1,2 @@
22 DIST uwebsockets-18.3.0.tar.gz 263300 BLAKE2B 7225df4c8ce3bc09a92505ee7559a0d69b0cab09da44e7f0ca5e03f6c29ae23474566a1f28ececa938403b34bae4d2a53254ecd1eb7aa4330a9dbd065d74e943 SHA512 e694de5f206e72aa1872f69fdcfa9551103b42cc480f0e34e83a8dccce35fc0ef4c6dcbbcc817871e8bb8f0439a345295eaaf17654dedf6e94c78852507485cc
23 +DIST uwebsockets-18.5.0.tar.gz 264309 BLAKE2B 01aa6d09e9549f4ad545f5a30ff3bb46af233ea5256c51bc94d6d02cc5b80ee62c25d68791119e6ab397caf47bacf946d74af0635b79f213d8805c3d5f520bd7 SHA512 8d93721178486fcdc7dae1feac8cc67db1bf20584d2ecc1f435af4f00aa36ef655cfced121461ce1c458f69c469146beba56b18565f1d4432e04f2dafc2653f4
24
25 diff --git a/www-apps/uwebsockets/uwebsockets-18.5.0.ebuild b/www-apps/uwebsockets/uwebsockets-18.5.0.ebuild
26 new file mode 100644
27 index 0000000..e4fefa5
28 --- /dev/null
29 +++ b/www-apps/uwebsockets/uwebsockets-18.5.0.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 2019-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="ultra fast, simple, secure & standards compliant web I/O"
37 +HOMEPAGE="https://github.com/uNetworking/uWebSockets"
38 +
39 +if [[ ${PV} == 9999 ]]; then
40 + inherit git-r3
41 + EGIT_REPO_URI="https://github.com/uNetworking/uWebSockets.git"
42 +else
43 + SRC_URI="https://github.com/uNetworking/uWebSockets/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 + KEYWORDS="~amd64 ~arm64 ~x86"
45 + S="${WORKDIR}/uWebSockets-${PV}"
46 +fi
47 +
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +RDEPEND=">=net-libs/usockets-0.4.0"
51 +
52 +PATCHES=(
53 + "${FILESDIR}/${PN}-src_Loop.h.patch"
54 +)
55 +
56 +src_prepare() {
57 + default
58 + mv src uWebSockets
59 +}
60 +
61 +src_compile() {
62 + return 0
63 +}
64 +
65 +src_install() {
66 + doheader -r uWebSockets
67 +}