diff options
author | Hiroki Tagato <tagattie@FreeBSD.org> | 2020-05-17 08:35:19 +0000 |
---|---|---|
committer | Hiroki Tagato <tagattie@FreeBSD.org> | 2020-05-17 08:35:19 +0000 |
commit | 9bce152d2e4236682c46b8a967a0b70cc6bd4ba0 (patch) | |
tree | dcfcc9b4b3a23dc43333f13569f7a85dd72e4416 /sysutils/rdiff-backup/files/patch-__librsyncmodule.c | |
parent | audio/lsp-plugins-lv2: Update 1.1.19 -> 1.1.21 (diff) |
- Update to 2.0.0 and undeprecate
- Rename portname to py-rdiff-backup following Python Ports Policy[1]
- Flavorize
- Remove PORTEPOCH due to package name change
- Use CHEESESHOP as MASTER_SITES instead of USE_GITHUB as per [1]
- Update COMMENT to match the description at PyPi as per [1]
- Update LICENSE and LICENSE_FILE based on the info at PyPi
- Add autoplist and concurrent to USE_PYTHON as per [1]
- Delete MAN1S and DOCS to let autoplist handle these files
- Delete pkg-plist in favor of autoplist
- Add TEST_DEPENDS and do-test target
[1] https://wiki.freebsd.org/Python/PortsPolicy
PR: 246250
Submitted by: Zsolt Udvari <uzsolt@uzsolt.hu> (maintainer)
Reviewed by: koobs, bapt
Approved by: ehaupt (mentor)
Changelog: https://github.com/rdiff-backup/rdiff-backup/blob/v2.0.0/CHANGELOG
Differential Revision: https://reviews.freebsd.org/D24816
Notes
Notes:
svn path=/head/; revision=535526
Diffstat (limited to 'sysutils/rdiff-backup/files/patch-__librsyncmodule.c')
-rw-r--r-- | sysutils/rdiff-backup/files/patch-__librsyncmodule.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sysutils/rdiff-backup/files/patch-__librsyncmodule.c b/sysutils/rdiff-backup/files/patch-__librsyncmodule.c deleted file mode 100644 index b47807dc5d57..000000000000 --- a/sysutils/rdiff-backup/files/patch-__librsyncmodule.c +++ /dev/null @@ -1,16 +0,0 @@ ---- _librsyncmodule.c.orig 2009-03-16 14:36:21 UTC -+++ _librsyncmodule.c -@@ -59,8 +59,13 @@ _librsync_new_sigmaker(PyObject* self, P - if (sm == NULL) return NULL; - sm->x_attr = NULL; - -+#ifdef RS_DEFAULT_STRONG_LEN - sm->sig_job = rs_sig_begin((size_t)blocklen, - (size_t)RS_DEFAULT_STRONG_LEN); -+#else -+ sm->sig_job = rs_sig_begin((size_t)blocklen, -+ (size_t)8, RS_MD4_SIG_MAGIC); -+#endif - return (PyObject*)sm; - } - |