Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Sep 2020 14:12:59 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r547358 - in head/sysutils: . ansible-kld
Message-ID:  <202009021412.082ECx4K056704@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Wed Sep  2 14:12:59 2020
New Revision: 547358
URL: https://svnweb.freebsd.org/changeset/ports/547358

Log:
  sysutils/ansible-kld: create port
  
  Ansible module to load kernel modules and manipulate
  /boot/loader.conf on a FreeBSD system.
  
  WWW: https://github.com/dlundgren/ansible-freebsd-modules/
  
  PR:		240789
  Submitted by:	Lewis Cook <vulcan@wired.sh>

Added:
  head/sysutils/ansible-kld/
  head/sysutils/ansible-kld/Makefile   (contents, props changed)
  head/sysutils/ansible-kld/distinfo   (contents, props changed)
  head/sysutils/ansible-kld/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile   (contents, props changed)

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Wed Sep  2 13:13:18 2020	(r547357)
+++ head/sysutils/Makefile	Wed Sep  2 14:12:59 2020	(r547358)
@@ -40,6 +40,7 @@
     SUBDIR += android-file-transfer-qt5
     SUBDIR += angrysearch
     SUBDIR += ansible
+    SUBDIR += ansible-kld
     SUBDIR += ansible-sysrc
     SUBDIR += ansible27
     SUBDIR += ansible28

Added: head/sysutils/ansible-kld/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ansible-kld/Makefile	Wed Sep  2 14:12:59 2020	(r547358)
@@ -0,0 +1,36 @@
+# $FreeBSD$
+
+PORTNAME=	ansible-kld
+DISTVERSION=	0.1
+CATEGORIES=	sysutils
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	vulcan@wired.sh
+COMMENT=	Ansible module to load kernel modules or update /boot/loader.conf
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}ansible>0:sysutils/ansible@${PY_FLAVOR}
+
+USES=		python shebangfix
+SHEBANG_FILES=	library/kld
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	dlundgren
+GH_PROJECT=	ansible-freebsd-modules
+GH_TAGNAME=	cf37fc1e16fc03852abc8933e7959b22b51a5c90
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+
+ANSIBLE_MOD=	share/${PYTHON_PKGNAMEPREFIX}ansible/plugins/modules
+
+PLIST_FILES=	${ANSIBLE_MOD}/kld
+
+do-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/${ANSIBLE_MOD}
+	${INSTALL_SCRIPT} ${WRKSRC}/library/kld \
+		${STAGEDIR}${PREFIX}/${ANSIBLE_MOD}/kld
+
+.include <bsd.port.mk>

Added: head/sysutils/ansible-kld/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ansible-kld/distinfo	Wed Sep  2 14:12:59 2020	(r547358)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1569326545
+SHA256 (dlundgren-ansible-freebsd-modules-0.1-cf37fc1e16fc03852abc8933e7959b22b51a5c90_GH0.tar.gz) = 168013ef470d93eeb2a103c1613aaadceb84e6202cb9bff91166a5047a77898f
+SIZE (dlundgren-ansible-freebsd-modules-0.1-cf37fc1e16fc03852abc8933e7959b22b51a5c90_GH0.tar.gz) = 9310

Added: head/sysutils/ansible-kld/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ansible-kld/pkg-descr	Wed Sep  2 14:12:59 2020	(r547358)
@@ -0,0 +1,4 @@
+Ansible module to load kernel modules and manipulate
+/boot/loader.conf on a FreeBSD system.
+
+WWW: https://github.com/dlundgren/ansible-freebsd-modules/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009021412.082ECx4K056704>