Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/socket_wrapper/
Date: Sat, 28 Jan 2023 23:21:15
Message-Id: 1674948053.23369936de993a813292ce0a06b9571f84da2de0.asturm@gentoo
1 commit: 23369936de993a813292ce0a06b9571f84da2de0
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 28 19:19:20 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 28 23:20:53 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23369936
7
8 net-libs/socket_wrapper: add 1.4.0
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 net-libs/socket_wrapper/Manifest | 1 +
13 .../socket_wrapper/socket_wrapper-1.4.0.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 bb5c6e5a9eca..66d1f6662ab1 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.4.tar.gz 81997 BLAKE2B 5d290ef59c16fbdde362749196cc91c3f050518f82cb14fbafa3e00d5fb51a6b085b94b08413ca601731440d8eadb5dfbe8d011567fd67b1240b0cc380504813 SHA512 6e6a940e26d0f4dc4f1c0f84643d5a124bb2cccd1713481e9c42ea7986884928d736b1ef8da8a2aef3d3803938b6e1ebd30bdbe9784fda95a9a59cdbd1d19f61
22 +DIST socket_wrapper-1.4.0.tar.gz 87353 BLAKE2B 67c2a4bae2e1031399137e404e95e6e6cfa1143ff659a7d34533e908f9169b8a79d1dfffaa51a6280a8cfc9e03dc07585ff41b0e087527b1ad0bb5adb282156e SHA512 944e5ff2b6919e414f9045fe294b9b4813272fe7c00f5ac144c999b99572be6b3ed2eb975ec1d07bd853cffea6dffe339280e4961520d34667f808f76b47db57
23
24 diff --git a/net-libs/socket_wrapper/socket_wrapper-1.4.0.ebuild b/net-libs/socket_wrapper/socket_wrapper-1.4.0.ebuild
25 new file mode 100644
26 index 000000000000..b719ee9e2057
27 --- /dev/null
28 +++ b/net-libs/socket_wrapper/socket_wrapper-1.4.0.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2023 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="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 ~loong ~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 +}