Skip to content

Commit 860da07

Browse files
committed
dev-libs/aws-c-event-stream: Version Bump to 0.2.7
The bump fixes two errors in aws-c-event-stream: * awslabs/aws-c-event-stream#55 Release lock before invoking callbacks. (Deadlocks seen) * awslabs/aws-c-event-stream#60 Fix bug where client "forgets" it received CONNECT_ACK Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Sven Eden <[email protected]>
1 parent 6a7d0c8 commit 860da07

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

dev-libs/aws-c-event-stream/Manifest

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
DIST aws-c-event-stream-0.2.5.tar.gz 61949 BLAKE2B baebd87a916fb8440db56afa2b97bd02229d70e00b55c40a17a2f467ad683422a6c6747aa698adce5272a03ced3fe6957d8cc62040d8080d3ed95409d8182851 SHA512 1421d608d8a5cfa5ec5df3bd905aab9ce9abc913461569a99b895c8415e50305aca0be3595bd4f3ed74cb52cc0e342354d211531066fdde60e14dd60e5629239
2+
DIST aws-c-event-stream-0.2.7.tar.gz 63942 BLAKE2B 751199efa1889861b647ca2f59f4a323961aedb9184d8c1293ff8a32096bb6e22de43eb2afbe9eb433f43e07ef8be251c815cfd897eb81cf2041e5f7be230ead SHA512 3ecc9fd80cd37d87df34948a7d7ca344a7b5ff2298e5ecc568d945830f8f8cd88721e0d2c4d11dee06af87e14b9ff13c8f13b8abfee74826ae72c8a280109440
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Copyright 1999-2021 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=7
5+
6+
inherit cmake
7+
8+
DESCRIPTION="C99 implementation of the vnd.amazon.eventstream content-type"
9+
HOMEPAGE="https://github.com/awslabs/aws-c-event-stream"
10+
SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
11+
12+
LICENSE="Apache-2.0"
13+
SLOT="0"
14+
KEYWORDS="~amd64 ~x86"
15+
IUSE="static-libs test"
16+
17+
RESTRICT="!test? ( test )"
18+
19+
DEPEND="
20+
>=dev-libs/aws-c-common-0.5.2:=[static-libs=]
21+
>=dev-libs/aws-c-io-0.9.2:=[static-libs=]
22+
>=dev-libs/aws-checksums-0.1.10:=[static-libs=]
23+
"
24+
25+
PATCHES=(
26+
"${FILESDIR}"/0.1.3-add_missing_cmake_install_prefix.patch
27+
)
28+
29+
src_configure() {
30+
local mycmakeargs=(
31+
-DBUILD_SHARED_LIBS=$(usex !static-libs)
32+
-DBUILD_TESTING=$(usex test)
33+
)
34+
35+
if use test; then
36+
# (#760585) Due to network sandboxing of portage, internet connectivity
37+
# tests will always fail. If you need a USE flag, because you want/need
38+
# to perform these tests manually, please open a bug report for it.
39+
mycmakeargs+=(
40+
-DENABLE_NET_TESTS=OFF
41+
)
42+
fi
43+
44+
cmake_src_configure
45+
}

0 commit comments

Comments
 (0)