commit: 686a0f671bd21ed11d3671dbc17593436d323109 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> AuthorDate: Mon Dec 13 16:30:38 2021 +0000 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> CommitDate: Mon Dec 13 16:30:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=686a0f67
mail-client/cone: treeclean Bug: https://bugs.gentoo.org/764719 Closes: https://bugs.gentoo.org/808567 Closes: https://bugs.gentoo.org/807292 Closes: https://bugs.gentoo.org/739862 Closes: https://bugs.gentoo.org/690164 Closes: https://bugs.gentoo.org/714192 Closes: https://bugs.gentoo.org/724670 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org> mail-client/cone/Manifest | 1 - mail-client/cone/cone-1.0-r1.ebuild | 73 ----------------------- mail-client/cone/files/cone-1.0-no-spelling.patch | 46 -------------- mail-client/cone/metadata.xml | 8 --- profiles/package.mask | 5 -- 5 files changed, 133 deletions(-) diff --git a/mail-client/cone/Manifest b/mail-client/cone/Manifest deleted file mode 100644 index 27d20280f4ce..000000000000 --- a/mail-client/cone/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST cone-1.0.tar.bz2 3793288 BLAKE2B e2c8aa91adfff77d3f0207a3caca5d13ebae8c9455402c296a98364708acd3d4138ea4642044b2dfe396eaef18c3b90ebf0ef3702bc73351a4317219a4c28863 SHA512 6fc30158cebed62b0598787d53e1936b50a32b6590266e93dbacbd63371d4fa8e43ffe95e0f4ee51991e2d892b26c1531b563203e45108815f05a091b7051161 diff --git a/mail-client/cone/cone-1.0-r1.ebuild b/mail-client/cone/cone-1.0-r1.ebuild deleted file mode 100644 index 2333400cc636..000000000000 --- a/mail-client/cone/cone-1.0-r1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools - -DESCRIPTION="CONE: COnsole News reader and Emailer" -HOMEPAGE="https://www.courier-mta.org/cone/" -SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="crypt fam gnutls idn ipv6 ldap spell" - -RDEPEND=" - dev-libs/libxml2 - sys-libs/ncurses:0= - >=net-libs/courier-unicode-2:= - spell? ( app-text/aspell ) - crypt? ( >=app-crypt/gnupg-1.0.4 ) - fam? ( virtual/fam ) - gnutls? ( - net-libs/gnutls:0= - dev-libs/libgcrypt:0= - dev-libs/libgpg-error - ) - !gnutls? ( >=dev-libs/openssl-0.9.6:0= ) - idn? ( net-dns/libidn:0= ) - ipv6? ( net-dns/libidn:0= ) - ldap? ( net-nds/openldap )" -DEPEND="${RDEPEND} - dev-lang/perl" - -PATCHES=( "${FILESDIR}"/${P}-no-spelling.patch ) -DOCS=( AUTHORS ChangeLog INSTALL NEWS README ) - -src_prepare() { - default - - # move local macro to m4 and run eautoreconf - mkdir "${S}"/m4 || die - sed -n -e '/# AC_PROG_SYSCONFTOOL/,+33 p' "${S}"/aclocal.m4 > m4/sysconftool.m4 || die - sed -i -e '/^SUBDIRS/i ACLOCAL_AMFLAGS = -I m4' "${S}"/Makefile.am || die - - eautoreconf -} - -src_configure() { - local myeconfargs=( - --with-notice=unicode - --with-spellcheck=$(usex spell aspell none) - $(use_with ldap ldapaddressbook) - $(use_with gnutls) - $(use_with idn libidn) - $(use_with ipv6) - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - emake DESTDIR="${D}" install-configure -} - -pkg_postinst() { - if [[ ${REPLACING_VERSIONS} ]]; then - elog "See the \"Upgrading from version 0.96 and earlier\" section in" - elog "${EROOT}/usr/share/doc/${PF}/INSTALL for information on updating" - elog "older installs." - fi -} diff --git a/mail-client/cone/files/cone-1.0-no-spelling.patch b/mail-client/cone/files/cone-1.0-no-spelling.patch deleted file mode 100644 index b8985b2a3c51..000000000000 --- a/mail-client/cone/files/cone-1.0-no-spelling.patch +++ /dev/null @@ -1,46 +0,0 @@ -Allow spellchecking support to be disabled. - ---- cone-1.0/cone/configure.ac -+++ cone-1.0/cone/configure.ac -@@ -183,8 +183,10 @@ - ALLSPELLOBJ='spellcheckerPspell.$(OBJEXT)'" $ALLSPELLOBJ" - fi - --AC_ARG_WITH(spellcheck, [ --with-spellcheck=pspell Use pspell for spell checking -- --with-spellcheck=aspell Use aspell for spell checking], [ -+AC_ARG_WITH(spellcheck, [ -+ --with-spellcheck=pspell Use pspell for spell checking -+ --with-spellcheck=aspell Use aspell for spell checking -+ --with-spellcheck=none Disable spell checking], [ - - case "$withval" in - pspell) -@@ -200,6 +202,10 @@ - AC_MSG_ERROR(aspell library not found) - fi - ;; -+none) -+ PSPELL="none" -+ ASPELL="none" -+ ;; - *) - AC_MSG_ERROR(Invalid --with-spellcheck option) - ;; -@@ -232,10 +238,13 @@ - SPELL_OBJ='spellcheckerPspell.$(OBJEXT)' - SPELL_LIB='-lpspell' - else -- AC_MSG_WARN(---------------------------------------------------------------) -- AC_MSG_WARN(Neither pspell nor aspell was found -- disabling spell checking) -- AC_MSG_WARN(---------------------------------------------------------------) -- sleep 5 -+ if test "$ASPELL" != "none" && test "$PSPELL" != "none" -+ then -+ AC_MSG_WARN(---------------------------------------------------------------) -+ AC_MSG_WARN(Neither pspell nor aspell was found -- disabling spell checking) -+ AC_MSG_WARN(---------------------------------------------------------------) -+ sleep 5 -+ fi - SPELL_OBJ='spellcheckerNone.$(OBJEXT)' - SPELL_LIB='' - fi diff --git a/mail-client/cone/metadata.xml b/mail-client/cone/metadata.xml deleted file mode 100644 index 0d4d60b579fa..000000000000 --- a/mail-client/cone/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-needed --> - <upstream> - <remote-id type="sourceforge">courier</remote-id> - </upstream> -</pkgmetadata> diff --git a/profiles/package.mask b/profiles/package.mask index 7ca279a4d1c3..873de255c051 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -394,11 +394,6 @@ dev-db/db-je # Removal in 30 days. net-analyzer/neti -# John Helmert III <[email protected]> (2021-11-13) -# Unmaintained in Gentoo, open security bug, many unfixed otther -# bugs. Removal on 2021-12-13, bug #764719. -mail-client/cone - # Mart Raudsepp <[email protected]> (2021-11-11) # Needs testing to ensure valac-0.54 works for existing packages >=dev-libs/vala-common-0.53
