[arch-commits] Commit in telepathy-haze/repos/extra-x86_64 (4 files)

Antonio Rojas arojas at archlinux.org
Wed Nov 11 07:04:13 UTC 2020


    Date: Wednesday, November 11, 2020 @ 07:04:13
  Author: arojas
Revision: 400264

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-haze/repos/extra-x86_64/PKGBUILD
    (from rev 400263, telepathy-haze/trunk/PKGBUILD)
Deleted:
  telepathy-haze/repos/extra-x86_64/PKGBUILD
  telepathy-haze/repos/extra-x86_64/telepathy-haze-purple-2.0.12.patch
  telepathy-haze/repos/extra-x86_64/telepathy-haze.install

------------------------------------+
 PKGBUILD                           |   65 +++++++++++++++--------------------
 telepathy-haze-purple-2.0.12.patch |   25 -------------
 telepathy-haze.install             |   13 -------
 3 files changed, 29 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-11-11 07:04:02 UTC (rev 400263)
+++ PKGBUILD	2020-11-11 07:04:13 UTC (rev 400264)
@@ -1,36 +0,0 @@
-# Maintainer: Antonio Rojas <arojas at archlinux.org>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-# Contributor: Timm Preetz <timm at preetz.us>
-pkgname=telepathy-haze
-pkgver=0.8.0
-pkgrel=3
-pkgdesc="A telepathy-backend to use libpurple (Pidgin) protocols."
-arch=(x86_64)
-url="http://telepathy.freedesktop.org"
-license=(GPL)
-depends=(telepathy-glib libpurple)
-makedepends=(libxslt python2 python)
-install=telepathy-haze.install
-groups=(telepathy)
-source=(https://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.asc} telepathy-haze-purple-2.0.12.patch)
-sha256sums=('3e76049c05f2cd5900c5c0c1cfebdf7ae79eec987a599f1090946673c5b8f9c9'
-            'SKIP'
-            '6da40c6b854db1a7031d2e3838bfe0961e66e283f8ea57931ce0e57874d658b8')
-validpgpkeys=(DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90) # Simon McVittie <smcv at pseudorandom.co.uk>
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../telepathy-haze-purple-2.0.12.patch # Fix build with libpurple 2.0.12
-}
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=python2 ./configure --prefix=/usr \
-      --libexecdir=/usr/lib/telepathy
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-haze/repos/extra-x86_64/PKGBUILD (from rev 400263, telepathy-haze/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-11-11 07:04:13 UTC (rev 400264)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+# Contributor: Timm Preetz <timm at preetz.us>
+pkgname=telepathy-haze
+pkgver=0.8.1
+pkgrel=1
+pkgdesc="A telepathy-backend to use libpurple (Pidgin) protocols."
+arch=(x86_64)
+url="http://telepathy.freedesktop.org"
+license=(GPL)
+depends=(telepathy-glib libpurple)
+makedepends=(libxslt python)
+groups=(telepathy)
+source=(https://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
+sha256sums=('704befa42eec2173eca4bac01ffd004014665f2bad46dc8948e5423364cde30a'
+            'SKIP')
+validpgpkeys=('AA33B0D27868E36C151780F0FE0B6D736B1195ED') # Alexandr Akulich
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+    --libexecdir=/usr/lib/telepathy
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: telepathy-haze-purple-2.0.12.patch
===================================================================
--- telepathy-haze-purple-2.0.12.patch	2020-11-11 07:04:02 UTC (rev 400263)
+++ telepathy-haze-purple-2.0.12.patch	2020-11-11 07:04:13 UTC (rev 400264)
@@ -1,25 +0,0 @@
-From: Koop Mast <kwm freebsd org>
-Date: Mon, 11 Jan 2016 11:53:23 +0100
-Subject: Fix the build with libpurple 2.0.12
-
-http://pidgin.im/pipermail/devel/2015-March/023639.html
-Replaces the old emu with the _PASSIVE.
-
-Origin: vendor, FreeBSD, https://lists.freebsd.org/pipermail/svn-ports-head/2016-January/111612.html
----
- src/media-stream.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/media-stream.c b/src/media-stream.c
-index 7b4f29f..da088d1 100644
---- a/src/media-stream.c
-+++ b/src/media-stream.c
-@@ -1076,7 +1076,7 @@ haze_media_stream_new_native_candidate (TpSvcMediaStreamHandler *iface,
-       if (proto == TP_MEDIA_STREAM_BASE_PROTO_UDP)
-         protocol = PURPLE_MEDIA_NETWORK_PROTOCOL_UDP;
-       else if (proto == TP_MEDIA_STREAM_BASE_PROTO_TCP)
--        protocol = PURPLE_MEDIA_NETWORK_PROTOCOL_TCP;
-+        protocol = PURPLE_MEDIA_NETWORK_PROTOCOL_TCP_PASSIVE;
-       else
-         DEBUG ("Unknown network protocol");
- 

Deleted: telepathy-haze.install
===================================================================
--- telepathy-haze.install	2020-11-11 07:04:02 UTC (rev 400263)
+++ telepathy-haze.install	2020-11-11 07:04:13 UTC (rev 400264)
@@ -1,13 +0,0 @@
-post_install() {
-  killall -HUP dbus-daemon 2>&1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list