Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/yarn/
Date: Wed, 11 Mar 2020 05:03:52
Message-Id: 1583903022.df9f861593de6b96380cf51c55c456da25b8f544.zmedico@gentoo
1 commit: df9f861593de6b96380cf51c55c456da25b8f544
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 11 05:00:56 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 11 05:03:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9f8615
7
8 sys-apps/yarn: Bump to version 1.22.4
9
10 Package-Manager: Portage-2.3.93, Repoman-2.3.20
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 sys-apps/yarn/Manifest | 1 +
14 sys-apps/yarn/yarn-1.22.4.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/sys-apps/yarn/Manifest b/sys-apps/yarn/Manifest
18 index 5b73665fc75..53cae8aaee3 100644
19 --- a/sys-apps/yarn/Manifest
20 +++ b/sys-apps/yarn/Manifest
21 @@ -1 +1,2 @@
22 DIST yarn-v1.22.0.tar.gz 1244012 BLAKE2B 2764704103e281de8fd8c2c28abae56c7ba863365989b884add045d2f80810f0f8b83acd77baeef2375fe1424ad54cabfd89e4d14b38068114552115d3b7a812 SHA512 28c1cffc9ab9de364a4d8f624d4b77748565fdb7ba50fb3620da3debe0676472cac583537f03269601d368c5b2199a0eef8448e00205be75a162b5ead9448992
23 +DIST yarn-v1.22.4.tar.gz 1244785 BLAKE2B 1f1eeb829096eaf19a8fdb48b46fa736769d9d3c247759e434413665186e4cccb750024afa836dae8a0130fc472df3c01805d263d81346e1dd7509e1b106e88a SHA512 a1833b862fe52169bd6c2a033045a07df5bc6a23595c259e675fed1b2d035ab37abe6ce309720abb6636d68f03615054b6292dc0a70da31c8697fda228b50d18
24
25 diff --git a/sys-apps/yarn/yarn-1.22.4.ebuild b/sys-apps/yarn/yarn-1.22.4.ebuild
26 new file mode 100644
27 index 00000000000..706453936e7
28 --- /dev/null
29 +++ b/sys-apps/yarn/yarn-1.22.4.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +MY_P="${PN}-v${PV}"
37 +
38 +DESCRIPTION="Fast, reliable, and secure node dependency management"
39 +HOMEPAGE="https://yarnpkg.com"
40 +SRC_URI="https://github.com/yarnpkg/yarn/releases/download/v${PV}/${MY_P}.tar.gz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND="!dev-util/cmdtest
48 + net-libs/nodejs"
49 +DEPEND="${RDEPEND}"
50 +
51 +S="${WORKDIR}/${MY_P}"
52 +
53 +src_prepare() {
54 + default
55 + sed -i 's/"installationMethod": "tar"/"installationMethod": "portage"/g' "${S}/package.json" || die
56 +}
57 +
58 +src_install() {
59 + local install_dir="/usr/$(get_libdir)/node_modules/yarn" path shebang
60 + insinto "${install_dir}"
61 + doins -r .
62 + dosym "../$(get_libdir)/node_modules/yarn/bin/yarn.js" "/usr/bin/yarn"
63 + dosym "../$(get_libdir)/node_modules/yarn/bin/yarnpkg" "/usr/bin/yarnpkg"
64 +
65 + while read -r -d '' path; do
66 + read -r shebang < "${ED}${path}" || die
67 + [[ "${shebang}" == \#\!* ]] || continue
68 + fperms +x "${path}"
69 + done < <(find "${ED}" -type f -printf '/%P\0' || die)
70 +}