From 0dfcb6f12dc40aa6b8a184fc0502dba822a79abe Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 10 May 2023 07:40:32 +0000 Subject: automatic import of python-sort-requirements --- .gitignore | 1 + python-sort-requirements.spec | 219 ++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 221 insertions(+) create mode 100644 python-sort-requirements.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..ec7dd46 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/sort_requirements-1.3.0.tar.gz diff --git a/python-sort-requirements.spec b/python-sort-requirements.spec new file mode 100644 index 0000000..49898a0 --- /dev/null +++ b/python-sort-requirements.spec @@ -0,0 +1,219 @@ +%global _empty_manifest_terminate_build 0 +Name: python-sort-requirements +Version: 1.3.0 +Release: 1 +Summary: A simple script to sort python dependencies in requirement text files. +License: Mozilla Public License Version 2.0 +URL: https://github.com/rehandalal/sort-requirements +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f6/ee/27fed6c658e73598356f8e758a116adacb72f7e50d34fc27fc7f1d2beed3/sort_requirements-1.3.0.tar.gz +BuildArch: noarch + + +%description +A simple script to sort python dependencies in requirement text files. +![PyPI](https://img.shields.io/pypi/v/sort-requirements.svg) +![PyPI - Python Version](https://img.shields.io/pypi/pyversions/sort-requirements.svg) +[![CircleCI](https://img.shields.io/circleci/project/github/rehandalal/sort-requirements.svg)](https://circleci.com/gh/rehandalal/sort-requirements) +#### Installation +Installing this tool is easily done using [pip](https://github.com/pypa/pip). +Assuming `pip` is installed just run the following from the command line: +``` +$ pip install sort_requirements +``` +This command will download the latest version from the +[Python Package Index](https://pypi.org/project/sort-requirements/) +and install it to your system. More information about `pip` and pypi can be +found here: +* [install pip](https://pip.pypa.io/en/latest/installing.html) +* [pypi](https://pypi.python.org/pypi) +Alternatively you can install from the distribution using the `setup.py` +script: +``` +$ python setup.py install +``` +You could also install the +[development version](https://github.com/rehandalal/sort-requirements/tarball/master#egg=sort-requirements-dev) +by running the following: +``` +$ pip install therapist==dev +``` +Or simple install from a clone of the +[git repo](https://github.com/rehandalal/therapist/): +``` +$ git clone https://github.com/rehandalal/sort-requirements.git +$ mkvirtualenv sort-requirements +$ pip install --editable . +``` +#### Usage +To use this tool simply run the following from the command line: +``` +$ sort-requirements my-requirements-file.txt +``` +Please make sure to replace `my-requirements-file.txt` with the path to your +requirements file(s). +If you only want to get a list of files that need sorting, without actually +writing any changes to the files, use the `--check` flag: +``` +$ sort-requirements --check my-requirements-file.txt another-file.txt +``` +For even more options use the `--help` flag: +``` +$ sort-requirements --help +``` + +%package -n python3-sort-requirements +Summary: A simple script to sort python dependencies in requirement text files. +Provides: python-sort-requirements +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-sort-requirements +A simple script to sort python dependencies in requirement text files. +![PyPI](https://img.shields.io/pypi/v/sort-requirements.svg) +![PyPI - Python Version](https://img.shields.io/pypi/pyversions/sort-requirements.svg) +[![CircleCI](https://img.shields.io/circleci/project/github/rehandalal/sort-requirements.svg)](https://circleci.com/gh/rehandalal/sort-requirements) +#### Installation +Installing this tool is easily done using [pip](https://github.com/pypa/pip). +Assuming `pip` is installed just run the following from the command line: +``` +$ pip install sort_requirements +``` +This command will download the latest version from the +[Python Package Index](https://pypi.org/project/sort-requirements/) +and install it to your system. More information about `pip` and pypi can be +found here: +* [install pip](https://pip.pypa.io/en/latest/installing.html) +* [pypi](https://pypi.python.org/pypi) +Alternatively you can install from the distribution using the `setup.py` +script: +``` +$ python setup.py install +``` +You could also install the +[development version](https://github.com/rehandalal/sort-requirements/tarball/master#egg=sort-requirements-dev) +by running the following: +``` +$ pip install therapist==dev +``` +Or simple install from a clone of the +[git repo](https://github.com/rehandalal/therapist/): +``` +$ git clone https://github.com/rehandalal/sort-requirements.git +$ mkvirtualenv sort-requirements +$ pip install --editable . +``` +#### Usage +To use this tool simply run the following from the command line: +``` +$ sort-requirements my-requirements-file.txt +``` +Please make sure to replace `my-requirements-file.txt` with the path to your +requirements file(s). +If you only want to get a list of files that need sorting, without actually +writing any changes to the files, use the `--check` flag: +``` +$ sort-requirements --check my-requirements-file.txt another-file.txt +``` +For even more options use the `--help` flag: +``` +$ sort-requirements --help +``` + +%package help +Summary: Development documents and examples for sort-requirements +Provides: python3-sort-requirements-doc +%description help +A simple script to sort python dependencies in requirement text files. +![PyPI](https://img.shields.io/pypi/v/sort-requirements.svg) +![PyPI - Python Version](https://img.shields.io/pypi/pyversions/sort-requirements.svg) +[![CircleCI](https://img.shields.io/circleci/project/github/rehandalal/sort-requirements.svg)](https://circleci.com/gh/rehandalal/sort-requirements) +#### Installation +Installing this tool is easily done using [pip](https://github.com/pypa/pip). +Assuming `pip` is installed just run the following from the command line: +``` +$ pip install sort_requirements +``` +This command will download the latest version from the +[Python Package Index](https://pypi.org/project/sort-requirements/) +and install it to your system. More information about `pip` and pypi can be +found here: +* [install pip](https://pip.pypa.io/en/latest/installing.html) +* [pypi](https://pypi.python.org/pypi) +Alternatively you can install from the distribution using the `setup.py` +script: +``` +$ python setup.py install +``` +You could also install the +[development version](https://github.com/rehandalal/sort-requirements/tarball/master#egg=sort-requirements-dev) +by running the following: +``` +$ pip install therapist==dev +``` +Or simple install from a clone of the +[git repo](https://github.com/rehandalal/therapist/): +``` +$ git clone https://github.com/rehandalal/sort-requirements.git +$ mkvirtualenv sort-requirements +$ pip install --editable . +``` +#### Usage +To use this tool simply run the following from the command line: +``` +$ sort-requirements my-requirements-file.txt +``` +Please make sure to replace `my-requirements-file.txt` with the path to your +requirements file(s). +If you only want to get a list of files that need sorting, without actually +writing any changes to the files, use the `--check` flag: +``` +$ sort-requirements --check my-requirements-file.txt another-file.txt +``` +For even more options use the `--help` flag: +``` +$ sort-requirements --help +``` + +%prep +%autosetup -n sort-requirements-1.3.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-sort-requirements -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot - 1.3.0-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..fa37f15 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +f767a0c3eadc88e10f4e42618e1e871a sort_requirements-1.3.0.tar.gz -- cgit v1.2.3