From: "Aisha Tammy" <gentoo@aisha.cc>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-libs/usockets/
Date: Mon, 23 Nov 2020 14:51:36 +0000 (UTC) [thread overview]
Message-ID: <1606143054.acc02dcb79219f1bcad38eef26e468636798c7f8.epsilon-0@gentoo> (raw)
commit: acc02dcb79219f1bcad38eef26e468636798c7f8
Author: epsilonKNOT <gentoo <AT> aisha <DOT> cc>
AuthorDate: Mon Nov 23 14:50:54 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Mon Nov 23 14:50:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=acc02dcb
net-libs/usockets: fix cstdlib include error
also fix direct CC and CXX calls
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
net-libs/usockets/Manifest | 2 +-
.../{usockets-0.6.0-r1.ebuild => usockets-0.6.0_p1.ebuild} | 8 +++++---
net-libs/usockets/usockets-9999.ebuild | 8 +++++---
3 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/net-libs/usockets/Manifest b/net-libs/usockets/Manifest
index 3e7ce58a..f999ba4b 100644
--- a/net-libs/usockets/Manifest
+++ b/net-libs/usockets/Manifest
@@ -1 +1 @@
-DIST usockets-0.6.0.tar.gz 57590 BLAKE2B 8438a3d2a1861d995410fcda8b888d561de2fb51af319e58c529f1113cb8e4d0f821b1649618c28d43dbc64f28b6b4e90f7e0bd51fcabc5afdc8318ca8f21448 SHA512 0803a117334d4dc38b4936e6f1d34984a9fba30da1c360c3ff3d7ce14275a4ac9c4a4e7b407791fc3661c50be6b6a8335d26f808b21d0ade5f85ab721b14a500
+DIST usockets-0.6.0_p1.tar.gz 57634 BLAKE2B 67faa23add9c88dd49eed4849766e3eeeeaedd3993741ced9491d01b6d0caf56b032a9689827018714dbc87b500f3755db4edacb035573f7a563cd7147b1e187 SHA512 0dbedc5e90af9a92e6597e801116b57fd99dcd5a8488e3b5ddce83bbcd1852d30f2c8954dc1991a807d32f00bdb62e654498687fec344d295f299ccf3920a1ca
diff --git a/net-libs/usockets/usockets-0.6.0-r1.ebuild b/net-libs/usockets/usockets-0.6.0_p1.ebuild
similarity index 83%
rename from net-libs/usockets/usockets-0.6.0-r1.ebuild
rename to net-libs/usockets/usockets-0.6.0_p1.ebuild
index 1d42acf6..1ebe7f13 100644
--- a/net-libs/usockets/usockets-0.6.0-r1.ebuild
+++ b/net-libs/usockets/usockets-0.6.0_p1.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit multilib
+inherit toolchain-funcs
DESCRIPTION="tiny eventing, networking & crypto for async applications"
HOMEPAGE="https://github.com/uNetworking/uSockets"
@@ -12,9 +12,10 @@ if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/uNetworking/uSockets.git"
else
- SRC_URI="https://github.com/uNetworking/uSockets/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ COMMIT=7683672d87067cd75b854f4e36b9820f4809a4be
+ SRC_URI="https://github.com/uNetworking/uSockets/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
- S="${WORKDIR}/uSockets-${PV}"
+ S="${WORKDIR}/uSockets-${COMMIT}"
fi
LICENSE="Apache-2.0"
@@ -33,6 +34,7 @@ PATCHES=(
)
src_compile() {
+ tc-export CC CXX
# the Makefile uses environment variables
emake VERSION=${PV} \
LIB="$(get_libdir)" \
diff --git a/net-libs/usockets/usockets-9999.ebuild b/net-libs/usockets/usockets-9999.ebuild
index 1d42acf6..1ebe7f13 100644
--- a/net-libs/usockets/usockets-9999.ebuild
+++ b/net-libs/usockets/usockets-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit multilib
+inherit toolchain-funcs
DESCRIPTION="tiny eventing, networking & crypto for async applications"
HOMEPAGE="https://github.com/uNetworking/uSockets"
@@ -12,9 +12,10 @@ if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/uNetworking/uSockets.git"
else
- SRC_URI="https://github.com/uNetworking/uSockets/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ COMMIT=7683672d87067cd75b854f4e36b9820f4809a4be
+ SRC_URI="https://github.com/uNetworking/uSockets/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
- S="${WORKDIR}/uSockets-${PV}"
+ S="${WORKDIR}/uSockets-${COMMIT}"
fi
LICENSE="Apache-2.0"
@@ -33,6 +34,7 @@ PATCHES=(
)
src_compile() {
+ tc-export CC CXX
# the Makefile uses environment variables
emake VERSION=${PV} \
LIB="$(get_libdir)" \
next reply other threads:[~2020-11-23 14:51 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-23 14:51 Aisha Tammy [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-05-16 16:41 [gentoo-commits] repo/proj/guru:dev commit in: net-libs/usockets/ Aisha Tammy
2024-05-02 15:42 [gentoo-commits] repo/proj/guru:master " David Roman
2024-05-01 1:46 ` [gentoo-commits] repo/proj/guru:dev " David Roman
2024-04-30 23:55 Aisha Tammy
2021-09-21 9:52 Arthur Zamarin
2021-06-09 3:22 Theo Anderson
2021-05-03 9:52 Andrew Ammerlaan
2021-04-23 10:12 Aisha Tammy
2021-04-10 22:13 Aisha Tammy
2021-04-10 22:13 Aisha Tammy
2021-01-29 11:04 Aisha Tammy
2021-01-29 11:04 Aisha Tammy
2021-01-29 2:20 Aisha Tammy
2021-01-29 2:20 Aisha Tammy
2020-11-25 23:54 Aisha Tammy
2020-09-08 20:33 Aisha Tammy
2020-07-29 12:44 Aisha Tammy
2020-06-26 10:32 Aisha Tammy
2020-06-24 2:19 Aisha Tammy
2020-06-24 2:19 Aisha Tammy
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=1606143054.acc02dcb79219f1bcad38eef26e468636798c7f8.epsilon-0@gentoo \
--to=gentoo@aisha.cc \
--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