Compare commits

..

No commits in common. "rawhide" and "f40" have entirely different histories.

6 changed files with 9 additions and 68 deletions

3
.gitignore vendored
View file

@ -15,6 +15,3 @@
/visidata-2.11.1.tar.gz
/visidata-3.0.2.tar.gz
/visidata-3.1.1.tar.gz
/visidata-3.2.tar.gz
/requirements.txt
/visidata-3.3.tar.gz

View file

@ -1,18 +0,0 @@
# See the documentation for more information:
# https://packit.dev/docs/configuration/
---
jobs:
- job: pull_from_upstream
trigger: release
dist_git_branches:
rawhide:
fast_forward_merge_into:
- fedora-branched
- job: koji_build
trigger: commit
dist_git_branches:
- fedora-all
- job: bodhi_update
trigger: commit
dist_git_branches:
- fedora-all

View file

@ -1,7 +1,7 @@
From 73ab95f8a4eb40140e1904859b135fb2caf6c751 Mon Sep 17 00:00:00 2001
From 32bdda64877ba1c29f3be4092ffeace36004ff42 Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Wed, 27 Mar 2019 19:13:42 -0400
Subject: [PATCH 1/2] Remove extra copy of man page
Subject: [PATCH] Remove extra copy of man page
It's already installed in /usr/share/man/man1.
@ -12,11 +12,11 @@ Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/setup.py b/setup.py
index fe07f60a..6e18d0cb 100755
index c8e7e169..b4ad0fba 100755
--- a/setup.py
+++ b/setup.py
@@ -101,7 +101,7 @@ setup(
"all": all_requirements(),
@@ -74,7 +74,7 @@ setup(
]
},
package_data={
- "visidata.man": ["vd.1", "vd.txt"],
@ -25,7 +25,7 @@ index fe07f60a..6e18d0cb 100755
"visidata": ["guides/*.md"],
"visidata.tests": ["sample.tsv", "benchmark.csv"],
diff --git a/visidata/help.py b/visidata/help.py
index b7d315b4..f27cc5fa 100644
index 2c8e1a46..9d20f2c5 100644
--- a/visidata/help.py
+++ b/visidata/help.py
@@ -159,7 +159,7 @@ def openManPage(vd):
@ -38,5 +38,5 @@ index b7d315b4..f27cc5fa 100644
--
2.50.0
2.47.0

View file

@ -1,36 +0,0 @@
From 39d2224d455f0b4639aa4e48db27c122372d8274 Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Tue, 12 Aug 2025 21:25:58 -0400
Subject: [PATCH 2/2] Fix test on Python 3.14
Note, this is just a hack, and may be fixed differently by upstream:
https://github.com/saulpw/visidata/issues/2773
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
visidata/tests/test_path.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/visidata/tests/test_path.py b/visidata/tests/test_path.py
index 4bc39f83..6319e746 100644
--- a/visidata/tests/test_path.py
+++ b/visidata/tests/test_path.py
@@ -1,5 +1,5 @@
import io
-import pytest
+import sys
from visidata import Path
@@ -22,7 +22,7 @@ class TestVisidataPath:
assert Path('foo').ext == ''
assert Path('foo').base_stem == 'foo'
assert Path('foo.').ext == ''
- assert Path('foo.').base_stem == 'foo.'
+ assert Path('foo.').base_stem == ('foo.' if sys.version_info < (3, 14) else 'foo')
assert Path('.foo').ext == ''
assert Path('.foo').base_stem == '.foo'
--
2.50.0

View file

@ -1 +1 @@
SHA512 (visidata-3.3.tar.gz) = 262f12c17d18f0e58e6617bde37ba660199c7b3a078d70e774b65318b5f3daac9c85b2f6b4eaa9e232df85d37bad700b42fb764f9234d3eef3eab2e4e829d176
SHA512 (visidata-3.1.1.tar.gz) = 4568c8f6bf01baac1bf9bd3c090425ff5c4c8bf7cd415e8b0faf7e89494fd00a22a373d59e4832e105dbaabf9148a987eb5c89412416e164caa654bf4dde1e23

View file

@ -1,7 +1,7 @@
%global srcname visidata
Name: %{srcname}
Version: 3.3
Version: 3.1.1
Release: %autorelease
Summary: Terminal interface for exploring and arranging tabular data
@ -10,8 +10,6 @@ URL: https://visidata.org
Source0: %pypi_source %{srcname}
# Fedora specific:
Patch: 0001-Remove-extra-copy-of-man-page.patch
# https://github.com/saulpw/visidata/issues/2773
Patch: 0002-Fix-test-on-Python-3.14.patch
BuildArch: noarch