Scott Bradnick
b2e60c8d0d
- Update to version 6.6.0+git20230101.7495a8845: * link to 6.6.0 docs * doc-neaten * post-6.6.0 * 6.6.0 (#1169) * Fix #1164: regression on CSV blank-line handling (#1168) * mlr unspace verb (#1167) * Add doc info on DSL code-comment syntax (#1165) * Fix #1102 (#1163) * Fix #1146 (#1157) * Bump github.com/mattn/go-isatty from 0.0.16 to 0.0.17 (#1162) * Bump actions/cache from 3.2.1 to 3.2.2 (#1160) * Bump actions/cache from 3.2.0 to 3.2.1 (#1156) * Bump actions/cache from 3.0.11 to 3.2.0 (#1155) * Bump github/codeql-action from 2.1.36 to 2.1.37 (#1151) * Bump actions/setup-go from 3.4.0 to 3.5.0 (#1148) * Bump goreleaser/goreleaser-action from 3.2.0 to 4.1.0 (#1147) * Bump actions/checkout from 3.1.0 to 3.2.0 (#1145) * Bump github/codeql-action from 2.1.35 to 2.1.36 (#1143) * Fix typo in `mlr put` documentation (#1140) * Bump actions/setup-go from 3.3.1 to 3.4.0 (#1136) * Bump github/codeql-action from 2.1.33 to 2.1.35 (#1137) OBS-URL: https://build.opensuse.org/request/show/1046623 OBS-URL: https://build.opensuse.org/package/show/utilities/miller?expand=0&rev=43
71 lines
2.2 KiB
RPMSpec
71 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package miller
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: miller
|
|
Version: 6.6.0+git20230101.7495a8845
|
|
Release: 0
|
|
Summary: Name-indexed data processing tool
|
|
# c/lib/netbsd_strptime.c is BSD-4-Clause
|
|
License: BSD-2-Clause AND BSD-4-Clause
|
|
Group: Productivity/Text/Utilities
|
|
URL: http://johnkerl.org/miller/doc
|
|
Source0: https://github.com/johnkerl/miller/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
Source1: vendor.tar.gz
|
|
Patch0: buildmode-pie.diff
|
|
#BuildRequires: golang
|
|
BuildRequires: golang-packaging
|
|
BuildRequires: gcc
|
|
BuildRequires: systemd-rpm-macros
|
|
# Switched to a golang build sometime after 5.10.3
|
|
#BuildRequires: automake
|
|
#BuildRequires: flex >= 2.5.35
|
|
#BuildRequires: libtool
|
|
|
|
%description
|
|
Miller (mlr) allows name-indexed data such as CSV and JSON files to be
|
|
processed with functions equivalent to sed, awk, cut, join, sort etc. It can
|
|
convert between formats, preserves headers when sorting or reversing, and
|
|
streams data where possible so its memory requirements stay small. It works
|
|
well with pipes and can feed "tail -f".
|
|
|
|
%prep
|
|
%setup -q -a 1
|
|
%if "%{_arch}" != "ppc64"
|
|
%patch0
|
|
%endif
|
|
# Not sure if this is still required
|
|
#%%ifarch %%ix86
|
|
#sed -e 's/-pg//' -i c/Makefile.am
|
|
#%%endif
|
|
|
|
%build
|
|
%make_build
|
|
|
|
%install
|
|
%make_install PREFIX=%{_prefix}
|
|
# Add provided example.csv
|
|
cp -v %{_builddir}/%{name}-%{version}/docs/src/example.csv %{_builddir}/%{name}-%{version}
|
|
|
|
%files
|
|
%license LICENSE.txt
|
|
%doc README.md example.csv
|
|
%{_bindir}/mlr
|
|
%{_mandir}/man1/mlr.1%{ext_man}
|
|
|
|
%changelog
|