# This specfile is licensed under: # # Copyright (C) 2023 Maxwell G # SPDX-License-Identifier: MIT # License text: https://spdx.org/licenses/MIT.html %bcond bootstrap 0 %bcond tests %{without bootstrap} %if %{with tests} && %{with bootstrap} %{error:--with tests and --with bootstrap are mutually exclusive} %endif # Add minimal py3_test_envvars for EPEL 9 %if %{undefined py3_test_envvars} %define py3_test_envvars %{shrink: PYTHONPATH=%{buildroot}%{python3_sitelib} PATH=%{buildroot}%{_bindir}:${PATH} } %endif Name: tomcli Version: 0.5.0 Release: 3%{?dist} Summary: CLI for working with TOML files. Pronounced "tom clee." License: MIT URL: https://sr.ht/~gotmax23/tomcli %global furl https://git.sr.ht/~gotmax23/tomcli Source0: %{furl}/refs/download/v%{version}/tomcli-%{version}.tar.gz Source1: %{furl}/refs/download/v%{version}/tomcli-%{version}.tar.gz.asc Source2: https://meta.sr.ht/~gotmax23.pgp BuildArch: noarch BuildRequires: gnupg2 BuildRequires: python3-devel BuildRequires: %{py3_dist pytest} # One of the TOML backends is required Requires: (%{py3_dist tomcli[tomlkit]} or %{py3_dist tomcli[tomli]}) # Prefer the tomlkit backend Suggests: %{py3_dist tomcli[tomlkit]} # Recommend the 'all' extra Recommends: %{py3_dist tomcli[all]} %description tomcli is a CLI for working with TOML files. Pronounced "tom clee." %prep %gpgverify -d0 -s1 -k2 %autosetup -p1 %generate_buildrequires %{pyproject_buildrequires %{shrink: -x tomli %{!?with_bootstrap:-x all,tomlkit} %{?with_tests:-x test} }} %build %pyproject_wheel %install %pyproject_install %pyproject_save_files tomcli mkdir -p %{buildroot}%{bash_completions_dir} mkdir -p %{buildroot}%{fish_completions_dir} mkdir -p %{buildroot}%{zsh_completions_dir} ( export %{py3_test_envvars} %{python3} compgen.py \ --installroot %{buildroot} \ --bash-dir %{bash_completions_dir} \ --fish-dir %{fish_completions_dir} \ --zsh-dir %{zsh_completions_dir} ) %check # Smoke test ( export %{py3_test_envvars} cp pyproject.toml test.toml name="$(tomcli-get test.toml project.name)" test "${name}" = "tomcli" tomcli-set test.toml str project.name not-tomcli newname="$(tomcli-get test.toml project.name)" test "${newname}" = "not-tomcli" ) %pyproject_check_import %if %{with tests} %pytest %endif %pyproject_extras_subpkg -n tomcli all tomli tomlkit %files -f %{pyproject_files} %license LICENSE %doc README.md %doc NEWS.md %{_bindir}/tomcli* %{bash_completions_dir}/tomcli* %{fish_completions_dir}/tomcli*.fish %{zsh_completions_dir}/_tomcli* %changelog * Sat Jan 27 2024 Fedora Release Engineering - 0.5.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Fri Dec 22 2023 Maxwell G - 0.5.0-2 - Fix installation of license files * Thu Dec 14 2023 Maxwell G - 0.5.0-1 - Update to 0.5.0. * Thu Sep 07 2023 Maxwell G - 0.3.0-1 - Update to 0.3.0. * Sat Jul 22 2023 Fedora Release Engineering - 0.1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Thu Jun 29 2023 Python Maint - 0.1.2-2 - Rebuilt for Python 3.12 * Sat May 20 2023 Maxwell G - 0.1.2-1 - Update to 0.1.2. * Wed May 03 2023 Maxwell G - 0.1.1-1 - Initial package. Closes rhbz#2186902.