diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-12 13:10:28 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-03-12 13:10:28 -0500 |
commit | 93a1ce8dd824a737b1714e93349bf6d22e568148 (patch) | |
tree | 53361a1ddcabc5b764a929a844a78a8cc6d58317 /gis | |
parent | 41070674522cb5801c10f0c0365e8d9584edcf88 (diff) |
gis/python-mapnik: Fix VERSION in script.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'gis')
-rw-r--r-- | gis/python-mapnik/python-mapnik.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gis/python-mapnik/python-mapnik.SlackBuild b/gis/python-mapnik/python-mapnik.SlackBuild index 0da411b95ebb..2110a030cf01 100644 --- a/gis/python-mapnik/python-mapnik.SlackBuild +++ b/gis/python-mapnik/python-mapnik.SlackBuild @@ -21,11 +21,14 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220312 bkw: Modified by SlackBuilds.org: VERSION must be constant, +# and match VERSION in the .info file. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=python-mapnik GITREV=${GITREV:-7da019cf9eb12af8f8aa88b7d75789dfcd1e901b} -VERSION=${VERSION:-git$(echo "$GITREV" | sed 's/^\(.\{7\}\).*$/\1/')} +VERSION=${VERSION:-git7da019c} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -38,9 +41,6 @@ if [ -z "$ARCH" ]; then esac fi -# 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 |