diff options
author | Stuart Cardall <developer@it-offshore.co.uk> | 2016-08-18 20:46:53 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-21 22:24:04 +0200 |
commit | 5c9f3ca3e307be53b45beeed2ce1626f38008625 (patch) | |
tree | 919836fe454e953f46685adf8228b0401280d4b6 /community/entr | |
parent | 6a00a953ba02bab6440a2c784e7db37c6eaeace1 (diff) | |
download | aports-5c9f3ca3e307be53b45beeed2ce1626f38008625.tar.bz2 aports-5c9f3ca3e307be53b45beeed2ce1626f38008625.tar.xz |
testing/[various]: move to community
albatross-themes
apk-post-messages
autossh
bitcoin
btrbk
entr
ffmpegthumbnailer
firejail
firetools
fwsnort
gnome-colors
imapsync
inetutils-syslogd
inotify-tools-inc
isync
junit
ktsuss
letsencrypt-nosudo
libmbim
libndp
libqmi
libteam
mini-sendmail
modemmanager
namecoin
networkmanager
nginx-naxsi
numix-themes
nxapi
opencl-headers
opencl-icd-loader
opus-tools
perl-authen-ntlm
perl-bit-vector
perl-data-uniqid
perl-file-copy-recursive
perl-getopt-argvfile
perl-io-tee
perl-iptables-chainmgr
perl-iptables-parse
perl-module-scandeps
perl-par-dist
perl-par-packer
perl-par
perl-uri-escape
psad
py-crcmod
py-graphviz
py-lz4
py-opencl
py-opengl-accelerate
runit
secpwgen
secure-delete
socklog
spacefm
tinyssh
udevil
virt-viewer
virtualbricks
whois
wrk
xpra
zram-init
Diffstat (limited to 'community/entr')
-rw-r--r-- | community/entr/APKBUILD | 43 | ||||
-rw-r--r-- | community/entr/remove-strlcpy-compat.h.patch | 14 |
2 files changed, 57 insertions, 0 deletions
diff --git a/community/entr/APKBUILD b/community/entr/APKBUILD new file mode 100644 index 0000000000..f8af64df38 --- /dev/null +++ b/community/entr/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Stuart Cardall <developer@it-offshore.co.uk> +# Maintainer: Stuart Cardall <developer@it-offshore.co.uk> +pkgname=entr +_srcdir=eradman-$pkgname-220131754e1c +pkgver=3.3 +pkgrel=0 +pkgdesc="Event Notify Test Runner: Run arbitrary commands when files change" +url="http://entrproject.org" +arch="all" +license="ISC / BSD" +subpackages="$pkgname-doc" +source="http://entrproject.org/code/$pkgname-$pkgver.tar.gz + remove-strlcpy-compat.h.patch + " + +_builddir="$srcdir"/$_srcdir +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure || return 1 + CFLAGS="-static" make test || return 1 +} + +package() { + cd "$_builddir" + PREFIX="$pkgdir/usr" make install || return 1 +} + +md5sums="769f353934b73e929a0a0fb9fca79c41 entr-3.3.tar.gz +5ae5aa6f2b8de9747312b32b17c56d0b remove-strlcpy-compat.h.patch" +sha256sums="701cb7b0a72b6c9ba794ad7cc15b6ebcc2e0c978bb6906c8ae407567a044461f entr-3.3.tar.gz +2bc42c8c154acf0aaa876b4395c2e0e7b20773e48d50b0c8a15e90ca2e8db472 remove-strlcpy-compat.h.patch" +sha512sums="aa45bef57fb12d5ddaaebd8de03df33b69a833e4b729ad9fb0844af1c8b7031fc37ca1c81170b20967aa7dbf8854849a7b1f46da6d1d13a49d4d33502269bbca entr-3.3.tar.gz +9d0f4e06cd5c312788f5ff2efa13f55f78a3491de3ddf64612a6c731072e8514deb1cea48c630194cbda71c58c57e9a6b937172eca58be0b1fb4f0f7a1652e2d remove-strlcpy-compat.h.patch" diff --git a/community/entr/remove-strlcpy-compat.h.patch b/community/entr/remove-strlcpy-compat.h.patch new file mode 100644 index 0000000000..ae2d271a1b --- /dev/null +++ b/community/entr/remove-strlcpy-compat.h.patch @@ -0,0 +1,14 @@ +--- eradman-entr-c20e34ec153a/missing/compat.h ++++ eradman-entr-c20e34ec153a/missing/compat.h.new +@@ -4,11 +4,6 @@ + #define NOTE_TRUNCATE 0 + #endif + +-#if defined(_LINUX_PORT) +-#include <sys/types.h> +-size_t strlcpy(char *to, const char *from, int l); +-#endif +- + #if defined(_MACOS_PORT) + #include <stdio.h> + FILE *fmemopen(void *buf, size_t size, const char *mode); |