Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-js/uuid/
Date: Thu, 30 Sep 2021 19:39:44
Message-Id: 1632920907.bd08da741c962d0e9f00bc726aa3d8a533d91d82.arthurzam@gentoo
1 commit: bd08da741c962d0e9f00bc726aa3d8a533d91d82
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Wed Sep 29 13:06:59 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 29 13:08:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bd08da74
7
8 dev-js/uuid: initial import
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-js/uuid/Manifest | 1 +
13 dev-js/uuid/metadata.xml | 12 ++++++++++++
14 dev-js/uuid/uuid-8.3.2.ebuild | 21 +++++++++++++++++++++
15 3 files changed, 34 insertions(+)
16
17 diff --git a/dev-js/uuid/Manifest b/dev-js/uuid/Manifest
18 new file mode 100644
19 index 000000000..18679ae38
20 --- /dev/null
21 +++ b/dev-js/uuid/Manifest
22 @@ -0,0 +1 @@
23 +DIST uuid-8.3.2.tgz 27977 BLAKE2B f2c9b5bebfa75744a3100ab468f7e56d059564804701eebf72f8b9e7eadc9d0b36d3cc4ceab6f90d54f5657b0b99039389c05c59145a6c9f793e4aaf09cc4362 SHA512 f8d62cd9078c5b2f865853849bdc679fa1c20e9d25ed0043ee697cccb52627ef77439345d0da1c12b9f09139175453625f7fdfa42e9a7d2f0385bfe0cfb47b7a
24
25 diff --git a/dev-js/uuid/metadata.xml b/dev-js/uuid/metadata.xml
26 new file mode 100644
27 index 000000000..452ea2897
28 --- /dev/null
29 +++ b/dev-js/uuid/metadata.xml
30 @@ -0,0 +1,12 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>lssndrbarbieri@×××××.com</email>
36 + <name>Alessandro Barbieri</name>
37 + </maintainer>
38 + <upstream>
39 + <bugs-to>https://github.com/uuidjs/uuid/issues</bugs-to>
40 + <remote-id type="github">uuidjs/uuid</remote-id>
41 + </upstream>
42 +</pkgmetadata>
43
44 diff --git a/dev-js/uuid/uuid-8.3.2.ebuild b/dev-js/uuid/uuid-8.3.2.ebuild
45 new file mode 100644
46 index 000000000..ffe7fb60c
47 --- /dev/null
48 +++ b/dev-js/uuid/uuid-8.3.2.ebuild
49 @@ -0,0 +1,21 @@
50 +# Copyright 1999-2021 Gentoo Authors
51 +# Distributed under the terms of the GNU General Public License v2
52 +
53 +EAPI=7
54 +
55 +inherit node
56 +
57 +DESCRIPTION="RFC4122 (v1, v4, and v5) UUIDs"
58 +HOMEPAGE="
59 + https://github.com/uuidjs/uuid
60 + https://www.npmjs.com/package/uuid
61 +"
62 +
63 +LICENSE="MIT"
64 +KEYWORDS="~amd64"
65 +
66 +src_install() {
67 + node_src_install
68 + # errno binary conflicts with dev-libs/ossp-uuid
69 + mv "${ED}/usr/bin/uuid" "${ED}/usr/bin/node-uuid" || die
70 +}