Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/gjs/
Date: Thu, 04 Jan 2018 22:00:13
Message-Id: 1515103195.b1f86457e09625f94d25dde70d5cbd9a69b20a7e.pacho@gentoo
1 commit: b1f86457e09625f94d25dde70d5cbd9a69b20a7e
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 21:59:55 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 21:59:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f86457
7
8 dev-libs/gjs: Drop old
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-libs/gjs/Manifest | 1 -
13 dev-libs/gjs/gjs-1.48.6.ebuild | 66 ------------------------------------------
14 2 files changed, 67 deletions(-)
15
16 diff --git a/dev-libs/gjs/Manifest b/dev-libs/gjs/Manifest
17 index 62d8831008b..90034b1c86a 100644
18 --- a/dev-libs/gjs/Manifest
19 +++ b/dev-libs/gjs/Manifest
20 @@ -1,3 +1,2 @@
21 DIST gjs-1.46.0.tar.xz 490812 BLAKE2B d7b71d6c611404d9313cdd19959e2a0cb7f035bbd2528db77ccb0030e685019b756216bfbc64885b3641c14cab2f29110492c87047c3ceb1a627765857b19a95 SHA512 14af40668e95d269ac87556c75cf45680c41bc8246f04c46726d34bd80e9344045c0a510567f156c2c25c1f10dd474dc38bd50581d1b2e5abe0daa0cf570e2bc
22 -DIST gjs-1.48.6.tar.xz 596964 BLAKE2B 8065075ba66a139a76486df24d9c528959d821b4695ee84b5213d4e6b35bdd052c898112b7fb21981c59c24ea9e15bc79258b6d07457df930e94bcba798e262a SHA512 29d70bbee722bbb58eb95acf1409d5e34930d11ebd9525f3b7d0050a13b72eb50e357df7c2bb9bc2ba147dcfdbc2dfb1f1f7b710347473d05cd484006b6ea256
23 DIST gjs-1.48.7.tar.xz 595324 BLAKE2B eac8b5b2f7e909e94e3fb305cac443da3f433047ee07fa8fbd15905890f77d57449c8689867df61f1ac849b8b4bddc089a9b1ddc3aa79d4b3d054226c58fa909 SHA512 b8c58e068eaecfca2fa40cebe209fa8058e603809be4307099a0f3dbd561752a540d587d546ffa74aef0268a111f2b2846a1e0febda1adcefdac8c02e716e2dd
24
25 diff --git a/dev-libs/gjs/gjs-1.48.6.ebuild b/dev-libs/gjs/gjs-1.48.6.ebuild
26 deleted file mode 100644
27 index 782d4047a2a..00000000000
28 --- a/dev-libs/gjs/gjs-1.48.6.ebuild
29 +++ /dev/null
30 @@ -1,66 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit gnome2 pax-utils virtualx
36 -
37 -DESCRIPTION="Javascript bindings for GNOME"
38 -HOMEPAGE="https://wiki.gnome.org/Projects/Gjs"
39 -
40 -LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
41 -SLOT="0"
42 -IUSE="+cairo examples gtk test"
43 -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
44 -
45 -RDEPEND="
46 - >=dev-libs/glib-2.52.1
47 - >=dev-libs/gobject-introspection-1.52.1:=
48 -
49 - sys-libs/readline:0
50 - dev-lang/spidermonkey:38
51 - virtual/libffi
52 - cairo? ( x11-libs/cairo[X] )
53 - gtk? ( >=x11-libs/gtk+-3.20:3 )
54 -"
55 -DEPEND="${RDEPEND}
56 - gnome-base/gnome-common
57 - sys-devel/gettext
58 - virtual/pkgconfig
59 - test? ( sys-apps/dbus )
60 -"
61 -
62 -PATCHES=(
63 - # Disable unittest failing without pt_BR locale, upstream bug #????
64 - "${FILESDIR}"/${PV}-disable-unittest.patch
65 -)
66 -
67 -src_configure() {
68 - # FIXME: add systemtap/dtrace support, like in glib:2
69 - # FIXME: --enable-systemtap installs files in ${D}/${D} for some reason
70 - # XXX: Do NOT enable coverage, completely useless for portage installs
71 - gnome2_src_configure \
72 - --disable-systemtap \
73 - --disable-dtrace \
74 - --disable-code-coverage \
75 - $(use_with cairo cairo) \
76 - $(use_with gtk) \
77 - $(use_with test dbus-tests) \
78 - $(use_with test xvfb-tests)
79 -}
80 -
81 -src_test() {
82 - virtx emake check
83 -}
84 -
85 -src_install() {
86 - # installation sometimes fails in parallel, bug #???
87 - gnome2_src_install -j1
88 -
89 - if use examples; then
90 - insinto /usr/share/doc/"${PF}"/examples
91 - doins "${S}"/examples/*
92 - fi
93 -
94 - # Required for gjs-console to run correctly on PaX systems
95 - pax-mark mr "${ED}/usr/bin/gjs-console"
96 -}