diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-05 10:58:10 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 10:58:10 +0000 |
| commit | 70d7d702adc757116edfe2928615ab20c0e83b1d (patch) | |
| tree | f96ed3d06751ceb1e00dd4dbad7387adadf479fc | |
| parent | f9c342c2affff34761f095cffa8b2720aa8832b5 (diff) | |
automatic import of python-d8s-hypothesisopeneuler20.03
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-d8s-hypothesis.spec | 254 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 256 insertions, 0 deletions
@@ -0,0 +1 @@ +/d8s_hypothesis-0.6.0.tar.gz diff --git a/python-d8s-hypothesis.spec b/python-d8s-hypothesis.spec new file mode 100644 index 0000000..b352bbd --- /dev/null +++ b/python-d8s-hypothesis.spec @@ -0,0 +1,254 @@ +%global _empty_manifest_terminate_build 0 +Name: python-d8s-hypothesis +Version: 0.6.0 +Release: 1 +Summary: Democritus functions to interact with Hypothesis. +License: GNU Lesser General Public License v3 +URL: https://github.com/democritus-project/d8s-hypothesis +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/10/42/c09a779ccd2b8cc299287aff1e2060faed4376bb991cbb6e3ad86ff94cad/d8s_hypothesis-0.6.0.tar.gz +BuildArch: noarch + +Requires: python3-hypothesis +Requires: python3-importlib-metadata + +%description +# Democritus Hypothesis + +[](https://pypi.python.org/pypi/d8s-hypothesis) +[](https://github.com/democritus-project/d8s-hypothesis/actions) +[](https://github.com/democritus-project/d8s-hypothesis/actions) +[](https://codecov.io/gh/democritus-project/d8s-hypothesis) +[](https://semver.org/spec/v2.0.0.html) +[](https://github.com/psf/black) +[](https://choosealicense.com/licenses/lgpl-3.0/) + +Democritus functions<sup>[1]</sup> for working with [Hypothesis](https://hypothesis.readthedocs.io/en/latest/). + +[1] Democritus functions are <i>simple, effective, modular, well-tested, and well-documented</i> Python functions. + +We use `d8s` (pronounced "dee-eights") as an abbreviation for `democritus` (you can read more about this [here](https://github.com/democritus-project/roadmap#what-is-d8s)). + +## Installation + +``` +pip install d8s-hypothesis +``` + +## Usage + +You import the library like: + +```python +from d8s_hypothesis import * +``` + +Once imported, you can use any of the functions listed below. + +## Functions + + - ```python + def hypothesis_get_strategy_results(strategy, *args, n: int = 10, **kwargs): + """Return the given n of results from the given hypothesis strategy. + + For a list of hypothesis strategies, see: https://hypothesis.readthedocs.io/en/latest/data.html.""" + ``` + +## Development + +๐ If you want to get involved in this project, we have some short, helpful guides below: + +- [contribute to this project ๐ฅ][contributing] +- [test it ๐งช][local-dev] +- [lint it ๐งน][local-dev] +- [explore it ๐ญ][local-dev] + +If you have any questions or there is anything we did not cover, please raise an issue and we'll be happy to help. + +## Credits + +This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and Floyd Hightower's [Python project template](https://github.com/fhightower-templates/python-project-template). + +[contributing]: https://github.com/democritus-project/.github/blob/main/CONTRIBUTING.md#contributing-a-pr- +[local-dev]: https://github.com/democritus-project/.github/blob/main/CONTRIBUTING.md#local-development- + + + + +%package -n python3-d8s-hypothesis +Summary: Democritus functions to interact with Hypothesis. +Provides: python-d8s-hypothesis +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-d8s-hypothesis +# Democritus Hypothesis + +[](https://pypi.python.org/pypi/d8s-hypothesis) +[](https://github.com/democritus-project/d8s-hypothesis/actions) +[](https://github.com/democritus-project/d8s-hypothesis/actions) +[](https://codecov.io/gh/democritus-project/d8s-hypothesis) +[](https://semver.org/spec/v2.0.0.html) +[](https://github.com/psf/black) +[](https://choosealicense.com/licenses/lgpl-3.0/) + +Democritus functions<sup>[1]</sup> for working with [Hypothesis](https://hypothesis.readthedocs.io/en/latest/). + +[1] Democritus functions are <i>simple, effective, modular, well-tested, and well-documented</i> Python functions. + +We use `d8s` (pronounced "dee-eights") as an abbreviation for `democritus` (you can read more about this [here](https://github.com/democritus-project/roadmap#what-is-d8s)). + +## Installation + +``` +pip install d8s-hypothesis +``` + +## Usage + +You import the library like: + +```python +from d8s_hypothesis import * +``` + +Once imported, you can use any of the functions listed below. + +## Functions + + - ```python + def hypothesis_get_strategy_results(strategy, *args, n: int = 10, **kwargs): + """Return the given n of results from the given hypothesis strategy. + + For a list of hypothesis strategies, see: https://hypothesis.readthedocs.io/en/latest/data.html.""" + ``` + +## Development + +๐ If you want to get involved in this project, we have some short, helpful guides below: + +- [contribute to this project ๐ฅ][contributing] +- [test it ๐งช][local-dev] +- [lint it ๐งน][local-dev] +- [explore it ๐ญ][local-dev] + +If you have any questions or there is anything we did not cover, please raise an issue and we'll be happy to help. + +## Credits + +This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and Floyd Hightower's [Python project template](https://github.com/fhightower-templates/python-project-template). + +[contributing]: https://github.com/democritus-project/.github/blob/main/CONTRIBUTING.md#contributing-a-pr- +[local-dev]: https://github.com/democritus-project/.github/blob/main/CONTRIBUTING.md#local-development- + + + + +%package help +Summary: Development documents and examples for d8s-hypothesis +Provides: python3-d8s-hypothesis-doc +%description help +# Democritus Hypothesis + +[](https://pypi.python.org/pypi/d8s-hypothesis) +[](https://github.com/democritus-project/d8s-hypothesis/actions) +[](https://github.com/democritus-project/d8s-hypothesis/actions) +[](https://codecov.io/gh/democritus-project/d8s-hypothesis) +[](https://semver.org/spec/v2.0.0.html) +[](https://github.com/psf/black) +[](https://choosealicense.com/licenses/lgpl-3.0/) + +Democritus functions<sup>[1]</sup> for working with [Hypothesis](https://hypothesis.readthedocs.io/en/latest/). + +[1] Democritus functions are <i>simple, effective, modular, well-tested, and well-documented</i> Python functions. + +We use `d8s` (pronounced "dee-eights") as an abbreviation for `democritus` (you can read more about this [here](https://github.com/democritus-project/roadmap#what-is-d8s)). + +## Installation + +``` +pip install d8s-hypothesis +``` + +## Usage + +You import the library like: + +```python +from d8s_hypothesis import * +``` + +Once imported, you can use any of the functions listed below. + +## Functions + + - ```python + def hypothesis_get_strategy_results(strategy, *args, n: int = 10, **kwargs): + """Return the given n of results from the given hypothesis strategy. + + For a list of hypothesis strategies, see: https://hypothesis.readthedocs.io/en/latest/data.html.""" + ``` + +## Development + +๐ If you want to get involved in this project, we have some short, helpful guides below: + +- [contribute to this project ๐ฅ][contributing] +- [test it ๐งช][local-dev] +- [lint it ๐งน][local-dev] +- [explore it ๐ญ][local-dev] + +If you have any questions or there is anything we did not cover, please raise an issue and we'll be happy to help. + +## Credits + +This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and Floyd Hightower's [Python project template](https://github.com/fhightower-templates/python-project-template). + +[contributing]: https://github.com/democritus-project/.github/blob/main/CONTRIBUTING.md#contributing-a-pr- +[local-dev]: https://github.com/democritus-project/.github/blob/main/CONTRIBUTING.md#local-development- + + + + +%prep +%autosetup -n d8s-hypothesis-0.6.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-d8s-hypothesis -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.6.0-1 +- Package Spec generated @@ -0,0 +1 @@ +417f830d4e680287da2f7649b9782df5 d8s_hypothesis-0.6.0.tar.gz |
