Date: Wed, 10 Dec 2025 17:05:29 +0000 From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 62a2f89229d5 - main - textproc/miller: Adopt port Message-ID: <6939a859.3d368.5e3a7ee8@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by adamw: URL: https://cgit.FreeBSD.org/ports/commit/?id=62a2f89229d5f399e9726afb4b2596d15b08966e commit 62a2f89229d5f399e9726afb4b2596d15b08966e Author: Adam Weinberger <adamw@FreeBSD.org> AuthorDate: 2025-12-10 17:05:15 +0000 Commit: Adam Weinberger <adamw@FreeBSD.org> CommitDate: 2025-12-10 17:05:24 +0000 textproc/miller: Adopt port --- textproc/miller/Makefile | 2 +- textproc/miller/pkg-descr | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/textproc/miller/Makefile b/textproc/miller/Makefile index c0afec200f21..8bd1f489f833 100644 --- a/textproc/miller/Makefile +++ b/textproc/miller/Makefile @@ -6,7 +6,7 @@ CATEGORIES= textproc MASTER_SITES= https://raw.githubusercontent.com/johnkerl/${PORTNAME}/${DISTVERSIONFULL}/:gomod DISTFILES= go.mod:gomod -MAINTAINER= ports@FreeBSD.org +MAINTAINER= adamw@FreeBSD.org COMMENT= Sed/awk/cut/join/sort for name-indexed data such as CSV, TSV and JSON WWW= https://johnkerl.org/miller/doc/ diff --git a/textproc/miller/pkg-descr b/textproc/miller/pkg-descr index 6cedb3454adc..02b9b4266dfb 100644 --- a/textproc/miller/pkg-descr +++ b/textproc/miller/pkg-descr @@ -1,5 +1,12 @@ -Miller is like sed, awk, cut, join, and sort for name-indexed data such -as CSV. +Miller is like awk, sed, cut, join, and sort for data formats such as +CSV, TSV, JSON, JSON Lines, and positionally-indexed. -With Miller you get to use named fields without needing to count -positional indices. +With Miller, you get to use named fields without needing to count +positional indices. Then, on the fly, you can add new fields which are +functions of existing fields, drop fields, sort, aggregate +statistically, pretty-print, and more. + +Miller operates on key-value-pair data while the familiar Unix tools +operate on integer-indexed fields: if the natural data structure for the +latter is the array, then Miller's natural data structure is the +insertion-ordered hash map.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6939a859.3d368.5e3a7ee8>
