FreeBSD Bugzilla – Attachment 209765 Details for
Bug 242453
devel/py-libzfs: Update to 1.0.20190402
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
devel/py-libzfs patch
devel-py-libzfs.shar (text/plain), 3.98 KB, created by
Juraj Lutter
on 2019-12-06 20:18:20 UTC
(
hide
)
Description:
devel/py-libzfs patch
Filename:
MIME Type:
Creator:
Juraj Lutter
Created:
2019-12-06 20:18:20 UTC
Size:
3.98 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># devel/py-libzfs ># devel/py-libzfs/pkg-descr ># devel/py-libzfs/distinfo ># devel/py-libzfs/files ># devel/py-libzfs/files/patch-libzfs.pyx ># devel/py-libzfs/files/patch-pxd_libzfs.pxd ># devel/py-libzfs/Makefile ># >echo c - devel/py-libzfs >mkdir -p devel/py-libzfs > /dev/null 2>&1 >echo x - devel/py-libzfs/pkg-descr >sed 's/^X//' >devel/py-libzfs/pkg-descr << '36ab62852049d20d981326bdbcb5e44c' >XPython libzfs bindings using cython. >X >XWWW: https://github.com/freenas/py-libzfs >36ab62852049d20d981326bdbcb5e44c >echo x - devel/py-libzfs/distinfo >sed 's/^X//' >devel/py-libzfs/distinfo << '38c65bbcfddf200e73b37d41c4a0732c' >XTIMESTAMP = 1575414306 >XSHA256 (freenas-py-libzfs-1.0.20190402-383afa0_GH0.tar.gz) = b951f6900bb10dcee96ae1b875f6b01f01ee7e3d0d9a9126fa6a23b44756b20e >XSIZE (freenas-py-libzfs-1.0.20190402-383afa0_GH0.tar.gz) = 30541 >38c65bbcfddf200e73b37d41c4a0732c >echo c - devel/py-libzfs/files >mkdir -p devel/py-libzfs/files > /dev/null 2>&1 >echo x - devel/py-libzfs/files/patch-libzfs.pyx >sed 's/^X//' >devel/py-libzfs/files/patch-libzfs.pyx << '1b640fbdcad88bfb69aeaa569da8c7d7' >X--- libzfs.pyx.orig 2019-12-05 13:14:34 UTC >X+++ libzfs.pyx >X@@ -2292,7 +2292,7 @@ cdef class ZFSDataset(ZFSObject): >X >X memset(&iter, 0, sizeof(iter)) >X with nogil: >X- libzfs.zfs_iter_snapshots(self.handle, False, self.__iterate, <void*>&iter) >X+ libzfs.zfs_iter_snapshots(self.handle, False, self.__iterate, <void*>&iter, 0, 0) >X >X try: >X for h in range(0, iter.length): >1b640fbdcad88bfb69aeaa569da8c7d7 >echo x - devel/py-libzfs/files/patch-pxd_libzfs.pxd >sed 's/^X//' >devel/py-libzfs/files/patch-pxd_libzfs.pxd << 'bc725955e9d52f78228f3bd10574f28b' >X--- pxd/libzfs.pxd.orig 2019-12-05 13:14:49 UTC >X+++ pxd/libzfs.pxd >X@@ -394,8 +394,8 @@ cdef extern from "libzfs.h" nogil: >X extern int zfs_iter_children(zfs_handle_t *, zfs_iter_f, void *) >X extern int zfs_iter_dependents(zfs_handle_t *, int, zfs_iter_f, void *) >X extern int zfs_iter_filesystems(zfs_handle_t *, zfs_iter_f, void *) >X- extern int zfs_iter_snapshots(zfs_handle_t *, int, zfs_iter_f, void *) >X- extern int zfs_iter_snapshots_sorted(zfs_handle_t *, zfs_iter_f, void *) >X+ extern int zfs_iter_snapshots(zfs_handle_t *, int, zfs_iter_f, void *, uint64_t, uint64_t) >X+ extern int zfs_iter_snapshots_sorted(zfs_handle_t *, zfs_iter_f, void *, uint64_t, uint64_t) >X extern int zfs_iter_snapspec(zfs_handle_t *, const char *, zfs_iter_f, void *) >X extern int zfs_iter_bookmarks(zfs_handle_t *, zfs_iter_f, void *) >X >bc725955e9d52f78228f3bd10574f28b >echo x - devel/py-libzfs/Makefile >sed 's/^X//' >devel/py-libzfs/Makefile << 'c07e1baf0f582a2bc3f9a8072021af87' >X# Created by: William Grzybowski <wg@FreeBSD.org> >X# $FreeBSD$ >X >XPORTNAME= libzfs >XPORTVERSION= 1.0.20190402 >XCATEGORIES= devel python >XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} >X >XMAINTAINER= wg@FreeBSD.org >XCOMMENT= Python libzfs bindings >X >XLICENSE= BSD2CLAUSE >X >XBROKEN_mips= fails to build: libzfs.c: error: convert_for_assignment: incompatible type for argument 3 of zfs_path_to_zhandle >XBROKEN_mips64= fails to build: libzfs.c: error: convert_for_assignment: incompatible type for argument 3 of zfs_path_to_zhandle >XBROKEN_powerpc64= fails to build: libzfs.c: error: convert_for_assignment: incompatible type for argument 3 of zfs_path_to_zhandle >X >XRUN_DEPENDS= ${PY_ENUM34} >X >XUSES= python >X >XUSE_PYTHON= autoplist distutils cython >X >XUSE_GITHUB= yes >XGH_ACCOUNT= freenas >XGH_PROJECT= py-libzfs >XGH_TAGNAME= 383afa0 >X >X.include <bsd.port.options.mk> >X >X.if !exists(${SRC_BASE}/sys/Makefile) >XIGNORE= requires kernel source files in ${SRC_BASE} >X.endif >X >XWRKSRC= ${WRKDIR}/${GH_PROJECT}-${GH_TAGNAME} >X >X.include <bsd.port.mk> >c07e1baf0f582a2bc3f9a8072021af87 >exit >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 242453
:
209726
| 209765