Index: head/ports-mgmt/Makefile =================================================================== --- head/ports-mgmt/Makefile (revision 495790) +++ head/ports-mgmt/Makefile (revision 495791) @@ -1,76 +1,77 @@ # $FreeBSD$ # COMMENT = Ports for managing, installing, and developing FreeBSD ports and packages SUBDIR += bsdadminscripts SUBDIR += bsdadminscripts2 + SUBDIR += caronade SUBDIR += chucky SUBDIR += create-rb-port SUBDIR += dialog4ports SUBDIR += dialog4ports-static SUBDIR += distilator SUBDIR += fastest_sites SUBDIR += freebsd-bugzilla-cli SUBDIR += genpatch SUBDIR += genplist SUBDIR += jailaudit SUBDIR += lsknobs SUBDIR += managepkg SUBDIR += mkreadmes SUBDIR += octopkg SUBDIR += p5-FreeBSD-Portindex SUBDIR += p5-FreeBSD-Ports SUBDIR += p5-FreeBSD-Ports-INDEXhash SUBDIR += packagekit SUBDIR += pchecker SUBDIR += pkg SUBDIR += pkg-devel SUBDIR += pkg-plist SUBDIR += pkg-provides SUBDIR += pkg-rmleaf SUBDIR += pkg_cleanup SUBDIR += pkg_cutleaves SUBDIR += pkg_jail SUBDIR += pkg_replace SUBDIR += pkg_rmleaves SUBDIR += pkg_search SUBDIR += pkg_tree SUBDIR += pkgcompare SUBDIR += pkgs_which SUBDIR += port-authoring-tools SUBDIR += port-index-uniquifier SUBDIR += port-maintenance-tools SUBDIR += portal SUBDIR += portconf SUBDIR += portdowngrade SUBDIR += portell SUBDIR += portest SUBDIR += portfind SUBDIR += portfmt SUBDIR += portgraph SUBDIR += portless SUBDIR += portlint SUBDIR += portmaster SUBDIR += portrac SUBDIR += ports-tools SUBDIR += portscout SUBDIR += portsearch SUBDIR += portshaker SUBDIR += portshaker-config SUBDIR += portsreinstall SUBDIR += porttools SUBDIR += porttree SUBDIR += portupdate-scan SUBDIR += portupgrade SUBDIR += portupgrade-devel SUBDIR += poudriere SUBDIR += poudriere-devel SUBDIR += psearch SUBDIR += py-pytoport SUBDIR += py-skog SUBDIR += symports SUBDIR += synth SUBDIR += wanted-ports .include Index: head/ports-mgmt/caronade/Makefile =================================================================== --- head/ports-mgmt/caronade/Makefile (nonexistent) +++ head/ports-mgmt/caronade/Makefile (revision 495791) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= caronade +DISTVERSIONPREFIX=v +DISTVERSION= 0.1.0 +CATEGORIES= ports-mgmt +MASTER_SITES= https://code.bluelife.at/decke/caronade/archive/ \ + LOCAL/decke/caronade/ +DISTFILES= ${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}${EXTRACT_SUFX} +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= decke@FreeBSD.org +COMMENT= Small and light tool to help with FreeBSD Ports CI + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go +USE_RC_SUBR= caronade + +USE_GITHUB= nodefault +GH_TUPLE= NYTimes:gziphandler:v1.1.1:gziphandler/vendor/github.com/NYTimes/gziphandler \ + go-yaml:yaml:v2.2.2:yaml/vendor/gopkg.in/yaml.v2 + +GO_PKGNAME= code.bluelife.at/decke/caronade +MAKE_ENV+= GOFLAGS=-mod=vendor + +post-install: + ${MKDIR} ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/caronade.yaml ${STAGEDIR}${ETCDIR}/caronade.yaml.sample + + ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME} + (cd ${WRKSRC} && ${COPYTREE_SHARE} "static templates work" ${STAGEDIR}${PREFIX}/${PORTNAME}) + + ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}/builds + +.include Property changes on: head/ports-mgmt/caronade/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/ports-mgmt/caronade/distinfo =================================================================== --- head/ports-mgmt/caronade/distinfo (nonexistent) +++ head/ports-mgmt/caronade/distinfo (revision 495791) @@ -0,0 +1,7 @@ +TIMESTAMP = 1552658543 +SHA256 (caronade/v0.1.0.tar.gz) = f38ef48bb783588610a3a65191cff9f230087a074668f1b7846ee089aab3335f +SIZE (caronade/v0.1.0.tar.gz) = 59372 +SHA256 (caronade/NYTimes-gziphandler-v1.1.1_GH0.tar.gz) = c236c216a16e4286338e66e0947938944992f918fe827c31f8745c0be98818d2 +SIZE (caronade/NYTimes-gziphandler-v1.1.1_GH0.tar.gz) = 52107 +SHA256 (caronade/go-yaml-yaml-v2.2.2_GH0.tar.gz) = 42c3e4ef9eca2860d22b3c6c5582c6c13fb4b417e5ebc1acc56ee5e2c4ddcaff +SIZE (caronade/go-yaml-yaml-v2.2.2_GH0.tar.gz) = 70656 Property changes on: head/ports-mgmt/caronade/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/ports-mgmt/caronade/files/caronade.in =================================================================== --- head/ports-mgmt/caronade/files/caronade.in (nonexistent) +++ head/ports-mgmt/caronade/files/caronade.in (revision 495791) @@ -0,0 +1,20 @@ +#!/bin/sh +# +# PROVIDE: caronade +# REQUIRE: networking + +. /etc/rc.subr + +name="caronade" +rcvar="caronade_enable" + +pidfile="/var/run/${name}.pid" +command="/usr/sbin/daemon" +command_args="-P ${pidfile} -r -o /var/log/caronade.log %%PREFIX%%/bin/caronade -config %%PREFIX%%/etc/caronade/caronade.yaml" + +load_rc_config $name + +: ${caronade_enable:="NO"} +: ${caronade_chdir:="%%PREFIX%%/caronade"} + +run_rc_command "$1" Property changes on: head/ports-mgmt/caronade/files/caronade.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/ports-mgmt/caronade/pkg-descr =================================================================== --- head/ports-mgmt/caronade/pkg-descr (nonexistent) +++ head/ports-mgmt/caronade/pkg-descr (revision 495791) @@ -0,0 +1,4 @@ +Caronade will automatically create build jobs using poudriere and portlint +whenever you push changes to your Git based ports repository. + +WWW: https://code.bluelife.at/decke/caronade Property changes on: head/ports-mgmt/caronade/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/ports-mgmt/caronade/pkg-plist =================================================================== --- head/ports-mgmt/caronade/pkg-plist (nonexistent) +++ head/ports-mgmt/caronade/pkg-plist (revision 495791) @@ -0,0 +1,9 @@ +bin/caronade +caronade/static/caronade.min.css +caronade/static/favicon-32.png +caronade/static/favicon-96.png +caronade/templates/index.html +caronade/work/portlint.mk +caronade/work/poudriere.mk +%%ETCDIR%%/caronade.yaml.sample +@dir caronade/builds Property changes on: head/ports-mgmt/caronade/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property