1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Compare commits

...

18 commits

Author SHA1 Message Date
Shlomi Fish
d742a8702a [travis] osx investigate 2018-11-12 23:51:10 +02:00
Shlomi Fish
ede749431a [travis] osx fix - #5 2018-11-12 20:44:16 +02:00
Shlomi Fish
0b490ea50d [travis] osx fix - #4 2018-11-12 20:14:41 +02:00
Shlomi Fish
dbab334f43 [travis] osx pkg release 2018-11-12 18:47:33 +02:00
Shlomi Fish
99677648bb [travis] osx - try preparing a package 2018-11-12 17:34:21 +02:00
Shlomi Fish
745b31ae73 travis osx pkg fix - tile is part of tk.
See https://wiki.tcl-lang.org/page/Ttk .
2018-11-12 17:33:01 +02:00
Shlomi Fish
38f645964a [travis] osx debug #2 2018-11-12 17:01:44 +02:00
Shlomi Fish
c44e34802a [travis] osx debug 2018-11-12 16:22:43 +02:00
Shlomi Fish
1347976e9b [travis] osx debug 2018-11-12 15:59:57 +02:00
Shlomi Fish
f5941f8b63 [travis] osx - try preparing a package 2018-11-12 14:19:03 +02:00
Shlomi Fish
8980adbd35 skip gtk tests on macos x.
travis-ci/etc.
2018-11-12 13:34:48 +02:00
Shlomi Fish
501d7f83ca [travis] osx fix - #3 2018-11-11 23:28:46 +02:00
Shlomi Fish
2c41b7953b [travis] osx fix - #2 2018-11-11 23:06:10 +02:00
Shlomi Fish
908de63d9f Fix flake8 tests.
For the new flake8.
2018-11-11 22:43:36 +02:00
Shlomi Fish
39bd85f125 [travis] osx fix - #1 2018-11-11 21:43:01 +02:00
Shlomi Fish
122fd402c3 [travis] borrow some osx code from envie
See https://github.com/randomir/envie/ - thanks! Found here:

https://stackoverflow.com/questions/45257534/how-can-i-build-a-python-project-with-osx-environment-on-travis
.
2018-11-11 21:23:15 +02:00
Shlomi Fish
2b90a5c7c6 [travis] first attempt at a macOS build.
See
https://sourceforge.net/p/pysolfc/discussion/503708/thread/4179422b22/?limit=25
.
2018-11-11 21:03:39 +02:00
Shlomi Fish
3635ad6188 avoid shell expansion.
See https://shlomif-tech.livejournal.com/14671.html .
2018-10-22 10:55:05 +03:00
9 changed files with 61 additions and 59 deletions

View file

@ -1,18 +1,42 @@
os: linux
dist: trusty dist: trusty
os:
- linux
- osx
before_install: before_install:
- sudo apt-get update -qq - if test "$TRAVIS_OS_NAME" = "linux" ; then sudo apt-get update -qq ; sudo apt-get install -y ack-grep cpanminus libperl-dev make perl python-glade2 python-gnome2 python-gnome2-dev python-gtk2 python-setuptools python-tk python3 python3-pip python3-setuptools python3-tk ; sudo dpkg-divert --local --divert /usr/bin/ack --rename --add /usr/bin/ack-grep ; fi
- sudo apt-get install -y ack-grep cpanminus libperl-dev make perl python-glade2 python-gnome2 python-gnome2-dev python-gtk2 python-setuptools python-tk python3 python3-pip python3-setuptools python3-tk - if test "$TRAVIS_OS_NAME" = "osx" ; then brew update; fi
- sudo dpkg-divert --local --divert /usr/bin/ack --rename --add /usr/bin/ack-grep - if test "$TRAVIS_OS_NAME" = "osx" ; then brew list python &>/dev/null || brew install python; fi
- if test "$TRAVIS_OS_NAME" = "osx" ; then brew list python3 &>/dev/null || brew install python3; fi
- if test "$TRAVIS_OS_NAME" = "osx" ; then brew install pyenv-virtualenv; fi
- if test "$TRAVIS_OS_NAME" = "osx" ; then brew bundle ; brew link gettext --force ; export PATH="$PATH:/usr/local/bin" ; export DYLD_LIBRARY_PATH="/usr/local/opt/curl/lib:/usr/local/opt/openssl/lib:${DYLD_LIBRARY_PATH}" ; export PATH="/usr/local/opt/openssl/bin:$PATH" ; export LDFLAGS="$LDFLAGS -L/usr/local/opt/openssl/lib" ; export CPPFLAGS="$CPPFLAGS -I/usr/local/opt/openssl/include" ; export CPPFLAGS="$CPPFLAGS -I$(brew --prefix openssl)/include" PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig:$PKG_CONFIG_PATH" LDFLAGS="$LDFLAGS -L$(brew --prefix openssl)/lib" ;fi
install: install:
- sudo cpanm Code::TidyAll::Plugin::Flake8 Perl::Tidy Test::Code::TidyAll Test::Differences Test::TrailingSpace - sudo cpanm Code::TidyAll::Plugin::Flake8 Perl::Tidy Test::Code::TidyAll Test::Differences Test::TrailingSpace
- export PY_MODS='pycotap random2 six' - export PY_MODS='pycotap random2 six'
- "`which python3` -m pip install --upgrade flake8 $PY_MODS" - "`which python3` -m pip install --upgrade flake8 $PY_MODS"
- "sudo /usr/bin/python3 -m pip install --upgrade $PY_MODS" - "sudo /usr/bin/python3 -m pip install --upgrade $PY_MODS || true"
- "sudo `which python2` -m pip install --upgrade $PY_MODS" - "sudo `which python2` -m pip install --upgrade $PY_MODS"
- which python - which python
- which python2 - which python2
language: python language: python
python: python:
- "3.6" - "3.6"
script: "sh -x scripts/travis-ci-build" matrix:
exclude:
- os: osx
python: "3.6"
include:
- os: osx
language: generic
env: TOXENV=py35
script:
- "sh -x scripts/travis-ci-build"
- if test "$TRAVIS_OS_NAME" = "osx" ; then PYTHONPATH="`pwd`" python3 setup_osx.py py2app ; fi
- if test "$TRAVIS_OS_NAME" = "osx" ; then find . -iname '*.app' ; fi
deploy:
provider: releases
api_key:
secure: SrKnXigL/oUHNbqpbGx0DB1o+LAEkfPA2QTBllXxg4V+1vGAHBT9FRecp8Do+no/zSPRttH+sPDEPBXMMAV0BWVKKw5Mxas/S5ulVkNdfxpTq1bKjI3EjZbVsS1zZlHe0P77TDFDAj8zyeiYecBM08suhd9OvScieiPlpFPE1UYp9vvNKaBgc66IRNnIDRBdktW4YLsgvkrpXnxGPy8gGwylsTeOzNs5/r5dzHswGdksJl46kqCIbV+s4/Xcx+BEnfibWzEFZmLQoGKhoukbSis3YXGIlERcgiVU6v7S2D4wbwUXSAKOj/Io7z/88Co2P3Qbm538kf/pjeR9+DaM1HsHQQcL0detCjjLog+ekKr2fM00QI1yRmqOiZtuXxTMpneYX73EBmPt4la4rjKmnlhS+NTxrynHcPZD8QopCPvoZ3sUD6dQCrbi8kcGxe13srfdJ3KjuWZXdedLIOgNELbj5o6GNivsanWna59yoJzChC5/H5Jjllncvzbp56TZfEkM1NJkE84jjSS8Sn2KLXjD0woHIsuUSkRNExrCt/6QmIub/QxZPUhwQ2J0xCv1IJPdd0XvO3gCqasG3UA2Q0OlP172x92ocOV/wm1/4wfoG6v/mn+bX5ZwvrsMmm+r3FKKlM8L3T33yFjMzgG/YMoRN8w7pXUIkdtZK8EEDVg=
file: dist/pysol.app
on:
repo: shlomif/PySolFC
tags: true

5
Brewfile Normal file
View file

@ -0,0 +1,5 @@
brew "cpanminus"
brew "gettext"
brew "gnutls"
brew "openssl"
brew "tcl-tk"

View file

@ -1,14 +1,15 @@
#! /bin/sh -Cefu #! /bin/sh -Cefu
: ${PKGTREE:=/usr/local/packages/PySolFC} : ${PKGTREE:=/usr/local/packages/PySolFC}
PIP=$(printf '%s/env/bin/pip install --no-binary :all: ' $PKGTREE) PIP="$(printf '%s/env/bin/pip install --no-binary :all: ' "$PKGTREE")"
PYPROG=$(printf '%s/env/bin/python' $PKGTREE) PYPROG="$(printf '%s/env/bin/python' "$PKGTREE")"
VERSION=$(env PYTHONPATH=`pwd` $PYPROG -c 'from pysollib.settings import VERSION ; print(VERSION)' ) VERSION="$(env PYTHONPATH=`pwd` "$PYPROG" -c 'from pysollib.settings import VERSION ; print(VERSION)')"
XZBALL=$(printf 'dist/PySolFC-%s.tar.xz' $VERSION) XZBALL="$(printf 'dist/PySolFC-%s.tar.xz' "$VERSION")"
REQS='six random2 pillow' reqs='six random2 pillow'
make dist make dist
for req in $REQS ; do for req in $reqs
$PIP $req do
"$PIP" "$req"
done done
$PIP --upgrade $XZBALL "$PIP" --upgrade "$XZBALL"

View file

@ -3098,7 +3098,7 @@ Congratulations, you did it !
try: try:
game = self._loadGame(filename, self.app) game = self._loadGame(filename, self.app)
game.gstats.holded = 0 game.gstats.holded = 0
except AssertionError as ex: except AssertionError:
self.updateMenus() self.updateMenus()
self.setCursor(cursor=self.app.top_cursor) self.setCursor(cursor=self.app.top_cursor)
MfxMessageDialog( MfxMessageDialog(

View file

@ -1023,7 +1023,7 @@ def r(id, short_name, name=None, ncards=144, layout=None):
assert layout assert layout
if not name: if not name:
name = "Mahjongg " + short_name name = "Mahjongg " + short_name
classname = re.sub('\W', '', name) classname = re.sub('\\W', '', name)
# create class # create class
gameclass = type(classname, (AbstractMahjonggGame,), {}) gameclass = type(classname, (AbstractMahjonggGame,), {})
gameclass.L = layout gameclass.L = layout

View file

@ -800,7 +800,7 @@ class Base_Solver_Hint:
return [hint] return [hint]
def colonPrefixMatch(self, prefix, s): def colonPrefixMatch(self, prefix, s):
m = re.match(prefix + ': (\d+)', s) m = re.match(prefix + ': ([0-9]+)', s)
if m: if m:
self._v = int(m.group(1)) self._v = int(m.group(1))
return True return True
@ -1084,12 +1084,12 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
print(s) print(s)
if self._determineIfSolverState(s): if self._determineIfSolverState(s):
next next
m = re.match('Total number of states checked is (\d+)\.', s) m = re.match('Total number of states checked is ([0-9]+)\\.', s)
if m: if m:
iter_ = int(m.group(1)) iter_ = int(m.group(1))
self.dialog.setText(iter=iter_) self.dialog.setText(iter=iter_)
m = re.match('This scan generated (\d+) states\.', s) m = re.match('This scan generated ([0-9]+) states\\.', s)
if m: if m:
states = int(m.group(1)) states = int(m.group(1))
@ -1102,7 +1102,7 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
move_s = m.group(1) move_s = m.group(1)
m = re.match( m = re.match(
'the sequence on top of Stack (\d+) to the foundations', 'the sequence on top of Stack ([0-9]+) to the foundations',
move_s) move_s)
if m: if m:
@ -1113,11 +1113,11 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
dest = None dest = None
else: else:
m = re.match( m = re.match(
'(?P<ncards>a card|(?P<count>\d+) cards) ' '(?P<ncards>a card|(?P<count>[0-9]+) cards) '
'from (?P<source_type>stack|freecell) ' 'from (?P<source_type>stack|freecell) '
'(?P<source_idx>\d+) to ' '(?P<source_idx>[0-9]+) to '
'(?P<dest>the foundations|(?P<dest_type>freecell|stack) ' '(?P<dest>the foundations|(?P<dest_type>freecell|stack) '
'(?P<dest_idx>\d+))\s*', move_s) '(?P<dest_idx>[0-9]+))\\s*', move_s)
if not m: if not m:
continue continue
@ -1230,13 +1230,13 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
s = six.text_type(sbytes, encoding='utf-8') s = six.text_type(sbytes, encoding='utf-8')
if DEBUG: if DEBUG:
print(s) print(s)
m = re.match('Total number of states checked is (\d+)\.', s) m = re.match('Total number of states checked is ([0-9]+)\\.', s)
if m: if m:
iter_ = int(m.group(1)) iter_ = int(m.group(1))
self.dialog.setText(iter=iter_) self.dialog.setText(iter=iter_)
continue continue
m = re.match('This scan generated (\d+) states\.', s) m = re.match('This scan generated ([0-9]+) states\\.', s)
if m: if m:
states = int(m.group(1)) states = int(m.group(1))

View file

@ -170,7 +170,6 @@ class SingleGame_StatsDialog(MfxDialog):
x, ty[1]-dy, text="%d%%" % (100-pw), anchor="ne", font=tfont, x, ty[1]-dy, text="%d%%" % (100-pw), anchor="ne", font=tfont,
fill=fg) fill=fg)
# def _createChart3DBar(self, canvas, perc, x, y, p, col): # def _createChart3DBar(self, canvas, perc, x, y, p, col):
# if perc < 0.005: # if perc < 0.005:
# return # return
@ -204,11 +203,6 @@ class SingleGame_StatsDialog(MfxDialog):
# draw_line(5, 6) # draw_line(5, 6)
# draw_line(6, 7) # draw_line(6, 7)
# draw_line(7, 4) # draw_line(7, 4)
#
# charts
#
# def createSimpleChart(self, app, won, lost, text): # def createSimpleChart(self, app, won, lost, text):
# #c, tfont, fg = self._createChartInit(frame, 300, 100, text) # #c, tfont, fg = self._createChartInit(frame, 300, 100, text)
# self._createChartInit(300, 100, text) # self._createChartInit(300, 100, text)
@ -217,7 +211,6 @@ class SingleGame_StatsDialog(MfxDialog):
# tx = (90, 180, 210) # tx = (90, 180, 210)
# ty = (21, 41, 75) # ty = (21, 41, 75)
# self._createChartTexts(tx, ty, won, lost) # self._createChartTexts(tx, ty, won, lost)
# def create3DBarChart(self, app, won, lost, text): # def create3DBarChart(self, app, won, lost, text):
# image = app.gimages.stats[0] # image = app.gimages.stats[0]
# iw, ih = image.width(), image.height() # iw, ih = image.width(), image.height()

View file

@ -2,6 +2,9 @@
# Written by Shlomi Fish, under the MIT Expat License. # Written by Shlomi Fish, under the MIT Expat License.
import os.path import os.path
from sys import platform
IS_MAC = (platform == "darwin")
for module_name in \ for module_name in \
[ [
'pysollib.acard', 'pysollib.acard',
@ -200,8 +203,9 @@ for module_name in \
'pysollib.wizardpresets', 'pysollib.wizardpresets',
'pysollib.wizardutil', 'pysollib.wizardutil',
]: ]:
is_gtk = ("gtk" in module_name)
for ver in [2, 3]: for ver in [2, 3]:
if ver == 2 or "gtk" not in module_name: if ((not is_gtk) or (ver == 2 and (not IS_MAC))):
def fmt(s): def fmt(s):
return s % {'module_name': module_name, 'ver': ver} return s % {'module_name': module_name, 'ver': ver}
open(os.path.join(".", "tests", "individually-importing", fmt("import_v%(ver)d_%(module_name)s.py")), 'w').write(fmt('''#!/usr/bin/env python%(ver)d open(os.path.join(".", "tests", "individually-importing", fmt("import_v%(ver)d_%(module_name)s.py")), 'w').write(fmt('''#!/usr/bin/env python%(ver)d

View file

@ -6,7 +6,6 @@ Usage:
import os import os
import sys import sys
import shutil import shutil
from six.moves import tkinter
from subprocess import call from subprocess import call
from setuptools import setup from setuptools import setup
from pysollib.settings import PACKAGE, VERSION from pysollib.settings import PACKAGE, VERSION
@ -26,21 +25,6 @@ if not os.path.exists('data/html'):
# build the HTML list of games # build the HTML list of games
call("./scripts/all_games.py > docs/all_games.html", shell=True) call("./scripts/all_games.py > docs/all_games.html", shell=True)
# Use Tile widgets, if they are installed.
# http://tktable.sourceforge.net/tile/
root = tkinter.Tk()
root.withdraw()
try:
root.tk.call('package', 'require', 'tile', '0.7.8')
except Exception:
TILE = None
else:
TILE = "tile0.7.8"
TCL_EXTENSION_PATH = "/Library/Tcl"
finally:
root.destroy()
del root, tkinter
# Use Freecell Solver, if it is installed. # Use Freecell Solver, if it is installed.
# http://fc-solve.berlios.de/ # http://fc-solve.berlios.de/
SOLVER_LIB_PATH = "/usr/local/lib/libfreecell-solver.0.dylib" SOLVER_LIB_PATH = "/usr/local/lib/libfreecell-solver.0.dylib"
@ -66,7 +50,7 @@ PLIST = dict(
APP = ['pysol.py'] APP = ['pysol.py']
ICON_FILE = 'data/PySol.icns' ICON_FILE = 'data/PySol.icns'
DATA_FILES = ['docs', 'data', 'scripts', 'COPYING', 'README.md'] + SOLVER DATA_FILES = ['docs', 'data', 'scripts', 'COPYING', 'README.md'] + SOLVER
RESOURCES = [os.path.join(TCL_EXTENSION_PATH, TILE)] if TILE else [] RESOURCES = []
FRAMEWORKS = [SOLVER_LIB_PATH] if SOLVER_LIB_PATH else [] FRAMEWORKS = [SOLVER_LIB_PATH] if SOLVER_LIB_PATH else []
OPTIONS = dict(argv_emulation=True, OPTIONS = dict(argv_emulation=True,
plist=PLIST, plist=PLIST,
@ -85,15 +69,6 @@ setup(
# #
top = os.getcwd() top = os.getcwd()
# FIXME: a hack to get Tcl extensions working
# from inside the app bundle
if TILE and "py2app" in sys.argv:
os.chdir('dist/%s.app/Contents/Frameworks' % PACKAGE)
try:
os.symlink('../Resources/%s' % TILE, TILE)
except OSError:
pass
os.chdir(top)
# Modify the fc-solve binary with install_name_tool to use the dependent # Modify the fc-solve binary with install_name_tool to use the dependent
# libfreecell-solver dynamic library in the app bundle. # libfreecell-solver dynamic library in the app bundle.
if SOLVER and "py2app" in sys.argv: if SOLVER and "py2app" in sys.argv: