app-backup/rdiff-backup: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2025-03-11 08:01:36 +01:00
committed by Maciej Barć
parent 3434934908
commit 193d9e1a8b
2 changed files with 0 additions and 65 deletions

View File

@@ -1,23 +0,0 @@
diff -Naur rdiff-backup-2.0.3.orig/setup.py rdiff-backup-2.0.3/setup.py
--- rdiff-backup-2.0.3.orig/setup.py 2020-05-17 11:28:17.000000000 +0200
+++ rdiff-backup-2.0.3/setup.py 2020-05-31 00:36:19.404101919 +0200
@@ -194,19 +194,6 @@
scripts=["src/rdiff-backup", "src/rdiff-backup-statistics", "src/rdiff-backup-delete"],
data_files=[
("share/man/man1", ["build/rdiff-backup.1", "build/rdiff-backup-statistics.1"]),
- (
- "share/doc/rdiff-backup",
- [
- "CHANGELOG.md",
- "COPYING",
- "README.md",
- "docs/FAQ.md",
- "docs/examples.md",
- "docs/DEVELOP.md",
- "docs/Windows-README.md",
- "docs/Windows-DEVELOP.md",
- ],
- ),
("share/bash-completion/completions", ["tools/bash-completion/rdiff-backup"]),
],
# options is a hash of hash with command -> option -> value

View File

@@ -1,42 +0,0 @@
From 5e5cc54b5a633d3c6c0469283b2f26dbdde7908f Mon Sep 17 00:00:00 2001
From: Frank Crawford <frank@crawford.emu.id.au>
Date: Sun, 2 Jan 2022 18:44:57 +1100
Subject: [PATCH] Added patch for Python3.11 as per bpo-39573.
---
src/_librsyncmodule.c | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/_librsyncmodule.c b/src/_librsyncmodule.c
index a46567fc4..158104d2e 100644
--- a/src/_librsyncmodule.c
+++ b/src/_librsyncmodule.c
@@ -25,6 +25,16 @@
#include <librsync.h>
#define RSM_JOB_BLOCKSIZE 65536
+/* ----------------------------------------------------------------------- *
+ * Update for Python 3.11 - Contributed by Victor Stinner in bpo-39573.
+ * Compatibility macro for older Python versions.
+ * ----------------------------------------------------------------------- */
+#if PY_VERSION_HEX < 0x030900A4 && !defined(Py_SET_TYPE)
+static inline void _Py_SET_TYPE(PyObject *ob, PyTypeObject *type)
+{ ob->ob_type = type; }
+#define Py_SET_TYPE(ob, type) _Py_SET_TYPE((PyObject*)(ob), type)
+#endif
+
static PyObject *librsyncError;
/* Sets python error string from result */
@@ -540,8 +550,9 @@ PyMODINIT_FUNC PyInit__librsync(void)
{
PyObject *m, *d;
- Py_TYPE(&_librsync_SigMakerType) = &PyType_Type;
- Py_TYPE(&_librsync_DeltaMakerType) = &PyType_Type;
+ /* Update for Python 3.11 - bpo-39573. */
+ Py_SET_TYPE(&_librsync_SigMakerType, &PyType_Type);
+ Py_SET_TYPE(&_librsync_DeltaMakerType, &PyType_Type);
static struct PyModuleDef librsync_def = {
PyModuleDef_HEAD_INIT, "_librsync", "RSync Lib", -1, _librsyncMethods, };
m = PyModule_Create(&librsync_def);