pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/vimb



Module Name:    pkgsrc
Committed By:   leot
Date:           Sun Mar 31 20:52:16 UTC 2019

Modified Files:
        pkgsrc/www/vimb: Makefile distinfo
Added Files:
        pkgsrc/www/vimb/patches: patch-Makefile

Log Message:
vimb: Update to 3.4.0

Changes:
3.4.0
=====
Added
-----
* Allow to show video in fullscreen, without statusbar and inputbox, if requested.
* Added option `--no-maximize` to no start with maximized window #483.
* New setting `prevent-newwindow` to enforce opening links into same window
  even if they are crafted by `target="_blank"` or using `window.open(...)` #544.

Changed
-------
* Increased min required webkit version to 2.20.x.
* Use man page date instead of build date to make reproducible builds.
* URLs shown on statusbar and title are now shown as punicode if they contain
  homographs.

Fixed
-----
* Fix out-of-bounds buffer access in parse_command (Thanks to Sören Tempel) #529.
* Fixed none shown hint labels by Content-Security-Policy headers #531.
* Fixed segfault on JavaScript `window.close()` call #537.
* Fixed no char inserted in input mode after timeout and imap/inoremap
  candidate #546.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 pkgsrc/www/vimb/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/vimb/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/www/vimb/patches/patch-Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/vimb/Makefile
diff -u pkgsrc/www/vimb/Makefile:1.28 pkgsrc/www/vimb/Makefile:1.29
--- pkgsrc/www/vimb/Makefile:1.28       Sat Jan 26 11:27:51 2019
+++ pkgsrc/www/vimb/Makefile    Sun Mar 31 20:52:16 2019
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2019/01/26 11:27:51 leot Exp $
+# $NetBSD: Makefile,v 1.29 2019/03/31 20:52:16 leot Exp $
 
-DISTNAME=      vimb-3.3.0
-PKGREVISION=   2
+DISTNAME=      vimb-3.4.0
 CATEGORIES=    www
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=fanglingsu/}
 

Index: pkgsrc/www/vimb/distinfo
diff -u pkgsrc/www/vimb/distinfo:1.3 pkgsrc/www/vimb/distinfo:1.4
--- pkgsrc/www/vimb/distinfo:1.3        Fri Nov 16 11:05:31 2018
+++ pkgsrc/www/vimb/distinfo    Sun Mar 31 20:52:16 2019
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.3 2018/11/16 11:05:31 leot Exp $
+$NetBSD: distinfo,v 1.4 2019/03/31 20:52:16 leot Exp $
 
-SHA1 (vimb-3.3.0.tar.gz) = 32e730b01b12fb647ded33569765947bb75dae50
-RMD160 (vimb-3.3.0.tar.gz) = de57de2e19398e71fc8f7ef5a3f575d7b87291b7
-SHA512 (vimb-3.3.0.tar.gz) = 9bdf89455504ed6fff11d8b33a0c8faa9b84bdb432f1e6ebb4ec6611c29b796ae8dd6ed3536b4e421291d239de603e8a902b2665263b9db91bfcb11204d848a0
-Size (vimb-3.3.0.tar.gz) = 136151 bytes
+SHA1 (vimb-3.4.0.tar.gz) = 6a179822fd5bb03a4597ffc7267ccd2e8357ad16
+RMD160 (vimb-3.4.0.tar.gz) = a339e8227bbace0004d10f6d36095079559da973
+SHA512 (vimb-3.4.0.tar.gz) = 80586c1ee5836b848a63cb4efd53c4a75fbeede0a3f6ee405b6e145063a17c32c3856af122b6a385cd2283519b86ad480fbf88c978ec0a32830c74d68c95a6ea
+Size (vimb-3.4.0.tar.gz) = 138452 bytes
+SHA1 (patch-Makefile) = 973017a0cc4b2a65535aaa40ae2eb63a4b020acf

Added files:

Index: pkgsrc/www/vimb/patches/patch-Makefile
diff -u /dev/null pkgsrc/www/vimb/patches/patch-Makefile:1.1
--- /dev/null   Sun Mar 31 20:52:16 2019
+++ pkgsrc/www/vimb/patches/patch-Makefile      Sun Mar 31 20:52:16 2019
@@ -0,0 +1,16 @@
+$NetBSD: patch-Makefile,v 1.1 2019/03/31 20:52:16 leot Exp $
+
+Backport upstream commit 0eda3ec2ac78577a08ace4c18cd9e912a56609e6
+to fix the build for vimb released versions.
+
+--- Makefile.orig      2019-03-26 22:47:03.000000000 +0000
++++ Makefile
+@@ -3,7 +3,7 @@ include config.mk
+ 
+ all: version.h src.subdir-all
+ 
+-version.h: Makefile .git/index
++version.h: Makefile $(wildcard .git/index)
+       @echo "create $@"
+       $(Q)v="$$(git describe --tags 2>/dev/null)"; \
+       echo "#define VERSION \"$${v:-$(version)}\"" > $@



Home | Main Index | Thread Index | Old Index