summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-25 11:13:10 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-25 11:13:10 +0000
commit90b2326c0d877e6f1b742515628ff9022e63fffb (patch)
tree7e20ac97b530dbdad0ab1b25dbf5591ac82fef85
parentd23dfa708179a35cb2d9d7621d5d8d5d09304020 (diff)
automatic import of python-streaming-form-dataopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-streaming-form-data.spec62
-rw-r--r--sources2
3 files changed, 36 insertions, 29 deletions
diff --git a/.gitignore b/.gitignore
index cc3dddb..5a7b0b9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/streaming-form-data-1.11.0.tar.gz
+/streaming-form-data-1.11.1.tar.gz
diff --git a/python-streaming-form-data.spec b/python-streaming-form-data.spec
index 9ca35f6..a818f46 100644
--- a/python-streaming-form-data.spec
+++ b/python-streaming-form-data.spec
@@ -1,17 +1,17 @@
%global _empty_manifest_terminate_build 0
Name: python-streaming-form-data
-Version: 1.11.0
+Version: 1.11.1
Release: 1
Summary: Streaming parser for multipart/form-data
License: MIT License
URL: https://github.com/siddhantgoel/streaming-form-data
-Source0: https://mirrors.nju.edu.cn/pypi/web/packages/2c/6c/a6666cadf14b7bcb27f214a2325b9c72a35a0f3f34fbcda3890e53488468/streaming-form-data-1.11.0.tar.gz
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b8/e3/c2edd5fe7eb84bf9a1dbda7527606998daa6b142f8d5c6e081ab4eb26700/streaming-form-data-1.11.1.tar.gz
%description
# Streaming multipart/form-data parser
-[![image](https://github.com/siddhantgoel/streaming-form-data/workflows/streaming-form-data/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/workflows/streaming-form-data/badge.svg)
+[![image](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/test.yml/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/test.yml) [![image](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/build.yml/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/build.yml)
[![image](https://img.shields.io/pypi/v/streaming-form-data.svg)](https://pypi.python.org/pypi/streaming-form-data)
@@ -19,7 +19,6 @@ Source0: https://mirrors.nju.edu.cn/pypi/web/packages/2c/6c/a6666cadf14b7bcb27f2
[![image](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
-
`streaming_form_data` provides a Python parser for parsing `multipart/form-data`
input chunks (the encoding used when submitting data over HTTP through HTML
forms).
@@ -37,7 +36,7 @@ $ pip install streaming-form-data
```
In case you prefer cloning the Github repository and installing manually, please
-note that `master` is the development branch, so `stable` is what you should be
+note that `main` is the development branch, so `stable` is what you should be
working with.
## Usage
@@ -66,7 +65,7 @@ Up-to-date documentation is available on [Read the Docs].
## Development
-Please make sure you have Python 3.6+ and [pip-tools] installed.
+Please make sure you have Python 3.8+ and [pip-tools] installed.
Since this package includes a C extension, please make sure you have a working C
compiler available. On Debian-based distros this usually means installing the
@@ -78,13 +77,16 @@ compiler available. On Debian-based distros this usually means installing the
2. Install the packages required for development:
`make pip-sync`
-3. That's basically it. You should now be able to run the test suite:
- `make test`.
+3. Install `streaming_form_data` itself:
+ `pip install .`
-[pip-tools]: https://pypi.org/project/pip-tools/
-[Read the Docs]: https://streaming-form-data.readthedocs.io/
+4. That's basically it. You should now be able to run the test suite:
+ `make test`
+Note that if you make any changes to Cython files (`.pyx, .pxd, .pxi`), you'll need to re-compile (`make compile`) and re-install `streaming_form_data` before you can test your changes.
+[pip-tools]: https://pypi.org/project/pip-tools/
+[Read the Docs]: https://streaming-form-data.readthedocs.io/
%package -n python3-streaming-form-data
@@ -99,7 +101,7 @@ BuildRequires: gdb
%description -n python3-streaming-form-data
# Streaming multipart/form-data parser
-[![image](https://github.com/siddhantgoel/streaming-form-data/workflows/streaming-form-data/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/workflows/streaming-form-data/badge.svg)
+[![image](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/test.yml/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/test.yml) [![image](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/build.yml/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/build.yml)
[![image](https://img.shields.io/pypi/v/streaming-form-data.svg)](https://pypi.python.org/pypi/streaming-form-data)
@@ -107,7 +109,6 @@ BuildRequires: gdb
[![image](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
-
`streaming_form_data` provides a Python parser for parsing `multipart/form-data`
input chunks (the encoding used when submitting data over HTTP through HTML
forms).
@@ -125,7 +126,7 @@ $ pip install streaming-form-data
```
In case you prefer cloning the Github repository and installing manually, please
-note that `master` is the development branch, so `stable` is what you should be
+note that `main` is the development branch, so `stable` is what you should be
working with.
## Usage
@@ -154,7 +155,7 @@ Up-to-date documentation is available on [Read the Docs].
## Development
-Please make sure you have Python 3.6+ and [pip-tools] installed.
+Please make sure you have Python 3.8+ and [pip-tools] installed.
Since this package includes a C extension, please make sure you have a working C
compiler available. On Debian-based distros this usually means installing the
@@ -166,13 +167,16 @@ compiler available. On Debian-based distros this usually means installing the
2. Install the packages required for development:
`make pip-sync`
-3. That's basically it. You should now be able to run the test suite:
- `make test`.
+3. Install `streaming_form_data` itself:
+ `pip install .`
-[pip-tools]: https://pypi.org/project/pip-tools/
-[Read the Docs]: https://streaming-form-data.readthedocs.io/
+4. That's basically it. You should now be able to run the test suite:
+ `make test`
+Note that if you make any changes to Cython files (`.pyx, .pxd, .pxi`), you'll need to re-compile (`make compile`) and re-install `streaming_form_data` before you can test your changes.
+[pip-tools]: https://pypi.org/project/pip-tools/
+[Read the Docs]: https://streaming-form-data.readthedocs.io/
%package help
@@ -181,7 +185,7 @@ Provides: python3-streaming-form-data-doc
%description help
# Streaming multipart/form-data parser
-[![image](https://github.com/siddhantgoel/streaming-form-data/workflows/streaming-form-data/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/workflows/streaming-form-data/badge.svg)
+[![image](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/test.yml/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/test.yml) [![image](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/build.yml/badge.svg)](https://github.com/siddhantgoel/streaming-form-data/actions/workflows/build.yml)
[![image](https://img.shields.io/pypi/v/streaming-form-data.svg)](https://pypi.python.org/pypi/streaming-form-data)
@@ -189,7 +193,6 @@ Provides: python3-streaming-form-data-doc
[![image](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
-
`streaming_form_data` provides a Python parser for parsing `multipart/form-data`
input chunks (the encoding used when submitting data over HTTP through HTML
forms).
@@ -207,7 +210,7 @@ $ pip install streaming-form-data
```
In case you prefer cloning the Github repository and installing manually, please
-note that `master` is the development branch, so `stable` is what you should be
+note that `main` is the development branch, so `stable` is what you should be
working with.
## Usage
@@ -236,7 +239,7 @@ Up-to-date documentation is available on [Read the Docs].
## Development
-Please make sure you have Python 3.6+ and [pip-tools] installed.
+Please make sure you have Python 3.8+ and [pip-tools] installed.
Since this package includes a C extension, please make sure you have a working C
compiler available. On Debian-based distros this usually means installing the
@@ -248,17 +251,20 @@ compiler available. On Debian-based distros this usually means installing the
2. Install the packages required for development:
`make pip-sync`
-3. That's basically it. You should now be able to run the test suite:
- `make test`.
+3. Install `streaming_form_data` itself:
+ `pip install .`
-[pip-tools]: https://pypi.org/project/pip-tools/
-[Read the Docs]: https://streaming-form-data.readthedocs.io/
+4. That's basically it. You should now be able to run the test suite:
+ `make test`
+Note that if you make any changes to Cython files (`.pyx, .pxd, .pxi`), you'll need to re-compile (`make compile`) and re-install `streaming_form_data` before you can test your changes.
+[pip-tools]: https://pypi.org/project/pip-tools/
+[Read the Docs]: https://streaming-form-data.readthedocs.io/
%prep
-%autosetup -n streaming-form-data-1.11.0
+%autosetup -n streaming-form-data-1.11.1
%build
%py3_build
@@ -298,5 +304,5 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/*
%changelog
-* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 1.11.0-1
+* Tue Apr 25 2023 Python_Bot <Python_Bot@openeuler.org> - 1.11.1-1
- Package Spec generated
diff --git a/sources b/sources
index bd7d02f..0dfda60 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ced8271d40616f279fc4ecb3ced2b90e streaming-form-data-1.11.0.tar.gz
+9332f1081e8905ea6854889065372d22 streaming-form-data-1.11.1.tar.gz