From owner-svn-ports-all@freebsd.org Fri Jan 5 09:26:51 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 028D2EBFB94; Fri, 5 Jan 2018 09:26:51 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBB5E7F923; Fri, 5 Jan 2018 09:26:50 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w059Qn93089389; Fri, 5 Jan 2018 09:26:49 GMT (envelope-from ygy@FreeBSD.org) Received: (from ygy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w059QnNb089385; Fri, 5 Jan 2018 09:26:49 GMT (envelope-from ygy@FreeBSD.org) Message-Id: <201801050926.w059QnNb089385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ygy set sender to ygy@FreeBSD.org using -f From: Guangyuan Yang Date: Fri, 5 Jan 2018 09:26:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458123 - in head/misc: . thefuck X-SVN-Group: ports-head X-SVN-Commit-Author: ygy X-SVN-Commit-Paths: in head/misc: . thefuck X-SVN-Commit-Revision: 458123 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jan 2018 09:26:51 -0000 Author: ygy (doc committer) Date: Fri Jan 5 09:26:49 2018 New Revision: 458123 URL: https://svnweb.freebsd.org/changeset/ports/458123 Log: - Add thefuck 3.25 Thefuck is a magnificent app which corrects your previous console command. It tries to match a rule for the previous command, creates a new command using the matched rule and runs it. Thefuck comes with a lot of predefined rules, but you can create your own rules as well. WWW: https://github.com/nvbn/thefuck PR: 224263 Approved by: adamw Differential Revision: https://reviews.freebsd.org/D13460 Added: head/misc/thefuck/ head/misc/thefuck/Makefile (contents, props changed) head/misc/thefuck/distinfo (contents, props changed) head/misc/thefuck/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Fri Jan 5 09:00:46 2018 (r458122) +++ head/misc/Makefile Fri Jan 5 09:26:49 2018 (r458123) @@ -465,6 +465,7 @@ SUBDIR += tempcontrol SUBDIR += termatrix SUBDIR += teseq + SUBDIR += thefuck SUBDIR += timediff SUBDIR += tkcron SUBDIR += tkinfo Added: head/misc/thefuck/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/thefuck/Makefile Fri Jan 5 09:26:49 2018 (r458123) @@ -0,0 +1,25 @@ +# Created by: Guangyuan Yang +# $FreeBSD$ + +PORTNAME= thefuck +DISTVERSION= 3.25 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP + +MAINTAINER= ygy@FreeBSD.org +COMMENT= App that corrects your previous console command + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>0:devel/py-colorama@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyte>0:devel/py-pyte@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python:3.4+ +USE_PYTHON= autoplist distutils noflavors +NO_ARCH= yes + +.include Added: head/misc/thefuck/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/thefuck/distinfo Fri Jan 5 09:26:49 2018 (r458123) @@ -0,0 +1,3 @@ +TIMESTAMP = 1512711410 +SHA256 (thefuck-3.25.tar.gz) = 70cbe6295d2d2d371a395619216d38eb1666e4b3c3b1a24f67d11b88e65fea78 +SIZE (thefuck-3.25.tar.gz) = 63444 Added: head/misc/thefuck/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/thefuck/pkg-descr Fri Jan 5 09:26:49 2018 (r458123) @@ -0,0 +1,10 @@ +Thefuck is a magnificent app which corrects your previous console command. +It tries to match a rule for the previous command, creates a new command +using the matched rule and runs it. Thefuck comes with a lot of predefined +rules, but you can create your own rules as well. + +You should place this command in your shell config file: + +eval $(thefuck --alias) + +WWW: https://github.com/nvbn/thefuck