Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Sep 2020 23:07:58 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r548166 - in head/devel/kore: . files
Message-ID:  <202009092307.089N7w9l046400@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Wed Sep  9 23:07:57 2020
New Revision: 548166
URL: https://svnweb.freebsd.org/changeset/ports/548166

Log:
  devel/kore: Update to 4.0.1
  
  Changes:	https://kore.io/releases/4.0.1

Modified:
  head/devel/kore/Makefile
  head/devel/kore/distinfo
  head/devel/kore/files/patch-Makefile
  head/devel/kore/files/patch-kodev_Makefile
  head/devel/kore/pkg-plist

Modified: head/devel/kore/Makefile
==============================================================================
--- head/devel/kore/Makefile	Wed Sep  9 22:26:41 2020	(r548165)
+++ head/devel/kore/Makefile	Wed Sep  9 23:07:57 2020	(r548166)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	kore
-PORTVERSION=	4.0.0
+PORTVERSION=	4.0.1
 CATEGORIES=	devel www
 MASTER_SITES=	https://kore.io/releases/
 
@@ -58,20 +58,11 @@ post-patch:
 	@${REINPLACE_CMD} 's|%%OPENSSLINC%%|${OPENSSLINC}|g' \
 		${WRKSRC}/src/cli.c
 
-do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/kore \
-		${WRKSRC}/kodev/kodev \
-		${STAGEDIR}${PREFIX}/bin
-	@${MKDIR} ${STAGEDIR}${DATADIR}
-	${INSTALL_DATA} ${WRKSRC}/kore.features \
-		${STAGEDIR}${DATADIR}/features
-	@${MKDIR} ${STAGEDIR}${PREFIX}/include/kore
-	@cd ${WRKSRC}/include && \
-		${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/kore
-	${INSTALL_DATA} ${WRKSRC}/share/man/kodev.1 \
-		${STAGEDIR}${PREFIX}/share/man/man1
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/kodev \
+		${STAGEDIR}${PREFIX}/bin/kore
 
-do-install-EXAMPLES-on:
+post-install-EXAMPLES-on:
 	@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
 	@cd ${WRKSRC}/conf && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
 

Modified: head/devel/kore/distinfo
==============================================================================
--- head/devel/kore/distinfo	Wed Sep  9 22:26:41 2020	(r548165)
+++ head/devel/kore/distinfo	Wed Sep  9 23:07:57 2020	(r548166)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1599048567
-SHA256 (kore-4.0.0.tar.gz) = c4f5629c9fca7ede7664063a318021f58c7909cbff822dad8dca88da7d9043c2
-SIZE (kore-4.0.0.tar.gz) = 1064443
+TIMESTAMP = 1599692055
+SHA256 (kore-4.0.1.tar.gz) = bc8bf755133faf67755c3a4ea53db49f208986efeed734ce6be562a3e5a81057
+SIZE (kore-4.0.1.tar.gz) = 1063050

Modified: head/devel/kore/files/patch-Makefile
==============================================================================
--- head/devel/kore/files/patch-Makefile	Wed Sep  9 22:26:41 2020	(r548165)
+++ head/devel/kore/files/patch-Makefile	Wed Sep  9 23:07:57 2020	(r548166)
@@ -1,6 +1,6 @@
---- Makefile.orig	2020-08-26 07:20:35 UTC
+--- Makefile.orig	2020-09-08 19:35:30 UTC
 +++ Makefile
-@@ -46,12 +46,6 @@ ifneq ("$(DEBUG)", "")
+@@ -48,12 +48,6 @@ ifneq ("$(DEBUG)", "")
  	FEATURES+=-DKORE_DEBUG
  endif
  
@@ -13,12 +13,3 @@
  ifneq ("$(NOSENDFILE)", "")
  	CFLAGS+=-DKORE_NO_SENDFILE
  endif
-@@ -202,6 +196,8 @@ uninstall:
- 
- $(OBJDIR)/%.o: src/%.c
- 	$(CC) $(CFLAGS) -c $< -o $@
-+
-+src/python.c: $(PYTHON_CURLOPT)
- 
- clean:
- 	rm -f $(VERSION)

Modified: head/devel/kore/files/patch-kodev_Makefile
==============================================================================
--- head/devel/kore/files/patch-kodev_Makefile	Wed Sep  9 22:26:41 2020	(r548165)
+++ head/devel/kore/files/patch-kodev_Makefile	Wed Sep  9 23:07:57 2020	(r548166)
@@ -1,13 +1,19 @@
---- kodev/Makefile.orig	2018-07-09 12:06:06 UTC
+--- kodev/Makefile.orig	2020-09-08 19:35:30 UTC
 +++ kodev/Makefile
-@@ -11,8 +11,8 @@ S_SRC=	../src/cli.c
+@@ -12,14 +12,8 @@ S_SRC=	../src/cli.c
  CFLAGS+=-Wall -Werror -Wstrict-prototypes -Wmissing-prototypes
  CFLAGS+=-Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual
  CFLAGS+=-Wsign-compare -Iincludes -std=c99 -pedantic
 -CFLAGS+=-DPREFIX='"$(PREFIX)"'
 -LDFLAGS=-lcrypto
-+CFLAGS+=-DPREFIX='"$(PREFIX)"' -I${OPENSSLINC}
-+LDFLAGS+=-L${OPENSSLLIB} -lcrypto
+-
+-ifneq ("$(NOOPT)", "")
+-	CFLAGS+=-O0
+-else
+-	CFLAGS+=-O2
+-endif
++CFLAGS+=-DPREFIX='"$(PREFIX)"' -I$(OPENSSL_PATH)/include
++LDFLAGS+=-L$(OPENSSL_PATH)/lib -lcrypto
  
- ifneq ("$(NOOPT)", "")
- 	CFLAGS+=-O0
+ ifneq ("$(MINIMAL)", "")
+ 	CFLAGS+=-DKODEV_MINIMAL

Modified: head/devel/kore/pkg-plist
==============================================================================
--- head/devel/kore/pkg-plist	Wed Sep  9 22:26:41 2020	(r548165)
+++ head/devel/kore/pkg-plist	Wed Sep  9 23:07:57 2020	(r548166)
@@ -1,14 +1,14 @@
 bin/kodev
 bin/kore
-include/kore/kore/acme.h
-include/kore/kore/curl.h
-include/kore/kore/http.h
-include/kore/kore/jsonrpc.h
-include/kore/kore/kore.h
-include/kore/kore/pgsql.h
-include/kore/kore/python_api.h
-include/kore/kore/python_methods.h
-include/kore/kore/seccomp.h
-include/kore/kore/tasks.h
+include/kore/acme.h
+include/kore/curl.h
+include/kore/http.h
+include/kore/jsonrpc.h
+include/kore/kore.h
+include/kore/pgsql.h
+include/kore/python_api.h
+include/kore/python_methods.h
+include/kore/seccomp.h
+include/kore/tasks.h
 %%DATADIR%%/features
 share/man/man1/kodev.1.gz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009092307.089N7w9l046400>