Add ptsort, a prioritized topological sort.

This commit is contained in:
Dag-Erling Smørgrav 2017-09-04 19:32:33 +00:00
parent 187ca517f3
commit 4479683ce3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=449259
4 changed files with 27 additions and 0 deletions

View file

@ -369,6 +369,7 @@
SUBDIR += posixtestsuite
SUBDIR += proxyper
SUBDIR += pspresent
SUBDIR += ptsort
SUBDIR += py-YABT
SUBDIR += py-cinder
SUBDIR += py-crudini

18
misc/ptsort/Makefile Normal file
View file

@ -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>

3
misc/ptsort/distinfo Normal file
View file

@ -0,0 +1,3 @@
TIMESTAMP = 1504553271
SHA256 (ptsort-1.20170904.tar.gz) = f759f2ca8f67e18c178361fda70671fbed7ad06a10ee96c96c9598859e456a75
SIZE (ptsort-1.20170904.tar.gz) = 117293

5
misc/ptsort/pkg-descr Normal file
View file

@ -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