Add dev-libs/posixsignalmanager

This commit is contained in:
Ben 2023-02-28 13:48:05 +01:00
parent 4024f762c6
commit 2f51a0b19b
Signed by: ben
GPG Key ID: 1353F41CF1CFF2D3
4 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST posixsignalmanager-0.3.tar.gz 146812 BLAKE2B 65288a8d50c5fc79cd2c057fa32ab75ebd6908a5e8d54830e4f17d05e19c604d4b93ecf670249eff7813968ec71c8d3ec08dcd28f58cf6e6a53b42b8a0b8c22d SHA512 2e0636b41f7328ebd8e977fcaba07847e66f86523461090bf52c586586ae7e177b1a326b2c75b59f50a479aa03bcec0bd1f5352b6419467d16df969bd18eb339

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>ben@rs485.network</email>
<name>Benedikt Ziemons</name>
</maintainer>
<upstream>
<remote-id type="github">textshell/posixsignalmanager</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,25 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Safe, synchronous and asynchronous handling of posix signals for Qt apps/libs"
HOMEPAGE="https://github.com/textshell/posixsignalmanager"
SRC_URI="https://github.com/textshell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Boost"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BUILD_TARGETS="all"
src_configure() {
local emesonargs=(
$(meson_use qt5)
$(meson_feature threads)
$(meson_use bindist official_branding)
)
meson_src_configure
}

View File

@ -0,0 +1,25 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Safe, synchronous and asynchronous handling of posix signals for Qt apps/libs"
HOMEPAGE="https://github.com/textshell/posixsignalmanager"
SRC_URI="https://github.com/textshell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Boost-1.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BUILD_TARGETS="all"
src_configure() {
local emesonargs=(
$(meson_use qt5)
$(meson_feature threads)
$(meson_use bindist official_branding)
)
meson_src_configure
}