Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: www-apps/uwebsockets/
Date: Sat, 14 May 2022 16:29:42
Message-Id: 1652545772.36faed2487f1d610f3923a58197431b1eed6ca2f.epsilon-0@gentoo
1 commit: 36faed2487f1d610f3923a58197431b1eed6ca2f
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Sat May 14 16:29:10 2022 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Sat May 14 16:29:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=36faed24
7
8 www-apps/uwebsockets: add 20.14.0
9
10 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
11
12 www-apps/uwebsockets/Manifest | 1 +
13 www-apps/uwebsockets/uwebsockets-20.14.0.ebuild | 33 +++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/www-apps/uwebsockets/Manifest b/www-apps/uwebsockets/Manifest
17 index 0a9c55627..0a75f441c 100644
18 --- a/www-apps/uwebsockets/Manifest
19 +++ b/www-apps/uwebsockets/Manifest
20 @@ -1 +1,2 @@
21 DIST uwebsockets-20.11.0.tar.gz 750520 BLAKE2B 4c139bffcb60a5a2cf7245208e031905875261cfed968a03875358e31d5fb4cf02ff312fc7e5f7e9329ffcb9f9ee9c1204fcf9998fbb9df56163dc06820e2932 SHA512 cd4efb386b4d140c6ccbfa92e8be1d3c9b896474a3074b95ad35bedde9face80a1e4bae594359555010d76c2ccf8243b29e97079de8b0f18cda510274135b8e0
22 +DIST uwebsockets-20.14.0.tar.gz 751354 BLAKE2B 398aedfd8f253de9c66cfe889c7681f492124a9db1ca9554f560b170ac8ec4b4362f2dd7f351338e3c78819e49023f725d881052db609c631da6dbcb24e5e1a8 SHA512 f467942da6a151011a2e831081278eb2a816b215f5335c1e029d7130a56ab04595a3563c15821093d8f3a7b56e085427482cb026653fb24004817f2c08cb3376
23
24 diff --git a/www-apps/uwebsockets/uwebsockets-20.14.0.ebuild b/www-apps/uwebsockets/uwebsockets-20.14.0.ebuild
25 new file mode 100644
26 index 000000000..d8967872c
27 --- /dev/null
28 +++ b/www-apps/uwebsockets/uwebsockets-20.14.0.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 2019-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DESCRIPTION="ultra fast, simple, secure & standards compliant web I/O"
36 +HOMEPAGE="https://github.com/uNetworking/uWebSockets"
37 +
38 +if [[ ${PV} == 9999 ]]; then
39 + inherit git-r3
40 + EGIT_REPO_URI="https://github.com/uNetworking/uWebSockets.git"
41 +else
42 + SRC_URI="https://github.com/uNetworking/uWebSockets/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 + KEYWORDS="~amd64 ~arm64 ~x86"
44 + S="${WORKDIR}/uWebSockets-${PV}"
45 +fi
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +RDEPEND=">=net-libs/usockets-0.6.0"
50 +
51 +src_prepare() {
52 + default
53 + mv src uWebSockets
54 +}
55 +
56 +src_compile() {
57 + return 0
58 +}
59 +
60 +src_install() {
61 + doheader -r uWebSockets
62 +}