Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/cjs/
Date: Fri, 21 Jan 2022 17:15:38
Message-Id: 1642785226.06362852dda4614dcfc000f1dff15c7d01c8f9e0.sam@gentoo
1 commit: 06362852dda4614dcfc000f1dff15c7d01c8f9e0
2 Author: Matthew S. Turnbull <sparky <AT> bluefang-logic <DOT> com>
3 AuthorDate: Tue Dec 28 04:12:58 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 17:13:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06362852
7
8 gnome-extra/cjs: Remove old
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Matthew S. Turnbull <sparky <AT> bluefang-logic.com>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 gnome-extra/cjs/Manifest | 1 -
15 gnome-extra/cjs/cjs-4.8.2-r1.ebuild | 73 -------------------------------------
16 2 files changed, 74 deletions(-)
17
18 diff --git a/gnome-extra/cjs/Manifest b/gnome-extra/cjs/Manifest
19 index 455a88ca7b7e..e1ed405bf2db 100644
20 --- a/gnome-extra/cjs/Manifest
21 +++ b/gnome-extra/cjs/Manifest
22 @@ -1,2 +1 @@
23 -DIST cjs-4.8.2.tar.gz 600711 BLAKE2B d1506e599c05301083479df4145d3177c9cbb057d3ed260e9744994da70fe392eb2cd872dc00b1ef6269efe9442e32e16878ba975f57f1abc35851cb15e7bb97 SHA512 c607198847a3229443bbfa6906b05036295b6d7f95d3b355780b28e69382407a8f6ef5f637f411fbf2ae474c4c7c5f68f64fec6dd7a2e7f944945927f5efac91
24 DIST cjs-5.0.1.tar.gz 602005 BLAKE2B 7592b5b0be8fed1efc9fe1c7baca081515b8010935e24ba0cb1e30ce78890941f5c3b2384ee3846a02c3ba5a50c6d6ce5df232f02507743cf15ac089e29d7f23 SHA512 a341e8deae33baf51ed21ea0b03484ba459d83be8689f3928acbd286ebe878719cdd6b4c576907b08b117b3c5738a11f95d0e37ae21f94ae6b88631fad5d3375
25
26 diff --git a/gnome-extra/cjs/cjs-4.8.2-r1.ebuild b/gnome-extra/cjs/cjs-4.8.2-r1.ebuild
27 deleted file mode 100644
28 index 921184eaa289..000000000000
29 --- a/gnome-extra/cjs/cjs-4.8.2-r1.ebuild
30 +++ /dev/null
31 @@ -1,73 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_{7,8,9} )
38 -
39 -inherit meson pax-utils python-any-r1 virtualx
40 -
41 -DESCRIPTION="Linux Mint's fork of gjs for Cinnamon"
42 -HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/cjs"
43 -SRC_URI="https://github.com/linuxmint/cjs/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
46 -SLOT="0"
47 -IUSE="+cairo examples gtk readline sysprof test"
48 -KEYWORDS="amd64 ~arm64 x86"
49 -
50 -RDEPEND="
51 - dev-lang/spidermonkey:78
52 - >=dev-libs/glib-2.58.0:2
53 - >=dev-libs/gobject-introspection-1.58.3:=
54 - >=dev-libs/libffi-3.2.1:0=
55 -
56 - cairo? ( x11-libs/cairo[glib,X] )
57 - readline? ( sys-libs/readline:0= )
58 -"
59 -DEPEND="
60 - ${RDEPEND}
61 - sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 )
62 - test? (
63 - sys-apps/dbus
64 -
65 - gtk? ( x11-libs/gtk+:3[introspection] )
66 - )
67 -"
68 -BDEPEND="
69 - ${PYTHON_DEPS}
70 - virtual/pkgconfig
71 -"
72 -
73 -src_prepare() {
74 - default
75 - python_fix_shebang build
76 -}
77 -
78 -src_configure() {
79 - local emesonargs=(
80 - $(meson_feature cairo)
81 - $(meson_feature readline)
82 - $(meson_feature sysprof profiler)
83 - -Dinstalled_tests=false
84 - $(meson_use !test skip_dbus_tests)
85 - $(meson_use !test skip_gtk_tests)
86 - )
87 - meson_src_configure
88 -}
89 -
90 -src_test() {
91 - virtx meson_src_test
92 -}
93 -
94 -src_install() {
95 - meson_src_install
96 -
97 - if use examples; then
98 - docinto examples
99 - dodoc "${S}"/examples/*
100 - fi
101 -
102 - # Required for cjs-console to run correctly on PaX systems
103 - pax-mark mr "${ED}/usr/bin/cjs-console"
104 -}