Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/claws-mail/
Date: Wed, 19 Aug 2020 10:55:42
Message-Id: 1597834536.4faa24b11e8d736aa7382768c8419503af348e20.polynomial-c@gentoo
1 commit: 4faa24b11e8d736aa7382768c8419503af348e20
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 19 10:55:15 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 19 10:55:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4faa24b1
7
8 mail-client/claws-mail: Minor live ebuild improvements
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 mail-client/claws-mail/claws-mail-9999.ebuild | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/mail-client/claws-mail/claws-mail-9999.ebuild b/mail-client/claws-mail/claws-mail-9999.ebuild
17 index e968982b5db..3633ad0400d 100644
18 --- a/mail-client/claws-mail/claws-mail-9999.ebuild
19 +++ b/mail-client/claws-mail/claws-mail-9999.ebuild
20 @@ -9,9 +9,9 @@ inherit autotools desktop python-single-r1 xdg
21 DESCRIPTION="An email client (and news reader) based on GTK+"
22 HOMEPAGE="https://www.claws-mail.org/"
23
24 -if [[ "${PV}" == 9999 ]] ; then
25 +if [[ "${PV}" == *9999 ]] ; then
26 inherit git-r3
27 - EGIT_REPO_URI="git://git.claws-mail.org/claws.git"
28 + EGIT_REPO_URI="https://git.claws-mail.org/readonly/claws.git"
29 else
30 SRC_URI="https://www.claws-mail.org/download.php?file=releases/${P}.tar.xz"
31 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
32 @@ -117,7 +117,7 @@ PATCHES=(
33 pkg_setup() {
34 use python && python-single-r1_pkg_setup
35
36 - if ! use gtk2 ; then
37 + if [[ "${PV}" == *9999 ]] && ! use gtk2 ; then
38 EGIT_BRANCH="gtk3"
39 fi
40 }