Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F140679454
D17152.id48046.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
D17152.id48046.diff
View Options
Index: shells/xonsh/Makefile
===================================================================
--- shells/xonsh/Makefile
+++ shells/xonsh/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= xonsh
-PORTVERSION= 0.6.0
+PORTVERSION= 0.7.8
CATEGORIES= shells python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -10,6 +10,7 @@
COMMENT= Python-ish BASH-wards shell
LICENSE= BSD2CLAUSE
+LICENSE_FILE= ${WRKSRC}/license
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}amalgamate>=0:devel/py-amalgamate@${PY_FLAVOR}
Index: shells/xonsh/distinfo
===================================================================
--- shells/xonsh/distinfo
+++ shells/xonsh/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1511473787
-SHA256 (xonsh-0.6.0.tar.gz) = 19aa4c075378aef8476b8b2cdb0bea6fa5e10933163de443b958fa485e0f6dc6
-SIZE (xonsh-0.6.0.tar.gz) = 652164
+TIMESTAMP = 1536835442
+SHA256 (xonsh-0.7.8.tar.gz) = 956c7fbf19968afaade11fa5cb627a7f2c177a9e05f8cb03f7efa86b5fe4cb08
+SIZE (xonsh-0.7.8.tar.gz) = 827000
Index: shells/xonsh/files/patch-xonsh_platform.py
===================================================================
--- shells/xonsh/files/patch-xonsh_platform.py
+++ shells/xonsh/files/patch-xonsh_platform.py
@@ -1,11 +1,11 @@
---- xonsh/platform.py.orig 2017-03-12 02:36:40 UTC
+--- xonsh/platform.py.orig 2018-09-05 14:16:47 UTC
+++ xonsh/platform.py
-@@ -491,7 +491,7 @@ def LIBC():
- libc = ctypes.CDLL('cygwin1.dll')
+@@ -571,7 +571,7 @@ def LIBC():
+ libc = ctypes.CDLL("msys-2.0.dll")
elif ON_BSD:
try:
-- libc = ctypes.CDLL('libc.so')
-+ libc = ctypes.CDLL(ctypes.util.find_library("c"))
+- libc = ctypes.CDLL("libc.so")
++ libc = ctypes.CDLL(ctypes.util.find_library("c"))
except AttributeError:
libc = None
except OSError:
Index: shells/xonsh/files/patch-xonsh_xoreutils_uptime.py
===================================================================
--- shells/xonsh/files/patch-xonsh_xoreutils_uptime.py
+++ shells/xonsh/files/patch-xonsh_xoreutils_uptime.py
@@ -1,11 +1,18 @@
---- xonsh/xoreutils/uptime.py.orig 2017-02-11 16:24:07 UTC
+--- xonsh/xoreutils/uptime.py.orig 2018-09-05 14:16:47 UTC
+++ xonsh/xoreutils/uptime.py
-@@ -100,7 +100,7 @@ def _uptime_bsd():
+@@ -100,13 +100,13 @@ def _uptime_bsd():
return None
# Determine how much space we need for the response.
sz = ctypes.c_uint(0)
-- xp.LIBC.sysctlbyname('kern.boottime', None, ctypes.byref(sz), None, 0)
-+ xp.LIBC.sysctlbyname(b'kern.boottime', None, ctypes.byref(sz), None, 0)
- if sz.value != struct.calcsize('@LL'):
+- xp.LIBC.sysctlbyname("kern.boottime", None, ctypes.byref(sz), None, 0)
++ xp.LIBC.sysctlbyname(b"kern.boottime", None, ctypes.byref(sz), None, 0)
+ if sz.value != struct.calcsize("@LL"):
# Unexpected, let's give up.
return None
+ # For real now.
+ buf = ctypes.create_string_buffer(sz.value)
+- xp.LIBC.sysctlbyname("kern.boottime", buf, ctypes.byref(sz), None, 0)
++ xp.LIBC.sysctlbyname(b"kern.boottime", buf, ctypes.byref(sz), None, 0)
+ sec, usec = struct.unpack_from("@LL", buf.raw)
+ # OS X disagrees what that second value is.
+ if usec > 1000000:
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 27, 7:27 PM (21 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27311412
Default Alt Text
D17152.id48046.diff (3 KB)
Attached To
Mode
D17152: shells/xonsh: Upgrade to version 0.7.8
Attached
Detach File
Event Timeline
Log In to Comment