diff --git a/.gitignore b/.gitignore index b579186..0706042 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,8 @@ /vit-2.0.0.tar.gz /vit-7200949.tar.gz /vit-2.2.0.tar.gz +/vit-2.3.0.tar.gz +/vit-2.3.1.tar.gz +/vit-2.3.2.tar.gz +/vit-2.3.3.tar.gz +/vit-2.3.4.tar.gz diff --git a/.packit.yaml b/.packit.yaml new file mode 100644 index 0000000..0f2991e --- /dev/null +++ b/.packit.yaml @@ -0,0 +1,13 @@ +upstream_project_url: https://github.com/scottkosty/vit +copy_upstream_release_description: false +upstream_tag_template: v{version} + +jobs: + - job: pull_from_upstream + trigger: release + dist_git_branches: + - fedora-rawhide + - job: koji_build + trigger: commit + dist_git_branches: + - fedora-all diff --git a/README.packit b/README.packit new file mode 100644 index 0000000..1d61730 --- /dev/null +++ b/README.packit @@ -0,0 +1,3 @@ +This repository is maintained by packit. +https://packit.dev/ +The file was generated using packit 1.15.1.post1.dev4+g9380a86a0. diff --git a/sources b/sources index a43b385..eb18df6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vit-2.2.0.tar.gz) = 6efbf4fa3d2d6b188f8ad5152a1cd949d1d1c263de19669087ba439a8248c9dfe9354e70b83d945ae3edd44fb9cc0d9a4bf4331a5aaacfd64fdece2cb4b9454e +SHA512 (vit-2.3.4.tar.gz) = 76682a39dad16f2921f16066d1ab0e4f7253b545a78bf357716895e1118f8dfba8dfad7d125f33f952f754238afe3fee54f76375d18e80a6b9b8e7c0fba05325 diff --git a/vit.spec b/vit.spec index 46e7ca3..7ee60b5 100644 --- a/vit.spec +++ b/vit.spec @@ -1,17 +1,24 @@ Name: vit -Version: 2.2.0 +%global forgeurl https://github.com/scottkosty/%{name} +Version: 2.3.4 Release: %autorelease Summary: Visual Interactive Taskwarrior full-screen terminal interface +%forgemeta +# spdx License: MIT -URL: https://github.com/scottkosty/%{name} -Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz +URL: %forgeurl +Source0: %forgesource BuildArch: noarch BuildRequires: python3-devel -BuildRequires: task -Requires: task +BuildRequires: help2man + +# use the newest task release +BuildRequires: (task >= 3 or task2) +# either of these will do, depends on the user +Requires: (task >= 3 or task2) %{?python_provide:%python_provide python3-vit} @@ -29,7 +36,7 @@ Features: %prep -%autosetup +%forgesetup rm -rf vit.egg-info # Comment out to remove /usr/bin/env shebangs @@ -47,15 +54,42 @@ find vit/ -type f -name "*.py" -exec sed -i '/^#![ ]*\/usr\/bin\/env.*$/ d' {} %pyproject_save_files vit # Install bashcompletion -install -m 0644 -p -D -t $RPM_BUILD_ROOT/%{_datadir}/bash-completion/completions/vit/ scripts/bash/%{name}.bash_completion +install -m 0644 -p -D -T scripts/bash/%{name}.bash_completion $RPM_BUILD_ROOT/%{bash_completions_dir}/vit +# generate man pages +for binary in "vit" +do + echo "Generating man page for ${binary// /-/}" + PYTHONPATH="$PYTHONPATH:%{buildroot}/%{python3_sitelib}/" PATH="$PATH:%{buildroot}/%{_bindir}/" help2man --no-info --no-discard-stderr --name="${binary}" --version-string="${binary} %{version}" --output="${binary// /-}.1" "${binary}" + cat "${binary// /-}.1" + install -t '%{buildroot}%{_mandir}/man1' -p -m 0644 -D "${binary// /-}.1" +done %check LC_ALL=C PYTHONPATH=. %{__python3} -m unittest +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Directory_Replacement/ +%pretrans -p + +path = "%{bash_completions_dir}/vit" +st = posix.stat(path) +if st and st.type == "directory" then + status = os.rename(path, path .. ".rpmmoved") + if not status then + suffix = 0 + while not status do + suffix = suffix + 1 + status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix) + end + os.rename(path, path .. ".rpmmoved") + end +end + %files -f %{pyproject_files} %doc README.md CUSTOMIZE.md COLOR.md DEVELOPMENT.md UPGRADE.md %{_bindir}/%{name} -%{_datadir}/bash-completion/completions/%{name} +%{bash_completions_dir}/%{name} +%{_mandir}/man1/vit* +%ghost %{bash_completions_dir}/%{name}.rpmmoved %changelog %autochangelog