public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/aerc/
Date: Thu, 25 May 2023 15:20:46 +0000 (UTC)	[thread overview]
Message-ID: <1685028040.5cee310e58eefc1a0268e83c851f1c9f42687582.williamh@gentoo> (raw)

commit:     5cee310e58eefc1a0268e83c851f1c9f42687582
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu May 25 15:19:17 2023 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu May 25 15:20:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cee310e

mail-client/aerc: add 0.15.2

Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 mail-client/aerc/Manifest           |  2 ++
 mail-client/aerc/aerc-0.15.2.ebuild | 69 +++++++++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/mail-client/aerc/Manifest b/mail-client/aerc/Manifest
index 1902b5ce3739..7c15eade1cdf 100644
--- a/mail-client/aerc/Manifest
+++ b/mail-client/aerc/Manifest
@@ -2,3 +2,5 @@ DIST aerc-0.12.0-deps.tar.xz 304180452 BLAKE2B 14f7d7e1a06bfd2b8692a4451623f657a
 DIST aerc-0.12.0.tar.gz 293215 BLAKE2B e7e7c156c464ae49eabe7b6ba3e79c3bbca240ace0a3323f8a740a5b872dbbf329127e4edf1395139588e3f0142280f24ef9783c25d3e00176359f82767b439a SHA512 3624a3e0583a1509e2400c9c2e73cbba505841b52fc222224b1ec3c6f3ff7bf44d7ff9e3b1cb25e7c0c522e9748572d2c4b37958de8c0ffb2d0e220de941c5db
 DIST aerc-0.14.0-deps.tar.xz 312747732 BLAKE2B bfba50f224132b3f21cf052788c41d15d8e86d8b050e4007dd1dc4bb4462077bd1d5f54be5382983d1600d04f09f3abe6cd3bbacb8e786749bfc8075f5313997 SHA512 ed0917373203432b85a702dd0fa6a189b8002ed3173c9eaa6c48a5cb5fd6a390ecc9ad716120f9743f60c226637a476942a80b16261e1b04e79177cdfd194d96
 DIST aerc-0.14.0.tar.gz 332575 BLAKE2B 6d133c9c4cd21da610d271c60dcbc1654a35c7a7592791572283648101de9a60cb0da7b2642fde114acdfa2108e3405f4d2fec884e0f5fa5b7fc096704e5f9ff SHA512 d12502a809c5163bc81bfa3bfbd471a03f4e8e56084e00e7bb52619a8ac6f34df78342c0e8e82d6cdfd4fe1bc0c375dd65366a442875621b20bbd040a9025831
+DIST aerc-0.15.2-deps.tar.xz 46530556 BLAKE2B 7ea7fa49dcb38e9fe54e224092cb3aa8964533d52fb408450188ac8094fb9a14bb093fc731f4dc2bde56fac5d71df36e274bab6563331890510a3b2c0068f94b SHA512 47dceb5b9af3b79c8f67ed25e85bdb5b6d0d10b07a132662d645bba78ba2620f4e14e7901d5c816b6b79695ecdeba8458ba1c0890ef781a6c32325da7c7fa675
+DIST aerc-0.15.2.tar.gz 331263 BLAKE2B 9426fb0b857374913e1da0712e2acab3f155c78b02b5855aac51d460519c31cb768f669da089122402c5e2e555b356334cf755b8ba2dbf9c9c41f3e54c4ef3ff SHA512 8744c6c5ea45fc8ad2ab46367e92d3859fab962843db4329c7655b0afe7b72dbea21dae588d44eab314a31da89d15e5b6543224699556aed31e0b3b9c7b0ddbc

diff --git a/mail-client/aerc/aerc-0.15.2.ebuild b/mail-client/aerc/aerc-0.15.2.ebuild
new file mode 100644
index 000000000000..c54807fff2de
--- /dev/null
+++ b/mail-client/aerc/aerc-0.15.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 2019-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit go-module xdg
+
+DESCRIPTION="Email client for your terminal"
+HOMEPAGE="https://aerc-mail.org"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://git.sr.ht/~rjarry/aerc"
+else
+	SRC_URI="https://git.sr.ht/~rjarry/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
+	KEYWORDS="~amd64 ~ppc64"
+fi
+
+LICENSE="Apache-2.0 BSD BSD-2 MIT"
+SLOT="0"
+IUSE="notmuch"
+
+DEPEND="notmuch? ( net-mail/notmuch:= )"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	>=app-text/scdoc-1.9.7
+	>=dev-lang/go-1.16
+"
+
+src_unpack() {
+	if [[ ${PV} == *9999 ]]; then
+		git-r3_src_unpack
+		go-module_live_vendor
+	else
+		go-module_src_unpack
+	fi
+}
+
+src_compile() {
+	unset LDFLAGS
+	emake GOFLAGS="$(usex notmuch "-tags=notmuch" "")" \
+		PREFIX="${EPREFIX}/usr" VERSION=${PV}  all
+}
+
+src_install() {
+	emake GOFLAGS="$(usex notmuch "-tags=notmuch" "")" \
+		DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" VERSION="${PV}" install
+	einstalldocs
+dodoc CHANGELOG.md
+}
+
+pkg_postinst() {
+	if [[ -z ${REPLACING_VERSIONS} ]]; then
+		elog "If you want to allow your users to activate html email"
+		elog "processing via w3m as shown in the tutorial, make sure you"
+		elog "emerge net-proxy/dante and www-client/w3m"
+	fi
+
+	local v
+	for v in ${REPLACING_VERSIONS}; do
+		if ver_test $v -lt 0.3.0-r1; then
+			elog "The dependencies on net-proxy/dante and www-client/w3m"
+			elog "have been removed since they are optional."
+			elog "Please emerge them before the next --depclean if you"
+			elog "need to use them."
+		fi
+	done
+	xdg_pkg_postinst
+}


             reply	other threads:[~2023-05-25 15:20 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-25 15:20 William Hubbs [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-07 13:46 [gentoo-commits] repo/gentoo:master commit in: mail-client/aerc/ William Hubbs
2024-08-07 13:44 William Hubbs
2024-07-18 17:35 William Hubbs
2024-07-18 17:35 William Hubbs
2024-05-03  9:37 Arthur Zamarin
2024-05-03  9:37 Arthur Zamarin
2023-11-10 17:24 William Hubbs
2023-05-25 15:20 William Hubbs
2023-01-11 19:49 William Hubbs
2023-01-11 19:24 William Hubbs
2022-09-20  4:06 William Hubbs
2022-09-20  2:04 William Hubbs
2022-09-13 17:02 William Hubbs
2022-08-14 20:06 Sam James
2022-07-16 19:38 William Hubbs
2022-05-24 14:03 Joonas Niilola
2022-05-24 14:03 Joonas Niilola
2022-05-11 15:48 William Hubbs
2022-04-03 16:20 William Hubbs
2022-03-19 16:54 William Hubbs
2022-03-06 16:10 William Hubbs
2022-03-06 15:43 William Hubbs
2022-02-27  2:48 William Hubbs
2022-02-11  6:26 William Hubbs
2022-02-11  6:26 William Hubbs
2021-02-21 23:09 William Hubbs
2021-01-11 15:41 William Hubbs
2020-07-11 15:51 William Hubbs
2020-07-11  6:03 Georgy Yakovlev
2020-06-11  2:00 Georgy Yakovlev
2020-05-20  6:16 Georgy Yakovlev
2020-05-20  6:16 Georgy Yakovlev
2020-05-20  6:16 Georgy Yakovlev
2020-03-22 19:07 William Hubbs
2020-03-05  6:09 Georgy Yakovlev
2019-12-11  1:50 Georgy Yakovlev
2019-12-02 20:14 Georgy Yakovlev
2019-12-02 20:14 Georgy Yakovlev
2019-12-02 20:14 Georgy Yakovlev
2019-11-21 23:11 Georgy Yakovlev
2019-08-17  2:06 Georgy Yakovlev
2019-08-01 16:37 Georgy Yakovlev
2019-08-01  7:03 Georgy Yakovlev

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=1685028040.5cee310e58eefc1a0268e83c851f1c9f42687582.williamh@gentoo \
    --to=williamh@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