Index: head/shells/Makefile =================================================================== --- head/shells/Makefile (revision 450377) +++ head/shells/Makefile (revision 450378) @@ -1,51 +1,52 @@ # $FreeBSD$ # COMMENT = Shells SUBDIR += 44bsd-csh SUBDIR += ambit SUBDIR += bash SUBDIR += bash-completion SUBDIR += bash-static SUBDIR += bashc SUBDIR += ch SUBDIR += dash SUBDIR += es SUBDIR += esh SUBDIR += fd SUBDIR += fish SUBDIR += flash SUBDIR += heirloom-sh SUBDIR += hs-shelly SUBDIR += ibsh SUBDIR += jailkit SUBDIR += klish SUBDIR += ksh93 SUBDIR += lshell SUBDIR += mksh SUBDIR += nologinmsg SUBDIR += osh SUBDIR += p5-Bash-Completion SUBDIR += p5-Shell-Perl SUBDIR += p5-Term-Bash-Completion-Generator SUBDIR += p5-Term-ShellUI SUBDIR += pdksh SUBDIR += pear-PHP_Shell SUBDIR += psh SUBDIR += rc SUBDIR += rssh SUBDIR += sash SUBDIR += scponly SUBDIR += shell-include SUBDIR += sparforte SUBDIR += tcsh_nls SUBDIR += tcshrc SUBDIR += v7sh SUBDIR += viewglob SUBDIR += vshnu SUBDIR += wcd + SUBDIR += xonsh SUBDIR += zsh SUBDIR += zsh-navigation-tools .include Index: head/shells/xonsh/Makefile =================================================================== --- head/shells/xonsh/Makefile (nonexistent) +++ head/shells/xonsh/Makefile (revision 450378) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= xonsh +PORTVERSION= 0.5.12 +CATEGORIES= shells python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= roberfern@gmail.com +COMMENT= Python-ish BASH-wards shell + +LICENSE= BSD2CLAUSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}amalgamate>=0:devel/py-amalgamate + +NO_ARCH= yes + +USES= python:3.4+ +USE_PYTHON= distutils autoplist concurrent + +.include Property changes on: head/shells/xonsh/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/shells/xonsh/distinfo =================================================================== --- head/shells/xonsh/distinfo (nonexistent) +++ head/shells/xonsh/distinfo (revision 450378) @@ -0,0 +1,3 @@ +TIMESTAMP = 1506080374 +SHA256 (xonsh-0.5.12.tar.gz) = 4ca8fd5f1ce5532fba252132a7a7db26b38d80429d8d538928d1aed26149e5fb +SIZE (xonsh-0.5.12.tar.gz) = 686495 Property changes on: head/shells/xonsh/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +on \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/shells/xonsh/files/patch-xonsh_platform.py =================================================================== --- head/shells/xonsh/files/patch-xonsh_platform.py (nonexistent) +++ head/shells/xonsh/files/patch-xonsh_platform.py (revision 450378) @@ -0,0 +1,11 @@ +--- xonsh/platform.py.orig 2017-03-12 02:36:40 UTC ++++ xonsh/platform.py +@@ -491,7 +491,7 @@ def LIBC(): + libc = ctypes.CDLL('cygwin1.dll') + elif ON_BSD: + try: +- libc = ctypes.CDLL('libc.so') ++ libc = ctypes.CDLL(ctypes.util.find_library("c")) + except AttributeError: + libc = None + except OSError: Property changes on: head/shells/xonsh/files/patch-xonsh_platform.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +on \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/shells/xonsh/files/patch-xonsh_xoreutils_uptime.py =================================================================== --- head/shells/xonsh/files/patch-xonsh_xoreutils_uptime.py (nonexistent) +++ head/shells/xonsh/files/patch-xonsh_xoreutils_uptime.py (revision 450378) @@ -0,0 +1,11 @@ +--- xonsh/xoreutils/uptime.py.orig 2017-02-11 16:24:07 UTC ++++ xonsh/xoreutils/uptime.py +@@ -100,7 +100,7 @@ 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'): + # Unexpected, let's give up. + return None Property changes on: head/shells/xonsh/files/patch-xonsh_xoreutils_uptime.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +on \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/shells/xonsh/pkg-descr =================================================================== --- head/shells/xonsh/pkg-descr (nonexistent) +++ head/shells/xonsh/pkg-descr (revision 450378) @@ -0,0 +1,7 @@ +xonsh is a Python-ish, BASHwards-looking shell language and command prompt. + +The language is a superset of Python 3.4+ with additional shell primitives. +xonsh (pronounced conch) is meant for the daily use of experts and novices +alike. + +WWW: http://xon.sh Property changes on: head/shells/xonsh/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +on \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property