public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/balsa/
Date: Mon, 26 Sep 2022 14:54:27 +0000 (UTC)	[thread overview]
Message-ID: <1664203983.88e6f24e07d673d924e9fbb255ea6f38d13a836a.mattst88@gentoo> (raw)

commit:     88e6f24e07d673d924e9fbb255ea6f38d13a836a
Author:     Pascal Jaeger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Mon Sep 26 14:14:21 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 14:53:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88e6f24e

mail-client/balsa: Version bump to 2.6.4

Closes: https://github.com/gentoo/gentoo/pull/27476
Signed-off-by: Pascal Jaeger <pascal.jaeger <AT> leimstift.de>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 mail-client/balsa/Manifest           |  1 +
 mail-client/balsa/balsa-2.6.4.ebuild | 78 ++++++++++++++++++++++++++++++++++++
 mail-client/balsa/metadata.xml       |  1 +
 3 files changed, 80 insertions(+)

diff --git a/mail-client/balsa/Manifest b/mail-client/balsa/Manifest
index 1a2cc9bdec84..0f10923de5eb 100644
--- a/mail-client/balsa/Manifest
+++ b/mail-client/balsa/Manifest
@@ -1 +1,2 @@
 DIST balsa-2.6.3.tar.xz 3761940 BLAKE2B 8bcd93453a74d2b7ffaeca3131828044a9fc399db8e0e695a31dcdb5b50a400e10b3a49d9484609b59e4348758cbeff6fde30243714693e98ab046f7910d1abf SHA512 7e64f75423dd37536812854e56db1af97c00bc35f640d82c22d86e5212c766926430f1c99423f1a972daf6f20d084d4cf16d89e13deb2f1ce550c016cd132f8d
+DIST balsa-2.6.4.tar.xz 3710272 BLAKE2B 67a3462ca6bc75431a6a3f6a54feb53577111355d749e777a328b881d431856a8090e9c7beea128ee466a9b7aee01a4178b5a273541f0ffdd776a144546fc48e SHA512 7c1526e03de29e19448f0a13847dcd7138d3292221ea16f20d09bf169cf18e69df24dd76726e710470d4507e5cc4e236e1889d4c421610ecd1589a9e2338d264

diff --git a/mail-client/balsa/balsa-2.6.4.ebuild b/mail-client/balsa/balsa-2.6.4.ebuild
new file mode 100644
index 000000000000..2a54f025853f
--- /dev/null
+++ b/mail-client/balsa/balsa-2.6.4.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit gnome2
+
+DESCRIPTION="Email client for GNOME"
+HOMEPAGE="http://pawsa.fedorapeople.org/balsa/"
+SRC_URI="http://pawsa.fedorapeople.org/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+
+IUSE="gnome +gnome-keyring kerberos ldap rubrica sqlite systray webkit xface"
+
+# TODO: internal spell checking via enchant-2 instead of gtkspell/gspell?
+DEPEND="
+	>=dev-libs/glib-2.48.0:2
+	>=x11-libs/gtk+-3.24.0:3
+	>=dev-libs/gmime-3.2.6:3.0
+	>=net-libs/gnutls-3.0:=
+	dev-libs/fribidi
+	>=dev-libs/libical-2.0.0:=
+	webkit? (
+		>=net-libs/webkit-gtk-2.28.0:4
+		>=dev-db/sqlite-3.24:=
+		app-text/html2text
+	)
+	>=app-crypt/gpgme-1.13.0:=
+	sqlite? ( >=dev-db/sqlite-3.24:= )
+	systray? ( x11-libs/xapp )
+	ldap? ( net-nds/openldap:= )
+	rubrica? ( dev-libs/libxml2:2 )
+	kerberos? ( app-crypt/mit-krb5 )
+	xface? ( >=media-libs/compface-1.5.1:= )
+	gnome? ( x11-libs/gtksourceview:4 )
+	media-libs/libcanberra:=[gtk3]
+	gnome-keyring? ( app-crypt/libsecret )
+	>=app-text/gspell-1.6:0=
+
+	net-mail/mailbase
+	x11-themes/hicolor-icon-theme
+	x11-themes/adwaita-icon-theme
+	dev-libs/openssl:0=
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-util/gtk-update-icon-cache
+	dev-util/intltool
+	dev-util/itstool
+	virtual/pkgconfig
+	sys-devel/gettext
+	dev-libs/libxml2:2
+"
+
+DOCS="AUTHORS ChangeLog HACKING NEWS README TODO docs/*"
+
+src_configure() {
+	local myconf=(
+		$(use_with gnome)
+		$(use_enable sqlite autocrypt)
+		$(use_with systray) # TODO or should this be use/ use_enable? idk, test out.
+		--with-canberra
+		$(use_with xface compface)
+		$(use_with kerberos gss)
+		$(usex webkit --with-html-widget=webkit2 --with-html-widget=no)
+		$(use_with gnome gtksourceview)
+		--with-spell-checker=gspell
+		$(use_with ldap)
+		$(use_with rubrica)
+		--without-osmo
+		$(use_with sqlite)
+		$(use_with gnome-keyring libsecret)
+		--without-gcr # experimental
+	)
+	gnome2_src_configure "${myconf[@]}"
+}

diff --git a/mail-client/balsa/metadata.xml b/mail-client/balsa/metadata.xml
index 1ee5337540c8..54f5dedb7cdc 100644
--- a/mail-client/balsa/metadata.xml
+++ b/mail-client/balsa/metadata.xml
@@ -7,5 +7,6 @@
 	</maintainer>
 	<use>
 		<flag name="rubrica">Adds support for rubrica addressbook</flag>
+		<flag name="systray">Enable System Tray Icon support</flag>
 	</use>
 </pkgmetadata>


             reply	other threads:[~2022-09-26 14:54 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-26 14:54 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-04 18:39 [gentoo-commits] repo/gentoo:master commit in: mail-client/balsa/ Andreas Sturmlechner
2023-05-18 12:17 Andreas Sturmlechner
2023-02-15 18:38 Matt Turner
2023-02-12  3:54 Matt Turner
2022-12-16 20:37 Arthur Zamarin
2022-10-30 23:21 Matt Turner
2022-09-26 14:57 Matt Turner
2022-03-23  0:45 Sam James
2021-11-06  4:09 Sam James
2021-10-04  1:25 Sam James
2021-09-22 12:05 Mart Raudsepp
2021-08-21 17:31 Matt Turner
2021-05-29  9:02 Sam James
2021-05-29  6:09 Sam James
2021-05-02 15:07 Mikle Kolyada
2021-04-19  2:39 Matt Turner
2020-08-25 18:09 Sam James
2020-08-25  0:22 Sam James
2020-08-24  7:48 Mart Raudsepp
2018-12-02 17:27 Mart Raudsepp
2018-07-15 15:41 Mart Raudsepp
2018-07-15 15:41 Mart Raudsepp
2018-07-15 15:41 Mart Raudsepp
2018-01-07 22:07 Sergei Trofimovich
2017-12-20 21:02 Mart Raudsepp
2017-09-02 18:00 Gilles Dartiguelongue
2017-08-09 20:52 Sergei Trofimovich
2017-07-14 11:44 Pacho Ramos
2017-02-10 19:08 Pacho Ramos
2017-01-21 19:51 Pacho Ramos
2016-11-27 11:21 Pacho Ramos
2016-11-04  9:40 Pacho Ramos
2015-10-10 23:40 Anthony G. Basile

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1664203983.88e6f24e07d673d924e9fbb255ea6f38d13a836a.mattst88@gentoo \
    --to=mattst88@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox