From 70d7d702adc757116edfe2928615ab20c0e83b1d Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Fri, 5 May 2023 10:58:10 +0000 Subject: automatic import of python-d8s-hypothesis --- .gitignore | 1 + python-d8s-hypothesis.spec | 254 +++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 256 insertions(+) create mode 100644 python-d8s-hypothesis.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..3daf8a0 100644 --- a/.gitignore +++ b/.gitignore @@ -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 + +[![PyPI](https://img.shields.io/pypi/v/d8s-hypothesis.svg)](https://pypi.python.org/pypi/d8s-hypothesis) +[![CI](https://github.com/democritus-project/d8s-hypothesis/workflows/CI/badge.svg)](https://github.com/democritus-project/d8s-hypothesis/actions) +[![Lint](https://github.com/democritus-project/d8s-hypothesis/workflows/Lint/badge.svg)](https://github.com/democritus-project/d8s-hypothesis/actions) +[![codecov](https://codecov.io/gh/democritus-project/d8s-hypothesis/branch/main/graph/badge.svg?token=V0WOIXRGMM)](https://codecov.io/gh/democritus-project/d8s-hypothesis) +[![The Democritus Project uses semver version 2.0.0](https://img.shields.io/badge/-semver%20v2.0.0-22bfda)](https://semver.org/spec/v2.0.0.html) +[![The Democritus Project uses black to format code](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +[![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://choosealicense.com/licenses/lgpl-3.0/) + +Democritus functions[1] for working with [Hypothesis](https://hypothesis.readthedocs.io/en/latest/). + +[1] Democritus functions are simple, effective, modular, well-tested, and well-documented 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 + +[![PyPI](https://img.shields.io/pypi/v/d8s-hypothesis.svg)](https://pypi.python.org/pypi/d8s-hypothesis) +[![CI](https://github.com/democritus-project/d8s-hypothesis/workflows/CI/badge.svg)](https://github.com/democritus-project/d8s-hypothesis/actions) +[![Lint](https://github.com/democritus-project/d8s-hypothesis/workflows/Lint/badge.svg)](https://github.com/democritus-project/d8s-hypothesis/actions) +[![codecov](https://codecov.io/gh/democritus-project/d8s-hypothesis/branch/main/graph/badge.svg?token=V0WOIXRGMM)](https://codecov.io/gh/democritus-project/d8s-hypothesis) +[![The Democritus Project uses semver version 2.0.0](https://img.shields.io/badge/-semver%20v2.0.0-22bfda)](https://semver.org/spec/v2.0.0.html) +[![The Democritus Project uses black to format code](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +[![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://choosealicense.com/licenses/lgpl-3.0/) + +Democritus functions[1] for working with [Hypothesis](https://hypothesis.readthedocs.io/en/latest/). + +[1] Democritus functions are simple, effective, modular, well-tested, and well-documented 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 + +[![PyPI](https://img.shields.io/pypi/v/d8s-hypothesis.svg)](https://pypi.python.org/pypi/d8s-hypothesis) +[![CI](https://github.com/democritus-project/d8s-hypothesis/workflows/CI/badge.svg)](https://github.com/democritus-project/d8s-hypothesis/actions) +[![Lint](https://github.com/democritus-project/d8s-hypothesis/workflows/Lint/badge.svg)](https://github.com/democritus-project/d8s-hypothesis/actions) +[![codecov](https://codecov.io/gh/democritus-project/d8s-hypothesis/branch/main/graph/badge.svg?token=V0WOIXRGMM)](https://codecov.io/gh/democritus-project/d8s-hypothesis) +[![The Democritus Project uses semver version 2.0.0](https://img.shields.io/badge/-semver%20v2.0.0-22bfda)](https://semver.org/spec/v2.0.0.html) +[![The Democritus Project uses black to format code](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +[![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://choosealicense.com/licenses/lgpl-3.0/) + +Democritus functions[1] for working with [Hypothesis](https://hypothesis.readthedocs.io/en/latest/). + +[1] Democritus functions are simple, effective, modular, well-tested, and well-documented 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 - 0.6.0-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..c02c2fe --- /dev/null +++ b/sources @@ -0,0 +1 @@ +417f830d4e680287da2f7649b9782df5 d8s_hypothesis-0.6.0.tar.gz -- cgit v1.2.3