guru/dev-nim/sync/sync-1.5.0.ebuild
Anna (cybertailor) Vyalkova ddcebd802b
dev-nim/sync: drop custom src_test
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2022-07-02 09:17:19 +05:00

31 lines
600 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit nimble
DESCRIPTION="Useful synchronization primitives"
HOMEPAGE="https://github.com/planetis-m/sync https://nimble.directory/pkg/sync"
SRC_URI="https://github.com/planetis-m/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="${PV}"
KEYWORDS="~amd64"
set_package_url "https://github.com/planetis-m/sync"
src_prepare() {
default
# remove failing tests
rm tests/tspsc1.nim || die
}
src_configure() {
mynimargs=(
--threads:on
)
nimble_src_configure
}