Commit c8d7eb59 authored by Rene Ladan's avatar Rene Ladan
Browse files

devel/kyua: Remove expired port

kyua from base must be used for FreeBSD 14.x and newer
parent 7adda504
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5285,4 +5285,5 @@ graphics/drm-510-kmod||2026-05-05|Removed, is only for FreeBSD 13
graphics/nvidia-drm-510-kmod||2026-05-05|Removed, is only for FreeBSD 13
graphics/nvidia-drm-510-kmod-580||2026-05-05|Removed, is only for FreeBSD 13
graphics/nvidia-drm-510-kmod-devel||2026-05-05|Removed, is only for FreeBSD 13
mail/archiveopteryx-devel|mail/archiveopteryx|2026-05-06|Remove obsoleted port. Use mail/archiveopteryx instead.
mail/archiveopteryx-devel|mail/archiveopteryx|2026-05-06|Remove obsoleted port. Use mail/archiveopteryx instead
devel/kyua||2026-05-07|Removed, kyua from base must be used for FreeBSD 14.x and newer
+0 −1
Original line number Diff line number Diff line
@@ -1205,7 +1205,6 @@
    SUBDIR += kronosnet
    SUBDIR += ktextaddons
    SUBDIR += kunifiedpush
    SUBDIR += kyua
    SUBDIR += lab
    SUBDIR += lace
    SUBDIR += lace14

devel/kyua/Makefile

deleted100644 → 0
+0 −55
Original line number Diff line number Diff line
PORTNAME=	kyua
DISTVERSION=	0.14.1
PORTEPOCH=	3
CATEGORIES=	devel
MASTER_SITES=	https://github.com/freebsd/${PORTNAME}/releases/download/${DISTNAME}/

MAINTAINER=	bofh@FreeBSD.org
COMMENT=	Testing framework for infrastructure software
WWW=		https://github.com/freebsd/kyua/

LICENSE=	BSD3CLAUSE

LIB_DEPENDS=	liblutok.so:devel/lutok

USES=		autoreconf libtool lua pkgconfig sqlite
USE_CXXSTD=	gnu++14

GNU_CONFIGURE=	yes
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
CONFIGURE_ARGS=	--docdir=${DOCSDIR} \
		--without-doxygen
MAKE_ARGS=	examplesdir=${EXAMPLESDIR} \
		pkgdatadir=${DATADIR}

CONFLICTS=	kyua-atf-compat kyua-cli kyua-testers

SUB_FILES=	kyua.conf
_TESTS_USER=	tests
SUB_LIST=	TESTS_USER=${_TESTS_USER}
USERS=		${_TESTS_USER}
GROUPS=		tests

OPTIONS_DEFINE=		DOCS EXAMPLES TEST
OPTIONS_DEFAULT=	TEST
OPTIONS_SUB=		yes

DOCS_MAKE_ARGS_OFF=	doc_DATA=
EXAMPLES_MAKE_ARGS_OFF=	dist_examples_DATA=
TEST_BUILD_DEPENDS=	atf>=0.21:devel/atf
TEST_RUN_DEPENDS=	atf>=0.21:devel/atf
TEST_CONFIGURE_ENABLE=	atf

# TODO: Get back to IGNORE after the alignment with the dependent ports
#.if ${OPSYS} == FreeBSD && ${OSREL:R} >= 14
#IGNORE=		kyua from base must be used for FreeBSD 14.x and newer
#.endif

post-install:
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/kyua
	${INSTALL_DATA} ${WRKDIR}/kyua.conf \
		${STAGEDIR}${PREFIX}/etc/kyua/kyua.conf.sample
	${INSTALL_DATA} ${WRKSRC}/examples/Kyuafile.top \
		${STAGEDIR}${PREFIX}/tests/Kyuafile

.include <bsd.port.mk>

devel/kyua/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1743284768
SHA256 (kyua-0.14.1.tar.gz) = 3caf30a7e316f4f21c32e1c419ec80371fe113e3eed10ba1db9e6efc7ee15ecb
SIZE (kyua-0.14.1.tar.gz) = 996797

devel/kyua/files/kyua.conf.in

deleted100644 → 0
+0 −12
Original line number Diff line number Diff line
-- System-wide configuration file for kyua(1).  See kyua.conf(5) for details
-- on the syntax.
--

syntax(2)

-- User to drop privileges to when invoking kyua(1) as root and a test case
-- requests to be run with non-root permissions.
unprivileged_user = '%%TESTS_USER%%'

-- An example to set a configuration property specific to FreeBSD.
--test_suites.FreeBSD.fstype = 'ffs'
Loading