Used test-distributions to fix the installation.

- Correctly using our urwid.
- LS_COLORS needed to be in the package.
- Didn't need to use pip3.
This commit is contained in:
Andrew Hamilton 2017-06-28 09:07:40 +01:00
parent 9f00b3ba3e
commit 0080db66d4
8 changed files with 15 additions and 19 deletions

2
vigil/LS_COLORS.sh Executable file

File diff suppressed because one or more lines are too long

View file

@ -12,8 +12,8 @@ import os
import signal
import sys
import urwid
import urwid.raw_display
import vigil.urwid
import vigil.urwid.raw_display
import vigil.terminal as terminal
import vigil.termstr as termstr
@ -436,7 +436,7 @@ def patch_screen(widget):
@contextlib.contextmanager
def _urwid_screen():
screen = urwid.raw_display.Screen()
screen = vigil.urwid.raw_display.Screen()
screen.set_mouse_tracking(True)
screen.start()
try:

View file

@ -400,8 +400,7 @@ def pycodestyle(path):
return _run_command([_python_version(path), "-m", "pycodestyle", path])
@deps(deps={"python-pyflakes", "python3-pyflakes"},
arch_deps={"python2-pyflakes", "python-pyflakes"},
@deps(deps={"pyflakes"}, arch_deps={"python2-pyflakes", "python-pyflakes"},
opensuse_deps={"python2-pyflakes", "python3-pyflakes"}, url="pyflakes",
missing_in={"gentoo"})
def pyflakes(path):

View file

@ -28,7 +28,7 @@ import sys
import termios
import tty
from urwid import escape
from vigil.urwid import escape
class Screen: