diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-10-21 16:03:15 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-10-21 16:03:15 +0100 |
commit | b80ebc4dea5609f6644d0d64c5ace579df314923 (patch) | |
tree | de77836ab6ef44e4416e9c68ae3cedf96b49c527 /x11-plugins/enigmail | |
parent | 54c57c0355214cac06d4618d5f9d4b1ae9aeaac3 (diff) |
gentoo auto-resync : 21:10:2023 - 16:03:14
Diffstat (limited to 'x11-plugins/enigmail')
-rw-r--r-- | x11-plugins/enigmail/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/enigmail/enigmail-2.2.4.ebuild | 78 | ||||
-rw-r--r-- | x11-plugins/enigmail/files/enigmail-no_pEp_auto_download.patch | 33 | ||||
-rw-r--r-- | x11-plugins/enigmail/metadata.xml | 8 |
4 files changed, 0 insertions, 123 deletions
diff --git a/x11-plugins/enigmail/Manifest b/x11-plugins/enigmail/Manifest deleted file mode 100644 index 5b189a382755..000000000000 --- a/x11-plugins/enigmail/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX enigmail-no_pEp_auto_download.patch 1356 BLAKE2B 1e3c440e3bcaeed42b3de75130372343b7118ea3dc3c0a421d04a8a8b12a9695ba515b7dc3d566b4a0686c2bf4d12fc72b722ceb0d4dc9985eaeedaf67c90210 SHA512 1b5ff31a7ed8d17224ec915d56ee61e817dd41d035445d16a2b0caedd315215c37d2f98e42597fc599c60a39ba4d276a57c644268d12c2929a89f8802164a3d2 -DIST enigmail-2.2.4.tar.gz 432157 BLAKE2B e6d5eab4cba2cd66669ddf38f8152511606c48ce995be331551a7b403ecbd06967c22702a06e06aa89219b5c905e835ddb4d146c0fc2cb11e1a647e46854dd1f SHA512 bf23f52ed61002b05e2e432a0abd1f576fe6eb97d94ab2241e17be86138cee153d668747f5759b967d9a4977be3dc901ee78ddb168347bdbbfed9229d27f786d -EBUILD enigmail-2.2.4.ebuild 2017 BLAKE2B 473d7880d23a0fbd56abbc468b6182a376f588e54a3aff03561964dfd5dd95e01a86d7850577632ab650ca2dee43626590bcd086f74da278ea001f47511213cf SHA512 5a9e22abf4246aa0cd8532fc1d364b43229c50c3643416d0059d8548534671673dcfa9eb80ee2766407c2b03de3204fa2da4cf4892a644e9916c8f0cfa3e5c49 -MISC metadata.xml 251 BLAKE2B 1f211fdc565c8904700df0e738cc47048bc2c6d26030f9a3aa25391909aba71bc63175bf5b9a375a9721410b1eb4f604ccbcfc84e85dcaad2a15fb5a804caa80 SHA512 8d132cc9d2349cc1d47bb50fb5d8e083debf9a55914e2596e3ac98dbdf2d24f17ff9b85a7f16d7574ef99247c08f7c9940a13b15e7b49b5455b86463ddc6a5c4 diff --git a/x11-plugins/enigmail/enigmail-2.2.4.ebuild b/x11-plugins/enigmail/enigmail-2.2.4.ebuild deleted file mode 100644 index c9283c4c4b69..000000000000 --- a/x11-plugins/enigmail/enigmail-2.2.4.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) - -inherit python-any-r1 - -DESCRIPTION="Mozilla extension to provide GPG support in mail clients" -HOMEPAGE="https://www.enigmail.net/" - -SLOT="0" -LICENSE="MPL-2.0 GPL-3" -IUSE="" -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.code.sf.net/p/enigmail/source" - S="${WORKDIR}/${P}" -else - if [[ ${PV} = *_beta* ]] ; then - SRC_URI="https://www.enigmail.net/download/beta/${P/_/-}.tar.gz" - else - SRC_URI="https://www.enigmail.net/download/source/${P}.tar.gz" - KEYWORDS="~alpha amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux" - fi - S="${WORKDIR}/${PN}" -fi - -RDEPEND=" - ( >=app-crypt/gnupg-2.0 - || ( - app-crypt/pinentry[gtk(-)] - app-crypt/pinentry[qt5(-)] - ) - ) - !<mail-client/thunderbird-78 -" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - app-arch/zip - dev-lang/perl - " - -PATCHES=( "${FILESDIR}/enigmail-no_pEp_auto_download.patch" ) - -src_prepare() { - default - - export MAKEOPTS=-j1 -} - -src_install() { - local build_dir=build-tb - local emid=$(sed -n '/"id":/!d; s/.*\({.*}\).*/\1/; p; q' ${build_dir}/dist/manifest.json) - [[ -n ${emid} ]] || die "Could not scrape EM:ID from install.rdf" - - mv ${build_dir}/enigmail*.xpi ${build_dir}/"${emid}.xpi" || die 'Could not rename XPI to match EM:ID' - - # thunderbird - insinto "/usr/share/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}" - doins ${build_dir}/"${emid}.xpi" -} - -pkg_postinst() { - local peimpl=$(eselect --brief --colour=no pinentry show) - case "${peimpl}" in - *gtk*|*qt*) ;; - *) ewarn "The pinentry front-end currently selected is not one supported by thunderbird." - ewarn "You may be prompted for your password in an inaccessible shell!!" - ewarn "Please use 'eselect pinentry' to select either the gtk or qt front-end" - ;; - esac - if [[ -n ${REPLACING_VERSIONS} ]]; then - elog - elog "Please restart thunderbird in order for them to use" - elog "the newly installed version of enigmail." - fi -} diff --git a/x11-plugins/enigmail/files/enigmail-no_pEp_auto_download.patch b/x11-plugins/enigmail/files/enigmail-no_pEp_auto_download.patch deleted file mode 100644 index 086e00e649ae..000000000000 --- a/x11-plugins/enigmail/files/enigmail-no_pEp_auto_download.patch +++ /dev/null @@ -1,33 +0,0 @@ -From: Daniel Kahn Gillmor <dkg@fifthhorseman.net> -Date: Wed, 7 Mar 2018 11:31:50 +0100 -Subject: Avoid auto-download of pEpEngine (Closes: #891882) - -When pEpEngine is available in debian, enigmail should Depend: or -Recommend: it. In the meantime, we should disable auto-download of -the pEp engine and prefer enigmail. ---- - package/prefs/defaultPrefs.js | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/package/prefs/defaultPrefs.js b/package/prefs/defaultPrefs.js -index a1f031e..10f2c25 100755 ---- a/package/prefs/defaultPrefs.js -+++ b/package/prefs/defaultPrefs.js -@@ -14,7 +14,7 @@ - // 0: force using Enigmail - // 1: automatic mode (use pEp if Enigmail and S/MIME are not configured for any identity) - // 2: force using pEp --pref("extensions.enigmail.juniorMode", 1); -+pref("extensions.enigmail.juniorMode", 0); - - // the last configured Enigmail version - pref("extensions.enigmail.configuredVersion", ""); -@@ -204,7 +204,7 @@ pref("extensions.enigmail.warnDownloadContactKeys", true); - pref("extensions.enigmail.wrapHtmlBeforeSend", true); - - // automatically download pepmda if it is available (without askin user) --pref("extensions.enigmail.pEpAutoDownload", true); -+pref("extensions.enigmail.pEpAutoDownload", false); - - // holds the last result of the last check for pEp updates - pref("extensions.enigmail.pEpLastUpdate", 0); diff --git a/x11-plugins/enigmail/metadata.xml b/x11-plugins/enigmail/metadata.xml deleted file mode 100644 index aef898a0bf82..000000000000 --- a/x11-plugins/enigmail/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>mozilla@gentoo.org</email> - <name>Gentoo Mozilla Team</name> -</maintainer> -</pkgmetadata> |