diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-10 08:08:32 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 08:08:32 +0000 |
| commit | 85e445ad15a45661b5dbd2e294adcccdfeac3bb2 (patch) | |
| tree | 29157556090fca0d229fb7d85216a3fe584da9d9 | |
| parent | d521663dd69ee33d6b057e6a1bcc042c53389114 (diff) | |
automatic import of python-garages-amsterdam
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-garages-amsterdam.spec | 620 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 622 insertions, 0 deletions
@@ -0,0 +1 @@ +/garages-amsterdam-4.1.0.tar.gz diff --git a/python-garages-amsterdam.spec b/python-garages-amsterdam.spec new file mode 100644 index 0000000..7a828a7 --- /dev/null +++ b/python-garages-amsterdam.spec @@ -0,0 +1,620 @@ +%global _empty_manifest_terminate_build 0 +Name: python-garages-amsterdam +Version: 4.1.0 +Release: 1 +Summary: Asynchronous Python client for the Garages Amsterdam +License: MIT +URL: https://github.com/klaasnicolaas/python-garages-amsterdam +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/31/75/125f9d8da36dbc3948363dcbe6ff5396bebf63bb5b7f5fe16bd6f802843f/garages-amsterdam-4.1.0.tar.gz +BuildArch: noarch + +Requires: python3-aiohttp +Requires: python3-yarl + +%description +## Python - Garages Amsterdam Client + +<!-- PROJECT SHIELDS --> +[![GitHub Release][releases-shield]][releases] +[![Python Versions][python-versions-shield]][pypi] +![Project Stage][project-stage-shield] +![Project Maintenance][maintenance-shield] +[![License][license-shield]](LICENSE) + +[![GitHub Activity][commits-shield]][commits-url] +[![Forks][forks-shield]][forks-url] +[![Stargazers][stars-shield]][stars-url] +[![Issues][issues-shield]][issues-url] +[![GitHub Last Commit][last-commit-shield]][commits-url] + +[![Code Quality][code-quality-shield]][code-quality] +[![Maintainability][maintainability-shield]][maintainability-url] +[![Code Coverage][codecov-shield]][codecov-url] + +[![Build Status][build-shield]][build-url] +[![Typing Status][typing-shield]][typing-url] + +Asynchronous Python client for the garage occupancy in Amsterdam (The Netherlands). + +## About + +A python package with which you can read the occupancy of a parking garage in Amsterdam (The Netherlands). Both for day visitors (short-term parking) and season ticket holders (long-term parking). + +**NOTE**: Not all parking garages have data for long-term parking. + +## Installation + +```bash +pip install garages-amsterdam +``` + +## Usage + +```python +import asyncio + +from garages_amsterdam import GaragesAmsterdam + + +async def main(): + """Show example on using the Garage Amsterdam API client.""" + async with GaragesAmsterdam() as client: + all_garages: list[Garage] = await client.all_garages() + garage: Garage = await client.garage(garage_id="ID_OF_GARAGE") + print(all_garages) + print(garage) + + +if __name__ == "__main__": + asyncio.run(main()) +``` + +## Data + +You can read the following data with this package: + +- Name of the parking garage +- API State (`ok` or `problem`) +- Free space short +- Free space long +- Short capacity +- Long capacity +- Availability percentage (based on short capacity) +- Longitude +- Latitude + +## Contributing + +This is an active open-source project. We are always open to people who want to +use the code or contribute to it. + +We've set up a separate document for our +[contribution guidelines](CONTRIBUTING.md). + +Thank you for being involved! :heart_eyes: + +## Setting up development environment + +This Python project is fully managed using the [Poetry][poetry] dependency +manager. + +You need at least: + +- Python 3.9+ +- [Poetry][poetry-install] + +Install all packages, including all development requirements: + +```bash +poetry install +``` + +Poetry creates by default an virtual environment where it installs all +necessary pip packages, to enter or exit the venv run the following commands: + +```bash +poetry shell +exit +``` + +Setup the pre-commit check, you must run this inside the virtual environment: + +```bash +pre-commit install +``` + +*Now you're all set to get started!* + +As this repository uses the [pre-commit][pre-commit] framework, all changes +are linted and tested with each commit. You can run all checks and tests +manually, using the following command: + +```bash +poetry run pre-commit run --all-files +``` + +To run just the Python tests: + +```bash +poetry run pytest +``` + +## License + +MIT License + +Copyright (c) 2020-2022 Klaas Schoute + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +<!-- MARKDOWN LINKS & IMAGES --> +[build-shield]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/tests.yaml/badge.svg +[build-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/tests.yaml +[code-quality-shield]: https://img.shields.io/lgtm/grade/python/g/klaasnicolaas/python-garages-amsterdam.svg?logo=lgtm&logoWidth=18 +[code-quality]: https://lgtm.com/projects/g/klaasnicolaas/python-garages-amsterdam/context:python +[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-garages-amsterdam.svg +[commits-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/commits/main +[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-garages-amsterdam/branch/main/graph/badge.svg?token=F6CE1S25NV +[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-garages-amsterdam +[forks-shield]: https://img.shields.io/github/forks/klaasnicolaas/python-garages-amsterdam.svg +[forks-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/network/members +[issues-shield]: https://img.shields.io/github/issues/klaasnicolaas/python-garages-amsterdam.svg +[issues-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/issues +[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-garages-amsterdam.svg +[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-garages-amsterdam.svg +[maintenance-shield]: https://img.shields.io/maintenance/yes/2022.svg +[maintainability-shield]: https://api.codeclimate.com/v1/badges/72d6baa9151bb0b0cfdf/maintainability +[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-garages-amsterdam/maintainability +[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg +[pypi]: https://pypi.org/project/garages-amsterdam/ +[python-versions-shield]: https://img.shields.io/pypi/pyversions/garages-amsterdam +[typing-shield]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/typing.yaml/badge.svg +[typing-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/typing.yaml +[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-garages-amsterdam.svg +[releases]: https://github.com/klaasnicolaas/python-garages-amsterdam/releases +[stars-shield]: https://img.shields.io/github/stars/klaasnicolaas/python-garages-amsterdam.svg +[stars-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/stargazers + +[poetry-install]: https://python-poetry.org/docs/#installation +[poetry]: https://python-poetry.org +[pre-commit]: https://pre-commit.com + + +%package -n python3-garages-amsterdam +Summary: Asynchronous Python client for the Garages Amsterdam +Provides: python-garages-amsterdam +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-garages-amsterdam +## Python - Garages Amsterdam Client + +<!-- PROJECT SHIELDS --> +[![GitHub Release][releases-shield]][releases] +[![Python Versions][python-versions-shield]][pypi] +![Project Stage][project-stage-shield] +![Project Maintenance][maintenance-shield] +[![License][license-shield]](LICENSE) + +[![GitHub Activity][commits-shield]][commits-url] +[![Forks][forks-shield]][forks-url] +[![Stargazers][stars-shield]][stars-url] +[![Issues][issues-shield]][issues-url] +[![GitHub Last Commit][last-commit-shield]][commits-url] + +[![Code Quality][code-quality-shield]][code-quality] +[![Maintainability][maintainability-shield]][maintainability-url] +[![Code Coverage][codecov-shield]][codecov-url] + +[![Build Status][build-shield]][build-url] +[![Typing Status][typing-shield]][typing-url] + +Asynchronous Python client for the garage occupancy in Amsterdam (The Netherlands). + +## About + +A python package with which you can read the occupancy of a parking garage in Amsterdam (The Netherlands). Both for day visitors (short-term parking) and season ticket holders (long-term parking). + +**NOTE**: Not all parking garages have data for long-term parking. + +## Installation + +```bash +pip install garages-amsterdam +``` + +## Usage + +```python +import asyncio + +from garages_amsterdam import GaragesAmsterdam + + +async def main(): + """Show example on using the Garage Amsterdam API client.""" + async with GaragesAmsterdam() as client: + all_garages: list[Garage] = await client.all_garages() + garage: Garage = await client.garage(garage_id="ID_OF_GARAGE") + print(all_garages) + print(garage) + + +if __name__ == "__main__": + asyncio.run(main()) +``` + +## Data + +You can read the following data with this package: + +- Name of the parking garage +- API State (`ok` or `problem`) +- Free space short +- Free space long +- Short capacity +- Long capacity +- Availability percentage (based on short capacity) +- Longitude +- Latitude + +## Contributing + +This is an active open-source project. We are always open to people who want to +use the code or contribute to it. + +We've set up a separate document for our +[contribution guidelines](CONTRIBUTING.md). + +Thank you for being involved! :heart_eyes: + +## Setting up development environment + +This Python project is fully managed using the [Poetry][poetry] dependency +manager. + +You need at least: + +- Python 3.9+ +- [Poetry][poetry-install] + +Install all packages, including all development requirements: + +```bash +poetry install +``` + +Poetry creates by default an virtual environment where it installs all +necessary pip packages, to enter or exit the venv run the following commands: + +```bash +poetry shell +exit +``` + +Setup the pre-commit check, you must run this inside the virtual environment: + +```bash +pre-commit install +``` + +*Now you're all set to get started!* + +As this repository uses the [pre-commit][pre-commit] framework, all changes +are linted and tested with each commit. You can run all checks and tests +manually, using the following command: + +```bash +poetry run pre-commit run --all-files +``` + +To run just the Python tests: + +```bash +poetry run pytest +``` + +## License + +MIT License + +Copyright (c) 2020-2022 Klaas Schoute + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +<!-- MARKDOWN LINKS & IMAGES --> +[build-shield]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/tests.yaml/badge.svg +[build-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/tests.yaml +[code-quality-shield]: https://img.shields.io/lgtm/grade/python/g/klaasnicolaas/python-garages-amsterdam.svg?logo=lgtm&logoWidth=18 +[code-quality]: https://lgtm.com/projects/g/klaasnicolaas/python-garages-amsterdam/context:python +[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-garages-amsterdam.svg +[commits-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/commits/main +[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-garages-amsterdam/branch/main/graph/badge.svg?token=F6CE1S25NV +[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-garages-amsterdam +[forks-shield]: https://img.shields.io/github/forks/klaasnicolaas/python-garages-amsterdam.svg +[forks-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/network/members +[issues-shield]: https://img.shields.io/github/issues/klaasnicolaas/python-garages-amsterdam.svg +[issues-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/issues +[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-garages-amsterdam.svg +[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-garages-amsterdam.svg +[maintenance-shield]: https://img.shields.io/maintenance/yes/2022.svg +[maintainability-shield]: https://api.codeclimate.com/v1/badges/72d6baa9151bb0b0cfdf/maintainability +[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-garages-amsterdam/maintainability +[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg +[pypi]: https://pypi.org/project/garages-amsterdam/ +[python-versions-shield]: https://img.shields.io/pypi/pyversions/garages-amsterdam +[typing-shield]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/typing.yaml/badge.svg +[typing-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/typing.yaml +[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-garages-amsterdam.svg +[releases]: https://github.com/klaasnicolaas/python-garages-amsterdam/releases +[stars-shield]: https://img.shields.io/github/stars/klaasnicolaas/python-garages-amsterdam.svg +[stars-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/stargazers + +[poetry-install]: https://python-poetry.org/docs/#installation +[poetry]: https://python-poetry.org +[pre-commit]: https://pre-commit.com + + +%package help +Summary: Development documents and examples for garages-amsterdam +Provides: python3-garages-amsterdam-doc +%description help +## Python - Garages Amsterdam Client + +<!-- PROJECT SHIELDS --> +[![GitHub Release][releases-shield]][releases] +[![Python Versions][python-versions-shield]][pypi] +![Project Stage][project-stage-shield] +![Project Maintenance][maintenance-shield] +[![License][license-shield]](LICENSE) + +[![GitHub Activity][commits-shield]][commits-url] +[![Forks][forks-shield]][forks-url] +[![Stargazers][stars-shield]][stars-url] +[![Issues][issues-shield]][issues-url] +[![GitHub Last Commit][last-commit-shield]][commits-url] + +[![Code Quality][code-quality-shield]][code-quality] +[![Maintainability][maintainability-shield]][maintainability-url] +[![Code Coverage][codecov-shield]][codecov-url] + +[![Build Status][build-shield]][build-url] +[![Typing Status][typing-shield]][typing-url] + +Asynchronous Python client for the garage occupancy in Amsterdam (The Netherlands). + +## About + +A python package with which you can read the occupancy of a parking garage in Amsterdam (The Netherlands). Both for day visitors (short-term parking) and season ticket holders (long-term parking). + +**NOTE**: Not all parking garages have data for long-term parking. + +## Installation + +```bash +pip install garages-amsterdam +``` + +## Usage + +```python +import asyncio + +from garages_amsterdam import GaragesAmsterdam + + +async def main(): + """Show example on using the Garage Amsterdam API client.""" + async with GaragesAmsterdam() as client: + all_garages: list[Garage] = await client.all_garages() + garage: Garage = await client.garage(garage_id="ID_OF_GARAGE") + print(all_garages) + print(garage) + + +if __name__ == "__main__": + asyncio.run(main()) +``` + +## Data + +You can read the following data with this package: + +- Name of the parking garage +- API State (`ok` or `problem`) +- Free space short +- Free space long +- Short capacity +- Long capacity +- Availability percentage (based on short capacity) +- Longitude +- Latitude + +## Contributing + +This is an active open-source project. We are always open to people who want to +use the code or contribute to it. + +We've set up a separate document for our +[contribution guidelines](CONTRIBUTING.md). + +Thank you for being involved! :heart_eyes: + +## Setting up development environment + +This Python project is fully managed using the [Poetry][poetry] dependency +manager. + +You need at least: + +- Python 3.9+ +- [Poetry][poetry-install] + +Install all packages, including all development requirements: + +```bash +poetry install +``` + +Poetry creates by default an virtual environment where it installs all +necessary pip packages, to enter or exit the venv run the following commands: + +```bash +poetry shell +exit +``` + +Setup the pre-commit check, you must run this inside the virtual environment: + +```bash +pre-commit install +``` + +*Now you're all set to get started!* + +As this repository uses the [pre-commit][pre-commit] framework, all changes +are linted and tested with each commit. You can run all checks and tests +manually, using the following command: + +```bash +poetry run pre-commit run --all-files +``` + +To run just the Python tests: + +```bash +poetry run pytest +``` + +## License + +MIT License + +Copyright (c) 2020-2022 Klaas Schoute + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +<!-- MARKDOWN LINKS & IMAGES --> +[build-shield]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/tests.yaml/badge.svg +[build-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/tests.yaml +[code-quality-shield]: https://img.shields.io/lgtm/grade/python/g/klaasnicolaas/python-garages-amsterdam.svg?logo=lgtm&logoWidth=18 +[code-quality]: https://lgtm.com/projects/g/klaasnicolaas/python-garages-amsterdam/context:python +[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-garages-amsterdam.svg +[commits-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/commits/main +[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-garages-amsterdam/branch/main/graph/badge.svg?token=F6CE1S25NV +[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-garages-amsterdam +[forks-shield]: https://img.shields.io/github/forks/klaasnicolaas/python-garages-amsterdam.svg +[forks-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/network/members +[issues-shield]: https://img.shields.io/github/issues/klaasnicolaas/python-garages-amsterdam.svg +[issues-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/issues +[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-garages-amsterdam.svg +[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-garages-amsterdam.svg +[maintenance-shield]: https://img.shields.io/maintenance/yes/2022.svg +[maintainability-shield]: https://api.codeclimate.com/v1/badges/72d6baa9151bb0b0cfdf/maintainability +[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-garages-amsterdam/maintainability +[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg +[pypi]: https://pypi.org/project/garages-amsterdam/ +[python-versions-shield]: https://img.shields.io/pypi/pyversions/garages-amsterdam +[typing-shield]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/typing.yaml/badge.svg +[typing-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/actions/workflows/typing.yaml +[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-garages-amsterdam.svg +[releases]: https://github.com/klaasnicolaas/python-garages-amsterdam/releases +[stars-shield]: https://img.shields.io/github/stars/klaasnicolaas/python-garages-amsterdam.svg +[stars-url]: https://github.com/klaasnicolaas/python-garages-amsterdam/stargazers + +[poetry-install]: https://python-poetry.org/docs/#installation +[poetry]: https://python-poetry.org +[pre-commit]: https://pre-commit.com + + +%prep +%autosetup -n garages-amsterdam-4.1.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-garages-amsterdam -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 4.1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +ea0fd4a6198c307f5892e54f4c490ac2 garages-amsterdam-4.1.0.tar.gz |
