diff options
author | 2024-08-05 00:12:55 -0400 | |
---|---|---|
committer | 2024-08-05 00:12:55 -0400 | |
commit | 9d6a33f10eecf7c0710d2c5fb177003c5e1bf467 (patch) | |
tree | b01285b88d6f2d65760cc805f6a7b35518ffdc5c /net-im | |
parent | media-sound/musescore: mark as LTO-unsafe (diff) | |
download | gentoo-9d6a33f10eecf7c0710d2c5fb177003c5e1bf467.tar.gz gentoo-9d6a33f10eecf7c0710d2c5fb177003c5e1bf467.tar.bz2 gentoo-9d6a33f10eecf7c0710d2c5fb177003c5e1bf467.zip |
net-im/profanity: drop old unstable revision
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/profanity/profanity-0.14.0-r1.ebuild | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/net-im/profanity/profanity-0.14.0-r1.ebuild b/net-im/profanity/profanity-0.14.0-r1.ebuild deleted file mode 100644 index 7ffbb30da303..000000000000 --- a/net-im/profanity/profanity-0.14.0-r1.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..11} ) -inherit python-single-r1 - -DESCRIPTION="A console based XMPP client inspired by Irssi" -HOMEPAGE="https://profanity-im.github.io" -SRC_URI=" - https://github.com/profanity-im/profanity/releases/download/${PV}/${P}.tar.gz - https://github.com/profanity-im/profanity/commit/122434a.patch - -> ${PN}-0.14.0-ox-carbons.patch - https://github.com/profanity-im/profanity/commit/2ed6211c.patch - -> ${PN}-0.14.0-xscreensaver.patch -" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64" -IUSE="libnotify omemo omemo-qrcode otr gpg test xscreensaver python" -RESTRICT="!test? ( test )" -REQUIRED_USE="omemo-qrcode? ( omemo ) python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - >=app-accessibility/at-spi2-core-2.46.0 - dev-db/sqlite:3 - dev-libs/glib:2 - >=dev-libs/libstrophe-0.12.3:= - media-libs/harfbuzz:= - net-misc/curl - sys-libs/ncurses:=[unicode(+)] - sys-libs/readline:= - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:3 - x11-libs/pango - x11-misc/shared-mime-info - gpg? ( app-crypt/gpgme:= ) - libnotify? ( x11-libs/libnotify ) - omemo? ( - dev-libs/libgcrypt:= - net-libs/libsignal-protocol-c - ) - omemo-qrcode? ( media-gfx/qrencode:= ) - otr? ( net-libs/libotr ) - python? ( ${PYTHON_DEPS} ) - xscreensaver? ( - x11-libs/libXScrnSaver - x11-libs/libX11 - ) -" -DEPEND=" - ${RDEPEND} - test? ( dev-util/cmocka ) - python? ( - $(python_gen_cond_dep ' - dev-python/cython[${PYTHON_USEDEP}] - ') - ) -" - -PATCHES=( - "${DISTDIR}/${PN}-0.14.0-ox-carbons.patch" - "${DISTDIR}/${PN}-0.14.0-xscreensaver.patch" -) - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_configure() { - local myeconfargs=( - --enable-gdk-pixbuf - $(use_enable libnotify notifications) - $(use_enable omemo) - $(use_enable omemo-qrcode) - $(use_enable otr) - $(use_enable python python-plugins) - $(use_enable gpg pgp) - $(use_with xscreensaver) - ) - - econf "${myeconfargs[@]}" -} - -src_compile() { - emake CFLAGS="${CFLAGS}" -} - -src_install() { - default - - find "${ED}" -type f -name '*.la' -delete || die -} |