Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/yarn/
Date: Tue, 07 Mar 2017 21:13:00
Message-Id: 1488921095.0c0ad370b30b9f5b31bf6f0bb62f48d8034cfb7b.gokturk@gentoo
1 commit: 0c0ad370b30b9f5b31bf6f0bb62f48d8034cfb7b
2 Author: soredake <fdsfgs <AT> krutt <DOT> org>
3 AuthorDate: Tue Mar 7 20:43:33 2017 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 7 21:11:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c0ad370
7
8 sys-apps/yarn: delete non-working 9999 version
9
10 npm install' or 'yarn install' is not suitable for ebuild
11
12 sys-apps/yarn/yarn-9999.ebuild | 27 ---------------------------
13 1 file changed, 27 deletions(-)
14
15 diff --git a/sys-apps/yarn/yarn-9999.ebuild b/sys-apps/yarn/yarn-9999.ebuild
16 deleted file mode 100644
17 index 4d0ba07bee9..00000000000
18 --- a/sys-apps/yarn/yarn-9999.ebuild
19 +++ /dev/null
20 @@ -1,27 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit git-r3
27 -
28 -DESCRIPTION="Fast, reliable, and secure node dependency management"
29 -HOMEPAGE="https://yarnpkg.com"
30 -EGIT_REPO_URI="https://github.com/yarnpkg/yarn.git"
31 -
32 -LICENSE="BSD-2"
33 -SLOT="0"
34 -KEYWORDS=""
35 -IUSE=""
36 -
37 -RDEPEND="!dev-util/cmdtest
38 - net-libs/nodejs"
39 -DEPEND="${RDEPEND}"
40 -
41 -src_install() {
42 - local install_dir="/usr/$(get_libdir)/node_modules/yarn"
43 - insinto "${install_dir}"
44 - doins -r .
45 - dosym "../$(get_libdir)/node_modules/yarn/bin/yarn.js" "/usr/bin/yarn"
46 - fperms a+x "${install_dir}/bin/yarn.js"
47 -}