Skip to content

Commit

Permalink
chat/lurch-purple: Update to 0.7.0
Browse files Browse the repository at this point in the history
Actually works with pidgin, talking to Conversations via federation!
(0.6.8 did not)


Upstream:

## [0.7.0] - 2021-02-12
### Added
- This file.
- An API reachable through _libpurple_ signals. See `lurch_api.h` for details and usage.
- Testing setup using _cmocka_ and tests for new modules.
- CI setup running the tests in _appveyor_ and reporting coverage results to _codecov_.
- The possibility to dynamically link against the submodule libaries. ([#151](gkdr/lurch#151)) (thanks, [@fortysixandtwo](https://github.com/fortysixandtwo)!)

### Changed
- A new `/command` handler using the API, replacing the old implementation. The commands are a bit different and some are new.
- Updated _libomemo_ submodule to 0.7.1. See the [changelog](https://github.com/gkdr/libomemo/blob/master/CHANGELOG.md) for details.
- Updated _axc_ submodule to 0.3.4. See the [changelog](https://github.com/gkdr/axc/blob/master/CHANGELOG.md) for details.

### Removed
- The `lurch_initialised` setting in the `accounts.xml`.

### BUGFIXES
  • Loading branch information
gdt committed Apr 6, 2022
1 parent e5c0cc2 commit 5ff0b3b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
5 changes: 2 additions & 3 deletions chat/lurch-purple/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# $NetBSD: Makefile,v 1.15 2021/12/08 16:03:30 adam Exp $
# $NetBSD: Makefile,v 1.16 2022/04/06 19:53:52 gdt Exp $

VERSION= 0.6.8
VERSION= 0.7.0
DISTNAME= lurch-${VERSION}-src
PKGNAME= lurch-purple-${VERSION}
PKGREVISION= 11
CATEGORIES= chat security
MASTER_SITES= ${MASTER_SITE_GITHUB:=gkdr/lurch/releases/download/v${VERSION}/}

Expand Down
10 changes: 5 additions & 5 deletions chat/lurch-purple/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.4 2021/10/26 10:05:20 nia Exp $
$NetBSD: distinfo,v 1.5 2022/04/06 19:53:52 gdt Exp $

BLAKE2s (lurch-0.6.8-src.tar.gz) = dd64cc511c71d9616a31d09b57ae6979933adfe08e95ddba084082f9755c5e3e
SHA512 (lurch-0.6.8-src.tar.gz) = 8b93523049d05a00f1d7286ec9d0d8d03c7ae46793ac72ea08c0d12cb5193324be4805fb6278d6c0f906d9c63db9d7ce6ca2a21442236df51e0ee0b48de6ef1d
Size (lurch-0.6.8-src.tar.gz) = 398267 bytes
SHA1 (patch-Makefile) = f2e73ad5cf22ff9f700f87d5d2664aaea2addf8b
BLAKE2s (lurch-0.7.0-src.tar.gz) = 2ceea74cd5e6360c91a014be081b894c265b58b59a0e42a46f2d14736572b8fe
SHA512 (lurch-0.7.0-src.tar.gz) = ae45963313d2e145ac801fe1bb99f596dae69c8b44fdb71cdfcd5a8a81614960ba2010bc00fa84300019947f23965fc1dc6868f2bb0c045e83fb4f1dac690fa7
Size (lurch-0.7.0-src.tar.gz) = 401110 bytes
SHA1 (patch-Makefile) = ee55fe2fce1c75610b5f884dc397765bf6596af0
14 changes: 7 additions & 7 deletions chat/lurch-purple/patches/patch-Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
$NetBSD: patch-Makefile,v 1.1 2018/11/27 17:44:14 nia Exp $
$NetBSD: patch-Makefile,v 1.2 2022/04/06 19:53:52 gdt Exp $

Needs -lpurple.

--- Makefile.orig 2018-04-21 20:51:45.000000000 +0000
--- Makefile.orig 2021-04-03 20:46:46.000000000 +0000
+++ Makefile
@@ -22,7 +22,8 @@ GLIB_CFLAGS ?= $(shell $(PKG_CONFIG) --c
GLIB_LDFLAGS ?= $(shell $(PKG_CONFIG) --libs glib-2.0)
@@ -23,7 +23,8 @@ GLIB_LDFLAGS ?= $(shell $(PKG_CONFIG) --

LIBPURPLE_CFLAGS=$(shell $(PKG_CONFIG) --cflags purple)
PURPLE_DIR=$(shell $(PKG_CONFIG) --variable=plugindir purple)
-LIBPURPLE_LDFLAGS=$(shell $(PKG_CONFIG) --cflags purple) \
+LIBPURPLE_LDFLAGS=$(shell $(PKG_CONFIG) --libs purple) \
+ -Wl,-R$(shell $(PKG_CONFIG) --variable=plugindir purple) \
-L$(shell $(PKG_CONFIG) --variable=plugindir purple)
XML2_CFLAGS ?= $(shell $(XML2_CONFIG) --cflags)
-L$(PURPLE_DIR)

LIBOMEMO_CFLAGS = $(shell $(PKG_CONFIG) --cflags libomemo)

0 comments on commit 5ff0b3b

Please sign in to comment.