pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel



Module Name:    pkgsrc
Committed By:   ng0
Date:           Wed Dec 11 23:36:29 UTC 2019

Modified Files:
        pkgsrc/devel: Makefile
Added Files:
        pkgsrc/devel/samurai: DESCR Makefile PLIST distinfo

Log Message:
devel: Add samurai.

samurai is a ninja-compatible build tool written in C99 with a focus on
simplicity, speed, and portability.

samurai implements the ninja build language through version 1.9.0 except
for MSVC dependency handling (`deps = msvc`). It uses the same format
for `.ninja_log` and `.ninja_deps` as ninja, currently version 5 and 4
respectively.

It is feature-complete and supports most of the same options as ninja.

samurai requires various POSIX.1-2008 interfaces.


To generate a diff of this commit:
cvs rdiff -u -r1.2960 -r1.2961 pkgsrc/devel/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/samurai/DESCR \
    pkgsrc/devel/samurai/Makefile pkgsrc/devel/samurai/PLIST \
    pkgsrc/devel/samurai/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/Makefile
diff -u pkgsrc/devel/Makefile:1.2960 pkgsrc/devel/Makefile:1.2961
--- pkgsrc/devel/Makefile:1.2960        Wed Nov 27 22:32:27 2019
+++ pkgsrc/devel/Makefile       Wed Dec 11 23:36:29 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2960 2019/11/27 22:32:27 adam Exp $
+# $NetBSD: Makefile,v 1.2961 2019/12/11 23:36:29 ng0 Exp $
 #
 
 COMMENT=       Development utilities
@@ -2744,6 +2744,7 @@ SUBDIR+=  rudiments
 SUBDIR+=       rvm
 SUBDIR+=       rx
 SUBDIR+=       sablecc
+SUBDIR+=       samurai
 SUBDIR+=       scintilla
 SUBDIR+=       scmcvs
 SUBDIR+=       scons

Added files:

Index: pkgsrc/devel/samurai/DESCR
diff -u /dev/null pkgsrc/devel/samurai/DESCR:1.1
--- /dev/null   Wed Dec 11 23:36:30 2019
+++ pkgsrc/devel/samurai/DESCR  Wed Dec 11 23:36:29 2019
@@ -0,0 +1,11 @@
+samurai is a ninja-compatible build tool written in C99 with a focus on
+simplicity, speed, and portability.
+
+samurai implements the ninja build language through version 1.9.0 except
+for MSVC dependency handling (`deps = msvc`). It uses the same format
+for `.ninja_log` and `.ninja_deps` as ninja, currently version 5 and 4
+respectively.
+
+It is feature-complete and supports most of the same options as ninja.
+
+samurai requires various POSIX.1-2008 interfaces.
Index: pkgsrc/devel/samurai/Makefile
diff -u /dev/null pkgsrc/devel/samurai/Makefile:1.1
--- /dev/null   Wed Dec 11 23:36:30 2019
+++ pkgsrc/devel/samurai/Makefile       Wed Dec 11 23:36:29 2019
@@ -0,0 +1,17 @@
+# $NetBSD: Makefile,v 1.1 2019/12/11 23:36:29 ng0 Exp $
+
+DISTNAME=      samurai-0.7
+CATEGORIES=    devel
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=michaelforney/}
+
+MAINTAINER=    ng0%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/michaelforney/samurai/
+COMMENT=       Ninja-compatible build tool written in C
+LICENSE=       isc AND apache-2.0
+
+BUILD_TARGET=  samu
+
+MAKE_FLAGS+=   PREFIX=${PREFIX}
+MAKE_FLAGS+=   MANDIR=${PREFIX}/${PKGMANDIR}
+
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/samurai/PLIST
diff -u /dev/null pkgsrc/devel/samurai/PLIST:1.1
--- /dev/null   Wed Dec 11 23:36:30 2019
+++ pkgsrc/devel/samurai/PLIST  Wed Dec 11 23:36:29 2019
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1 2019/12/11 23:36:29 ng0 Exp $
+bin/samu
+man/man1/samu.1
Index: pkgsrc/devel/samurai/distinfo
diff -u /dev/null pkgsrc/devel/samurai/distinfo:1.1
--- /dev/null   Wed Dec 11 23:36:30 2019
+++ pkgsrc/devel/samurai/distinfo       Wed Dec 11 23:36:29 2019
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/12/11 23:36:29 ng0 Exp $
+
+SHA1 (samurai-0.7.tar.gz) = 8d6bd5492026e2a256699a47d3895fa35c774491
+RMD160 (samurai-0.7.tar.gz) = ac8677acec4beb99b2596a4238058c88aa8dc356
+SHA512 (samurai-0.7.tar.gz) = c47120a2b516c0d130c5a01d99972979c69103d1c6b110722c4c6fcac3147df25d60d9d19913d7c78902c257800d6a5e1bcbb775618058ebfe6db29098dc4001
+Size (samurai-0.7.tar.gz) = 28197 bytes



Home | Main Index | Thread Index | Old Index