logo

overlay

My own overlay for experimentations, use with caution, no support is provided git clone https://hacktivis.me/git/overlay.git
commit: e6e7a5f76a43e676bd539c9d78d5282e98d1c1a2
parent 6b60feb36710ce05a1e05a818756c5aec4ff421c
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue,  6 Dec 2022 11:44:42 +0100

dev-nodejs/pend: new package, add 1.2.0

Diffstat:

Adev-nodejs/pend/Manifest1+
Adev-nodejs/pend/pend-1.2.0.ebuild21+++++++++++++++++++++
2 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/dev-nodejs/pend/Manifest b/dev-nodejs/pend/Manifest @@ -0,0 +1 @@ +DIST pend-1.2.0.tar.gz 2441 BLAKE2B d198cf644f3714684382897bbbeef2da3dcab7cf1f71fefcb889ba35a3aad463b14c71a666182a5232a80399e84207891fd32b3c0c7d33ecd6b03b4409fe20c5 SHA512 392fa80fa6379ce064197596e036b1e3c3ad31840cf60480822c274f3dd72bb24314f4b336afcdd5172ce0f39874a41b573e8ce84bedbf5d988b8f9853ddc5f3 diff --git a/dev-nodejs/pend/pend-1.2.0.ebuild b/dev-nodejs/pend/pend-1.2.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 2022 Haelwenn (lanodan) Monnier <contact@hacktivis.me> +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit nodejs + +DESCRIPTION="dead-simple optimistic async helper in javascript" +HOMEPAGE="https://github.com/andrewrk/node-pend" +SRC_URI="https://github.com/andrewrk/node-pend/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/node-pend-${PV}" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +src_install() { + insinto "${NODEJS_SITELIB}${PN}" + doins package.json + doins index.js + dodoc README.md +}