acorn: initial commit, version 8.4.1

This commit is contained in:
Tim Biermann 2021-07-02 22:29:07 +00:00
parent 126128a6c4
commit 87d5666efc
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 38 additions and 0 deletions

15
acorn/.footprint Normal file
View File

@ -0,0 +1,15 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/acorn -> ../lib/node_modules/acorn/bin/acorn
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/node_modules/
drwxr-xr-x root/root usr/lib/node_modules/acorn/
drwxr-xr-x root/root usr/lib/node_modules/acorn/bin/
-rwxr-xr-x root/root usr/lib/node_modules/acorn/bin/acorn
drwxr-xr-x root/root usr/lib/node_modules/acorn/dist/
-rw-r--r-- root/root usr/lib/node_modules/acorn/dist/acorn.d.ts
-rw-r--r-- root/root usr/lib/node_modules/acorn/dist/acorn.js
-rw-r--r-- root/root usr/lib/node_modules/acorn/dist/acorn.mjs
-rw-r--r-- root/root usr/lib/node_modules/acorn/dist/acorn.mjs.d.ts
-rw-r--r-- root/root usr/lib/node_modules/acorn/dist/bin.js
-rw-r--r-- root/root usr/lib/node_modules/acorn/package.json

5
acorn/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF34bnaqPrqf4z/PIl9haAVgr3aboo4DWZUV+MB3KXL1zZwYzRdWqB0/9Ey5SHBjWDauyIz1U3rwSCkt8kII4DXww=
SHA256 (Pkgfile) = 4163e881036f8ad1ffb5ea2c31efec6cadd4622db26ea4e4f030738ab07c8a69
SHA256 (.footprint) = ea773f577ad113d5aa033ed58795c038be8894fd60f5cc281a93f4886442a073
SHA256 (acorn-8.4.1.tgz) = 2009aacbc0a28337a9f2e30cd83a0e02363699748d25fdae1acb6d0370445902

18
acorn/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: A small, fast, JavaScript-based JavaScript parser
# URL: https://github.com/acornjs/acorn
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: npm
name=acorn
version=8.4.1
release=1
source=(https://registry.npmjs.org/$name/-/$name-$version.tgz)
build() {
cp $PKGMK_SOURCE_DIR/$name-$version.tgz .
npm install -g --prefix "$PKG"/usr $SRC/$name-$version.tgz
find $PKG \(\
-iname "*README.md*" -o \
-iname "*CHANGELOG.md*" -o \
-iname "*LICENSE*" \) -delete
}