Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
Date: Wed, 05 Aug 2020 19:48:32
Message-Id: 1596656901.91e3386a89d68dc4872edd313215789f06cbb4d3.conikost@gentoo
1 commit: 91e3386a89d68dc4872edd313215789f06cbb4d3
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 5 19:46:33 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 5 19:48:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91e3386a
7
8 x11-plugins/pidgin-telegram: drop old version
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 x11-plugins/pidgin-telegram/Manifest | 1 -
14 .../pidgin-telegram/pidgin-telegram-1.4.2.ebuild | 52 ----------------------
15 2 files changed, 53 deletions(-)
16
17 diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
18 index 6e29d4800e5..b7e7757ecfc 100644
19 --- a/x11-plugins/pidgin-telegram/Manifest
20 +++ b/x11-plugins/pidgin-telegram/Manifest
21 @@ -1,2 +1 @@
22 -DIST telegram-purple_1.4.2.orig.tar.gz 484790 BLAKE2B d198ce3d1a5f4d226d48b6ff1cdf6f0899a5a1b79ef74c8ac77afa613aae5ec1cf53c8de69cfbab6b2f70df896be0315a90470f2b0da34d1644103be8e7d96ad SHA512 f2f88de8dd4038adaa1a63f2fa3678dd45ddda051be700d6eca563f4bd5b7c8dcb61fdf60bffb01b3fce0ffd01f7b2524686d997bfe4ca8b191cc7b6ce7375a1
23 DIST telegram-purple_1.4.3.orig.tar.gz 491997 BLAKE2B 30d42b34525c6553498c67f8a28cfe789442555a3a135a116195edc982611b8ccae6d7c53006358ebdca679258ae6a40b29a1d2ebb764e082bc2ee77d39584db SHA512 697d070da5c6671dd54a1709b37153d4b569ae1cd19d574a2d92a777a89ebd7884596b35829564a7f6fd49104f5d26e35cbe9634f64c678b5f061af8197fba16
24
25 diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
26 deleted file mode 100644
27 index 5d6f31afd45..00000000000
28 --- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
37 -HOMEPAGE="https://github.com/majn/telegram-purple"
38 -SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
39 -
40 -LICENSE="GPL-2+"
41 -KEYWORDS="amd64 x86"
42 -SLOT="0"
43 -IUSE="gcrypt libressl +nls +png +webp"
44 -
45 -RDEPEND="net-im/pidgin
46 - sys-libs/zlib:=
47 - gcrypt? ( dev-libs/libgcrypt:0= )
48 - !gcrypt? (
49 - libressl? ( dev-libs/libressl:0= )
50 - !libressl? ( dev-libs/openssl:0= )
51 - )
52 - png? ( media-libs/libpng:0= )
53 - webp? ( media-libs/libwebp:= )"
54 -
55 -DEPEND="${RDEPEND}"
56 -
57 -BDEPEND="
58 - nls? ( sys-devel/gettext )
59 - virtual/pkgconfig
60 -"
61 -
62 -S="${WORKDIR}/telegram-purple"
63 -
64 -DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
65 -
66 -src_prepare() {
67 - default
68 -
69 - # Remove '-Werror' to make it compile
70 - find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
71 -}
72 -
73 -src_configure() {
74 - local myeconfargs=(
75 - $(use_enable gcrypt)
76 - $(use_enable nls translation)
77 - $(use_enable png libpng)
78 - $(use_enable webp libwebp)
79 - )
80 -
81 - econf "${myeconfargs[@]}"
82 -}