svn commit: r431156 - in head/www: . miniminiweb
Larry Rosenman
ler at FreeBSD.org
Wed Jan 11 03:04:43 UTC 2017
Author: ler
Date: Wed Jan 11 03:04:41 2017
New Revision: 431156
URL: https://svnweb.freebsd.org/changeset/ports/431156
Log:
New Port www/miniminiweb
MiniMiniWeb is my attempt at creating a multithreaded web server in C.
Features (and Misfeatures)
Written in C
Multithreaded (with pthread)
Designed for Unix-like systems
Supports GET and POST requests
Only serves static files
No SSL
No CGI or anything "dynamic"
No Virtual Hosts
No Directory Listings (gotten pulled out)
No IPv6
PR: 211472
Submitted by: neel at neelc.org
Approved by: adamw (mentor)
Differential Revision: https://reviews.freebsd.org/D9127
Added:
head/www/miniminiweb/
head/www/miniminiweb/Makefile (contents, props changed)
head/www/miniminiweb/distinfo (contents, props changed)
head/www/miniminiweb/pkg-descr (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Wed Jan 11 02:41:40 2017 (r431155)
+++ head/www/Makefile Wed Jan 11 03:04:41 2017 (r431156)
@@ -407,6 +407,7 @@
SUBDIR += midori
SUBDIR += mimetex
SUBDIR += mini_httpd
+ SUBDIR += miniminiweb
SUBDIR += minio
SUBDIR += mitmproxy
SUBDIR += mkapachepw
Added: head/www/miniminiweb/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/miniminiweb/Makefile Wed Jan 11 03:04:41 2017 (r431156)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME= miniminiweb
+PORTVERSION= 0.0.2
+DISTVERSIONPREFIX= v
+CATEGORIES= www
+
+MAINTAINER= neel at neelc.org
+COMMENT= Minimal, Multithreaded web server in C
+
+LICENSE= BSD2CLAUSE
+
+USE_GITHUB= yes
+GH_ACCOUNT= neelchauhan
+GH_PROJECT= MiniMiniWeb
+
+ALL_TARGET= All
+
+PLIST_FILES= bin/${GH_PROJECT}
+
+.include <bsd.port.mk>
Added: head/www/miniminiweb/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/miniminiweb/distinfo Wed Jan 11 03:04:41 2017 (r431156)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1469924722
+SHA256 (neelchauhan-MiniMiniWeb-v0.0.2_GH0.tar.gz) = 3fcd37fc3aabfcf342b758ec1861f50d74c90ad9451065f6d107a12facc44e1c
+SIZE (neelchauhan-MiniMiniWeb-v0.0.2_GH0.tar.gz) = 4754
Added: head/www/miniminiweb/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/miniminiweb/pkg-descr Wed Jan 11 03:04:41 2017 (r431156)
@@ -0,0 +1,16 @@
+MiniMiniWeb is a minimal, multithreaded web server in C.
+
+Features (and Misfeatures)
+
+Written in C
+Multithreaded (with pthread)
+Designed for Unix-like systems
+Supports GET and POST requests
+Only serves static files
+No SSL
+No CGI or anything "dynamic"
+No Virtual Hosts
+No Directory Listings (gotten pulled out)
+No IPv6
+
+WWW: https://www.github.com/neelchauhan/MiniMiniWeb
More information about the svn-ports-all
mailing list