From 822fed53a10e692911b210892d87f817400b26b1 Mon Sep 17 00:00:00 2001 From: B. Watson Date: Fri, 17 Jan 2020 23:09:25 -0500 Subject: system/flashcards: Fix app failing to start. Signed-off-by: B. Watson --- system/flashcards/fixes.diff | 24 ++++++++++++++++++++++++ system/flashcards/flashcards.SlackBuild | 6 ++++++ 2 files changed, 30 insertions(+) create mode 100644 system/flashcards/fixes.diff 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 \ -- cgit v1.2.3