summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author Dave Woodfall <dave@slackbuilds.org>2020-06-22 03:56:33 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2020-06-28 08:16:46 +0700
commit0c373a9b562a62b8f58d53c827f34b08c318c2ff (patch)
tree4eeb58c86dcddea03b1fd29a46e47e2cf839e1ac /misc
parenta00961e98556d769f7ddef9703ceb8b27b283424 (diff)
downloadslackbuilds-0c373a9b562a62b8f58d53c827f34b08c318c2ff.tar.gz
slackbuilds-0c373a9b562a62b8f58d53c827f34b08c318c2ff.tar.xz
misc/conkyforecast: Removed.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/conkyforecast/README3
-rw-r--r--misc/conkyforecast/conkyforecast.SlackBuild61
-rw-r--r--misc/conkyforecast/conkyforecast.info10
-rw-r--r--misc/conkyforecast/doinst.sh14
-rw-r--r--misc/conkyforecast/slack-desc19
5 files changed, 0 insertions, 107 deletions
diff --git a/misc/conkyforecast/README b/misc/conkyforecast/README
deleted file mode 100644
index 67c906bfe1..0000000000
--- a/misc/conkyforecast/README
+++ /dev/null
@@ -1,3 +0,0 @@
-conkyForecast is a python script created to provide weather forecast
-information to be displayed in Conky. It uses the Weather.com XOAP
-service to retrieve data for all over the world.
diff --git a/misc/conkyforecast/conkyforecast.SlackBuild b/misc/conkyforecast/conkyforecast.SlackBuild
deleted file mode 100644
index 2345848919..0000000000
--- a/misc/conkyforecast/conkyforecast.SlackBuild
+++ /dev/null
@@ -1,61 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for conkyforecast
-
-# Written by M.Dinslage (daedra1980@gmail.com)
-
-PRGNAM=conkyforecast
-VERSION=${VERSION:-2.24}
-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 $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-mkdir -p $PRGNAM-$VERSION
-tar xvf $CWD/${PRGNAM}_${VERSION}.tar.gz -C $PRGNAM-$VERSION
-cd $PRGNAM-$VERSION/src
-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 {} \;
-
-# Fix font path for slackware
-sed -i 's,/usr/share/fonts/truetype/conkyforecast,/usr/share/fonts/TTF,g' setup.py
-
-python setup.py install --root=$PKG
-
-# remove font .sfd files, they shouldn't be needed
-rm -r $PKG/usr/share/fonts/TTF/*.tar.gz
-
-# Put the .otf fonts in the right place
-mkdir -p $PKG/usr/share/fonts/OTF
-mv $PKG/usr/share/fonts/TTF/*.otf $PKG/usr/share/fonts/OTF
-
-# No need to put an arch-specific dir in here; the egg info file is useless
-rm -rf $PKG/usr/lib{,64}
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS CHANGELOG COPYING 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
-cat $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/misc/conkyforecast/conkyforecast.info b/misc/conkyforecast/conkyforecast.info
deleted file mode 100644
index f5fa39c8be..0000000000
--- a/misc/conkyforecast/conkyforecast.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="conkyforecast"
-VERSION="2.24"
-HOMEPAGE="https://launchpad.net/~conky-companions"
-DOWNLOAD="https://launchpad.net/~conky-companions/+archive/ppa/+files/conkyforecast_2.24.tar.gz"
-MD5SUM="7661233474cd6b27ea3a921a16a88a55"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="conky"
-MAINTAINER="M.Dinslage"
-EMAIL="daedra1980@gmail.com"
diff --git a/misc/conkyforecast/doinst.sh b/misc/conkyforecast/doinst.sh
deleted file mode 100644
index 8b79d8c94e..0000000000
--- a/misc/conkyforecast/doinst.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-# Update the X font indexes:
-if [ -x /usr/bin/mkfontdir ]; then
- ( cd /usr/share/fonts/TTF
- mkfontscale .
- mkfontdir .
- cd /usr/share/fonts/OTF
- mkfontscale .
- mkfontdir .
- )
-fi
-if [ -x /usr/bin/fc-cache ]; then
- /usr/bin/fc-cache -f
-fi
-
diff --git a/misc/conkyforecast/slack-desc b/misc/conkyforecast/slack-desc
deleted file mode 100644
index dd57dced9f..0000000000
--- a/misc/conkyforecast/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------------------------------------------------------|
-conkyforecast: conkyforecast (weather information display for conky)
-conkyforecast:
-conkyforecast: conkyForecast is a python script created to provide weather forecast
-conkyforecast: information to be displayed in Conky. It uses the Weather.com XOAP
-conkyforecast: service to retrieve data for all over the world.
-conkyforecast:
-conkyforecast:
-conkyforecast:
-conkyforecast:
-conkyforecast:
-conkyforecast: