net-im/profanity: remove in favor of upstream

This commit is contained in:
Anton Schubert 2020-01-25 00:18:33 +01:00
parent 0f799ea207
commit 5589419a35
3 changed files with 0 additions and 71 deletions

View file

@ -1,3 +0,0 @@
DIST profanity-0.7.0.tar.gz 443662 BLAKE2B 9676390ffefc37afae511061924e92b1db3f130c6a05f1822df93831570ea335d0833ab25932ddb63fb18635034b3ae232141fb5ae8d3831a6de6b5531868c12 SHA512 4605b47dd3d16b8e4b6db9a683c6838fb08c128dd53c92cb05279467bb5b926a38fdd47b9fff6765a044f72a07a95433a3883a02b5da695da315a7a5c02dabc0
EBUILD profanity-0.7.0.ebuild 1033 BLAKE2B 49e796b87a2e8e6b1474015005d5851b9c359c4c0b19e043ca80d918da63a75768e35f61eca3559324f8f1f134f75ba8eb51baa8768254b1dd6ceaefde3f0fe4 SHA512 560183871a599740aa79e8cc66e8d067600daba1ebdebe3ead12a4048c6f106940e7e3f13abe789cb20b7a5a6377570a9124a4f4c1467a05e819c41c87ad56a2
MISC metadata.xml 663 BLAKE2B f9dc1cbee6ef8a2b230ab5e6a1be79b28cb4b8e62a6c3afd7c91ad6f1a9588c84156e47fd2e8669acc5a294bd61036e4f01f72a7774480998e2daa370e292307 SHA512 4327be29a4558a4fcec8222ef0b2dc81440978974f6332787428ff07e7fd2ef51cc97f3150e8840b447fb99cde1e959374794da62c8436734d3f1f972af5a607

View file

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>ischluff@mailbox.org</email>
<name>Anton Schubert</name>
</maintainer>
<longdescription>
Profanity is a console based XMPP client written in C using
ncurses and libstrophe, inspired by Irssi.
</longdescription>
<use>
<flag name="gpg">Enable OpenPGP encryption</flag>
<flag name="otr">Enable encrypted conversations using Off-The-Records messaging</flag>
<flag name="omemo">Enable encrypted conversations using OMEMO Multi-End Message and Object Encryption</flag>
</use>
</pkgmetadata>

View file

@ -1,51 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="A console based XMPP client inspired by Irssi"
HOMEPAGE="http://www.profanity.im/"
SRC_URI="https://github.com/profanity-im/profanity/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="libnotify otr gpg xscreensaver omemo"
DEPEND="
dev-libs/expat
dev-libs/glib
dev-libs/libstrophe:=
dev-libs/openssl:0=
net-misc/curl
sys-apps/util-linux
sys-libs/ncurses:=[unicode]
dev-libs/libstrophe
sys-devel/autoconf-archive
gpg? ( app-crypt/gpgme:= )
libnotify? ( x11-libs/libnotify )
otr? ( net-libs/libotr )
omemo? ( net-libs/libsignal-protocol-c )
xscreensaver? (
x11-libs/libXScrnSaver
x11-libs/libX11 )
"
RDEPEND="${DEPEND}"
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_enable libnotify notifications) \
$(use_enable otr) \
$(use_enable omemo) \
$(use_enable gpg pgp) \
$(use_with xscreensaver)
}