17
0

Compare commits

4 Commits

Author SHA256 Message Date
dc0047aa2b Accepting request 1292328 from devel:languages:python
- update to 2.5.0:
  * Added noheader CSV and TSV output formats.
  * Added `jsonl` and `jsonl_escaped` output formats.
  * Added format_timestamps preprocessor for per-column date/time
    formatting.

OBS-URL: https://build.opensuse.org/request/show/1292328
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cli-helpers?expand=0&rev=10
2025-07-14 08:51:14 +00:00
d0c88cf8ec - update to 2.5.0:
* Added noheader CSV and TSV output formats.
  * Added `jsonl` and `jsonl_escaped` output formats.
  * Added format_timestamps preprocessor for per-column date/time
    formatting.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cli-helpers?expand=0&rev=20
2025-07-12 11:41:14 +00:00
4954c516bd Accepting request 1277822 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1277822
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cli-helpers?expand=0&rev=9
2025-05-20 07:32:37 +00:00
8366a0aece Accepting request 1277747 from home:mcalabkova:branches:devel:languages:python
- Convert to pip-based build

OBS-URL: https://build.opensuse.org/request/show/1277747
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cli-helpers?expand=0&rev=18
2025-05-15 15:16:47 +00:00
4 changed files with 25 additions and 10 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b82a8983ceee21f180e6fd0ddb7ca8dae43c40e920951e3817f996ab204dae6a
size 36246

3
cli_helpers-2.5.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7c353f8ad97f07c036c5a355007c335dc8b1d90ce1333570ea50384fb0c00e38
size 39452

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Sat Jul 12 11:40:58 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 2.5.0:
* Added noheader CSV and TSV output formats.
* Added `jsonl` and `jsonl_escaped` output formats.
* Added format_timestamps preprocessor for per-column date/time
formatting.
-------------------------------------------------------------------
Thu May 15 13:08:11 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Convert to pip-based build
-------------------------------------------------------------------
Mon Mar 18 10:46:13 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-cli-helpers
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,16 +16,16 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without python2
Name: python-cli-helpers
Version: 2.3.1
Version: 2.5.0
Release: 0
Summary: Helpers for building command-line apps
License: BSD-3-Clause
URL: https://github.com/dbcli/cli_helpers
Source: https://files.pythonhosted.org/packages/source/c/cli_helpers/cli_helpers-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Pygments >= 2.4
@@ -68,10 +68,10 @@ other libraries.
%setup -q -n cli_helpers-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -80,6 +80,7 @@ other libraries.
%files %{python_files}
%license LICENSE
%doc README.rst AUTHORS CHANGELOG docs
%{python_sitelib}/*
%{python_sitelib}/cli[-_]helpers
%{python_sitelib}/cli[-_]helpers-%{version}*-info
%changelog