From aa4b5eadb7903fc2a76e4d22c2d08b2eeb642c48 Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Sat, 27 Aug 2022 13:01:43 +0200 Subject: [PATCH] node-print: new ptrcport --- node-print/APKBUILD | 27 +++++++++++++++++++++++++++ node-print/index.js | 18 ++++++++++++++++++ node-print/np | 3 +++ 3 files changed, 48 insertions(+) create mode 100644 node-print/APKBUILD create mode 100644 node-print/index.js create mode 100644 node-print/np diff --git a/node-print/APKBUILD b/node-print/APKBUILD new file mode 100644 index 0000000..73966ca --- /dev/null +++ b/node-print/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Patrycja Rosa +# Maintainer: Patrycja Rosa +pkgname=node-print +pkgver=1 +pkgrel=0 +pkgdesc="another terrible javascript engine wrapper" +url="https://git.ddd.rip/ptrcnull/ptrcports" +arch="noarch" +license="BSD-2-Clause" +depends="nodejs-current" +source="np index.js" +builddir="$srcdir" + +check() { + out="$(echo test | node -r . -p "stdin().substring(2).replace('t', 'rc').replace('s', 'pt')")" + [ "$out" == "ptrc" ] +} + +package() { + install -Dm755 np "$pkgdir"/usr/bin/np + install -Dm644 index.js "$pkgdir"/usr/lib/node/ptrc/index.js +} + +sha512sums=" +b3dfdeb49637be33d2e2718c5abcf35a87dd55023918c99341273c3b38bd6685189d1f786451a742c47c5f3bc3b58555decb58e2a3a018c9b9ee92043f8fac03 np +979cf7427821309c3f0a5e00d2ebac44d88582f949ddb71959a81a5ca8f4aca15f54a376c8217a94f7ab5aca229dddc59bcebb657ee0c319a5ace330750a8ddd index.js +" diff --git a/node-print/index.js b/node-print/index.js new file mode 100644 index 0000000..6da210f --- /dev/null +++ b/node-print/index.js @@ -0,0 +1,18 @@ +global.stdin = () => { + const fs = require('fs') + const out = fs.readFileSync(0).toString() + if (out.at(0) === '{') { + return JSON.parse(out) + } else { + return out + } +} + +Object.prototype.map = function(cb) { + return cb(this) +} + +String.prototype.lines = function() { + let res = this.split("\n") + return res.at(-1) === '' ? res.slice(0, -1) : res +} diff --git a/node-print/np b/node-print/np new file mode 100644 index 0000000..a048a20 --- /dev/null +++ b/node-print/np @@ -0,0 +1,3 @@ +#!/bin/sh + +exec node -r ptrc -p "$@"