Source-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/kore kore: update to 4.0.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c7618fb8fb81
branches:  trunk
changeset: 437851:c7618fb8fb81
user:      fcambus <fcambus%pkgsrc.org@localhost>
date:      Tue Sep 01 19:25:00 2020 +0000

description:
kore: update to 4.0.0.

ChangeLog:

- Fully priviledge seperated ACME support with Let's Encrypt or any
  compatible ACME provider.
- A better way of writing Kore Python applications.
- Full seccomp sandboxing for acme, keymgr and worker processes on Linux.
- Ability to mix TLS and non-TLS servers in a single configuration.
- Many improvements to the Python asynchronous runtime.
- Configuration based redirection.
- A complete builtin and easy to use JSON parser.
- Several bug fixes and speed improvements.

diffstat:

 www/kore/Makefile                     |   5 ++---
 www/kore/PLIST                        |   4 +++-
 www/kore/distinfo                     |  18 +++++++++---------
 www/kore/patches/patch-Makefile       |   8 ++++----
 www/kore/patches/patch-kodev_Makefile |   8 ++++----
 www/kore/patches/patch-src_cli.c      |   6 +++---
 www/kore/patches/patch-src_http.c     |   6 +++---
 7 files changed, 28 insertions(+), 27 deletions(-)

diffs (143 lines):

diff -r aa8747b8780b -r c7618fb8fb81 www/kore/Makefile
--- a/www/kore/Makefile Tue Sep 01 14:15:29 2020 +0000
+++ b/www/kore/Makefile Tue Sep 01 19:25:00 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2020/05/22 10:56:45 adam Exp $
+# $NetBSD: Makefile,v 1.8 2020/09/01 19:25:00 fcambus Exp $
 
-DISTNAME=      kore-3.3.1
-PKGREVISION=   5
+DISTNAME=      kore-4.0.0
 CATEGORIES=    www
 MASTER_SITES=  https://kore.io/releases/
 
diff -r aa8747b8780b -r c7618fb8fb81 www/kore/PLIST
--- a/www/kore/PLIST    Tue Sep 01 14:15:29 2020 +0000
+++ b/www/kore/PLIST    Tue Sep 01 19:25:00 2020 +0000
@@ -1,6 +1,7 @@
-@comment $NetBSD: PLIST,v 1.1 2019/08/22 13:30:31 fcambus Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/09/01 19:25:00 fcambus Exp $
 bin/kodev
 bin/kore
+include/kore/acme.h
 include/kore/curl.h
 include/kore/http.h
 include/kore/jsonrpc.h
@@ -8,6 +9,7 @@
 include/kore/pgsql.h
 include/kore/python_api.h
 include/kore/python_methods.h
+include/kore/seccomp.h
 include/kore/tasks.h
 man/man1/kodev.1
 share/kore/features
diff -r aa8747b8780b -r c7618fb8fb81 www/kore/distinfo
--- a/www/kore/distinfo Tue Sep 01 14:15:29 2020 +0000
+++ b/www/kore/distinfo Tue Sep 01 19:25:00 2020 +0000
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.2 2020/01/12 23:01:05 joerg Exp $
+$NetBSD: distinfo,v 1.3 2020/09/01 19:25:00 fcambus Exp $
 
-SHA1 (kore-3.3.1.tar.gz) = 6f1caa21cbedda8b9757bc3d363bf8389ecb47fc
-RMD160 (kore-3.3.1.tar.gz) = 706efbac47e047427ed50d6e55f709c52626850b
-SHA512 (kore-3.3.1.tar.gz) = a6641632fdd125948379884920e5804f428650644b25c757adaace86a286b69ff62947ba85601f9851abbacd697e6fd9385c37c1b2571e55a3f23b15e33a4750
-Size (kore-3.3.1.tar.gz) = 1009866 bytes
-SHA1 (patch-Makefile) = 585cf7936d69b486391a44c88e10b6db1d8ec0ca
-SHA1 (patch-kodev_Makefile) = a5366d2879f59f27302b08d33f50620698ff5654
-SHA1 (patch-src_cli.c) = 05b88accc4e1bc353c8c5eb18273dc99498355c5
-SHA1 (patch-src_http.c) = d34c6270f5779c7e16e4d30ad6c5d2132f3931a0
+SHA1 (kore-4.0.0.tar.gz) = e141ab0c822670bb12f16444620d4d5dad0e032e
+RMD160 (kore-4.0.0.tar.gz) = 86633d5e576fd627cbf56e7fce18f00aa1b021dc
+SHA512 (kore-4.0.0.tar.gz) = 3890e22a5498ec9e4018609faaf613e386ac3bc93a71b7427e5a9f901c772b5cf7415fb987560b41163e238b362eeb2169abf7511014a3be689d56dd064bbdf8
+Size (kore-4.0.0.tar.gz) = 1064443 bytes
+SHA1 (patch-Makefile) = 5b5ec065b60bca4f84175c77ef08f536f8e3e21c
+SHA1 (patch-kodev_Makefile) = 770a08a92c59a58ebb6f67306489cd2c10a5d190
+SHA1 (patch-src_cli.c) = aa5a2947dc168041d8b87917de76334442bd3738
+SHA1 (patch-src_http.c) = 8f0415e01fda6e95fbd9396a44c444ff3eac696e
diff -r aa8747b8780b -r c7618fb8fb81 www/kore/patches/patch-Makefile
--- a/www/kore/patches/patch-Makefile   Tue Sep 01 14:15:29 2020 +0000
+++ b/www/kore/patches/patch-Makefile   Tue Sep 01 19:25:00 2020 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-Makefile,v 1.1 2019/08/22 13:30:31 fcambus Exp $
+$NetBSD: patch-Makefile,v 1.2 2020/09/01 19:25:00 fcambus Exp $
 
 Adapt install target for pkgsrc.
 
---- Makefile.orig      2019-06-03 13:29:24.000000000 +0000
+--- Makefile.orig      2020-08-26 07:20:35.000000000 +0000
 +++ Makefile
 @@ -1,6 +1,7 @@
  # Kore Makefile
@@ -12,7 +12,7 @@
  PREFIX?=/usr/local
  OBJDIR?=obj
  KORE=kore
-@@ -46,8 +47,6 @@ endif
+@@ -48,8 +49,6 @@ endif
  
  ifneq ("$(NOOPT)", "")
        CFLAGS+=-O0
@@ -21,7 +21,7 @@
  endif
  
  ifneq ("$(NOSENDFILE)", "")
-@@ -176,14 +175,14 @@ $(OBJDIR):
+@@ -184,14 +183,14 @@ $(OBJDIR):
        @mkdir -p $(OBJDIR)
  
  install:
diff -r aa8747b8780b -r c7618fb8fb81 www/kore/patches/patch-kodev_Makefile
--- a/www/kore/patches/patch-kodev_Makefile     Tue Sep 01 14:15:29 2020 +0000
+++ b/www/kore/patches/patch-kodev_Makefile     Tue Sep 01 19:25:00 2020 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-kodev_Makefile,v 1.1 2019/08/22 13:30:31 fcambus Exp $
+$NetBSD: patch-kodev_Makefile,v 1.2 2020/09/01 19:25:00 fcambus Exp $
 
 Adapt install target for pkgsrc.
 
---- kodev/Makefile.orig        2019-06-03 13:29:24.000000000 +0000
+--- kodev/Makefile.orig        2020-08-26 07:20:35.000000000 +0000
 +++ kodev/Makefile
 @@ -4,6 +4,7 @@ CC?=cc
  PREFIX?=/usr/local
@@ -20,8 +20,8 @@
 -      CFLAGS+=-O2
  endif
  
- OSNAME=$(shell uname -s | sed -e 's/[-_].*//g' | tr A-Z a-z)
-@@ -37,8 +36,8 @@ $(OBJDIR):
+ ifneq ("$(MINIMAL)", "")
+@@ -42,8 +41,8 @@ $(OBJDIR):
        @mkdir -p $(OBJDIR)
  
  install: $(KODEV)
diff -r aa8747b8780b -r c7618fb8fb81 www/kore/patches/patch-src_cli.c
--- a/www/kore/patches/patch-src_cli.c  Tue Sep 01 14:15:29 2020 +0000
+++ b/www/kore/patches/patch-src_cli.c  Tue Sep 01 19:25:00 2020 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-src_cli.c,v 1.1 2020/01/12 23:01:06 joerg Exp $
+$NetBSD: patch-src_cli.c,v 1.2 2020/09/01 19:25:00 fcambus Exp $
 
---- src/cli.c.orig     2020-01-11 18:45:39.562950385 +0000
+--- src/cli.c.orig     2020-08-26 07:20:35.000000000 +0000
 +++ src/cli.c
-@@ -985,7 +985,7 @@ cli_build_asset(char *fpath, struct dire
+@@ -1120,7 +1120,7 @@ cli_build_asset(char *fpath, struct dire
  
        /* Replace dots, spaces, etc etc with underscores. */
        for (p = name; *p != '\0'; p++) {
diff -r aa8747b8780b -r c7618fb8fb81 www/kore/patches/patch-src_http.c
--- a/www/kore/patches/patch-src_http.c Tue Sep 01 14:15:29 2020 +0000
+++ b/www/kore/patches/patch-src_http.c Tue Sep 01 19:25:00 2020 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-src_http.c,v 1.1 2020/01/12 23:01:06 joerg Exp $
+$NetBSD: patch-src_http.c,v 1.2 2020/09/01 19:25:00 fcambus Exp $
 
---- src/http.c.orig    2020-01-11 18:36:08.320328389 +0000
+--- src/http.c.orig    2020-08-26 07:20:35.000000000 +0000
 +++ src/http.c
-@@ -983,7 +983,7 @@ http_argument_urldecode(char *arg)
+@@ -1002,7 +1002,7 @@ http_argument_urldecode(char *arg)
                        return (KORE_RESULT_ERROR);
                }
  



Home | Main Index | Thread Index | Old Index