View | Details | Raw Unified | Return to bug 217484 | Differences between
and this patch

Collapse All | Expand All

(-)misc/Makefile (+1 lines)
Lines 374-379 Link Here
374
    SUBDIR += py-cinder
374
    SUBDIR += py-cinder
375
    SUBDIR += py-crudini
375
    SUBDIR += py-crudini
376
    SUBDIR += py-fuzzy
376
    SUBDIR += py-fuzzy
377
    SUBDIR += py-gitsome
377
    SUBDIR += py-glance
378
    SUBDIR += py-glance
378
    SUBDIR += py-osd
379
    SUBDIR += py-osd
379
    SUBDIR += py-pexpect
380
    SUBDIR += py-pexpect
(-)misc/py-gitsome/Makefile (+38 lines)
Line 0 Link Here
1
# Created by: Danilo G. Baio <dbaio@bsd.com.br>
2
# $FreeBSD$
3
4
PORTNAME=	gitsome
5
PORTVERSION=	0.7.0
6
CATEGORIES=	misc
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	dbaio@bsd.com.br
11
COMMENT=	Supercharged Git/Shell Autocompleter with GitHub Integration
12
13
LICENSE=	APACHE20
14
15
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}ply>=3.4:devel/py3-ply
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}numpydoc>=0.5:textproc/py3-numpydoc \
17
		${PYTHON_PKGNAMEPREFIX}ply>=3.4:devel/py3-ply \
18
		${PYTHON_PKGNAMEPREFIX}prompt_toolkit>=0.60:devel/py3-prompt_toolkit \
19
		${PYTHON_PKGNAMEPREFIX}requests>=2.8.1:www/py3-requests \
20
		${PYTHON_PKGNAMEPREFIX}colorama>=0.3.3:devel/py3-colorama \
21
		${PYTHON_PKGNAMEPREFIX}click>=5.1:devel/py3-click \
22
		${PYTHON_PKGNAMEPREFIX}pygments>=2.0.2:textproc/py3-pygments \
23
		${PYTHON_PKGNAMEPREFIX}feedparser>=5.2.1:textproc/py3-feedparser \
24
		${PYTHON_PKGNAMEPREFIX}pytz>=2016.3:devel/py3-pytz \
25
		${PYTHON_PKGNAMEPREFIX}docopt>=0.6.2:devel/py3-docopt \
26
		${PYTHON_PKGNAMEPREFIX}uritemplate>=1.0.0:net/py3-uritemplate
27
28
OPTIONS_DEFINE=	AVATAR
29
30
AVATAR_DESC=	Show avatars in your terminal
31
32
AVATAR_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pillow>=3.4.2:graphics/py3-pillow
33
34
NO_ARCH=	yes
35
USES=		python:3.4-3.5
36
USE_PYTHON=	autoplist distutils
37
38
.include <bsd.port.mk>
(-)misc/py-gitsome/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1490569967
2
SHA256 (gitsome-0.7.0.tar.gz) = e70ccd931a10e3c4876f89a8ffa0b8472575e3bb0cf69efd3360d10d4c156b1d
3
SIZE (gitsome-0.7.0.tar.gz) = 321155
(-)misc/py-gitsome/files/patch-setup.py (+11 lines)
Line 0 Link Here
1
--- setup.py.orig	2017-03-26 23:39:24 UTC
2
+++ setup.py
3
@@ -111,7 +111,7 @@ def main():
4
             'feedparser>=5.2.1,<6.0.0',
5
             'pytz>=2016.3,<2017.0',
6
             'docopt>=0.6.2,<1.0.0',
7
-            'uritemplate.py>=1.0.0,<4.0.0',
8
+            'uritemplate>=1.0.0,<4.0.0',
9
         ],
10
         skw['entry_points'] = {
11
             'pygments.lexers': ['gitsome = xonsh.pyghooks:XonshLexer',
(-)misc/py-gitsome/pkg-descr (+11 lines)
Line 0 Link Here
1
gitsome provides direct integration with GitHub and GitHub Enterprise in a
2
terminal. It includes not only GitHub integrated commands that work with all
3
shells but also provides following functions:
4
 - Git and GitHub Autocompleter With Interactive Help
5
 - Fish-Style Auto-Suggestions
6
 - General Autocompleter
7
 - Python REPL
8
 - Command History
9
 - Customizable Highlighting
10
11
WWW: https://github.com/donnemartin/gitsome

Return to bug 217484