Date: Mon, 4 Sep 2017 19:32:33 +0000 (UTC) From: =?UTF-8?Q?Dag-Erling_Sm=c3=b8rgrav?= <des@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449259 - in head/misc: . ptsort Message-ID: <201709041932.v84JWXpw034764@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: des Date: Mon Sep 4 19:32:33 2017 New Revision: 449259 URL: https://svnweb.freebsd.org/changeset/ports/449259 Log: Add ptsort, a prioritized topological sort. Added: head/misc/ptsort/ head/misc/ptsort/Makefile (contents, props changed) head/misc/ptsort/distinfo (contents, props changed) head/misc/ptsort/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Mon Sep 4 19:29:56 2017 (r449258) +++ head/misc/Makefile Mon Sep 4 19:32:33 2017 (r449259) @@ -369,6 +369,7 @@ SUBDIR += posixtestsuite SUBDIR += proxyper SUBDIR += pspresent + SUBDIR += ptsort SUBDIR += py-YABT SUBDIR += py-cinder SUBDIR += py-crudini Added: head/misc/ptsort/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ptsort/Makefile Mon Sep 4 19:32:33 2017 (r449259) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= ptsort +PORTVERSION= 1.20170904 +CATEGORIES= misc +MASTER_SITES= https://github.com/dag-erling/${PORTNAME}/releases/download/${PORTVERSION}/ + +MAINTAINER= des@FreeBSD.org +COMMENT= Prioritized topological sort + +LICENSE= BSD3CLAUSE + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip + +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz + +.include <bsd.port.mk> Added: head/misc/ptsort/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ptsort/distinfo Mon Sep 4 19:32:33 2017 (r449259) @@ -0,0 +1,3 @@ +TIMESTAMP = 1504553271 +SHA256 (ptsort-1.20170904.tar.gz) = f759f2ca8f67e18c178361fda70671fbed7ad06a10ee96c96c9598859e456a75 +SIZE (ptsort-1.20170904.tar.gz) = 117293 Added: head/misc/ptsort/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ptsort/pkg-descr Mon Sep 4 19:32:33 2017 (r449259) @@ -0,0 +1,5 @@ +The ptsort utility is a variant of the standard tsort (topological +sort) utility which allows nodes to be prioritized, moving them and +all their predecessors up in the final order. + +WWW: https://github.com/dag-erling/ptsort
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709041932.v84JWXpw034764>