changed debian/source/format to native
This commit is contained in:
parent
fa455333e9
commit
034af9ec50
|
@ -1,20 +0,0 @@
|
|||
Description: define PATH_MAX if needed
|
||||
Fix FTBFS for Hurd/i386.
|
||||
Author: Laszlo Boszormenyi (GCS) <gcs@debian.org>
|
||||
Last-Update: 2018-07-22
|
||||
|
||||
---
|
||||
|
||||
--- a/deps/libuv/src/unix/internal.h
|
||||
+++ b/deps/libuv/src/unix/internal.h
|
||||
@@ -33,6 +33,10 @@
|
||||
#include <errno.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
+#ifndef PATH_MAX
|
||||
+#define PATH_MAX 4096
|
||||
+#endif
|
||||
+
|
||||
#if defined(__STRICT_ANSI__)
|
||||
# define inline __inline
|
||||
#endif
|
|
@ -1,21 +0,0 @@
|
|||
Description: do not run python -mgevent.tests --help
|
||||
The command fails and results in a error message in the generated HTML.
|
||||
Additionally, it's a cause for unreproducible builds.
|
||||
Author: Emanuele Rocca <ema@debian.org>
|
||||
Last-Update: 2022-08-31
|
||||
Index: python-gevent/docs/development/running_tests.rst
|
||||
===================================================================
|
||||
--- python-gevent.orig/docs/development/running_tests.rst
|
||||
+++ python-gevent/docs/development/running_tests.rst
|
||||
@@ -29,11 +29,6 @@ care of other gevent-specific quirks.
|
||||
remove this module. Notably, on Debian, you will probably need
|
||||
``libpythonX.Y-testsuite`` installed to run all the tests.
|
||||
|
||||
-
|
||||
-The test runner has a number of options:
|
||||
-
|
||||
-.. command-output:: python -mgevent.tests --help
|
||||
-
|
||||
The simplest way to run all the tests is just to invoke the test
|
||||
runner, typically from the root of the source checkout::
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
use-local-intersphinx-inventory.patch
|
||||
fix-Hurd-FTBFS.patch
|
||||
fix-error-running_tests-docs.patch
|
|
@ -1,19 +0,0 @@
|
|||
Description: use local intersphinx inventory
|
||||
Use the offline copy under debian/ instead downloading it.
|
||||
Author: Laszlo Boszormenyi (GCS) <gcs@debian.org>
|
||||
Forwarded: not-needed
|
||||
Last-Update: 2015-01-05
|
||||
|
||||
---
|
||||
|
||||
--- a/docs/conf.py
|
||||
+++ b/docs/conf.py
|
||||
@@ -51,7 +51,7 @@ extensions = [
|
||||
]
|
||||
|
||||
intersphinx_mapping = {
|
||||
- 'python': ('https://docs.python.org/', None),
|
||||
+ 'python': ('https://docs.python.org/', '../debian/python.inv'),
|
||||
'greenlet': ('https://greenlet.readthedocs.io/en/latest/', None),
|
||||
'zopeevent': ('https://zopeevent.readthedocs.io/en/latest/', None),
|
||||
'zopecomponent': ('https://zopecomponent.readthedocs.io/en/latest/', None),
|
|
@ -1 +1 @@
|
|||
3.0 (quilt)
|
||||
3.0 (native)
|
||||
|
|
Loading…
Reference in New Issue