summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 10:19:05 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 10:19:05 +0000
commit433f0bbd8021f4dd2366dd38ef6fc98dbc1c1c77 (patch)
tree4b9d486d067999dcf9dc2437dd3b16d7dbf4018c
parente1d805ca0f570876204ead4942e061dc05f8b0b5 (diff)
automatic import of python-update-checker
-rw-r--r--.gitignore1
-rw-r--r--python-update-checker.spec208
-rw-r--r--sources1
3 files changed, 210 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..d491d65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/update_checker-0.18.0.tar.gz
diff --git a/python-update-checker.spec b/python-update-checker.spec
new file mode 100644
index 0000000..a78a61e
--- /dev/null
+++ b/python-update-checker.spec
@@ -0,0 +1,208 @@
+%global _empty_manifest_terminate_build 0
+Name: python-update-checker
+Version: 0.18.0
+Release: 1
+Summary: A python module that will check for package updates.
+License: Simplified BSD License
+URL: https://github.com/bboe/update_checker
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5c/0b/1bec4a6cc60d33ce93d11a7bcf1aeffc7ad0aa114986073411be31395c6f/update_checker-0.18.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-requests
+Requires: python3-black
+Requires: python3-flake8
+Requires: python3-pytest
+Requires: python3-black
+Requires: python3-flake8
+Requires: python3-pytest
+
+%description
+[![Build Status](https://travis-ci.org/bboe/update_checker.png)](https://travis-ci.org/bboe/update_checker)
+
+# update_checker
+
+A python module that will check for package updates.
+
+Only whitelisted packages can be checked for updates. Contact update_checker's
+author for information on adding a package to the whitelist.
+
+### Installation
+
+The update_checker module can be installed via:
+
+ pip install update_checker
+
+### Usage
+
+To simply output when there is a newer version of the `praw` package, you can
+use the following bit of code:
+
+```python
+from update_checker import update_check
+update_check('praw', '0.0.1')
+```
+
+If you need more control, such as performing operations conditionally when
+there is an update you can use the following approach:
+
+```python
+from update_checker import UpdateChecker
+checker = UpdateChecker()
+result = checker.check('praw', '0.0.1')
+if result: # result is None when an update was not found or a failure occured
+ # result is a UpdateResult object that contains the following attributes:
+ # * available_version
+ # * package_name
+ # * running_version
+ # * release_date (is None if the information isn't available)
+ print(result)
+ # Conditionally perform other actions
+```
+
+
+
+
+%package -n python3-update-checker
+Summary: A python module that will check for package updates.
+Provides: python-update-checker
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-update-checker
+[![Build Status](https://travis-ci.org/bboe/update_checker.png)](https://travis-ci.org/bboe/update_checker)
+
+# update_checker
+
+A python module that will check for package updates.
+
+Only whitelisted packages can be checked for updates. Contact update_checker's
+author for information on adding a package to the whitelist.
+
+### Installation
+
+The update_checker module can be installed via:
+
+ pip install update_checker
+
+### Usage
+
+To simply output when there is a newer version of the `praw` package, you can
+use the following bit of code:
+
+```python
+from update_checker import update_check
+update_check('praw', '0.0.1')
+```
+
+If you need more control, such as performing operations conditionally when
+there is an update you can use the following approach:
+
+```python
+from update_checker import UpdateChecker
+checker = UpdateChecker()
+result = checker.check('praw', '0.0.1')
+if result: # result is None when an update was not found or a failure occured
+ # result is a UpdateResult object that contains the following attributes:
+ # * available_version
+ # * package_name
+ # * running_version
+ # * release_date (is None if the information isn't available)
+ print(result)
+ # Conditionally perform other actions
+```
+
+
+
+
+%package help
+Summary: Development documents and examples for update-checker
+Provides: python3-update-checker-doc
+%description help
+[![Build Status](https://travis-ci.org/bboe/update_checker.png)](https://travis-ci.org/bboe/update_checker)
+
+# update_checker
+
+A python module that will check for package updates.
+
+Only whitelisted packages can be checked for updates. Contact update_checker's
+author for information on adding a package to the whitelist.
+
+### Installation
+
+The update_checker module can be installed via:
+
+ pip install update_checker
+
+### Usage
+
+To simply output when there is a newer version of the `praw` package, you can
+use the following bit of code:
+
+```python
+from update_checker import update_check
+update_check('praw', '0.0.1')
+```
+
+If you need more control, such as performing operations conditionally when
+there is an update you can use the following approach:
+
+```python
+from update_checker import UpdateChecker
+checker = UpdateChecker()
+result = checker.check('praw', '0.0.1')
+if result: # result is None when an update was not found or a failure occured
+ # result is a UpdateResult object that contains the following attributes:
+ # * available_version
+ # * package_name
+ # * running_version
+ # * release_date (is None if the information isn't available)
+ print(result)
+ # Conditionally perform other actions
+```
+
+
+
+
+%prep
+%autosetup -n update-checker-0.18.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-update-checker -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.18.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..60783da
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+080504aa36e080fe8c3171fd25d81150 update_checker-0.18.0.tar.gz