* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2018-06-20 8:21 Michał Górny
0 siblings, 0 replies; 28+ messages in thread
From: Michał Górny @ 2018-06-20 8:21 UTC (permalink / raw
To: gentoo-commits
commit: a447990a612bc157f3efddeb248c11dbe4446ba0
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Tue Jun 19 18:26:48 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jun 20 08:21:25 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a447990a
x11-plugins/pidgin-telegram: New package
Closes: https://bugs.gentoo.org/529908
Closes: https://github.com/gentoo/gentoo/pull/7777
Package-Manager: Portage-2.3.40, Repoman-2.3.9
x11-plugins/pidgin-telegram/Manifest | 1 +
x11-plugins/pidgin-telegram/metadata.xml | 20 ++++++++++
.../pidgin-telegram/pidgin-telegram-1.3.1.ebuild | 44 ++++++++++++++++++++++
3 files changed, 65 insertions(+)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
new file mode 100644
index 00000000000..eb67b1be45e
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -0,0 +1 @@
+DIST telegram-purple_1.3.1.orig.tar.gz 509083 BLAKE2B 5842fac81fa1cd9d2681fe5ac790f0be227dadc49d2031a1682da74f62ae163c7ee9d7bb8f421a974bb0d3ea135b1d44983c976b1afbb81758a3953e89f9c68a SHA512 3d088ea8b77aeba1d7f26dcd3223420bcd50372d610368b8786eca0cbdb0a11bcc2d93f7948348c5e0305479703f74e5b5ad8e06e782e2df119cfd73a4e4a63e
diff --git a/x11-plugins/pidgin-telegram/metadata.xml b/x11-plugins/pidgin-telegram/metadata.xml
new file mode 100644
index 00000000000..c8fb36cb1a7
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>ck+gentoo@bl4ckb0x.de</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription>
+ This plugin adds support for the Telegram messenger protocol,
+ which can be used directly in net-im/pidgin.
+ Telegram is a cloud-based instant messaging and voice over IP service.
+ </longdescription>
+ <use>
+ <flag name="gcrypt">Use dev-libs/libgcrypt instead of dev-libs/openssl.</flag>
+ </use>
+</pkgmetadata>
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
new file mode 100644
index 00000000000..90999385581
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
+HOMEPAGE="https://github.com/majn/telegram-purple"
+SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="gcrypt +nls +webp"
+
+RDEPEND="net-im/pidgin
+ sys-libs/zlib:=
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ !gcrypt? ( dev-libs/openssl:0= )
+ nls? ( sys-devel/gettext )
+ webp? ( media-libs/libwebp:= )"
+
+DEPEND="virtual/pkgconfig
+ ${RDEPEND}"
+
+S="${WORKDIR}/telegram-purple"
+
+DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
+
+src_prepare() {
+ default
+
+ # Remove '-Werror' to make it compile
+ find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable gcrypt)
+ $(use_enable nls translation)
+ $(use_enable webp libwebp)
+ )
+
+ econf "${myeconfargs[@]}"
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2018-09-28 10:05 Michał Górny
0 siblings, 0 replies; 28+ messages in thread
From: Michał Górny @ 2018-09-28 10:05 UTC (permalink / raw
To: gentoo-commits
commit: bc7fa446c66da3e731c77c66eae051a9325e891a
Author: Stefan Strogin <stefan.strogin <AT> gmail <DOT> com>
AuthorDate: Wed Sep 19 16:12:02 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep 28 10:05:03 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc7fa446
x11-plugins/pidgin-telegram: add USE libressl
Closes: https://bugs.gentoo.org/666562
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Stefan Strogin <stefan.strogin <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/9915
x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
index 90999385581..8292344ef65 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
@@ -10,12 +10,15 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
LICENSE="GPL-2+"
KEYWORDS="~amd64 ~x86"
SLOT="0"
-IUSE="gcrypt +nls +webp"
+IUSE="gcrypt libressl +nls +webp"
RDEPEND="net-im/pidgin
sys-libs/zlib:=
gcrypt? ( dev-libs/libgcrypt:0= )
- !gcrypt? ( dev-libs/openssl:0= )
+ !gcrypt? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
nls? ( sys-devel/gettext )
webp? ( media-libs/libwebp:= )"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2018-11-08 22:49 Patrice Clement
0 siblings, 0 replies; 28+ messages in thread
From: Patrice Clement @ 2018-11-08 22:49 UTC (permalink / raw
To: gentoo-commits
commit: 13813ec13f56dc45d52c74298ccb09537bb1bde5
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sat Oct 27 10:48:04 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 8 22:41:31 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13813ec1
x11-plugins/pidgin-telegram: bump to EAPI=7.
Also updated metadata.xml.
Closes: https://bugs.gentoo.org/669764
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10252
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
x11-plugins/pidgin-telegram/metadata.xml | 4 ++
.../pidgin-telegram-1.3.1-r1.ebuild | 51 ++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/x11-plugins/pidgin-telegram/metadata.xml b/x11-plugins/pidgin-telegram/metadata.xml
index c8fb36cb1a7..e23b905712c 100644
--- a/x11-plugins/pidgin-telegram/metadata.xml
+++ b/x11-plugins/pidgin-telegram/metadata.xml
@@ -14,6 +14,10 @@
which can be used directly in net-im/pidgin.
Telegram is a cloud-based instant messaging and voice over IP service.
</longdescription>
+ <upstream>
+ <bugs-to>https://github.com/majn/telegram-purple/issues</bugs-to>
+ <remote-id type="github">majn/telegram-purple</remote-id>
+ </upstream>
<use>
<flag name="gcrypt">Use dev-libs/libgcrypt instead of dev-libs/openssl.</flag>
</use>
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1-r1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1-r1.ebuild
new file mode 100644
index 00000000000..9624bde7b85
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
+HOMEPAGE="https://github.com/majn/telegram-purple"
+SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="gcrypt libressl +nls +webp"
+
+RDEPEND="
+ net-im/pidgin
+ sys-libs/zlib:=
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ !gcrypt? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ nls? ( sys-devel/gettext )
+ webp? ( media-libs/libwebp:= )
+"
+
+DEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/telegram-purple"
+
+DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
+
+src_prepare() {
+ default
+
+ # Remove '-Werror' to make it compile
+ find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable gcrypt)
+ $(use_enable nls translation)
+ $(use_enable webp libwebp)
+ )
+
+ econf "${myeconfargs[@]}"
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2018-11-08 22:49 Patrice Clement
0 siblings, 0 replies; 28+ messages in thread
From: Patrice Clement @ 2018-11-08 22:49 UTC (permalink / raw
To: gentoo-commits
commit: e8da0c17f4ccf96cedd87ed8c9e1b42bd6ec92d2
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sat Oct 27 14:40:11 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 8 22:41:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8da0c17
x11-plugins/pidgin-telegram: drop old version.
Bug: https://bugs.gentoo.org/669764
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
.../pidgin-telegram/pidgin-telegram-1.3.1.ebuild | 47 ----------------------
1 file changed, 47 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
deleted file mode 100644
index 8292344ef65..00000000000
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
-HOMEPAGE="https://github.com/majn/telegram-purple"
-SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
-
-LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="gcrypt libressl +nls +webp"
-
-RDEPEND="net-im/pidgin
- sys-libs/zlib:=
- gcrypt? ( dev-libs/libgcrypt:0= )
- !gcrypt? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- nls? ( sys-devel/gettext )
- webp? ( media-libs/libwebp:= )"
-
-DEPEND="virtual/pkgconfig
- ${RDEPEND}"
-
-S="${WORKDIR}/telegram-purple"
-
-DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
-
-src_prepare() {
- default
-
- # Remove '-Werror' to make it compile
- find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable gcrypt)
- $(use_enable nls translation)
- $(use_enable webp libwebp)
- )
-
- econf "${myeconfargs[@]}"
-}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2018-11-10 7:58 Michał Górny
0 siblings, 0 replies; 28+ messages in thread
From: Michał Górny @ 2018-11-10 7:58 UTC (permalink / raw
To: gentoo-commits
commit: 53b3ef820d6e31261d1e530fbd0c9f50796d51d3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 10 07:57:06 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 10 07:57:56 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53b3ef82
x11-plugins/pidgin-telegram: Revert "add USE libressl"
Bug: https://bugs.gentoo.org/666562
Reverts: bc7fa446c66da3e731c77c66eae051a9325e891a
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1-r1.ebuild | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1-r1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1-r1.ebuild
index 9624bde7b85..ca6954389b7 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1-r1.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1-r1.ebuild
@@ -10,16 +10,13 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
LICENSE="GPL-2+"
KEYWORDS="~amd64 ~x86"
SLOT="0"
-IUSE="gcrypt libressl +nls +webp"
+IUSE="gcrypt +nls +webp"
RDEPEND="
net-im/pidgin
sys-libs/zlib:=
gcrypt? ( dev-libs/libgcrypt:0= )
- !gcrypt? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
+ !gcrypt? ( dev-libs/openssl:0= )
nls? ( sys-devel/gettext )
webp? ( media-libs/libwebp:= )
"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2019-04-09 22:21 Patrice Clement
0 siblings, 0 replies; 28+ messages in thread
From: Patrice Clement @ 2019-04-09 22:21 UTC (permalink / raw
To: gentoo-commits
commit: f925c24abc27078c1727de0c0a20d93cd2159000
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Fri Mar 8 19:34:51 2019 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Apr 9 22:21:24 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f925c24a
x11-plugins/pidgin-telegram: bump to version 1.4.1.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/11312
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
x11-plugins/pidgin-telegram/Manifest | 1 +
.../pidgin-telegram/pidgin-telegram-1.4.1.ebuild | 50 ++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
index eb67b1be45e..ea3c35b307a 100644
--- a/x11-plugins/pidgin-telegram/Manifest
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -1 +1,2 @@
DIST telegram-purple_1.3.1.orig.tar.gz 509083 BLAKE2B 5842fac81fa1cd9d2681fe5ac790f0be227dadc49d2031a1682da74f62ae163c7ee9d7bb8f421a974bb0d3ea135b1d44983c976b1afbb81758a3953e89f9c68a SHA512 3d088ea8b77aeba1d7f26dcd3223420bcd50372d610368b8786eca0cbdb0a11bcc2d93f7948348c5e0305479703f74e5b5ad8e06e782e2df119cfd73a4e4a63e
+DIST telegram-purple_1.4.1.orig.tar.gz 482389 BLAKE2B 84c753c5dcdb8e66d1ec56d5307d3489780e932032f382e2d026ad4b6529d4c161e677483a794e56e6388cd76164d9b93955828f5cfc7b199ff8fa8314ad8951 SHA512 335da688021d2401122065f9089b86b6ccba6e812b06d8d8bc96e0defbbe693b35c1f981f5bf772ebc2577ab60ac7e97ce08d72361bcd17b27fc11740084ff1a
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
new file mode 100644
index 00000000000..dd5f1391d74
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
+HOMEPAGE="https://github.com/majn/telegram-purple"
+SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="gcrypt libressl +nls +webp"
+
+RDEPEND="net-im/pidgin
+ sys-libs/zlib:=
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ !gcrypt? (
+ libressl? ( dev-libs/libressl:0= )
+ !libressl? ( dev-libs/openssl:0= )
+ )
+ webp? ( media-libs/libwebp:= )"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+ nls? ( sys-devel/gettext )
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/telegram-purple"
+
+DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
+
+src_prepare() {
+ default
+
+ # Remove '-Werror' to make it compile
+ find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable gcrypt)
+ $(use_enable nls translation)
+ $(use_enable webp libwebp)
+ )
+
+ econf "${myeconfargs[@]}"
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2019-07-23 10:15 Agostino Sarubbo
0 siblings, 0 replies; 28+ messages in thread
From: Agostino Sarubbo @ 2019-07-23 10:15 UTC (permalink / raw
To: gentoo-commits
commit: cd46900444b257d687d2b54644d0e408c2236ebc
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 23 10:15:11 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jul 23 10:15:11 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd469004
x11-plugins/pidgin-telegram: amd64 stable wrt bug #690402
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
index dd5f1391d74..351cfeb484b 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/majn/telegram-purple"
SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
SLOT="0"
IUSE="gcrypt libressl +nls +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2019-07-24 8:19 Agostino Sarubbo
0 siblings, 0 replies; 28+ messages in thread
From: Agostino Sarubbo @ 2019-07-24 8:19 UTC (permalink / raw
To: gentoo-commits
commit: cf8239d0ebf088f2b1dd320f01c94e5882eb60d8
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 24 08:18:20 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 24 08:18:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf8239d0
x11-plugins/pidgin-telegram: x86 stable wrt bug #690402
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
index 351cfeb484b..21c27ac8d19 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/majn/telegram-purple"
SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
LICENSE="GPL-2+"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
SLOT="0"
IUSE="gcrypt libressl +nls +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2019-09-23 17:09 Joonas Niilola
0 siblings, 0 replies; 28+ messages in thread
From: Joonas Niilola @ 2019-09-23 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 6f33e5ab53e1d6b6444cb7a4b820c3a2bb5b3e94
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sat Sep 21 21:11:34 2019 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Sep 23 17:08:51 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f33e5ab
x11-plugins/pidgin-telegram: bump to version 1.4.2
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/13001
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
x11-plugins/pidgin-telegram/Manifest | 1 +
.../pidgin-telegram/pidgin-telegram-1.4.2.ebuild | 50 ++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
index bac3780166b..ab08164bedf 100644
--- a/x11-plugins/pidgin-telegram/Manifest
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -1 +1,2 @@
DIST telegram-purple_1.4.1.orig.tar.gz 482389 BLAKE2B 84c753c5dcdb8e66d1ec56d5307d3489780e932032f382e2d026ad4b6529d4c161e677483a794e56e6388cd76164d9b93955828f5cfc7b199ff8fa8314ad8951 SHA512 335da688021d2401122065f9089b86b6ccba6e812b06d8d8bc96e0defbbe693b35c1f981f5bf772ebc2577ab60ac7e97ce08d72361bcd17b27fc11740084ff1a
+DIST telegram-purple_1.4.2.orig.tar.gz 484790 BLAKE2B d198ce3d1a5f4d226d48b6ff1cdf6f0899a5a1b79ef74c8ac77afa613aae5ec1cf53c8de69cfbab6b2f70df896be0315a90470f2b0da34d1644103be8e7d96ad SHA512 f2f88de8dd4038adaa1a63f2fa3678dd45ddda051be700d6eca563f4bd5b7c8dcb61fdf60bffb01b3fce0ffd01f7b2524686d997bfe4ca8b191cc7b6ce7375a1
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
new file mode 100644
index 00000000000..77aeab01a2e
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
+HOMEPAGE="https://github.com/majn/telegram-purple"
+SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="gcrypt libressl +nls +webp"
+
+RDEPEND="net-im/pidgin
+ sys-libs/zlib:=
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ !gcrypt? (
+ libressl? ( dev-libs/libressl:0= )
+ !libressl? ( dev-libs/openssl:0= )
+ )
+ webp? ( media-libs/libwebp:= )"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+ nls? ( sys-devel/gettext )
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/telegram-purple"
+
+DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
+
+src_prepare() {
+ default
+
+ # Remove '-Werror' to make it compile
+ find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable gcrypt)
+ $(use_enable nls translation)
+ $(use_enable webp libwebp)
+ )
+
+ econf "${myeconfargs[@]}"
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2019-12-02 23:22 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2019-12-02 23:22 UTC (permalink / raw
To: gentoo-commits
commit: 7d1e08c6d2ca93e790cf8e5378112f0da77bcbbf
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 2 23:09:45 2019 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Dec 2 23:21:10 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d1e08c6
x11-plugins/pidgin-telegram: updated metadata.xml
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/metadata.xml | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/metadata.xml b/x11-plugins/pidgin-telegram/metadata.xml
index e23b905712c..2bf94b00c32 100644
--- a/x11-plugins/pidgin-telegram/metadata.xml
+++ b/x11-plugins/pidgin-telegram/metadata.xml
@@ -2,13 +2,9 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>ck+gentoo@bl4ckb0x.de</email>
+ <email>conikost@gentoo.org</email>
<name>Conrad Kostecki</name>
</maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
<longdescription>
This plugin adds support for the Telegram messenger protocol,
which can be used directly in net-im/pidgin.
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2019-12-15 13:43 Agostino Sarubbo
0 siblings, 0 replies; 28+ messages in thread
From: Agostino Sarubbo @ 2019-12-15 13:43 UTC (permalink / raw
To: gentoo-commits
commit: c8fe9edcf22ddfc5e47f9ad6c435bbe92e1459e3
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 13:42:42 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 13:42:42 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8fe9edc
x11-plugins/pidgin-telegram: amd64 stable wrt bug #702770
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
index 77aeab01a2e..351cfeb484b 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/majn/telegram-purple"
SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
SLOT="0"
IUSE="gcrypt libressl +nls +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2019-12-15 14:46 Agostino Sarubbo
0 siblings, 0 replies; 28+ messages in thread
From: Agostino Sarubbo @ 2019-12-15 14:46 UTC (permalink / raw
To: gentoo-commits
commit: de817882b2fe7fb5da5f84c7f5285bde571d8365
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 14:45:27 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 14:45:27 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de817882
x11-plugins/pidgin-telegram: x86 stable wrt bug #702770
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
index 351cfeb484b..21c27ac8d19 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/majn/telegram-purple"
SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
LICENSE="GPL-2+"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
SLOT="0"
IUSE="gcrypt libressl +nls +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2019-12-15 17:24 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2019-12-15 17:24 UTC (permalink / raw
To: gentoo-commits
commit: a4231ad2202a90a8c8b6cbe496382adbd5d2f705
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 17:19:30 2019 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 17:19:30 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4231ad2
x11-plugins/pidgin-telegram: drop old version
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/Manifest | 1 -
.../pidgin-telegram/pidgin-telegram-1.4.1.ebuild | 50 ----------------------
2 files changed, 51 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
index ab08164bedf..aab75ef96c3 100644
--- a/x11-plugins/pidgin-telegram/Manifest
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -1,2 +1 @@
-DIST telegram-purple_1.4.1.orig.tar.gz 482389 BLAKE2B 84c753c5dcdb8e66d1ec56d5307d3489780e932032f382e2d026ad4b6529d4c161e677483a794e56e6388cd76164d9b93955828f5cfc7b199ff8fa8314ad8951 SHA512 335da688021d2401122065f9089b86b6ccba6e812b06d8d8bc96e0defbbe693b35c1f981f5bf772ebc2577ab60ac7e97ce08d72361bcd17b27fc11740084ff1a
DIST telegram-purple_1.4.2.orig.tar.gz 484790 BLAKE2B d198ce3d1a5f4d226d48b6ff1cdf6f0899a5a1b79ef74c8ac77afa613aae5ec1cf53c8de69cfbab6b2f70df896be0315a90470f2b0da34d1644103be8e7d96ad SHA512 f2f88de8dd4038adaa1a63f2fa3678dd45ddda051be700d6eca563f4bd5b7c8dcb61fdf60bffb01b3fce0ffd01f7b2524686d997bfe4ca8b191cc7b6ce7375a1
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
deleted file mode 100644
index 21c27ac8d19..00000000000
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
-HOMEPAGE="https://github.com/majn/telegram-purple"
-SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
-
-LICENSE="GPL-2+"
-KEYWORDS="amd64 x86"
-SLOT="0"
-IUSE="gcrypt libressl +nls +webp"
-
-RDEPEND="net-im/pidgin
- sys-libs/zlib:=
- gcrypt? ( dev-libs/libgcrypt:0= )
- !gcrypt? (
- libressl? ( dev-libs/libressl:0= )
- !libressl? ( dev-libs/openssl:0= )
- )
- webp? ( media-libs/libwebp:= )"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="
- nls? ( sys-devel/gettext )
- virtual/pkgconfig
-"
-
-S="${WORKDIR}/telegram-purple"
-
-DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
-
-src_prepare() {
- default
-
- # Remove '-Werror' to make it compile
- find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable gcrypt)
- $(use_enable nls translation)
- $(use_enable webp libwebp)
- )
-
- econf "${myeconfargs[@]}"
-}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2020-08-03 22:29 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2020-08-03 22:29 UTC (permalink / raw
To: gentoo-commits
commit: a875d63b47cb68ceea0915be3e3807b8b515ed66
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 3 22:28:42 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Aug 3 22:28:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a875d63b
x11-plugins/pidgin-telegram: add png use flag
Closes: https://bugs.gentoo.org/735116
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild | 6 ++++--
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild | 4 +++-
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
index 21c27ac8d19..5d6f31afd45 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
LICENSE="GPL-2+"
KEYWORDS="amd64 x86"
SLOT="0"
-IUSE="gcrypt libressl +nls +webp"
+IUSE="gcrypt libressl +nls +png +webp"
RDEPEND="net-im/pidgin
sys-libs/zlib:=
@@ -19,6 +19,7 @@ RDEPEND="net-im/pidgin
libressl? ( dev-libs/libressl:0= )
!libressl? ( dev-libs/openssl:0= )
)
+ png? ( media-libs/libpng:0= )
webp? ( media-libs/libwebp:= )"
DEPEND="${RDEPEND}"
@@ -43,6 +44,7 @@ src_configure() {
local myeconfargs=(
$(use_enable gcrypt)
$(use_enable nls translation)
+ $(use_enable png libpng)
$(use_enable webp libwebp)
)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild
index dbf8c2bf6f0..a7a509ac64c 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
LICENSE="GPL-2+"
KEYWORDS="~amd64 ~x86"
SLOT="0"
-IUSE="gcrypt libressl +nls +webp"
+IUSE="gcrypt libressl +nls +png +webp"
RDEPEND="
net-im/pidgin
@@ -20,6 +20,7 @@ RDEPEND="
libressl? ( dev-libs/libressl:0= )
!libressl? ( dev-libs/openssl:0= )
)
+ png? ( media-libs/libpng:0= )
webp? ( media-libs/libwebp:= )
"
@@ -47,6 +48,7 @@ src_configure() {
local myeconfargs=(
$(use_enable gcrypt)
$(use_enable nls translation)
+ $(use_enable png libpng)
$(use_enable webp libwebp)
)
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2020-08-05 13:53 Agostino Sarubbo
0 siblings, 0 replies; 28+ messages in thread
From: Agostino Sarubbo @ 2020-08-05 13:53 UTC (permalink / raw
To: gentoo-commits
commit: 55a707e172831f98ff4134c4beb48701c95ca9dd
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 5 13:52:43 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Aug 5 13:52:43 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a707e1
x11-plugins/pidgin-telegram: amd64 stable wrt bug #735826
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild
index a7a509ac64c..17d8fbe738e 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.3.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/majn/telegram-purple"
SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
SLOT="0"
IUSE="gcrypt libressl +nls +png +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2020-08-05 19:48 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2020-08-05 19:48 UTC (permalink / raw
To: gentoo-commits
commit: 91e3386a89d68dc4872edd313215789f06cbb4d3
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 5 19:46:33 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Aug 5 19:48:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91e3386a
x11-plugins/pidgin-telegram: drop old version
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/Manifest | 1 -
.../pidgin-telegram/pidgin-telegram-1.4.2.ebuild | 52 ----------------------
2 files changed, 53 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
index 6e29d4800e5..b7e7757ecfc 100644
--- a/x11-plugins/pidgin-telegram/Manifest
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -1,2 +1 @@
-DIST telegram-purple_1.4.2.orig.tar.gz 484790 BLAKE2B d198ce3d1a5f4d226d48b6ff1cdf6f0899a5a1b79ef74c8ac77afa613aae5ec1cf53c8de69cfbab6b2f70df896be0315a90470f2b0da34d1644103be8e7d96ad SHA512 f2f88de8dd4038adaa1a63f2fa3678dd45ddda051be700d6eca563f4bd5b7c8dcb61fdf60bffb01b3fce0ffd01f7b2524686d997bfe4ca8b191cc7b6ce7375a1
DIST telegram-purple_1.4.3.orig.tar.gz 491997 BLAKE2B 30d42b34525c6553498c67f8a28cfe789442555a3a135a116195edc982611b8ccae6d7c53006358ebdca679258ae6a40b29a1d2ebb764e082bc2ee77d39584db SHA512 697d070da5c6671dd54a1709b37153d4b569ae1cd19d574a2d92a777a89ebd7884596b35829564a7f6fd49104f5d26e35cbe9634f64c678b5f061af8197fba16
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
deleted file mode 100644
index 5d6f31afd45..00000000000
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
-HOMEPAGE="https://github.com/majn/telegram-purple"
-SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
-
-LICENSE="GPL-2+"
-KEYWORDS="amd64 x86"
-SLOT="0"
-IUSE="gcrypt libressl +nls +png +webp"
-
-RDEPEND="net-im/pidgin
- sys-libs/zlib:=
- gcrypt? ( dev-libs/libgcrypt:0= )
- !gcrypt? (
- libressl? ( dev-libs/libressl:0= )
- !libressl? ( dev-libs/openssl:0= )
- )
- png? ( media-libs/libpng:0= )
- webp? ( media-libs/libwebp:= )"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="
- nls? ( sys-devel/gettext )
- virtual/pkgconfig
-"
-
-S="${WORKDIR}/telegram-purple"
-
-DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
-
-src_prepare() {
- default
-
- # Remove '-Werror' to make it compile
- find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable gcrypt)
- $(use_enable nls translation)
- $(use_enable png libpng)
- $(use_enable webp libwebp)
- )
-
- econf "${myeconfargs[@]}"
-}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2020-11-30 0:28 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2020-11-30 0:28 UTC (permalink / raw
To: gentoo-commits
commit: 5e64617ba6261e97adddc3348c18a30ae7675164
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 00:27:52 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 00:27:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e64617b
x11-plugins/pidgin-telegram: bump to version 1.4.4
Closes: https://bugs.gentoo.org/757690
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/Manifest | 1 +
.../pidgin-telegram/pidgin-telegram-1.4.4.ebuild | 56 ++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
index b7e7757ecfc..1f2e5e31fdd 100644
--- a/x11-plugins/pidgin-telegram/Manifest
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -1 +1,2 @@
DIST telegram-purple_1.4.3.orig.tar.gz 491997 BLAKE2B 30d42b34525c6553498c67f8a28cfe789442555a3a135a116195edc982611b8ccae6d7c53006358ebdca679258ae6a40b29a1d2ebb764e082bc2ee77d39584db SHA512 697d070da5c6671dd54a1709b37153d4b569ae1cd19d574a2d92a777a89ebd7884596b35829564a7f6fd49104f5d26e35cbe9634f64c678b5f061af8197fba16
+DIST telegram-purple_1.4.4.orig.tar.gz 495386 BLAKE2B 7ecac3a334f88f3d9c0367c5910d3de03b1e6749f18628a58f90c0ae3602dd04d0a1bec79b1016af236375bfe3eb7d4c40437c31fbbee0e9648e5425e40bb43d SHA512 9907da48b978294749f0697313cc7dbf26358535d6528190d8b61cdce5e478af8e756528a212af806025eb75b7f7ec90054ee763eea327f101ef469d0f4fd43e
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild
new file mode 100644
index 00000000000..653d01bdc92
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
+HOMEPAGE="https://github.com/majn/telegram-purple"
+SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="gcrypt libressl +nls +png +webp"
+
+RDEPEND="
+ net-im/pidgin
+ sys-libs/zlib:=
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ !gcrypt? (
+ libressl? ( dev-libs/libressl:0= )
+ !libressl? ( dev-libs/openssl:0= )
+ )
+ png? ( media-libs/libpng:0= )
+ webp? ( media-libs/libwebp:= )
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+ nls? ( sys-devel/gettext )
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/telegram-purple"
+
+DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
+
+PATCHES=( "${FILESDIR}/${PN}-1.4.3-clang.patch" )
+
+src_prepare() {
+ default
+
+ # Remove '-Werror' to make it compile
+ find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable gcrypt)
+ $(use_enable nls translation)
+ $(use_enable png libpng)
+ $(use_enable webp libwebp)
+ )
+
+ econf "${myeconfargs[@]}"
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-01-03 20:52 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-01-03 20:52 UTC (permalink / raw
To: gentoo-commits
commit: df3b841427c785a4db1134f2278b9cbb124fa274
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 3 20:38:03 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jan 3 20:52:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df3b8414
x11-plugins/pidgin-telegram: x86 stable
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild
index 653d01bdc92..68214ea84c3 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/majn/telegram-purple"
SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
SLOT="0"
IUSE="gcrypt libressl +nls +png +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-01-03 20:52 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-01-03 20:52 UTC (permalink / raw
To: gentoo-commits
commit: 74f1926f4b3f078f2f187ceb39b5bd573c9fff0f
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 3 20:38:48 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jan 3 20:52:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f1926f
x11-plugins/pidgin-telegram: amd64 stable
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild
index 68214ea84c3..3687b6477ca 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.4.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/majn/telegram-purple"
SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
LICENSE="GPL-2+"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
SLOT="0"
IUSE="gcrypt libressl +nls +png +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-01-09 12:33 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-01-09 12:33 UTC (permalink / raw
To: gentoo-commits
commit: d4de68e1800d90aa102de48a1a749362f3141fbc
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 9 12:32:40 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jan 9 12:32:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4de68e1
x11-plugins/pidgin-telegram: bump to version 1.4.6
Closes: https://bugs.gentoo.org/764551
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/Manifest | 1 +
.../pidgin-telegram/pidgin-telegram-1.4.6.ebuild | 53 ++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
index ce6f0478c52..a00c5606393 100644
--- a/x11-plugins/pidgin-telegram/Manifest
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -1 +1,2 @@
DIST telegram-purple_1.4.4.orig.tar.gz 495386 BLAKE2B 7ecac3a334f88f3d9c0367c5910d3de03b1e6749f18628a58f90c0ae3602dd04d0a1bec79b1016af236375bfe3eb7d4c40437c31fbbee0e9648e5425e40bb43d SHA512 9907da48b978294749f0697313cc7dbf26358535d6528190d8b61cdce5e478af8e756528a212af806025eb75b7f7ec90054ee763eea327f101ef469d0f4fd43e
+DIST telegram-purple_1.4.6.orig.tar.gz 497757 BLAKE2B 1f666aaf4ef1913420cf735e3d85e1d91be8a2f07932785d55bc0be37e2cd8cabaf6b0be2b520afafc6636a692086be180d3bd4438215f8b14ae867da9891e18 SHA512 bf3e14a2d1dec7382833011ea891ba5bce81820766b3d6adee582bf0257baadeb7aa7eab7aa6e20adf8dd7728eb653db35b1d8f56bfffe7a92f9bf7506401e6e
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
new file mode 100644
index 00000000000..06014ab6c69
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
+HOMEPAGE="https://github.com/majn/telegram-purple"
+SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
+S="${WORKDIR}/telegram-purple"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="gcrypt libressl +nls +png +webp"
+
+RDEPEND="
+ net-im/pidgin
+ sys-libs/zlib:=
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ !gcrypt? (
+ libressl? ( dev-libs/libressl:0= )
+ !libressl? ( dev-libs/openssl:0= )
+ )
+ png? ( media-libs/libpng:0= )
+ webp? ( media-libs/libwebp:= )
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+ nls? ( sys-devel/gettext )
+ virtual/pkgconfig
+"
+
+DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
+
+src_prepare() {
+ default
+
+ # Remove '-Werror' to make it compile
+ find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable gcrypt)
+ $(use_enable nls translation)
+ $(use_enable png libpng)
+ $(use_enable webp libwebp)
+ )
+
+ econf "${myeconfargs[@]}"
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-02-08 9:58 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-02-08 9:58 UTC (permalink / raw
To: gentoo-commits
commit: 224bc807a7179cf6fa27b522cb8f7e5848cd01d6
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 8 09:50:48 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Feb 8 09:58:46 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=224bc807
x11-plugins/pidgin-telegram: x86 stable
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
index c8f5e5d867d..ce82b54c47d 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
S="${WORKDIR}/telegram-purple"
LICENSE="GPL-2+"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
SLOT="0"
IUSE="gcrypt libressl +nls +png +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-02-08 9:58 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-02-08 9:58 UTC (permalink / raw
To: gentoo-commits
commit: 14ee9b8f555534d3c4a89c79f08d3195b84fc6c0
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 8 09:45:31 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Feb 8 09:58:45 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ee9b8f
x11-plugins/pidgin-telegram: amd64 stable
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
index 06014ab6c69..c8f5e5d867d 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
S="${WORKDIR}/telegram-purple"
LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
SLOT="0"
IUSE="gcrypt libressl +nls +png +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-04-29 16:54 Mikle Kolyada
0 siblings, 0 replies; 28+ messages in thread
From: Mikle Kolyada @ 2021-04-29 16:54 UTC (permalink / raw
To: gentoo-commits
commit: bbc2ec18e850f9d6a5a2e8ef0856e5d6d9e55ae9
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 29 16:53:25 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Apr 29 16:54:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbc2ec18
x11-plugins/pidgin-telegram: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
index ce82b54c47d..7dac50fdb5b 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
@@ -11,16 +11,13 @@ S="${WORKDIR}/telegram-purple"
LICENSE="GPL-2+"
KEYWORDS="amd64 x86"
SLOT="0"
-IUSE="gcrypt libressl +nls +png +webp"
+IUSE="gcrypt +nls +png +webp"
RDEPEND="
net-im/pidgin
sys-libs/zlib:=
gcrypt? ( dev-libs/libgcrypt:0= )
- !gcrypt? (
- libressl? ( dev-libs/libressl:0= )
- !libressl? ( dev-libs/openssl:0= )
- )
+ !gcrypt? ( dev-libs/openssl:0= )
png? ( media-libs/libpng:0= )
webp? ( media-libs/libwebp:= )
"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-07-21 23:06 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-07-21 23:06 UTC (permalink / raw
To: gentoo-commits
commit: c2582f8b0bf99a83da52965776abf73e502427f9
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 21 23:06:21 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Jul 21 23:06:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2582f8b
x11-plugins/pidgin-telegram: bump to version 1.4.7
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/Manifest | 1 +
.../pidgin-telegram/pidgin-telegram-1.4.7.ebuild | 50 ++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
index 7f44531286f..8ef79638a3a 100644
--- a/x11-plugins/pidgin-telegram/Manifest
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -1 +1,2 @@
DIST telegram-purple_1.4.6.orig.tar.gz 497757 BLAKE2B 1f666aaf4ef1913420cf735e3d85e1d91be8a2f07932785d55bc0be37e2cd8cabaf6b0be2b520afafc6636a692086be180d3bd4438215f8b14ae867da9891e18 SHA512 bf3e14a2d1dec7382833011ea891ba5bce81820766b3d6adee582bf0257baadeb7aa7eab7aa6e20adf8dd7728eb653db35b1d8f56bfffe7a92f9bf7506401e6e
+DIST telegram-purple_1.4.7.orig.tar.gz 498573 BLAKE2B 37f741f1e2106db55eaadab70e2bf226609ebd85fa3df28a60b686e207c341f7279ea36ef87137d465b5bedac63e6ec0388714171dd5a594fb28ae02f66bebc4 SHA512 ae3032b33bd2a20b58b2d66c83fbc405f43c38c0e93b00394ad3165b0bc5d5aba02a8e1946872e4bd082894679737fa20f3e1991e9bb16c3c3aba4c7abbbf7d8
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
new file mode 100644
index 00000000000..5cb4ffba69c
--- /dev/null
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
+HOMEPAGE="https://github.com/majn/telegram-purple"
+SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
+S="${WORKDIR}/telegram-purple"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="gcrypt +nls +png +webp"
+
+RDEPEND="
+ net-im/pidgin
+ sys-libs/zlib:=
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ !gcrypt? ( dev-libs/openssl:0= )
+ png? ( media-libs/libpng:0= )
+ webp? ( media-libs/libwebp:= )
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+ nls? ( sys-devel/gettext )
+ virtual/pkgconfig
+"
+
+DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
+
+src_prepare() {
+ default
+
+ # Remove '-Werror' to make it compile
+ find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable gcrypt)
+ $(use_enable nls translation)
+ $(use_enable png libpng)
+ $(use_enable webp libwebp)
+ )
+
+ econf "${myeconfargs[@]}"
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-08-22 14:02 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-08-22 14:02 UTC (permalink / raw
To: gentoo-commits
commit: b84a19a5b7cf50a178952145ddfa8f5ecac60086
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 22 13:58:49 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Aug 22 13:58:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84a19a5
x11-plugins/pidgin-telegram: amd64 stable
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
index d32509b95ef..7dac50fdb5b 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
S="${WORKDIR}/telegram-purple"
LICENSE="GPL-2+"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
SLOT="0"
IUSE="gcrypt +nls +png +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-08-22 14:02 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-08-22 14:02 UTC (permalink / raw
To: gentoo-commits
commit: 02657be04f0221c172d690bb1ba3d50dd48ef558
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 22 13:57:55 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Aug 22 13:57:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02657be0
x11-plugins/pidgin-telegram: x86 stable
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
index 5cb4ffba69c..d32509b95ef 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
S="${WORKDIR}/telegram-purple"
LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
SLOT="0"
IUSE="gcrypt +nls +png +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-08-22 14:02 Conrad Kostecki
0 siblings, 0 replies; 28+ messages in thread
From: Conrad Kostecki @ 2021-08-22 14:02 UTC (permalink / raw
To: gentoo-commits
commit: 7ad498a468c9e52b74606062c4dabc48c065db4a
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 22 13:59:38 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Aug 22 13:59:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad498a4
x11-plugins/pidgin-telegram: drop old version
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/pidgin-telegram/Manifest | 1 -
.../pidgin-telegram/pidgin-telegram-1.4.6.ebuild | 50 ----------------------
2 files changed, 51 deletions(-)
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest
index 8ef79638a3a..865cd3ff5af 100644
--- a/x11-plugins/pidgin-telegram/Manifest
+++ b/x11-plugins/pidgin-telegram/Manifest
@@ -1,2 +1 @@
-DIST telegram-purple_1.4.6.orig.tar.gz 497757 BLAKE2B 1f666aaf4ef1913420cf735e3d85e1d91be8a2f07932785d55bc0be37e2cd8cabaf6b0be2b520afafc6636a692086be180d3bd4438215f8b14ae867da9891e18 SHA512 bf3e14a2d1dec7382833011ea891ba5bce81820766b3d6adee582bf0257baadeb7aa7eab7aa6e20adf8dd7728eb653db35b1d8f56bfffe7a92f9bf7506401e6e
DIST telegram-purple_1.4.7.orig.tar.gz 498573 BLAKE2B 37f741f1e2106db55eaadab70e2bf226609ebd85fa3df28a60b686e207c341f7279ea36ef87137d465b5bedac63e6ec0388714171dd5a594fb28ae02f66bebc4 SHA512 ae3032b33bd2a20b58b2d66c83fbc405f43c38c0e93b00394ad3165b0bc5d5aba02a8e1946872e4bd082894679737fa20f3e1991e9bb16c3c3aba4c7abbbf7d8
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
deleted file mode 100644
index 7dac50fdb5b..00000000000
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.6.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger"
-HOMEPAGE="https://github.com/majn/telegram-purple"
-SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz"
-S="${WORKDIR}/telegram-purple"
-
-LICENSE="GPL-2+"
-KEYWORDS="amd64 x86"
-SLOT="0"
-IUSE="gcrypt +nls +png +webp"
-
-RDEPEND="
- net-im/pidgin
- sys-libs/zlib:=
- gcrypt? ( dev-libs/libgcrypt:0= )
- !gcrypt? ( dev-libs/openssl:0= )
- png? ( media-libs/libpng:0= )
- webp? ( media-libs/libwebp:= )
-"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="
- nls? ( sys-devel/gettext )
- virtual/pkgconfig
-"
-
-DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" )
-
-src_prepare() {
- default
-
- # Remove '-Werror' to make it compile
- find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable gcrypt)
- $(use_enable nls translation)
- $(use_enable png libpng)
- $(use_enable webp libwebp)
- )
-
- econf "${myeconfargs[@]}"
-}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
@ 2021-09-09 7:11 Yixun Lan
0 siblings, 0 replies; 28+ messages in thread
From: Yixun Lan @ 2021-09-09 7:11 UTC (permalink / raw
To: gentoo-commits
commit: e52ea33f8e729568139bcd0b9845cb904c2978c7
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 9 06:58:37 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Sep 9 07:05:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52ea33f
x11-plugins/pidgin-telegram: keyword ~riscv
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
index 7dac50fdb5b..038d5a5cde8 100644
--- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
+++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
S="${WORKDIR}/telegram-purple"
LICENSE="GPL-2+"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
SLOT="0"
IUSE="gcrypt +nls +png +webp"
^ permalink raw reply related [flat|nested] 28+ messages in thread
end of thread, other threads:[~2021-09-09 7:11 UTC | newest]
Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-28 10:05 [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2021-09-09 7:11 Yixun Lan
2021-08-22 14:02 Conrad Kostecki
2021-08-22 14:02 Conrad Kostecki
2021-08-22 14:02 Conrad Kostecki
2021-07-21 23:06 Conrad Kostecki
2021-04-29 16:54 Mikle Kolyada
2021-02-08 9:58 Conrad Kostecki
2021-02-08 9:58 Conrad Kostecki
2021-01-09 12:33 Conrad Kostecki
2021-01-03 20:52 Conrad Kostecki
2021-01-03 20:52 Conrad Kostecki
2020-11-30 0:28 Conrad Kostecki
2020-08-05 19:48 Conrad Kostecki
2020-08-05 13:53 Agostino Sarubbo
2020-08-03 22:29 Conrad Kostecki
2019-12-15 17:24 Conrad Kostecki
2019-12-15 14:46 Agostino Sarubbo
2019-12-15 13:43 Agostino Sarubbo
2019-12-02 23:22 Conrad Kostecki
2019-09-23 17:09 Joonas Niilola
2019-07-24 8:19 Agostino Sarubbo
2019-07-23 10:15 Agostino Sarubbo
2019-04-09 22:21 Patrice Clement
2018-11-10 7:58 Michał Górny
2018-11-08 22:49 Patrice Clement
2018-11-08 22:49 Patrice Clement
2018-06-20 8:21 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox