diff options
author | B. Watson <yalhcru@gmail.com> | 2020-01-17 23:09:25 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-01-18 12:25:23 +0700 |
commit | 822fed53a10e692911b210892d87f817400b26b1 (patch) | |
tree | 5f62a72b25db73d5b34200564888cbc26da69aa0 /system | |
parent | a31fe40dd0217a1172b8d8f15c3ad956b2f18547 (diff) | |
download | slackbuilds-822fed53a10e692911b210892d87f817400b26b1.tar.gz |
system/flashcards: Fix app failing to start.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'system')
-rw-r--r-- | system/flashcards/fixes.diff | 24 | ||||
-rw-r--r-- | system/flashcards/flashcards.SlackBuild | 6 |
2 files changed, 30 insertions, 0 deletions
diff --git a/system/flashcards/fixes.diff b/system/flashcards/fixes.diff new file mode 100644 index 0000000000..8096bd21b4 --- /dev/null +++ b/system/flashcards/fixes.diff @@ -0,0 +1,24 @@ +diff -Naur flashcards-2.4/flashcards/configure.py flashcards-2.4.patched/flashcards/configure.py +--- flashcards-2.4/flashcards/configure.py 2012-02-06 03:32:51.000000000 -0500 ++++ flashcards-2.4.patched/flashcards/configure.py 2020-01-17 23:03:15.495097878 -0500 +@@ -29,6 +29,8 @@ + documents = os.path.join(home_path, 'Documents') + ROOT = os.path.join(documents, 'flashcards') + ++if not os.path.isdir(documents): ++ os.mkdir(documents) + if not os.path.isdir(ROOT): + os.mkdir(ROOT) + +diff -Naur flashcards-2.4/setup.py flashcards-2.4.patched/setup.py +--- flashcards-2.4/setup.py 2012-02-06 03:45:22.000000000 -0500 ++++ flashcards-2.4.patched/setup.py 2020-01-17 23:03:32.311096350 -0500 +@@ -14,7 +14,7 @@ + author_email = "luisnaranjo733@hotmail.com", + description = ("A simple command line flashcards utility, similar to physical flashcards."), + license = "GNU GPL", +- install_requires= ['argparse','configobj',], ++ install_requires= ['configobj',], + entry_points = { + 'console_scripts': ['flashcards = flashcards.flashcards:main'] + }, diff --git a/system/flashcards/flashcards.SlackBuild b/system/flashcards/flashcards.SlackBuild index 73fd70a471..16b56a16bb 100644 --- a/system/flashcards/flashcards.SlackBuild +++ b/system/flashcards/flashcards.SlackBuild @@ -69,6 +69,12 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# 20200117 bkw: this has apparently been broken for a LONG time. It +# complains that there's no "distribution" called argparse... but +# argparse ships with Slackware. Also, application fails to start if +# $HOME/Documents doesn't already exist. Patch fixes both issues. +patch -p1 < $CWD/fixes.diff + python setup.py install --root=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ |