aboutsummaryrefslogtreecommitdiff
path: root/python/python-keybinder
diff options
context:
space:
mode:
authorDave Woodfall <dave@slackbuilds.org>2021-05-03 06:50:14 +0100
committerRobby Workman <rworkman@slackbuilds.org>2021-05-03 01:49:57 -0500
commit9c1a13348a3052b8419bdf7d1cb18ac82699855c (patch)
tree40cea95d47a7c698d5497c89cfd89e0ddf6d5764 /python/python-keybinder
parent1703d6ef845afeb1cc921e7062541502a624ccaf (diff)
python/python-keybinder: Renamed python2-keybinder.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Diffstat (limited to 'python/python-keybinder')
-rw-r--r--python/python-keybinder/README8
-rw-r--r--python/python-keybinder/python-keybinder.SlackBuild87
-rw-r--r--python/python-keybinder/python-keybinder.info10
-rw-r--r--python/python-keybinder/slack-desc19
4 files changed, 0 insertions, 124 deletions
diff --git a/python/python-keybinder/README b/python/python-keybinder/README
deleted file mode 100644
index a174f4caa6..0000000000
--- a/python/python-keybinder/README
+++ /dev/null
@@ -1,8 +0,0 @@
-python-keybinder (Python bindings for keybinder)
-
-keybinder is a library for registering global keyboard
-shortcuts. Keybinder works with GTK-based applications using the X
-Window System.
-
-This build only includes the Python bindings for keybinder. The main
-keybinder package is part of Slackware, in the L series.
diff --git a/python/python-keybinder/python-keybinder.SlackBuild b/python/python-keybinder/python-keybinder.SlackBuild
deleted file mode 100644
index 43640b3e31..0000000000
--- a/python/python-keybinder/python-keybinder.SlackBuild
+++ /dev/null
@@ -1,87 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for python-keybinder
-
-# Written by B. Watson (yalhcru@gmail.com)
-
-# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
-
-PRGNAM=python-keybinder
-VERSION=${VERSION:-0.3.1}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-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
-
-SRCNAM=keybinder
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $SRCNAM-$VERSION
-tar xvf $CWD/$SRCNAM-$VERSION.tar.xz
-cd $SRCNAM-$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 640 -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} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --disable-static \
- --disable-lua \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=`pwd`/tmpinst
-
-# we only care about the python bindings, everything else can be found
-# in Pat's keybinder package.
-mkdir -p $PKG/usr/lib$LIBDIRSUFFIX
-mv tmpinst/usr/lib$LIBDIRSUFFIX/python* $PKG/usr/lib$LIBDIRSUFFIX
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp $CWD/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:-tgz}
diff --git a/python/python-keybinder/python-keybinder.info b/python/python-keybinder/python-keybinder.info
deleted file mode 100644
index de3705e0cd..0000000000
--- a/python/python-keybinder/python-keybinder.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="python-keybinder"
-VERSION="0.3.1"
-HOMEPAGE="https://github.com/engla/keybinder"
-DOWNLOAD="http://ponce.cc/slackware/sources/repo/keybinder-0.3.1.tar.xz"
-MD5SUM="96bc2abd7af7570430a2a65d733be526"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="B. Watson"
-EMAIL="yalhcru@gmail.com"
diff --git a/python/python-keybinder/slack-desc b/python/python-keybinder/slack-desc
deleted file mode 100644
index 8f3ef892ee..0000000000
--- a/python/python-keybinder/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------------------------------------------------------|
-python-keybinder: python-keybinder (Python bindings for keybinder)
-python-keybinder:
-python-keybinder: keybinder is a library for registering global keyboard
-python-keybinder: shortcuts. Keybinder works with GTK-based applications using the X
-python-keybinder: Window System.
-python-keybinder:
-python-keybinder: This build only includes the Python bindings for keybinder. The main
-python-keybinder: keybinder package is part of Slackware, in the L series.
-python-keybinder:
-python-keybinder:
-python-keybinder: