summaryrefslogtreecommitdiff
path: root/net/corebird
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2017-01-31 13:26:22 +0000
committerryoon <ryoon@pkgsrc.org>2017-01-31 13:26:22 +0000
commit5a025c25f58b784d412bc4c632ede33fa58c6040 (patch)
treec9c87010c620a30d99206ea0c7a92e7af6ef8d90 /net/corebird
parent222b3fff88fd5f892ea8401a4e0e8abe7067bc11 (diff)
downloadpkgsrc-5a025c25f58b784d412bc4c632ede33fa58c6040.tar.gz
Update to 1.4.2
* Remove an included patches for --disable-video Changelog: - Fix a crash when going back from a tweet with media to another tweet with media - Fix compilation with --disable-video - Decrease log level of UserStream output to debug when no internet connection is present
Diffstat (limited to 'net/corebird')
-rw-r--r--net/corebird/Makefile7
-rw-r--r--net/corebird/distinfo11
-rw-r--r--net/corebird/patches/patch-src_widgets_MediaVideoWidget.vala24
3 files changed, 8 insertions, 34 deletions
diff --git a/net/corebird/Makefile b/net/corebird/Makefile
index 019f403a80e..b0a3e5fe540 100644
--- a/net/corebird/Makefile
+++ b/net/corebird/Makefile
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.22 2017/01/22 20:48:07 maya Exp $
+# $NetBSD: Makefile,v 1.23 2017/01/31 13:26:22 ryoon Exp $
-DISTNAME= corebird-1.4.1
-PKGREVISION= 1
+DISTNAME= corebird-1.4.2
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=baedert/}
GITHUB_PROJECT= corebird
-GITHUB_RELEASE= 1.4.1
+GITHUB_RELEASE= 1.4.2
EXTRACT_SUFX= .tar.xz
MAINTAINER= pkgsrc-users@NetBSD.org
diff --git a/net/corebird/distinfo b/net/corebird/distinfo
index c8675c96166..b1fb622a022 100644
--- a/net/corebird/distinfo
+++ b/net/corebird/distinfo
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.9 2017/01/14 09:28:41 ryoon Exp $
+$NetBSD: distinfo,v 1.10 2017/01/31 13:26:22 ryoon Exp $
-SHA1 (corebird-1.4.1.tar.xz) = f979a83e2a8bc19b0eb36f4c22296b2ac3a83c0a
-RMD160 (corebird-1.4.1.tar.xz) = febcf0b061b928f166ee8436bd31d9a6a6cf65fb
-SHA512 (corebird-1.4.1.tar.xz) = 3656517f3c01faa0136f62a4f752cb1d48f497cd615a5bce77a6aece9239ce77340eeef6a3af73cebcc6a84c7efd82a24be1376d28d9c1cfa342239840148fc4
-Size (corebird-1.4.1.tar.xz) = 648564 bytes
+SHA1 (corebird-1.4.2.tar.xz) = e87c2fe5deb9c25cedb864266ab40169ab8cea02
+RMD160 (corebird-1.4.2.tar.xz) = a9f7ea2149b091f7ec7aa3e68ed6feeafad748d6
+SHA512 (corebird-1.4.2.tar.xz) = 01ceecace259183351068f18336d503c5169a8b24fba683c80bea5da39a8d8957f24913d9c51b0af713a26d32bcfb7c492300a0f82d680d6c8d19284d005df54
+Size (corebird-1.4.2.tar.xz) = 648448 bytes
SHA1 (patch-data_Makefile.am) = cebf21049f03cdcca06b476040125edcdc86d675
SHA1 (patch-data_Makefile.in) = 8ed5776f7b694a7cf574f5e8097811eb7cd060b4
SHA1 (patch-po_Makevars) = 7d1f0dcef0caf53d6fa1187306d6264c158b8210
-SHA1 (patch-src_widgets_MediaVideoWidget.vala) = 6dc9c90649b93b2fa6e6e02b94f8a3ef667c19d2
diff --git a/net/corebird/patches/patch-src_widgets_MediaVideoWidget.vala b/net/corebird/patches/patch-src_widgets_MediaVideoWidget.vala
deleted file mode 100644
index bb3e60b0e44..00000000000
--- a/net/corebird/patches/patch-src_widgets_MediaVideoWidget.vala
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-src_widgets_MediaVideoWidget.vala,v 1.1 2017/01/14 09:28:41 ryoon Exp $
-
-Fix --disable-video build
-from upstream:
-https://github.com/baedert/corebird/commit/1718570443777125de6347d4fd1721c68fe67bf2#diff-fbbcc65d4fd928071622b189ff5cf7dd
-
---- src/widgets/MediaVideoWidget.vala.orig 2017-01-06 15:03:14.000000000 +0000
-+++ src/widgets/MediaVideoWidget.vala
-@@ -79,6 +79,7 @@ class MediaVideoWidget : Gtk.Stack {
- }
-
- private bool progress_timeout_cb () {
-+#if VIDEO
- int64 duration_ns;
- int64 position_ns;
-
-@@ -88,6 +89,7 @@ class MediaVideoWidget : Gtk.Stack {
- double fraction = (double) position_ns / (double) duration_ns;
- this.video_progress.set_fraction (fraction);
- }
-+#endif
-
- return GLib.Source.CONTINUE;
- }