pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
kore: remove, imported in pkgsrc as www/kore.
Module Name: pkgsrc-wip
Committed By: Frederic Cambus <fred%statdns.com@localhost>
Pushed By: fcambus
Date: Thu Aug 22 15:34:53 2019 +0200
Changeset: 1a91d7dd9abe467f5cfecc0b5b223f830c4801bb
Removed Files:
kore/DESCR
kore/Makefile
kore/PLIST
kore/distinfo
kore/options.mk
kore/patches/patch-Makefile
kore/patches/patch-kodev_Makefile
Log Message:
kore: remove, imported in pkgsrc as www/kore.
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=1a91d7dd9abe467f5cfecc0b5b223f830c4801bb
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
kore/DESCR | 6 -----
kore/Makefile | 20 -----------------
kore/PLIST | 13 -----------
kore/distinfo | 8 -------
kore/options.mk | 18 ---------------
kore/patches/patch-Makefile | 46 ---------------------------------------
kore/patches/patch-kodev_Makefile | 34 -----------------------------
7 files changed, 145 deletions(-)
diffs:
diff --git a/kore/DESCR b/kore/DESCR
deleted file mode 100644
index f61ef099d3..0000000000
--- a/kore/DESCR
+++ /dev/null
@@ -1,6 +0,0 @@
-Kore is an easy to use web application framework for writing scalable
-web APIs in C.
-
-Its main goals are security, scalability and allowing rapid development
-and deployment of such APIs. Because of this Kore is an ideal candidate
-for building robust, scalable and secure web things.
diff --git a/kore/Makefile b/kore/Makefile
deleted file mode 100644
index 2c5eec0230..0000000000
--- a/kore/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# $NetBSD$
-
-DISTNAME= kore-3.3.1
-CATEGORIES= www
-MASTER_SITES= https://kore.io/releases/
-
-MAINTAINER= fcambus%NetBSD.org@localhost
-HOMEPAGE= https://kore.io/
-COMMENT= Web application framework for writing scalable web APIs in C
-LICENSE= isc
-
-USE_LANGUAGES= c99
-USE_TOOLS+= gmake
-
-MAKE_FLAGS+= MAN_DIR="${PREFIX}/${PKGMANDIR}"
-MAKE_FLAGS+= TASKS=1
-
-.include "options.mk"
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/kore/PLIST b/kore/PLIST
deleted file mode 100644
index 728424f103..0000000000
--- a/kore/PLIST
+++ /dev/null
@@ -1,13 +0,0 @@
-@comment $NetBSD$
-bin/kodev
-bin/kore
-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/tasks.h
-man/man1/kodev.1
-share/kore/features
diff --git a/kore/distinfo b/kore/distinfo
deleted file mode 100644
index 1d36316040..0000000000
--- a/kore/distinfo
+++ /dev/null
@@ -1,8 +0,0 @@
-$NetBSD$
-
-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
diff --git a/kore/options.mk b/kore/options.mk
deleted file mode 100644
index 9f9d59d97c..0000000000
--- a/kore/options.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# $NetBSD$
-
-PKG_OPTIONS_VAR= PKG_OPTIONS.kore
-PKG_SUPPORTED_OPTIONS= curl debug
-
-.include "../../mk/bsd.options.mk"
-
-# Compile in asynchronous curl support
-.if !empty(PKG_OPTIONS:Mcurl)
-. include "../../www/curl/buildlink3.mk"
-MAKE_FLAGS+= CURL=1
-USE_TOOLS+= pkg-config
-.endif
-
-# Enable use of -d for debug
-.if !empty(PKG_OPTIONS:Mdebug)
-MAKE_FLAGS+= DEBUG=1
-.endif
diff --git a/kore/patches/patch-Makefile b/kore/patches/patch-Makefile
deleted file mode 100644
index 741d4179db..0000000000
--- a/kore/patches/patch-Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-$NetBSD$
-
-Adapt install target for pkgsrc.
-
---- Makefile.orig 2019-06-03 13:29:24.000000000 +0000
-+++ Makefile
-@@ -1,6 +1,7 @@
- # Kore Makefile
-
- CC?=cc
-+DESTDIR?=
- PREFIX?=/usr/local
- OBJDIR?=obj
- KORE=kore
-@@ -46,8 +47,6 @@ endif
-
- ifneq ("$(NOOPT)", "")
- CFLAGS+=-O0
--else
-- CFLAGS+=-O2
- endif
-
- ifneq ("$(NOSENDFILE)", "")
-@@ -176,14 +175,14 @@ $(OBJDIR):
- @mkdir -p $(OBJDIR)
-
- install:
-- mkdir -p $(SHARE_DIR)
-- mkdir -p $(INCLUDE_DIR)
-- mkdir -p $(INSTALL_DIR)
-- mkdir -p $(MAN_DIR)/man1
-- install -m 644 share/man/kodev.1 $(MAN_DIR)/man1/kodev.1
-- install -m 555 $(KORE) $(INSTALL_DIR)/$(KORE)
-- install -m 644 kore.features $(SHARE_DIR)/features
-- install -m 644 include/kore/*.h $(INCLUDE_DIR)
-+ mkdir -p $(DESTDIR)$(SHARE_DIR)
-+ mkdir -p $(DESTDIR)$(INCLUDE_DIR)
-+ mkdir -p $(DESTDIR)$(INSTALL_DIR)
-+ mkdir -p $(DESTDIR)$(MAN_DIR)/man1
-+ install -m 644 share/man/kodev.1 $(DESTDIR)$(MAN_DIR)/man1/kodev.1
-+ install -m 555 $(KORE) $(DESTDIR)$(INSTALL_DIR)/$(KORE)
-+ install -m 644 kore.features $(DESTDIR)$(SHARE_DIR)/features
-+ install -m 644 include/kore/*.h $(DESTDIR)$(INCLUDE_DIR)
- $(MAKE) -C kodev install
-
- uninstall:
diff --git a/kore/patches/patch-kodev_Makefile b/kore/patches/patch-kodev_Makefile
deleted file mode 100644
index 1f5568fc8c..0000000000
--- a/kore/patches/patch-kodev_Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-$NetBSD$
-
-Adapt install target for pkgsrc.
-
---- kodev/Makefile.orig 2019-06-03 13:29:24.000000000 +0000
-+++ kodev/Makefile
-@@ -4,6 +4,7 @@ CC?=cc
- PREFIX?=/usr/local
- OBJDIR?=obj
- KODEV=kodev
-+DESTDIR?=
- INSTALL_DIR=$(PREFIX)/bin
-
- S_SRC= ../src/cli.c
-@@ -16,8 +17,6 @@ LDFLAGS=-lcrypto
-
- ifneq ("$(NOOPT)", "")
- CFLAGS+=-O0
--else
-- CFLAGS+=-O2
- endif
-
- OSNAME=$(shell uname -s | sed -e 's/[-_].*//g' | tr A-Z a-z)
-@@ -37,8 +36,8 @@ $(OBJDIR):
- @mkdir -p $(OBJDIR)
-
- install: $(KODEV)
-- mkdir -p $(INSTALL_DIR)
-- install -m 555 $(KODEV) $(INSTALL_DIR)/$(KODEV)
-+ mkdir -p $(DESTDIR)$(INSTALL_DIR)
-+ install -m 555 $(KODEV) $(DESTDIR)$(INSTALL_DIR)/$(KODEV)
-
- uninstall:
- rm -f $(INSTALL_DIR)/$(KODEV)
Home |
Main Index |
Thread Index |
Old Index