Skip to content

Commit

Permalink
dev-util/umockdev: Add a live ebuild
Browse files Browse the repository at this point in the history
To make upstream testing easier.

See martinpitt/umockdev#182

Signed-off-by: Matt Turner <mattst88@gentoo.org>
  • Loading branch information
mattst88 committed May 19, 2022
1 parent 9d15e4d commit 6e70941
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions dev-util/umockdev/umockdev-9999.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
PYTHON_COMPAT=( python3_{8..10} )

inherit meson-multilib python-any-r1 vala

if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="https://github.com/martinpitt/${PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/martinpitt/umockdev/releases/download/${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi

DESCRIPTION="Mock hardware devices for creating unit tests"
HOMEPAGE="https://github.com/martinpitt/umockdev/"

LICENSE="LGPL-2.1+"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"

RDEPEND="
net-libs/libpcap[${MULTILIB_USEDEP}]
virtual/libudev:=[${MULTILIB_USEDEP}]
>=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}]
>=dev-libs/gobject-introspection-1.32:=
"
DEPEND="${RDEPEND}
test? (
${PYTHON_DEPS}
dev-libs/libgudev:=[${MULTILIB_USEDEP}]
)
"
BDEPEND="
$(vala_depend)
app-arch/xz-utils
virtual/pkgconfig
"

pkg_setup() {
use test && python-any-r1_pkg_setup
}

src_prepare() {
default
vala_setup
}

multilib_src_configure() {
export VALAC="$(type -P valac-$(vala_best_api_version))"
meson_src_configure
}

multilib_src_test() {
meson_src_test --no-suite fails-valgrind
}

0 comments on commit 6e70941

Please sign in to comment.