Index: head/sysutils/yadm/Makefile =================================================================== --- head/sysutils/yadm/Makefile (revision 545544) +++ head/sysutils/yadm/Makefile (revision 545545) @@ -1,35 +1,36 @@ # $FreeBSD$ PORTNAME= yadm PORTVERSION= 2.5.0 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= vendion@gmail.com COMMENT= Yet Another Dotfiles Manager LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= git:devel/git \ - bash:shells/bash +RUN_DEPENDS= bash:shells/bash \ + git:devel/git USE_GITHUB= yes GH_ACCOUNT= TheLocehiliosan PLIST_FILES= bin/yadm \ man/man1/yadm.1.gz OPTIONS_DEFINE= J2CTL -J2CTL_DESC= Enable Jinja2 powered template files +J2CTL_DESC= Enable Jinja2 powered template files J2CTL_RUN_DEPENDS= j2:textproc/py-j2cli@${PY_FLAVOR} -J2CTL_USES= python +J2CTL_USES= python .include do-install: @${MKDIR} ${STAGEDIR} ${INSTALL_MAN} ${WRKSRC}/yadm.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/ ${INSTALL_SCRIPT} ${WRKSRC}/yadm ${STAGEDIR}${PREFIX}/bin/ .include Index: head/sysutils/yadm/files/patch-yadm =================================================================== --- head/sysutils/yadm/files/patch-yadm (nonexistent) +++ head/sysutils/yadm/files/patch-yadm (revision 545545) @@ -0,0 +1,12 @@ +--- yadm.orig 2020-08-20 01:05:25 UTC ++++ yadm +@@ -1944,7 +1944,8 @@ function get_mode { + mode=$(stat -c '%a' "$filename" 2>/dev/null) + if [ -z "$mode" ] ; then + # BSD-style +- mode=$(stat -f '%A' "$filename" 2>/dev/null) ++ # Using the `cut` command to match the output of GNU stat output ++ mode=$(stat -f '%p' "$filename" | cut -c4-6 2>/dev/null) + fi + + # only accept results if they are octal Property changes on: head/sysutils/yadm/files/patch-yadm ___________________________________________________________________ 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