Compare commits

...

2 Commits

Author SHA1 Message Date
Owen Zimmerman 5eb0030a83 Merge branch 'frawhide' into owen/textual 2026-02-07 12:46:41 -06:00
Owen-sz bb275956c2 add: textual
Signed-off-by: Owen-sz <owen@fyralabs.com>
2026-01-24 18:50:19 -06:00
3 changed files with 53 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
project pkg {
arches = ["x86_64"]
rpm {
spec = "textual.spec"
}
}
+46
View File
@@ -0,0 +1,46 @@
%global pypi_name textual
%global _desc The lean application framework for Python.
Name: python-%{pypi_name}
Version: 7.3.0
Release: 1%?dist
Summary: The lean application framework for Python
License: MIT
URL: https://github.com/Textualize/textual
Source0: %{pypi_source}
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
BuildRequires: python3-poetry
Packager: Owen Zimmerman <owen@fyralabs.com>
%description
%_desc
%package -n python3-%{pypi_name}
Summary: %{summary}
%{?python_provide:%python_provide python3-%{pypi_name}}
%description -n python3-%{pypi_name}
%_desc
%prep
%autosetup -n %{pypi_name}-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%pyproject_save_files textual
%files -n python3-%{pypi_name} -f %{pyproject_files}
%doc README.md
%license LICENSE
%changelog
* Sat Jan 24 2026 Owen Zimmerman <owen@fyralabs.com>
- Initial commit
+1
View File
@@ -0,0 +1 @@
rpm.version(pypi("textual"));