Gentoo Archives: gentoo-commits

From: Ian Stakenvicius <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/
Date: Fri, 07 Dec 2018 22:10:20
Message-Id: 1544220602.e0229d32bc38fc7de79ae58ebfa4b69ea29d7b57.axs@gentoo
1 commit: e0229d32bc38fc7de79ae58ebfa4b69ea29d7b57
2 Author: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 7 22:09:34 2018 +0000
4 Commit: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 7 22:10:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0229d32
7
8 mail-client/thunderbird-60.3.3-r1: fix gdata-provider
9
10 Fixed issue where gdata-provider extension (installed via USE=lightning) would
11 not load due to manifest.json not yet being properly supported.
12
13 Signed-off-by: Ian Stakenvicius <axs <AT> gentoo.org>
14 Package-Manager: Portage-2.3.49, Repoman-2.3.11
15
16 .../{thunderbird-60.3.3.ebuild => thunderbird-60.3.3-r1.ebuild} | 6 ++++++
17 1 file changed, 6 insertions(+)
18
19 diff --git a/mail-client/thunderbird/thunderbird-60.3.3.ebuild b/mail-client/thunderbird/thunderbird-60.3.3-r1.ebuild
20 similarity index 98%
21 rename from mail-client/thunderbird/thunderbird-60.3.3.ebuild
22 rename to mail-client/thunderbird/thunderbird-60.3.3-r1.ebuild
23 index b50bc9259df..c3d4b19cab2 100644
24 --- a/mail-client/thunderbird/thunderbird-60.3.3.ebuild
25 +++ b/mail-client/thunderbird/thunderbird-60.3.3-r1.ebuild
26 @@ -528,6 +528,12 @@ src_install() {
27 emid='{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}'
28 mkdir -p "${T}/${emid}" || die
29 cp -RLp -t "${T}/${emid}" "${BUILD_OBJ_DIR}"/dist/xpi-stage/gdata-provider/* || die
30 +
31 + # manifest.json does not allow the addon to load, put install.rdf in place
32 + # note, version number needs to be set properly
33 + cp -RLp -t "${T}/${emid}" "${WORKDIR}"/gdata-provider-${MOZ_LIGHTNING_GDATA_VER}/install.rdf
34 + sed -i -e '/em:version/ s/>[^<]*</>4.1</' "${T}/${emid}"/install.rdf
35 +
36 insinto ${MOZILLA_FIVE_HOME}/extensions
37 doins -r "${T}/${emid}"
38 fi