From 92183fdb9406a7501c39ecf88ac431e9bdbe0ddc Mon Sep 17 00:00:00 2001 From: ryoon Date: Wed, 26 Oct 2016 20:34:00 +0000 Subject: Update to 1.3.3 * Change tarball to released one Changelog: Version 1.3.3 (2016-10-01): - Support longer tweets in a few more places - Properly escape ampersand characters in user mentions to fix GtkLabel warnings about wrong escape characters in tooltips - Fix tweet length calculations for whitespace-only tweets - Check for duplicated entries in media arrays. This is apparently a problem on Twitter's side but led to crashes in Corebird (see #627) - Use the correct nsfw status of a tweet, i.e. the one that can actually show images. - Fix a crash when sending a tweet with multiple images attached - Fix tweet length calculation of quote tweets. This previously led to tweets getting rejected by the server even though Corebird claimed they were fine. See #628 Version 1.3.2 (2016-09-25): - Cope with the tweet length changes introduced by Twitter - Fix a problem with malformed media URLs --- net/corebird/Makefile | 10 +++++----- net/corebird/distinfo | 11 ++++++----- net/corebird/patches/patch-data_Makefile.in | 19 +++++++++++++++++++ 3 files changed, 30 insertions(+), 10 deletions(-) create mode 100644 net/corebird/patches/patch-data_Makefile.in (limited to 'net/corebird') diff --git a/net/corebird/Makefile b/net/corebird/Makefile index 971cac80c72..985f24fd4ba 100644 --- a/net/corebird/Makefile +++ b/net/corebird/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.17 2016/09/06 12:31:56 ryoon Exp $ +# $NetBSD: Makefile,v 1.18 2016/10/26 20:34:00 ryoon Exp $ -DISTNAME= corebird-1.3.1 +DISTNAME= corebird-1.3.3 CATEGORIES= net -MASTER_SITES= -https://github.com/baedert/corebird/archive/${PKGVERSION_NOREV}${EXTRACT_SUFX} +MASTER_SITES= https://github.com/baedert/corebird/releases/download/${PKGVERSION_NOREV}/ +EXTRACT_SUFX= .tar.xz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://corebird.baedert.org/ @@ -12,8 +13,7 @@ LICENSE= gnu-gpl-v3 USE_LIBTOOL= yes USE_LANGUAGES= c GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= autogen.sh -USE_TOOLS+= autoconf automake autopoint gettext-m4 pkg-config gmake msgfmt +USE_TOOLS+= gettext-m4 pkg-config gmake msgfmt .include "options.mk" diff --git a/net/corebird/distinfo b/net/corebird/distinfo index fabc1a97ac7..d67054b389f 100644 --- a/net/corebird/distinfo +++ b/net/corebird/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.7 2016/10/01 13:05:15 joerg Exp $ +$NetBSD: distinfo,v 1.8 2016/10/26 20:34:00 ryoon Exp $ -SHA1 (corebird-1.3.1.tar.gz) = 3a55163f17b7a9812359843bdd49fc4a07719fd9 -RMD160 (corebird-1.3.1.tar.gz) = 5cb73cf6a565b671d3ca032c14cd20b91fc21bfa -SHA512 (corebird-1.3.1.tar.gz) = 698e2ee358af3071a14bea9bd788edf0e837a135a7c2321ed1eacf362a7c6ddc30b94514273d640b51f54bab2ff68cf2be5fd8d14abad2dc76189de25dc19fd5 -Size (corebird-1.3.1.tar.gz) = 433961 bytes +SHA1 (corebird-1.3.3.tar.xz) = adc34ba0616b430e7381879c42b44213912cdf6a +RMD160 (corebird-1.3.3.tar.xz) = e9263a6b5009a843fe21ffee41f65a5ff66828ae +SHA512 (corebird-1.3.3.tar.xz) = 5143c194058525415c7b30475b78be1ac6498d425c32fc3ff9493ac49b15d9e07d5ffc23acf68882f2c14776cfc377ee6c1d04a29c28099558c3cc1578762888 +Size (corebird-1.3.3.tar.xz) = 635980 bytes SHA1 (patch-data_Makefile.am) = c6e4939d567336855a5768c7fa0457d6a8a7dbdc +SHA1 (patch-data_Makefile.in) = 4d34f197eae110b4d022940be6c4b1b9ae7bdcea SHA1 (patch-po_Makevars) = 7d1f0dcef0caf53d6fa1187306d6264c158b8210 diff --git a/net/corebird/patches/patch-data_Makefile.in b/net/corebird/patches/patch-data_Makefile.in new file mode 100644 index 00000000000..dfa56a4eba0 --- /dev/null +++ b/net/corebird/patches/patch-data_Makefile.in @@ -0,0 +1,19 @@ +$NetBSD: patch-data_Makefile.in,v 1.1 2016/10/26 20:34:00 ryoon Exp $ + +--- data/Makefile.in.orig 2016-10-03 18:30:50.000000000 +0000 ++++ data/Makefile.in +@@ -828,12 +828,10 @@ uninstall-man: uninstall-man1 + + + %.desktop: %.desktop.in +- msgfmt --desktop -d $(top_srcdir)/po \ +- --template $< -o $@ ++ cp $^ $@ + + %.appdata.xml: %.appdata.xml.in +- msgfmt --xml -d $(top_srcdir)/po \ +- --template $< -o $@ ++ cp $^ $@ + + # Actually, just ignore gschema translations... + org.baedert.corebird.gschema.xml: org.baedert.corebird.gschema.xml.in -- cgit v1.2.3