public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: net-libs/telepathy-haze/
@ 2021-11-08  9:23 Randall Vasquez
  0 siblings, 0 replies; 4+ messages in thread
From: Randall Vasquez @ 2021-11-08  9:23 UTC (permalink / raw
  To: gentoo-commits

commit:     d828706fc75f2a9b6c5d37d020639e4ebf1ccd8d
Author:     Randall Vasquez <ran.dall <AT> icloud <DOT> com>
AuthorDate: Mon Nov  8 09:18:11 2021 +0000
Commit:     Randall Vasquez <ran.dall <AT> icloud <DOT> com>
CommitDate: Mon Nov  8 09:18:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d828706f

net-libs/telepathy-haze: new package

add new package net-libs/telepathy-haze v0.8.1

ref: https://github.com/gentoo/gentoo/pull/20204
ref: https://github.com/msva/mva-overlay/issues/150

closes: https://bugs.gentoo.org/759025

Signed-off-by: Randall Vasquez <ran.dall <AT> icloud.com>

 net-libs/telepathy-haze/Manifest                   |  1 +
 net-libs/telepathy-haze/metadata.xml               |  8 +++++
 .../telepathy-haze/telepathy-haze-0.8.1.ebuild     | 41 ++++++++++++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/net-libs/telepathy-haze/Manifest b/net-libs/telepathy-haze/Manifest
new file mode 100644
index 000000000..1347b4f10
--- /dev/null
+++ b/net-libs/telepathy-haze/Manifest
@@ -0,0 +1 @@
+DIST telepathy-haze-0.8.1.tar.gz 621492 BLAKE2B 9cd493db106b645da718e03cdb9228c19910b34ec85a3363d991e27922b99f6f71653260fb6367ec2f6183c5b60a0b4c607c142894a30bf5fc2711bfde768f35 SHA512 f9a8c7392f797126861e8817c1821d415aac09f340fbf868dda02e42832125adfe91f8a39bc4fcb033600676e3e3e6b22c2798049f7af7c0cada68352fde8c5f

diff --git a/net-libs/telepathy-haze/metadata.xml b/net-libs/telepathy-haze/metadata.xml
new file mode 100644
index 000000000..cb899ddf3
--- /dev/null
+++ b/net-libs/telepathy-haze/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>ran.dall@icloud.com</email>
+    <name>Randall Vasquez</name>
+  </maintainer>
+</pkgmetadata>

diff --git a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
new file mode 100644
index 000000000..0682ae85e
--- /dev/null
+++ b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit python-any-r1
+
+DESCRIPTION="Telepathy connection manager providing libpurple supported protocols"
+HOMEPAGE="https://telepathy.freedesktop.org https://developer.pidgin.im/wiki/TelepathyHaze"
+SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="test"
+
+RDEPEND="
+	dev-libs/dbus-glib
+	dev-libs/glib:2
+	net-im/pidgin[dbus]
+	net-libs/telepathy-glib
+"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}
+	dev-libs/libxslt
+	dev-util/glib-utils
+	virtual/pkgconfig
+	test? (
+		dev-python/pygobject:3
+		$(python_gen_any_dep 'dev-python/twisted[${PYTHON_USEDEP}]')
+	)
+"
+RESTRICT="!test? ( test )"
+
+python_check_deps() {
+	if use test ; then
+		has_version "dev-python/twisted[${PYTHON_USEDEP}]"
+	fi
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-libs/telepathy-haze/
@ 2023-05-12  9:32 Matt Jolly
  0 siblings, 0 replies; 4+ messages in thread
From: Matt Jolly @ 2023-05-12  9:32 UTC (permalink / raw
  To: gentoo-commits

commit:     42d5d23c08b29219a778f5879d7645de4c98ca6b
Author:     Matt Jolly <Matt.Jolly <AT> footclan <DOT> ninja>
AuthorDate: Fri May 12 09:04:33 2023 +0000
Commit:     Matt Jolly <Matt.Jolly <AT> footclan <DOT> ninja>
CommitDate: Fri May 12 09:19:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=42d5d23c

net-libs/telepathy-haze: QA Fixes

- Add BDEPEND
- has_version -> python_has_version

Signed-off-by: Matt Jolly <Matt.Jolly <AT> footclan.ninja>

 net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
index 99c620bd9..6e80d232a 100644
--- a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
+++ b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
@@ -26,16 +26,20 @@ DEPEND="${RDEPEND}
 	${PYTHON_DEPS}
 	dev-libs/libxslt
 	dev-util/glib-utils
+"
+
+BDEPEND="
 	virtual/pkgconfig
 	test? (
 		dev-python/pygobject:3
 		$(python_gen_any_dep 'dev-python/twisted[${PYTHON_USEDEP}]')
 	)
 "
+
 RESTRICT="!test? ( test )"
 
 python_check_deps() {
 	if use test ; then
-		has_version "dev-python/twisted[${PYTHON_USEDEP}]"
+		python_has_version "dev-python/twisted[${PYTHON_USEDEP}]"
 	fi
 }


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-libs/telepathy-haze/
@ 2023-05-12  9:32 Matt Jolly
  0 siblings, 0 replies; 4+ messages in thread
From: Matt Jolly @ 2023-05-12  9:32 UTC (permalink / raw
  To: gentoo-commits

commit:     31d90e94b9ae5b8e921d56545ffe6095aeea7347
Author:     Matt Jolly <Matt.Jolly <AT> footclan <DOT> ninja>
AuthorDate: Fri May 12 08:39:32 2023 +0000
Commit:     Matt Jolly <Matt.Jolly <AT> footclan <DOT> ninja>
CommitDate: Fri May 12 09:19:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=31d90e94

net-libs/telepathy-haze: destabilize 0.8.1 for ~amd64, ~x86

https://wiki.gentoo.org/wiki/Project:GURU#The_regulations

Signed-off-by: Matt Jolly <Matt.Jolly <AT> footclan.ninja>

 net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
index 21458cdcb..99c620bd9 100644
--- a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
+++ b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-libs/telepathy-haze/
  2024-04-14  1:21 [gentoo-commits] repo/proj/guru:master " Julien Roy
@ 2024-04-14  1:17 ` Julien Roy
  0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-04-14  1:17 UTC (permalink / raw
  To: gentoo-commits

commit:     cc7a5d3a25d6d629a642766f30f863f3407e24cb
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun Apr 14 01:15:28 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun Apr 14 01:15:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cc7a5d3a

net-libs/telepathy-haze: update HOMEPAGE

Closes: https://bugs.gentoo.org/897636
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
index 6e80d232ab..ce065a1dc4 100644
--- a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
+++ b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild
@@ -1,14 +1,17 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit python-any-r1
 
 DESCRIPTION="Telepathy connection manager providing libpurple supported protocols"
-HOMEPAGE="https://telepathy.freedesktop.org https://developer.pidgin.im/wiki/TelepathyHaze"
+HOMEPAGE="
+	https://telepathy.freedesktop.org
+	https://developer.pidgin.im/wiki/TelepathyHaze
+"
 SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-04-14  1:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-08  9:23 [gentoo-commits] repo/proj/guru:dev commit in: net-libs/telepathy-haze/ Randall Vasquez
  -- strict thread matches above, loose matches on Subject: below --
2023-05-12  9:32 Matt Jolly
2023-05-12  9:32 Matt Jolly
2024-04-14  1:21 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-04-14  1:17 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox