From e2d4d96699cb4f042a83f3bf8089304f52b4a723 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sun, 11 Jun 2023 18:20:40 -0400 Subject: net-im/mcabber: Delete Bug: https://bugs.gentoo.org/848801 Bug: https://bugs.gentoo.org/903131 Closes: https://bugs.gentoo.org/905954 Signed-off-by: Matt Turner --- net-im/mcabber/Manifest | 1 - net-im/mcabber/files/README.gentoo | 17 ------ net-im/mcabber/mcabber-1.1.2-r1.ebuild | 99 ---------------------------------- net-im/mcabber/mcabber-9999.ebuild | 99 ---------------------------------- net-im/mcabber/metadata.xml | 20 ------- profiles/arch/mips/package.use.mask | 4 -- profiles/package.mask | 6 --- 7 files changed, 246 deletions(-) delete mode 100644 net-im/mcabber/Manifest delete mode 100644 net-im/mcabber/files/README.gentoo delete mode 100644 net-im/mcabber/mcabber-1.1.2-r1.ebuild delete mode 100644 net-im/mcabber/mcabber-9999.ebuild delete mode 100644 net-im/mcabber/metadata.xml diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest deleted file mode 100644 index f7fef12c8c7c..000000000000 --- a/net-im/mcabber/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mcabber-1.1.2.tar.bz2 651528 BLAKE2B d2160409d3a6e3c1a579bd1259438b11fae79612919a202a69a13c98c77fb5dbe4bc685939783f2a454ad5796c7d7f93e31d5fc92d96f2c6cc03e4efd4169f74 SHA512 bf53d593e84a4b4b2cf0230a4d94ea75f55008e3c2a839af5839519151209a61cce1685f9db14b65f5c4fa438bfabfeb25eb8e78e666b092c5c66af249788106 diff --git a/net-im/mcabber/files/README.gentoo b/net-im/mcabber/files/README.gentoo deleted file mode 100644 index dc394e6e5a4a..000000000000 --- a/net-im/mcabber/files/README.gentoo +++ /dev/null @@ -1,17 +0,0 @@ -MCabber requires you to create a subdirectory .mcabber in your home -directory and to place a configuration file there. -An example mcabberrc was installed as part of the documentation. -To create a new mcabberrc based on the example mcabberrc, execute the -following commands: - - mkdir -p ~/.mcabber - bzcat /usr/share/doc/mcabber*/mcabberrc.example.bz2 > ~/.mcabber/mcabberrc - -Then edit ~/.mcabber/mcabberrc with your favorite editor. - -See the CONFIGURATION FILE and FILES sections of the mcabber -manual page (section 1) for more information. - -MCabber supports PGP encryption of messages. See README_PGP.txt for details. - -Check out /usr/share/mcabber/ for contributed themes and event scripts. diff --git a/net-im/mcabber/mcabber-1.1.2-r1.ebuild b/net-im/mcabber/mcabber-1.1.2-r1.ebuild deleted file mode 100644 index bd5a83f961ef..000000000000 --- a/net-im/mcabber/mcabber-1.1.2-r1.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit readme.gentoo-r1 - -DESCRIPTION="A small Jabber console client with various features, like MUC, SSL, PGP" -HOMEPAGE="http://mcabber.com/" - -if [[ "${PV}" == 9999 ]]; then - inherit mercurial - EHG_REPO_URI="https://mcabber.com/hg/" - EHG_CHECKOUT_DIR="${WORKDIR}" - EHG_BOOTSTRAP="autogen.sh" - S="${WORKDIR}/${PN}" -else - SRC_URI="http://mcabber.com/files/${P}.tar.bz2" - KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -fi - -LICENSE="GPL-2" -SLOT="0" - -IUSE="aspell crypt idn otr spell ssl vim-syntax" - -LANGS="cs de fr it nl pl ru uk" -# localized help versions are installed only, when L10N var is set -for i in ${LANGS}; do - IUSE="${IUSE} l10n_${i}" -done; - -RDEPEND="crypt? ( app-crypt/gpgme:= ) - otr? ( >=net-libs/libotr-3.1.0 ) - aspell? ( app-text/aspell ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) - idn? ( net-dns/libidn:= ) - spell? ( app-text/enchant:0 ) - dev-libs/glib:2 - net-libs/libnsl:0= - sys-libs/ncurses:0= - >=net-libs/loudmouth-1.4.3-r1[ssl?]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt ) - -pkg_setup() { - if use aspell && use spell; then - ewarn "NOTE: You have both USE flags 'aspell' and 'spell' enabled, enchant (USE flag 'spell') will be preferred." - fi -} - -src_configure() { - econf \ - --enable-modules \ - $(use_enable crypt gpgme) \ - $(use_enable otr) \ - $(use_enable aspell) \ - $(use_enable spell enchant) \ - $(use_with idn libidn) -} - -src_install() { - default - - # clean unneeded language documentation - for i in ${LANGS}; do - use l10n_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i} - done - - # contrib themes - insinto /usr/share/${PN}/themes - doins "${S}"/contrib/themes/* - - # contrib generic scripts - exeinto /usr/share/${PN}/scripts - doexe "${S}"/contrib/*.{pl,py} - - # contrib event scripts - exeinto /usr/share/${PN}/scripts/events - doexe "${S}"/contrib/events/* - - if use vim-syntax; then - cd contrib/vim/ || die - - insinto /usr/share/vim/vimfiles/syntax - doins mcabber_log-syntax.vim - - insinto /usr/share/vim/vimfiles/ftdetect - doins mcabber_log-ftdetect.vim - fi - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog -} diff --git a/net-im/mcabber/mcabber-9999.ebuild b/net-im/mcabber/mcabber-9999.ebuild deleted file mode 100644 index eb94b6002a7b..000000000000 --- a/net-im/mcabber/mcabber-9999.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit readme.gentoo-r1 - -DESCRIPTION="A small Jabber console client with various features, like MUC, SSL, PGP" -HOMEPAGE="http://mcabber.com/" - -if [[ "${PV}" == 9999 ]]; then - inherit mercurial - EHG_REPO_URI="https://mcabber.com/hg/" - EHG_CHECKOUT_DIR="${WORKDIR}" - EHG_BOOTSTRAP="autogen.sh" - S="${WORKDIR}/${PN}" -else - SRC_URI="http://mcabber.com/files/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -fi - -LICENSE="GPL-2" -SLOT="0" - -IUSE="aspell crypt idn otr spell ssl vim-syntax" - -LANGS="cs de fr it nl pl ru uk" -# localized help versions are installed only, when L10N var is set -for i in ${LANGS}; do - IUSE="${IUSE} l10n_${i}" -done; - -RDEPEND="crypt? ( app-crypt/gpgme:= ) - otr? ( >=net-libs/libotr-3.1.0 ) - aspell? ( app-text/aspell ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) - idn? ( net-dns/libidn:= ) - spell? ( app-text/enchant:0 ) - dev-libs/glib:2 - net-libs/libnsl:0= - sys-libs/ncurses:0= - >=net-libs/loudmouth-1.4.3-r1[ssl?]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt ) - -pkg_setup() { - if use aspell && use spell; then - ewarn "NOTE: You have both USE flags 'aspell' and 'spell' enabled, enchant (USE flag 'spell') will be preferred." - fi -} - -src_configure() { - econf \ - --enable-modules \ - $(use_enable crypt gpgme) \ - $(use_enable otr) \ - $(use_enable aspell) \ - $(use_enable spell enchant) \ - $(use_with idn libidn) -} - -src_install() { - default - - # clean unneeded language documentation - for i in ${LANGS}; do - use l10n_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i} - done - - # contrib themes - insinto /usr/share/${PN}/themes - doins "${S}"/contrib/themes/* - - # contrib generic scripts - exeinto /usr/share/${PN}/scripts - doexe "${S}"/contrib/*.{pl,py} - - # contrib event scripts - exeinto /usr/share/${PN}/scripts/events - doexe "${S}"/contrib/events/* - - if use vim-syntax; then - cd contrib/vim/ || die - - insinto /usr/share/vim/vimfiles/syntax - doins mcabber_log-syntax.vim - - insinto /usr/share/vim/vimfiles/ftdetect - doins mcabber_log-ftdetect.vim - fi - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog -} diff --git a/net-im/mcabber/metadata.xml b/net-im/mcabber/metadata.xml deleted file mode 100644 index afd4361828d1..000000000000 --- a/net-im/mcabber/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - MCabber is a small Jabber console client that features - such as GPG encryption, SSL support, MUC (Multi-User Chat) support, - history logging, commands completion, and external actions triggers. - - - Adds support for app-text/aspell spell - checker. - Enable encrypted conversations using Off-The-Records - messaging - - - - McKael/mcabber - - diff --git a/profiles/arch/mips/package.use.mask b/profiles/arch/mips/package.use.mask index 052fb6544943..f3a1ae25b7b5 100644 --- a/profiles/arch/mips/package.use.mask +++ b/profiles/arch/mips/package.use.mask @@ -169,10 +169,6 @@ app-text/tesseract webp # Needs dev-ruby/builder, which isn't keyworded dev-ruby/rubygems server -# Wolfram Schlich (2007-11-20) -# dependency can't be fulfilled at the moment -net-im/mcabber otr - # Jim Ramsay (2007-09-07) # app-admin/gkrellm may pull in hddtemp, which is not yet available here app-admin/gkrellm hddtemp diff --git a/profiles/package.mask b/profiles/package.mask index b4003fe62bf1..2841d4c8908d 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -277,12 +277,6 @@ app-text/stardict # reverse dependencies are fixed. Tracker bug is bug #906077. =dev-libs/libfmt-10* -# Matt Turner (2023-05-08) -# Package is unmaintained and appears quite dead. Last release in 2020. Broken -# with stable glib-2.76. Depends on app-text/enchant:0. -# Bug #905954. Removal on 2023-06-08 -net-im/mcabber - # Michał Górny (2023-05-05) # The Gentoo packages are severely out of date, and they haven't been # ported to Python 3.11. They are hard to keep working, and there -- cgit v1.2.3-65-gdbad