summaryrefslogtreecommitdiffstats
path: root/gis/geopy
diff options
context:
space:
mode:
Diffstat (limited to 'gis/geopy')
-rw-r--r--gis/geopy/README15
-rw-r--r--gis/geopy/geopy.SlackBuild18
-rw-r--r--gis/geopy/geopy.info2
3 files changed, 22 insertions, 13 deletions
diff --git a/gis/geopy/README b/gis/geopy/README
index 84ec2d8274..3464f8c4a4 100644
--- a/gis/geopy/README
+++ b/gis/geopy/README
@@ -1,10 +1,9 @@
-geopy makes it easy for developers to locate the coordinates of addresses,
-cities, countries, and landmarks across the globe using third-party
-geocoders and other data sources.
+geopy makes it easy for developers to locate the coordinates of
+addresses, cities, countries, and landmarks across the globe using
+third-party geocoders and other data sources.
-geopy currently includes support for several geocoders, including OpenStreetMap
-Nominatim, ESRI ArcGIS, Google Geocoding API and more.
+geopy currently includes support for several geocoders, including
+OpenStreetMap Nominatim, ESRI ArcGIS, Google Geocoding API and more.
-python/pytz, python/python-requests and python/python3-aiohttp are optional
-dependencies that will be used if available (they must all be built with
-Python 3 support).
+python/pytz and python/python3-aiohttp are optional dependencies that
+will be used if available.
diff --git a/gis/geopy/geopy.SlackBuild b/gis/geopy/geopy.SlackBuild
index e5fbdc86c6..84a41be348 100644
--- a/gis/geopy/geopy.SlackBuild
+++ b/gis/geopy/geopy.SlackBuild
@@ -1,10 +1,10 @@
-#!/bin/sh
+#!/bin/bash
# SlackBuild script for geopy
# Written by Dominik Drobek <dominik.drobek (at) o2.pl>
# Formerly maintained by Francisco Sokol <chico.sokol@gmail.com>
-# Copyright 2013-2020 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
+# Copyright 2013-2021 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -24,10 +24,13 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=geopy
VERSION=${VERSION:-2.1.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -37,7 +40,14 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
+# the name of the created package would be, and then exit. This information
+# could be useful to other scripts.
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -83,4 +93,4 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/gis/geopy/geopy.info b/gis/geopy/geopy.info
index 90061ec356..65f35687c3 100644
--- a/gis/geopy/geopy.info
+++ b/gis/geopy/geopy.info
@@ -5,6 +5,6 @@ DOWNLOAD="https://github.com/geopy/geopy/archive/2.1.0/geopy-2.1.0.tar.gz"
MD5SUM="0573cc833b3566fd4c06f10f1646a252"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES="python3"
+REQUIRES=""
MAINTAINER="Benjamin Trigona-Harany"
EMAIL="slackbuilds@jaxartes.net"