summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 06:41:45 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 06:41:45 +0000
commit5bc961772f532532878a4149c264241c67a9cf4b (patch)
tree398afb0f0709311acebd41bf78d89ae00a834d50
parentd10f4c23f282941269c04119cc4d6b2a95b0e339 (diff)
automatic import of python-pyuserinputopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-pyuserinput.spec90
-rw-r--r--sources1
3 files changed, 92 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..e658b67 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/PyUserInput-0.1.11.tar.gz
diff --git a/python-pyuserinput.spec b/python-pyuserinput.spec
new file mode 100644
index 0000000..b8ee68c
--- /dev/null
+++ b/python-pyuserinput.spec
@@ -0,0 +1,90 @@
+%global _empty_manifest_terminate_build 0
+Name: python-PyUserInput
+Version: 0.1.11
+Release: 1
+Summary: A simple, cross-platform module for mouse and keyboard control
+License: http://www.gnu.org/licenses/gpl-3.0.html
+URL: https://github.com/PyUserInput/PyUserInput
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/d0/09/17fe0b16c7eeb52d6c14e904596ddde82503aeee268330120b595bf22d7b/PyUserInput-0.1.11.tar.gz
+BuildArch: noarch
+
+
+%description
+A module for cross-platform control of the mouse and keyboard in python that is
+simple to use.
+Mouse control should work on Windows, Mac, and X11 (most Linux systems).
+Scrolling is implemented, but users should be aware that variations may
+exist between platforms and applications.
+Keyboard control works on X11(linux) and Windows systems. Mac control is a work
+in progress.
+
+%package -n python3-PyUserInput
+Summary: A simple, cross-platform module for mouse and keyboard control
+Provides: python-PyUserInput
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-PyUserInput
+A module for cross-platform control of the mouse and keyboard in python that is
+simple to use.
+Mouse control should work on Windows, Mac, and X11 (most Linux systems).
+Scrolling is implemented, but users should be aware that variations may
+exist between platforms and applications.
+Keyboard control works on X11(linux) and Windows systems. Mac control is a work
+in progress.
+
+%package help
+Summary: Development documents and examples for PyUserInput
+Provides: python3-PyUserInput-doc
+%description help
+A module for cross-platform control of the mouse and keyboard in python that is
+simple to use.
+Mouse control should work on Windows, Mac, and X11 (most Linux systems).
+Scrolling is implemented, but users should be aware that variations may
+exist between platforms and applications.
+Keyboard control works on X11(linux) and Windows systems. Mac control is a work
+in progress.
+
+%prep
+%autosetup -n PyUserInput-0.1.11
+
+%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-PyUserInput -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.11-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..1a078da
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+2095c70da5e48c2954588470444a4937 PyUserInput-0.1.11.tar.gz