misc/gourmet: Fix REQUIRES for python2.

Signed-off-by: Dave Woodfall <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Dave Woodfall 2021-05-06 18:15:03 +01:00 committed by Willy Sudiarto Raharjo
parent 7eabd7dcee
commit d33a0b0cde
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with 11 additions and 10 deletions

View File

@ -1,8 +1,9 @@
Gourmet Recipe Manager is a recipe-organizer available for Linux and Windows
that allows you to collect, search, organize, and browse your recipes.
Gourmet Recipe Manager is a recipe-organizer available for Linux and
Windows that allows you to collect, search, organize, and browse your
recipes.
Gourmet can also generate shopping lists and calculate nutritional information.
It imports Mealmaster, MasterCook and KRecipe files and exports PDFs,
webpages and other formats.
Gourmet can also generate shopping lists and calculate nutritional
information. It imports Mealmaster, MasterCook and KRecipe files and
exports PDFs, webpages and other formats.
Gourmet is free software.

View File

@ -29,7 +29,7 @@ TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -72,7 +72,7 @@ find -L . \
# Patch to replace removed tostring() with tobytes()
patch -p1 < $CWD/tostring-to-tobytes.patch
python setup.py install --root=$PKG
python2 setup.py install --root=$PKG
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true

View File

@ -5,6 +5,6 @@ DOWNLOAD="https://github.com/thinkle/gourmet/archive/0.17.4.tar.gz"
MD5SUM="937334364abc3093709a604c1d473e9f"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="SQLAlchemy lxml python-distutils-extra reportlab pygtkspell gst0-python python-elib.intl pypoppler"
REQUIRES="SQLAlchemy lxml python-distutils-extra reportlab pygtkspell gst0-python python2-elib.intl pypoppler"
MAINTAINER="Erwin van Zanten"
EMAIL="e.van.zanten.evz@gmail.com"