Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/coffee-script/
Date: Thu, 07 Jan 2021 11:33:32
Message-Id: 1610019196.2f686388b1465f1d0a5f3477afabba55489c502d.sam@gentoo
1 commit: 2f686388b1465f1d0a5f3477afabba55489c502d
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 11:21:58 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 11:33:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f686388
7
8 dev-lang/coffee-script: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-lang/coffee-script/Manifest | 1 -
14 dev-lang/coffee-script/coffee-script-2.3.2.ebuild | 52 -----------------------
15 2 files changed, 53 deletions(-)
16
17 diff --git a/dev-lang/coffee-script/Manifest b/dev-lang/coffee-script/Manifest
18 index 8f1b6b097c7..95c44ccf2ec 100644
19 --- a/dev-lang/coffee-script/Manifest
20 +++ b/dev-lang/coffee-script/Manifest
21 @@ -1,2 +1 @@
22 -DIST coffee-script-2.3.2.tar.gz 1754957 BLAKE2B 7a276a16f4db9c2f53258161af0cb1cebd71fac6acca94d5ee5b0a67e1d59d17ffca8b98f20b3afbe30297963dfa683af16ae01bf0ed6eda49a20a858f6d4850 SHA512 ab50737ffd46db007fc98cbba5ef1fc6c97b20a40b848f9635282ddf19188c59172f984bd62b345b6aae96a92af3ac046cedb568c16db2a5e29d287314e13cd5
23 DIST coffee-script-2.5.1.tar.gz 2226483 BLAKE2B 5a2c5f93d46b111aeda63077f60992232a768008187ba0e41bec885184fbbbb91014620fca5d8e38cfdb5e88de483425d3d95c87779f27d7450de7cbe62b489b SHA512 99f11f0822ffc841552cf6c78a28d152554f070df6d1b729bdd17df8ba6faae6ed2ba9886f7ee13ccb316de698ab8624370287274611fe90bef033d9f76c5865
24
25 diff --git a/dev-lang/coffee-script/coffee-script-2.3.2.ebuild b/dev-lang/coffee-script/coffee-script-2.3.2.ebuild
26 deleted file mode 100644
27 index ce12a698c64..00000000000
28 --- a/dev-lang/coffee-script/coffee-script-2.3.2.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
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_PN="coffeescript"
37 -
38 -DESCRIPTION="A little language that compiles into javascript"
39 -HOMEPAGE="https://coffeescript.org/"
40 -SRC_URI="https://github.com/jashkenas/${MY_PN}/archive/${PV}.tar.gz
41 - -> ${P}.tar.gz"
42 -S="${WORKDIR}/${MY_PN}-${PV}"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -
48 -# This package has a test suite (that works), but it requires a number
49 -# of NodeJS/NPM packages that aren't in the tree.
50 -IUSE="doc examples"
51 -
52 -RDEPEND="net-libs/nodejs"
53 -
54 -src_install() {
55 - local npm_module_dir="/usr/$(get_libdir)/node/${PN}"
56 - insinto "${npm_module_dir}"
57 - doins *.js package.json
58 - doins -r lib
59 - dodoc CONTRIBUTING.md README.md
60 -
61 - if use examples; then
62 - # Users should be able to run the examples without having to copy
63 - # them to another directory and decompress them.
64 - docompress -x "/usr/share/doc/${PF}/examples"
65 - dodoc -r documentation/examples
66 - fi
67 -
68 - if use doc; then
69 - # It looks like "docs/v2" contains the output from all of the stuff
70 - # under "documentation".
71 - docinto "html"
72 - dodoc -r docs/v2/*
73 - fi
74 -
75 - # The coffee and cake "binaries" use a relative path to find the lib
76 - # directory, so we have to symlink them rather than use dobin().
77 - exeinto "${npm_module_dir}/bin"
78 - doexe bin/cake
79 - doexe bin/coffee
80 - dosym "${npm_module_dir}/bin/cake" "/usr/bin/cake"
81 - dosym "${npm_module_dir}/bin/coffee" "/usr/bin/coffee"
82 -}