summaryrefslogtreecommitdiffstats
path: root/development/google-appengine-pysdk
diff options
context:
space:
mode:
Diffstat (limited to 'development/google-appengine-pysdk')
-rw-r--r--development/google-appengine-pysdk/README8
-rw-r--r--development/google-appengine-pysdk/doinst.sh15
-rw-r--r--development/google-appengine-pysdk/gae.csh3
-rw-r--r--development/google-appengine-pysdk/gae.sh3
-rw-r--r--development/google-appengine-pysdk/google-appengine-pysdk.SlackBuild72
-rw-r--r--development/google-appengine-pysdk/google-appengine-pysdk.info10
-rw-r--r--development/google-appengine-pysdk/slack-desc19
7 files changed, 0 insertions, 130 deletions
diff --git a/development/google-appengine-pysdk/README b/development/google-appengine-pysdk/README
deleted file mode 100644
index 2857c0dfbd..0000000000
--- a/development/google-appengine-pysdk/README
+++ /dev/null
@@ -1,8 +0,0 @@
-google-appengine-pysdk (Google Appengine Python SDK)
-
-The Python SDK includes a web server application that simulates the App Engine
-environment, including a local version of the datastore, Google Accounts, and
-the ability to fetch URLs and send email directly from your computer using the
-App Engine APIs. The Python SDK runs on any computer with Python 2.5 or 2.7, and
-versions are available for Windows, Mac OS X and Linux. (The Python SDK is not
-compatible with Python 3).
diff --git a/development/google-appengine-pysdk/doinst.sh b/development/google-appengine-pysdk/doinst.sh
deleted file mode 100644
index 9b88bcf5bc..0000000000
--- a/development/google-appengine-pysdk/doinst.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-config etc/profile.d/gae.csh.new
-config etc/profile.d/gae.sh.new
diff --git a/development/google-appengine-pysdk/gae.csh b/development/google-appengine-pysdk/gae.csh
deleted file mode 100644
index b020ae36cb..0000000000
--- a/development/google-appengine-pysdk/gae.csh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/csh
-setenv GAEBIN /opt/google/appengine-pysdk
-setenv PATH ${PATH}:${GAEROOT}
diff --git a/development/google-appengine-pysdk/gae.sh b/development/google-appengine-pysdk/gae.sh
deleted file mode 100644
index 09ec2601cc..0000000000
--- a/development/google-appengine-pysdk/gae.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-export GAEROOT=/opt/google/appengine-pysdk
-export PATH="${PATH}:${GAEROOT}"
diff --git a/development/google-appengine-pysdk/google-appengine-pysdk.SlackBuild b/development/google-appengine-pysdk/google-appengine-pysdk.SlackBuild
deleted file mode 100644
index 7a33121b07..0000000000
--- a/development/google-appengine-pysdk/google-appengine-pysdk.SlackBuild
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/bin/sh
-# Slackware build script for google-appengine-gosdk
-# Ryan P.C. McQuen | Everett, WA | ryanpcmcquen@member.fsf.org
-#
-# Copyright (c) 2011 Eric Schultz
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy of
-# this software and associated documentation files (the "Software"), to deal in
-# the Software without restriction, including without limitation the rights to
-# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-# the Software, and to permit persons to whom the Software is furnished to do so,
-# subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in all
-# copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-
-# Written by Eric Schultz eric at schultzter dot ca
-
-PRGNAM=google-appengine-pysdk
-VERSION=${VERSION:-1.9.27}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-ARCH=noarch
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG/opt/google $OUTPUT
-cd $PKG/opt/google
-unzip $CWD/google_appengine_$VERSION.zip
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-# Rename to remove redundancy
-mv google_appengine appengine-pysdk
-
-# Put the profile scripts for setting PATH and env variables
-mkdir -p $PKG/etc/profile.d
-install -m0755 -oroot $CWD/gae.csh $PKG/etc/profile.d/gae.csh.new
-install -m0755 -oroot $CWD/gae.sh $PKG/etc/profile.d/gae.sh.new
-
-cd appengine-pysdk
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- BUGS LICENSE README RELEASE_NOTES VERSION \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cp $CWD/doinst.sh $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/development/google-appengine-pysdk/google-appengine-pysdk.info b/development/google-appengine-pysdk/google-appengine-pysdk.info
deleted file mode 100644
index 9db1d84702..0000000000
--- a/development/google-appengine-pysdk/google-appengine-pysdk.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="google-appengine-pysdk"
-VERSION="1.9.27"
-HOMEPAGE="https://cloud.google.com/appengine/"
-DOWNLOAD="https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.27.zip"
-MD5SUM="9f32e5485d5254d5dc36c0f3bf16bd95"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="orphaned - no maintainer"
-EMAIL="nobody@nowhere"
diff --git a/development/google-appengine-pysdk/slack-desc b/development/google-appengine-pysdk/slack-desc
deleted file mode 100644
index f122ae2e36..0000000000
--- a/development/google-appengine-pysdk/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description.
-# Line up the first '|' above the ':' following the base package name, and
-# the '|' on the right side marks the last column you can put a character in.
-# You must make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-google-appengine-pysdk: google-appengine-pysdk (Google Appengine Python SDK)
-google-appengine-pysdk:
-google-appengine-pysdk: The Python SDK includes a web server application that simulates the
-google-appengine-pysdk: App Engine environment, including a local version of the datastore,
-google-appengine-pysdk: Google Accounts, and the ability to fetch URLs and send email
-google-appengine-pysdk: directly from your computer using the App Engine APIs. The Python
-google-appengine-pysdk: SDK runs on any computer with Python 2.5 or 2.7, and versions are
-google-appengine-pysdk: available for Windows, Mac OS X and Linux. (The Python SDK is not
-google-appengine-pysdk: compatible with Python 3).
-google-appengine-pysdk:
-google-appengine-pysdk: https://cloud.google.com/appengine/