mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
development/likepython: Added (modern dialect support for Python)
This commit is contained in:
parent
1cb5341eaf
commit
40da3c7a01
5 changed files with 120 additions and 0 deletions
24
development/likepython/LICENSE
Normal file
24
development/likepython/LICENSE
Normal file
|
@ -0,0 +1,24 @@
|
|||
MIT License
|
||||
Copyright (c) 2010 Jonathan Howard
|
||||
|
||||
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.
|
9
development/likepython/README
Normal file
9
development/likepython/README
Normal file
|
@ -0,0 +1,9 @@
|
|||
Like, Python was created by Jonathan Howard in February
|
||||
2010 while drinking and reviewing code for an upcoming
|
||||
project with a coworker. At a certain point, higher-level
|
||||
explanations devolved into just flat-out reading Python
|
||||
code like they were actually speaking the language normally
|
||||
- complete with like's, um's, whatever's, etc - making it
|
||||
completely impractical^Wawesome for work. It was then that
|
||||
Jonathan realized he should perhaps stop for the night.
|
||||
And START creating Like, Python.
|
58
development/likepython/likepython.SlackBuild
Normal file
58
development/likepython/likepython.SlackBuild
Normal file
|
@ -0,0 +1,58 @@
|
|||
#!/bin/sh
|
||||
# Slackbuild for likepython
|
||||
# Written by JK Wood <joshuakwood@gmail.com>
|
||||
#
|
||||
# SlackBuild is released under the Dog-on-Fire License:
|
||||
# If use of the SlackBuild causes your dog to catch on fire,
|
||||
# you agree to send me five dollars. Or a picture
|
||||
# of the dog on fire.
|
||||
# Otherwise, you're on your own. I've tested it
|
||||
# on my own computer, and it hasn't broken anything.
|
||||
# So if it does it on your computer, that falls in
|
||||
# the realm of "Not my problem."
|
||||
#
|
||||
# Of course, if you'll send a bug report to the above
|
||||
# email address, I may be able to see what you did
|
||||
# wrong and prevent it from happening in the future.
|
||||
# In which case, I may just send YOU five dollars.
|
||||
|
||||
PRGNAM=likepython
|
||||
VERSION=0.1
|
||||
ARCH=noarch
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
mkdir $PRGNAM-$VERSION
|
||||
tar -xzvf $CWD/$PRGNAM\_$VERSION.tgz -C $PRGNAM-$VERSION|| exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
chown -R root:root .
|
||||
find . \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
cp -a likepython $PKG/usr/bin
|
||||
chmod 755 $PKG/usr/bin/likepython
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README hello_world.lp \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
cat $CWD/LICENSE > $PKG/usr/doc/$PRGNAM-$VERSION/LICENSE
|
||||
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||
|
||||
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}
|
10
development/likepython/likepython.info
Normal file
10
development/likepython/likepython.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="likepython"
|
||||
VERSION="0.1"
|
||||
HOMEPAGE="http://www.staringispolite.com/likepython/"
|
||||
DOWNLOAD="http://www.staringispolite.com/likepython/likepython_0.1.tgz"
|
||||
MD5SUM="82548013952251724b69e0f346ef41f3"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="JK Wood"
|
||||
EMAIL="joshuakwood@gmail.com"
|
||||
APPROVED="dsomero"
|
19
development/likepython/slack-desc
Normal file
19
development/likepython/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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 ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
likepython: likepython (modern dialect support for Python)
|
||||
likepython:
|
||||
likepython: Like, Python allows the programmer to write Python code in the same
|
||||
likepython: way they would read it, including verbal stops and cues.
|
||||
likepython: Allows the use of such dialects as Valley Girl, Frat Guy, Internets,
|
||||
likepython: Snoop, and Local when coding.
|
||||
likepython:
|
||||
likepython: Homepage: http://www.staringispolite.com/likepython/
|
||||
likepython:
|
||||
likepython:
|
||||
likepython:
|
Loading…
Reference in a new issue