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: Sun, 22 Aug 2021 14:02:22
Message-Id: 1629640778.7ad498a468c9e52b74606062c4dabc48c065db4a.conikost@gentoo
1 commit: 7ad498a468c9e52b74606062c4dabc48c065db4a
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 22 13:59:38 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 22 13:59:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad498a4
7
8 x11-plugins/pidgin-telegram: drop old version
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
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.6.ebuild | 50 ----------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
18 index 8ef79638a3a..865cd3ff5af 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.6.orig.tar.gz 497757 BLAKE2B 1f666aaf4ef1913420cf735e3d85e1d91be8a2f07932785d55bc0be37e2cd8cabaf6b0be2b520afafc6636a692086be180d3bd4438215f8b14ae867da9891e18 SHA512 bf3e14a2d1dec7382833011ea891ba5bce81820766b3d6adee582bf0257baadeb7aa7eab7aa6e20adf8dd7728eb653db35b1d8f56bfffe7a92f9bf7506401e6e
23 DIST telegram-purple_1.4.7.orig.tar.gz 498573 BLAKE2B 37f741f1e2106db55eaadab70e2bf226609ebd85fa3df28a60b686e207c341f7279ea36ef87137d465b5bedac63e6ec0388714171dd5a594fb28ae02f66bebc4 SHA512 ae3032b33bd2a20b58b2d66c83fbc405f43c38c0e93b00394ad3165b0bc5d5aba02a8e1946872e4bd082894679737fa20f3e1991e9bb16c3c3aba4c7abbbf7d8
24
25 diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
26 deleted file mode 100644
27 index 7dac50fdb5b..00000000000
28 --- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 1999-2021 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 -S="${WORKDIR}/telegram-purple"
40 -
41 -LICENSE="GPL-2+"
42 -KEYWORDS="amd64 x86"
43 -SLOT="0"
44 -IUSE="gcrypt +nls +png +webp"
45 -
46 -RDEPEND="
47 - net-im/pidgin
48 - sys-libs/zlib:=
49 - gcrypt? ( dev-libs/libgcrypt:0= )
50 - !gcrypt? ( dev-libs/openssl:0= )
51 - png? ( media-libs/libpng:0= )
52 - webp? ( media-libs/libwebp:= )
53 -"
54 -
55 -DEPEND="${RDEPEND}"
56 -
57 -BDEPEND="
58 - nls? ( sys-devel/gettext )
59 - virtual/pkgconfig
60 -"
61 -
62 -DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
63 -
64 -src_prepare() {
65 - default
66 -
67 - # Remove '-Werror' to make it compile
68 - find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
69 -}
70 -
71 -src_configure() {
72 - local myeconfargs=(
73 - $(use_enable gcrypt)
74 - $(use_enable nls translation)
75 - $(use_enable png libpng)
76 - $(use_enable webp libwebp)
77 - )
78 -
79 - econf "${myeconfargs[@]}"
80 -}