Skip to content

Commit 07e94fa

Browse files
committed
sys-power/qrtr: bump to latest upstream version, switch to meson
Signed-off-by: Stephen L Arnold <[email protected]>
1 parent 58f1e6c commit 07e94fa

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

sys-power/qrtr/Manifest

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
DIST qrtr-1.0.gh.tar.gz 23236 BLAKE2B c09300f298376792f94de3d554dbdbb267d9de480e7b2f19977c44f66bba28212f0e7f77802b8c06daf005b501ebc3ee02a4e2935c056bcd16ad9eef3a7a5a83 SHA512 67d1da9821dc6589504d9d04ad8efbb589f81db70e1fbcdbf5f8ae809428967f09c070c62233a296f39909f4313db8d2215507d3612ff3d8f2d87c4513abe324
2+
DIST qrtr-1.1.gh.tar.gz 26548 BLAKE2B 3b4d40e08aca74c836790a1d591bc077eeba1c02e3654f9f927b3a8f12d93add6491a78a975fd5e29a06cb7fb9993f8cf94cbeb993eb81fc2e3ecfebcbd7179f SHA512 68cc8731d500b2e7f5702471a3c239f415bd97035678d972d40d28ceb58bcaa1ee271816fd2002776a2d370611fc9e5e54a79d1a16ce2bce258b9411d9aec824

sys-power/qrtr/qrtr-1.1.ebuild

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
inherit meson toolchain-funcs
7+
8+
DESCRIPTION="Userspace reference for net/qrtr in the Linux kernel."
9+
HOMEPAGE="https://github.com/andersson/qrtr"
10+
11+
if [[ ${PV} == *9999 ]]; then
12+
inherit git-r3
13+
EGIT_REPO_URI="https://github.com/andersson/qrtr.git"
14+
else
15+
SRC_URI="https://github.com/andersson/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
16+
KEYWORDS="~arm ~arm64"
17+
fi
18+
19+
SLOT="0"
20+
LICENSE="BSD"
21+
IUSE=""
22+
23+
DEPEND=""
24+
25+
src_install() {
26+
meson_src_install
27+
newinitd "${FILESDIR}/${PN}-ns".init "${PN}-ns"
28+
}

0 commit comments

Comments
 (0)