summaryrefslogtreecommitdiffstats
path: root/python/pywebkitgtk
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2022-01-22 17:58:17 +0100
committer Willy Sudiarto Raharjo2022-01-22 17:58:17 +0100
commit71e193db1c8567344818bd2da620dc76b347e701 (patch)
tree4fb94c94854d91846f6f030291675ed2101b2c1d /python/pywebkitgtk
parent016459b8643b142af131096ae0442b420141a714 (diff)
downloadslackbuilds-71e193db1c8567344818bd2da620dc76b347e701.tar.gz
python/pywebkitgtk: Removed.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/pywebkitgtk')
-rw-r--r--python/pywebkitgtk/README2
-rw-r--r--python/pywebkitgtk/pywebkitgtk.SlackBuild89
-rw-r--r--python/pywebkitgtk/pywebkitgtk.info10
-rw-r--r--python/pywebkitgtk/slack-desc19
4 files changed, 0 insertions, 120 deletions
diff --git a/python/pywebkitgtk/README b/python/pywebkitgtk/README
deleted file mode 100644
index 8e795afbfe..0000000000
--- a/python/pywebkitgtk/README
+++ /dev/null
@@ -1,2 +0,0 @@
-PyWebKitGtk allows Python (Gtk) developers to create software
-on top of the WebKitGtk rendering engine.
diff --git a/python/pywebkitgtk/pywebkitgtk.SlackBuild b/python/pywebkitgtk/pywebkitgtk.SlackBuild
deleted file mode 100644
index dd900d0f3e..0000000000
--- a/python/pywebkitgtk/pywebkitgtk.SlackBuild
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for pywebkitgtk
-
-# Written by Larry Hajali <larryhaja[at]gmail[dot]com>
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=pywebkitgtk
-VERSION=${VERSION:-1.1.8}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- 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
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib$LIBDIRSUFFIX \
- --enable-static=no \
- --disable-dependency-tracking \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS ChangeLog COPYING MAINTAINERS NEWS README \
- $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/python/pywebkitgtk/pywebkitgtk.info b/python/pywebkitgtk/pywebkitgtk.info
deleted file mode 100644
index 6d62777c42..0000000000
--- a/python/pywebkitgtk/pywebkitgtk.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="pywebkitgtk"
-VERSION="1.1.8"
-HOMEPAGE="https://wiki.python.org/moin/PyWebkitGtk"
-DOWNLOAD="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/pywebkitgtk/pywebkitgtk-1.1.8.tar.bz2"
-MD5SUM="19f3c184eebcfde1c9d1ce56bbe75cf2"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="webkitgtk"
-MAINTAINER="Larry Hajali"
-EMAIL="larryhaja[at]gmail[dot]com"
diff --git a/python/pywebkitgtk/slack-desc b/python/pywebkitgtk/slack-desc
deleted file mode 100644
index 3fac6b3441..0000000000
--- a/python/pywebkitgtk/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------------------------------------------------------|
-pywebkitgtk: pywebkitgtk (python bindings for WebKitGtk)
-pywebkitgtk:
-pywebkitgtk: PyWebKitGtk allows Python (Gtk) developers to create software on top
-pywebkitgtk: of the WebKitGtk rendering engine.
-pywebkitgtk:
-pywebkitgtk: Homepage: https://wiki.python.org/moin/PyWebkitGtk
-pywebkitgtk:
-pywebkitgtk:
-pywebkitgtk:
-pywebkitgtk:
-pywebkitgtk: