pkgsrc-WIP-changes archive

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

edbrowse: Update to 3.7.5.1



Module Name:	pkgsrc-wip
Committed By:	Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By:	leot
Date:		Wed Feb 10 22:57:42 2021 +0100
Changeset:	fecdf06ffceb0f5747a544e149eb32496214e165

Modified Files:
	edbrowse/Makefile
	edbrowse/distinfo
Removed Files:
	edbrowse/patches/patch-src_http.c

Log Message:
edbrowse: Update to 3.7.5.1

pkgsrc changes:
 - Remove patches/patch-src_http.c, now present in the release.

Changes:
========
3.7.5.1
-------
Search function on gopher.

Use threads to download files in the background and in parallel,
instead of processes.

Get the windows port working again; it hasn't worked for a while.
It didn't work because of fork; now that we are threaded it can comne back to life.
That by itself seems worth releasing a mini-version.

3.7.5
-----
ib command to allocate input buffers for textareas.

fll command to set the format line length. fll 80+ to allow a little overflow past 80 columns.

Convert dos \r\n newlines to simple \n.
This always happened in the dos world, now it happens in unix too.
Writing the same file back out converts newlines back.
It can be controlled by the iu command.
This follows the model of iso8859-1 to and from utf8.

Download javascript files in parallel and in background, experimental. Toggle with jsbg command. Works with openssl but not gnutls.

trace and breakpoints in the deminimized local javascript files.

snapshot() function to build a local copy of a website for debugging.

Don't include the (substantial) deminimization code unless EBDEMIN is set.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=fecdf06ffceb0f5747a544e149eb32496214e165

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

diffstat:
 edbrowse/Makefile                 |  2 +-
 edbrowse/distinfo                 |  9 ++++-----
 edbrowse/patches/patch-src_http.c | 21 ---------------------
 3 files changed, 5 insertions(+), 27 deletions(-)

diffs:
diff --git a/edbrowse/Makefile b/edbrowse/Makefile
index b1dcbc8032..2c4de0850d 100644
--- a/edbrowse/Makefile
+++ b/edbrowse/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	edbrowse-3.7.4
+DISTNAME=	edbrowse-3.7.5.1
 CATEGORIES=	www
 MASTER_SITES=	${MASTER_SITE_GITHUB:=CMB/}
 GITHUB_TAG=	v${PKGVERSION_NOREV}
diff --git a/edbrowse/distinfo b/edbrowse/distinfo
index 39727a457d..425d32d586 100644
--- a/edbrowse/distinfo
+++ b/edbrowse/distinfo
@@ -1,8 +1,7 @@
 $NetBSD$
 
-SHA1 (edbrowse-3.7.4.tar.gz) = 774fb0cfbf634b3ac6b5f04924c69a8fe2ec3cfe
-RMD160 (edbrowse-3.7.4.tar.gz) = eb62948767144f67e1bb790e4e6e2c128300a112
-SHA512 (edbrowse-3.7.4.tar.gz) = 79b2b450b6f54f3d74b7c722f223b3340b3ddfa1cbff2d69adcd1cd4ffb76b78a812a35a053cf224a74543020ef8423cd68eafa9a277451245d383065fb1595d
-Size (edbrowse-3.7.4.tar.gz) = 765794 bytes
+SHA1 (edbrowse-3.7.5.1.tar.gz) = 63057c3cc159267745d9a89cb3790fe639d2fc36
+RMD160 (edbrowse-3.7.5.1.tar.gz) = 5c7e7505877e42b9520dc515fa8a7c03c01a00fa
+SHA512 (edbrowse-3.7.5.1.tar.gz) = ec217bf98334e8b493a1a80082cebfb11da9fa84d20d8b5f3f3286a78ae1dc6a2731c578d000f9f0f19d3dcbec9aa2c3e2a6b5b35f7ea7672840b9bcd1c5c67a
+Size (edbrowse-3.7.5.1.tar.gz) = 790742 bytes
 SHA1 (patch-CMakeLists.txt) = 0c69e43f680cc2ddec42802d7ac1b7a3ef669e4a
-SHA1 (patch-src_http.c) = 7389ac4c3b67cacde586363e536d860f1b05fc67
diff --git a/edbrowse/patches/patch-src_http.c b/edbrowse/patches/patch-src_http.c
deleted file mode 100644
index afaf19743f..0000000000
--- a/edbrowse/patches/patch-src_http.c
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD$
-
-Backport patch from upstream (commit 5d2b9e21fdf019f461ebe62738d615428d5db963)
-to fix build with curl 7.62.0.
-
-From CHANGES:
-ssl: deprecate CURLE_SSL_CACERT in favour of a unified error code
-     Long live CURLE_PEER_FAILED_VERIFICATION
-
---- src/http.c.orig	2018-06-27 17:42:33.000000000 +0000
-+++ src/http.c
-@@ -1555,7 +1555,9 @@ void ebcurl_setError(CURLcode curlret, c
- 		break;
- 
- 	case CURLE_PEER_FAILED_VERIFICATION:
-+#if LIBCURL_VERSION_NUM < 0x073e00
- 	case CURLE_SSL_CACERT:
-+#endif
- 		(*fn) (MSG_NoCertify, host);
- 		break;
- 


Home | Main Index | Thread Index | Old Index