From owner-svn-ports-all@freebsd.org Fri Apr 27 10:33:00 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A550BFA44D6; Fri, 27 Apr 2018 10:33:00 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 589E670A39; Fri, 27 Apr 2018 10:33:00 +0000 (UTC) (envelope-from tobik@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5389025506; Fri, 27 Apr 2018 10:33:00 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3RAX031015000; Fri, 27 Apr 2018 10:33:00 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3RAWx9a014971; Fri, 27 Apr 2018 10:32:59 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201804271032.w3RAWx9a014971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 27 Apr 2018 10:32:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468415 - in head/devel: . samurai X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/devel: . samurai X-SVN-Commit-Revision: 468415 X-SVN-Commit-Repository: ports 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.25 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: Fri, 27 Apr 2018 10:33:00 -0000 Author: tobik Date: Fri Apr 27 10:32:59 2018 New Revision: 468415 URL: https://svnweb.freebsd.org/changeset/ports/468415 Log: New port: devel/samurai samurai is a ninja-compatible build tool written in C99 with a focus on simplicity, speed, and portability. It implements the ninja build language through version 1.8.2 except for MSVC dependency handling (deps = msvc). It uses the same format for .ninja_log and .ninja_deps as ninja, currently version 5 and 3 respectively. It is largely feature-complete and supports most of the same options as ninja. WWW: https://github.com/michaelforney/samurai Added: head/devel/samurai/ head/devel/samurai/Makefile (contents, props changed) head/devel/samurai/distinfo (contents, props changed) head/devel/samurai/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 27 10:16:47 2018 (r468414) +++ head/devel/Makefile Fri Apr 27 10:32:59 2018 (r468415) @@ -5970,6 +5970,7 @@ SUBDIR += rvm SUBDIR += sabre SUBDIR += safe-iop + SUBDIR += samurai SUBDIR += sbt SUBDIR += scalatest SUBDIR += scandoc Added: head/devel/samurai/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/samurai/Makefile Fri Apr 27 10:32:59 2018 (r468415) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= samurai +DISTVERSION= 0.3 +CATEGORIES= devel +MASTER_SITES= https://github.com/michaelforney/samurai/releases/download/${DISTVERSION}/ + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Ninja-compatible build tool written in C + +LICENSE= APACHE20 MIT +LICENSE_COMB= multi +LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE +LICENSE_FILE_MIT= ${WRKSRC}/LICENSE + +ALL_TARGET= samu +PLIST_FILES= bin/samu man/man1/samu.1.gz + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/samu ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/samu.1 ${STAGEDIR}${PREFIX}/man/man1 + +.include Added: head/devel/samurai/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/samurai/distinfo Fri Apr 27 10:32:59 2018 (r468415) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524823953 +SHA256 (samurai-0.3.tar.gz) = 2a93d09a2dc97a9930d2757f2829c599d7ca339c7df61b048210c6be18d318b0 +SIZE (samurai-0.3.tar.gz) = 26450 Added: head/devel/samurai/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/samurai/pkg-descr Fri Apr 27 10:32:59 2018 (r468415) @@ -0,0 +1,12 @@ +samurai is a ninja-compatible build tool written in C99 with a focus on +simplicity, speed, and portability. + +It implements the ninja build language through version 1.8.2 except +for MSVC dependency handling (deps = msvc). It uses the same format +for .ninja_log and .ninja_deps as ninja, currently version 5 and 3 +respectively. + +It is largely feature-complete and supports most of the same options as +ninja. + +WWW: https://github.com/michaelforney/samurai