From owner-svn-ports-all@freebsd.org Wed Jan 11 03:04:43 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 665A9CA9759; Wed, 11 Jan 2017 03:04:43 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B17C1E6A; Wed, 11 Jan 2017 03:04:43 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0B34gNE031363; Wed, 11 Jan 2017 03:04:42 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0B34f5u031359; Wed, 11 Jan 2017 03:04:41 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201701110304.v0B34f5u031359@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Wed, 11 Jan 2017 03:04:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431156 - in head/www: . miniminiweb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jan 2017 03:04:43 -0000 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@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@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 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