summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 15:10:32 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 15:10:32 +0000
commit8f038c9f7f221484f785e36eac497d8087bf44be (patch)
tree78a65444134740eb59bfad2f2d7f38baf3e8aad5
parent15e93c5ca3fb0cfe40bb7cc50f2f347806dc2db4 (diff)
automatic import of python-power
-rw-r--r--.gitignore1
-rw-r--r--python-power.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..b107aee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/power-1.4.tar.gz
diff --git a/python-power.spec b/python-power.spec
new file mode 100644
index 0000000..6d79a7c
--- /dev/null
+++ b/python-power.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-power
+Version: 1.4
+Release: 1
+Summary: Cross-platform system power status information.
+License: MIT License
+URL: https://github.com/Kentzo/Power
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/6a/fc/a730a7c7a9a30b8e0774ca7e06c54181f61620250749ac3de47da138cfd4/power-1.4.tar.gz
+BuildArch: noarch
+
+
+%description
+Library that allows you get current power source type (AC, Battery or UPS), warning level (none, <22%, <10min) and remaining minutes. You can also observe changes of power source and remaining time.
+
+%package -n python3-power
+Summary: Cross-platform system power status information.
+Provides: python-power
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-power
+Library that allows you get current power source type (AC, Battery or UPS), warning level (none, <22%, <10min) and remaining minutes. You can also observe changes of power source and remaining time.
+
+%package help
+Summary: Development documents and examples for power
+Provides: python3-power-doc
+%description help
+Library that allows you get current power source type (AC, Battery or UPS), warning level (none, <22%, <10min) and remaining minutes. You can also observe changes of power source and remaining time.
+
+%prep
+%autosetup -n power-1.4
+
+%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-power -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 1.4-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..3636cc7
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+7346e84338da5478c598c5639a484070 power-1.4.tar.gz