Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/socket_wrapper/
Date: Wed, 03 Aug 2022 23:33:22
Message-Id: 1659569170.ac3dc0e0e3695af6d5b31e83478717669ceff559.sam@gentoo
1 commit: ac3dc0e0e3695af6d5b31e83478717669ceff559
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 3 23:12:37 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 3 23:26:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3dc0e0
7
8 net-libs/socket_wrapper: add 1.3.4
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-libs/socket_wrapper/Manifest | 1 +
13 .../socket_wrapper/socket_wrapper-1.3.4.ebuild | 25 ++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/net-libs/socket_wrapper/Manifest b/net-libs/socket_wrapper/Manifest
17 index db0b6d157fdc..05ac2accba78 100644
18 --- a/net-libs/socket_wrapper/Manifest
19 +++ b/net-libs/socket_wrapper/Manifest
20 @@ -1 +1,2 @@
21 DIST socket_wrapper-1.3.2.tar.gz 86255 BLAKE2B 33f526a8871cfb1a889a84660ea8e82b6e591646924e16d2c452bb001e0eb4c1457b8151208bbec55c13c40fd124c160fc85d0df227519f62a2683e4ea1acb85 SHA512 f4d3a7026f1777a4c3b5481a0f6e6057b6372e9b64f44523ec1ebf0a34159d7154493dce6ee3c95fbea15607c6ada1382f2475d5d553133a061c80719c135b9d
22 +DIST socket_wrapper-1.3.4.tar.gz 81997 BLAKE2B 5d290ef59c16fbdde362749196cc91c3f050518f82cb14fbafa3e00d5fb51a6b085b94b08413ca601731440d8eadb5dfbe8d011567fd67b1240b0cc380504813 SHA512 6e6a940e26d0f4dc4f1c0f84643d5a124bb2cccd1713481e9c42ea7986884928d736b1ef8da8a2aef3d3803938b6e1ebd30bdbe9784fda95a9a59cdbd1d19f61
23
24 diff --git a/net-libs/socket_wrapper/socket_wrapper-1.3.4.ebuild b/net-libs/socket_wrapper/socket_wrapper-1.3.4.ebuild
25 new file mode 100644
26 index 000000000000..52c36e4a8cc9
27 --- /dev/null
28 +++ b/net-libs/socket_wrapper/socket_wrapper-1.3.4.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit cmake-multilib
36 +
37 +DESCRIPTION="A library passing all socket communications through unix sockets"
38 +HOMEPAGE="https://cwrap.org/socket_wrapper.html"
39 +SRC_URI="https://ftp.samba.org/pub/cwrap/${P}.tar.gz"
40 +
41 +LICENSE="BSD"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
44 +IUSE="test"
45 +RESTRICT="!test? ( test )"
46 +
47 +BDEPEND="test? ( >=dev-util/cmocka-1.1.0 )"
48 +
49 +src_configure() {
50 + local mycmakeargs=(
51 + -DUNIT_TESTING=$(usex test ON OFF)
52 + )
53 + cmake-multilib_src_configure
54 +}