Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/yarn/
Date: Wed, 19 Jul 2017 17:15:58
Message-Id: 1500484474.f89419b65985cdaff454830e41c8a4e6fa01ba84.mrueg@gentoo
1 commit: f89419b65985cdaff454830e41c8a4e6fa01ba84
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 19 17:14:34 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 19 17:14:34 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f89419b6
7
8 sys-apps/yarn: Version bump to 0.27.5
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 sys-apps/yarn/Manifest | 1 +
13 sys-apps/yarn/yarn-0.27.5.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/sys-apps/yarn/Manifest b/sys-apps/yarn/Manifest
17 index 7baf5551382..1ce76f318ea 100644
18 --- a/sys-apps/yarn/Manifest
19 +++ b/sys-apps/yarn/Manifest
20 @@ -1 +1,2 @@
21 DIST yarn-v0.21.3.tar.gz 3408603 SHA256 0946a4d1abc106c131b700cc31e5c3aa5f2205eb3bb9d17411f8115354a97d5d SHA512 dad7181c78dd1aaf2b07ff32055a8442b55ff9b68a73cf611f4142d612e95f43dcd376e6f2306a4cccc5249680bb82365a7e9ee3160e5c5083f50ee0791a448d WHIRLPOOL f96e16e6112f23efe1f6609e2f5c674e20e033725374116929cceca319c5dad8f65a3cb667d43f5d00fdf46b46ee41eb4038e6998ffe6f6aea9d13d910258c55
22 +DIST yarn-v0.27.5.tar.gz 816114 SHA256 f0f3510246ee74eb660ea06930dcded7b684eac2593aa979a7add84b72517968 SHA512 a21615f3bf4996d6e2dc84b54c3e9ca8a58143941a80771121f6eb6f5dcf8fd655e1c9b9420e7a0ab3a7c26ecd6bdd3790451d76435d7e3d6fbb5ba8ac729dbd WHIRLPOOL e21887c715c72c490c58817ca0a6542899f4036ccd81fedfab4f751b13eca6196f82236d206f7a58d550e78f0bff4dac08fbfc44f287e2463ad119042b98a83b
23
24 diff --git a/sys-apps/yarn/yarn-0.27.5.ebuild b/sys-apps/yarn/yarn-0.27.5.ebuild
25 new file mode 100644
26 index 00000000000..631ba960a31
27 --- /dev/null
28 +++ b/sys-apps/yarn/yarn-0.27.5.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +DESCRIPTION="Fast, reliable, and secure node dependency management"
36 +HOMEPAGE="https://yarnpkg.com"
37 +SRC_URI="https://github.com/yarnpkg/yarn/releases/download/v${PV}/yarn-v${PV}.tar.gz"
38 +
39 +LICENSE="BSD-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE=""
43 +
44 +RDEPEND="!dev-util/cmdtest
45 + net-libs/nodejs"
46 +DEPEND="${RDEPEND}"
47 +
48 +S="${WORKDIR}/dist"
49 +
50 +src_install() {
51 + local install_dir="/usr/$(get_libdir)/node_modules/yarn" path
52 + insinto "${install_dir}"
53 + doins -r .
54 + dosym "../$(get_libdir)/node_modules/yarn/bin/yarn.js" "/usr/bin/yarn"
55 + fperms a+x "${install_dir}/bin/yarn.js"
56 + while read -r -d '' path; do
57 + [[ $(head -n1 "${path}") == \#\!* ]] || continue
58 + chmod +x "${path}" || die #614094
59 + done < <(find "${ED}" -type f -print0)
60 +}