diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-09 03:35:02 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-09 03:35:02 +0000 |
commit | d8b9084e29a3692aa22f0d13e4228c6f1350185b (patch) | |
tree | a9984a291e8f185147e285f728bab432b53d28ae | |
parent | ee5cb093be023bd34d3137bdec227f9e31fa4db5 (diff) |
automatic import of python-curtsies
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-curtsies.spec | 111 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 113 insertions, 0 deletions
@@ -0,0 +1 @@ +/curtsies-0.4.1.tar.gz diff --git a/python-curtsies.spec b/python-curtsies.spec new file mode 100644 index 0000000..f1b6937 --- /dev/null +++ b/python-curtsies.spec @@ -0,0 +1,111 @@ +%global _empty_manifest_terminate_build 0 +Name: python-curtsies +Version: 0.4.1 +Release: 1 +Summary: Curses-like terminal wrapper, with colored strings! +License: MIT +URL: https://github.com/bpython/curtsies +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/4e/43/838c06297741002403835436bba88c38d0a42ed9ce3e39a61de73e4cb4d0/curtsies-0.4.1.tar.gz +BuildArch: noarch + + +%description +[FmtStr](http://curtsies.readthedocs.org/en/latest/FmtStr.html) objects are strings formatted with +colors and styles displayable in a terminal with [ANSI escape sequences](http://en.wikipedia.org/wiki/ANSI_escape_code>`_). + +[FSArray](http://curtsies.readthedocs.org/en/latest/FSArray.html) objects contain multiple such strings +with each formatted string on its own row, and FSArray +objects can be superimposed on each other +to build complex grids of colored and styled characters through composition. +(the import statement shown below is outdated) + +Such grids of characters can be rendered to the terminal in alternate screen mode +(no history, like `Vim`, `top` etc.) by [FullscreenWindow](http://curtsies.readthedocs.org/en/latest/window.html#curtsies.window.FullscreenWindow) objects +or normal history-preserving screen by [CursorAwareWindow](http://curtsies.readthedocs.org/en/latest/window.html#curtsies.window.CursorAwareWindow) objects. +User keyboard input events like pressing the up arrow key are detected by an +[Input](http://curtsies.readthedocs.org/en/latest/input.html) object. + +%package -n python3-curtsies +Summary: Curses-like terminal wrapper, with colored strings! +Provides: python-curtsies +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-curtsies +[FmtStr](http://curtsies.readthedocs.org/en/latest/FmtStr.html) objects are strings formatted with +colors and styles displayable in a terminal with [ANSI escape sequences](http://en.wikipedia.org/wiki/ANSI_escape_code>`_). + +[FSArray](http://curtsies.readthedocs.org/en/latest/FSArray.html) objects contain multiple such strings +with each formatted string on its own row, and FSArray +objects can be superimposed on each other +to build complex grids of colored and styled characters through composition. +(the import statement shown below is outdated) + +Such grids of characters can be rendered to the terminal in alternate screen mode +(no history, like `Vim`, `top` etc.) by [FullscreenWindow](http://curtsies.readthedocs.org/en/latest/window.html#curtsies.window.FullscreenWindow) objects +or normal history-preserving screen by [CursorAwareWindow](http://curtsies.readthedocs.org/en/latest/window.html#curtsies.window.CursorAwareWindow) objects. +User keyboard input events like pressing the up arrow key are detected by an +[Input](http://curtsies.readthedocs.org/en/latest/input.html) object. + +%package help +Summary: Development documents and examples for curtsies +Provides: python3-curtsies-doc +%description help +[FmtStr](http://curtsies.readthedocs.org/en/latest/FmtStr.html) objects are strings formatted with +colors and styles displayable in a terminal with [ANSI escape sequences](http://en.wikipedia.org/wiki/ANSI_escape_code>`_). + +[FSArray](http://curtsies.readthedocs.org/en/latest/FSArray.html) objects contain multiple such strings +with each formatted string on its own row, and FSArray +objects can be superimposed on each other +to build complex grids of colored and styled characters through composition. +(the import statement shown below is outdated) + +Such grids of characters can be rendered to the terminal in alternate screen mode +(no history, like `Vim`, `top` etc.) by [FullscreenWindow](http://curtsies.readthedocs.org/en/latest/window.html#curtsies.window.FullscreenWindow) objects +or normal history-preserving screen by [CursorAwareWindow](http://curtsies.readthedocs.org/en/latest/window.html#curtsies.window.CursorAwareWindow) objects. +User keyboard input events like pressing the up arrow key are detected by an +[Input](http://curtsies.readthedocs.org/en/latest/input.html) object. + +%prep +%autosetup -n curtsies-0.4.1 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-curtsies -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.1-1 +- Package Spec generated @@ -0,0 +1 @@ +9074bb9944ef084c194a187b475fdd59 curtsies-0.4.1.tar.gz |