mail-client/alot: remove obsolete patch

Closes: https://github.com/gentoo/gentoo/pull/24209
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2022-02-16 15:36:54 +01:00
committed by Conrad Kostecki
parent 3acaa37f28
commit 7ec16c80c1
2 changed files with 1 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -45,7 +45,6 @@ DEPEND="
PATCHES=(
"${FILESDIR}/${PV}-0001-remove-non-working-test.patch"
"${FILESDIR}/${PV}-0002-update-reference-to-envelope-body.patch"
)
distutils_enable_tests setup.py

View File

@@ -1,28 +0,0 @@
From 67a06f5b9afa132a187956d5f28b0470b84a0235 Mon Sep 17 00:00:00 2001
From: Patrick Totzke <patricktotzke@gmail.com>
Date: Sun, 16 Feb 2020 10:24:59 +0000
Subject: [PATCH] Update reference to envelope.body
which now should be body_txt as of e067ea2037c10224645f0cb7ab2e020772e612ac
fixes #1468
---
alot/commands/globals.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index f9dc5812..aa1fd436 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -869,7 +869,7 @@ class ComposeCommand(Command):
mimetype = helper.guess_mimetype(sigcontent)
if mimetype.startswith('text'):
sigcontent = helper.try_decode(sigcontent)
- self.envelope.body += '\n' + sigcontent
+ self.envelope.body_txt += '\n' + sigcontent
else:
ui.notify('could not locate signature: %s' % sig,
priority='error')
--
2.24.1