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: Thu, 23 Dec 2021 16:48:47
Message-Id: 1640278092.7840005460805a9067dc3011be854e234c4d5c38.epsilon-0@gentoo
1 commit: 7840005460805a9067dc3011be854e234c4d5c38
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Thu Dec 23 16:48:12 2021 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Thu Dec 23 16:48:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=78400054
7
8 www-apps/uwebsockets: version bump to 20.8.0
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 www-apps/uwebsockets/Manifest | 1 +
14 www-apps/uwebsockets/uwebsockets-20.8.0.ebuild | 33 ++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/www-apps/uwebsockets/Manifest b/www-apps/uwebsockets/Manifest
18 index 1317e09c4..4b5aa5c32 100644
19 --- a/www-apps/uwebsockets/Manifest
20 +++ b/www-apps/uwebsockets/Manifest
21 @@ -1 +1,2 @@
22 DIST uwebsockets-19.9.0.tar.gz 299309 BLAKE2B a82a9e555ba849191f7070fe73f36e8d0a57fb4f48b02306294f67897fd3d59d29b4ef41288a44e0662a184a9caf01748f7e82505387626f595517805369959c SHA512 a79c454ac37b279220c8b158434fd794512eecde882c0fe3dc7047275b2fdf31e50b319a4d01b983c2c4ebcf3e1fd383d2d9ab977185326e6ae5b47685c0a048
23 +DIST uwebsockets-20.8.0.tar.gz 748540 BLAKE2B 1eacf309bb27bcafb3eb678c448a93f885bdb704d224e96011893408bece9b99066ea7a735a029765086f360bb5960063007a655324c22a1485dd132eb127633 SHA512 2ebb75ce2cd0194b9846a16ea69eb7d9aa25e3673cca0afbb61946989380256ebc27cf24c98bee0bf1264c7b60d84ebb01511454973e5ce165fafc7f75b52902
24
25 diff --git a/www-apps/uwebsockets/uwebsockets-20.8.0.ebuild b/www-apps/uwebsockets/uwebsockets-20.8.0.ebuild
26 new file mode 100644
27 index 000000000..ca1133942
28 --- /dev/null
29 +++ b/www-apps/uwebsockets/uwebsockets-20.8.0.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 2019-2021 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.6.0"
51 +
52 +src_prepare() {
53 + default
54 + mv src uWebSockets
55 +}
56 +
57 +src_compile() {
58 + return 0
59 +}
60 +
61 +src_install() {
62 + doheader -r uWebSockets
63 +}