diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-getch.spec | 120 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 122 insertions, 0 deletions
@@ -0,0 +1 @@ +/getch-1.0-python2.tar.gz diff --git a/python-getch.spec b/python-getch.spec new file mode 100644 index 0000000..f84fdb4 --- /dev/null +++ b/python-getch.spec @@ -0,0 +1,120 @@ +%global _empty_manifest_terminate_build 0 +Name: python-getch +Version: 1.0 +Release: 1 +Summary: Does single char input, like C getch/getche +License: Public domain (it really is just a small utility) +URL: http://pypi.python.org/pypi/getch +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/56/f7/cde35f44d267df7122005c40f1a15cf5e3c60ffc83a2ab00d11d99e9d8c4/getch-1.0-python2.tar.gz +BuildArch: noarch + + +%description +The getch module does single-char input by providing wrappers for the conio.h library functions getch() (gets a character from user input, no output - this is useful for password input) and getche() (also outputs to the screen), if conio.h does not exist, it uses a stub-library using termios.h and other headers to emulate this behaviour: ::
+
+ import getch
+ # ...
+ char = getch.getch() # User input, but not displayed on the screen
+ # or
+ char = getch.getche() # also displayed on the screen
+
+Hint: On Windows, you can use: ::
+
+ import msvcrt
+ # ...
+ char = msvcrt.getch()
+ # or, to display it on the screen
+ char = msvcrt.getche()
+
+as a standard library alternative to this module + +%package -n python3-getch +Summary: Does single char input, like C getch/getche +Provides: python-getch +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-getch +The getch module does single-char input by providing wrappers for the conio.h library functions getch() (gets a character from user input, no output - this is useful for password input) and getche() (also outputs to the screen), if conio.h does not exist, it uses a stub-library using termios.h and other headers to emulate this behaviour: ::
+
+ import getch
+ # ...
+ char = getch.getch() # User input, but not displayed on the screen
+ # or
+ char = getch.getche() # also displayed on the screen
+
+Hint: On Windows, you can use: ::
+
+ import msvcrt
+ # ...
+ char = msvcrt.getch()
+ # or, to display it on the screen
+ char = msvcrt.getche()
+
+as a standard library alternative to this module + +%package help +Summary: Development documents and examples for getch +Provides: python3-getch-doc +%description help +The getch module does single-char input by providing wrappers for the conio.h library functions getch() (gets a character from user input, no output - this is useful for password input) and getche() (also outputs to the screen), if conio.h does not exist, it uses a stub-library using termios.h and other headers to emulate this behaviour: ::
+
+ import getch
+ # ...
+ char = getch.getch() # User input, but not displayed on the screen
+ # or
+ char = getch.getche() # also displayed on the screen
+
+Hint: On Windows, you can use: ::
+
+ import msvcrt
+ # ...
+ char = msvcrt.getch()
+ # or, to display it on the screen
+ char = msvcrt.getche()
+
+as a standard library alternative to this module + +%prep +%autosetup -n getch-1.0 + +%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-getch -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +586ea0f1f16aa094ff6a30736ba03c50 getch-1.0-python2.tar.gz |
