diff options
-rw-r--r-- | libraries/webkit2gtk/webkit2gtk.SlackBuild | 2 | ||||
-rw-r--r-- | libraries/webkit2gtk/webkit2gtk.info | 6 | ||||
-rw-r--r-- | network/copy/CopyAgent.desktop | 13 | ||||
-rw-r--r-- | network/copy/README | 12 | ||||
-rw-r--r-- | network/copy/copy-client.png | bin | 2243 -> 0 bytes | |||
-rw-r--r-- | network/copy/copy.SlackBuild | 125 | ||||
-rw-r--r-- | network/copy/copy.info | 10 | ||||
-rw-r--r-- | network/copy/doinst.sh | 3 | ||||
-rw-r--r-- | network/copy/slack-desc | 19 |
9 files changed, 4 insertions, 186 deletions
diff --git a/libraries/webkit2gtk/webkit2gtk.SlackBuild b/libraries/webkit2gtk/webkit2gtk.SlackBuild index 591981e841..6576438518 100644 --- a/libraries/webkit2gtk/webkit2gtk.SlackBuild +++ b/libraries/webkit2gtk/webkit2gtk.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=webkit2gtk SRCNAM=webkitgtk -VERSION=${VERSION:-2.12.1} +VERSION=${VERSION:-2.12.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} diff --git a/libraries/webkit2gtk/webkit2gtk.info b/libraries/webkit2gtk/webkit2gtk.info index 594c4d34a9..14453dd7b7 100644 --- a/libraries/webkit2gtk/webkit2gtk.info +++ b/libraries/webkit2gtk/webkit2gtk.info @@ -1,8 +1,8 @@ PRGNAM="webkit2gtk" -VERSION="2.12.1" +VERSION="2.12.2" HOMEPAGE="http://webkitgtk.org/" -DOWNLOAD="http://webkitgtk.org/releases/webkitgtk-2.12.1.tar.xz" -MD5SUM="adcbee440d81acfb1ead9ada91bd5e79" +DOWNLOAD="http://webkitgtk.org/releases/webkitgtk-2.12.2.tar.xz" +MD5SUM="41e018d651413fdbcd4b6480ab1fbd7b" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="geoclue hyphen libwebp" diff --git a/network/copy/CopyAgent.desktop b/network/copy/CopyAgent.desktop deleted file mode 100644 index 4e2a5868aa..0000000000 --- a/network/copy/CopyAgent.desktop +++ /dev/null @@ -1,13 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Version=1.0 -Type=Application -Terminal=false -StartupNotify=false -GenericName=File Synchronizer -Categories=Network;FileTransfer; -Exec=CopyAgent -Icon=copy-client -Name=CopyAgent -Comment=Sync files across computers, mobile devices, and to the web -X-GNOME-Autostart-enabled=true diff --git a/network/copy/README b/network/copy/README deleted file mode 100644 index 6b1c9aee2f..0000000000 --- a/network/copy/README +++ /dev/null @@ -1,12 +0,0 @@ -Sync, protect, and share. Everywhere. - -Copy is a syncing client that offers 15gb of -space for free. It works on x86, x86_64 and -armv6h. It also includes a command line client -called CopyConsole. - -The main executable is CopyAgent. - -You may use this link to receive an additional -5gb for free (totaling 20gb): -https://copy.com?r=TxbyWL diff --git a/network/copy/copy-client.png b/network/copy/copy-client.png Binary files differdeleted file mode 100644 index 6757009930..0000000000 --- a/network/copy/copy-client.png +++ /dev/null diff --git a/network/copy/copy.SlackBuild b/network/copy/copy.SlackBuild deleted file mode 100644 index 03c0e2e08a..0000000000 --- a/network/copy/copy.SlackBuild +++ /dev/null @@ -1,125 +0,0 @@ -#!/bin/sh - -# Slackware build script for Copy - -# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com - -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version, with the following exception: -# the text of the GPL license may be omitted. - -# This program is distributed in the hope that it will be useful, but -# without any warranty; without even the implied warranty of -# merchantability or fitness for a particular purpose. Compiling, -# interpreting, executing or merely reading the text of the program -# may result in lapses of consciousness and/or very being, up to and -# including the end of all existence and the Universe as we know it. -# See the GNU General Public License for more details. - -# You may have received a copy of the GNU General Public License along -# with this program (most likely, a file named COPYING). If not, see -# <https://www.gnu.org/licenses/>. - -PRGNAM=copy -SRCNAM=Copy -DSKNAM=CopyAgent -VERSION=${VERSION:-3.2.02.0496} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -if [ -z "$SRCARCH" ]; then - case "$( uname -m )" in - i?86) - SRCARCH=x86; - ;; - arm*) - SRCARCH=armv6h; - ;; - *) - SRCARCH=$( uname -m ); - ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -TARBALL=$SRCNAM-$VERSION.tgz -TARBALL_ROOT=$PRGNAM - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 -eu - -rm -rf $PKG -mkdir -pv $TMP $PKG $OUTPUT -cd $TMP -rm -rf "$TARBALL_ROOT" -tar -xvf "$CWD/$TARBALL" -cd "$TARBALL_ROOT" -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 {} \; - -mkdir -pv $PKG/opt/$PRGNAM -mkdir -pv $PKG/usr/share/applications/ -cp -a $SRCARCH/* $PKG/opt/$PRGNAM - -find $PKG -print0 | xargs -0 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/bin - -cat <<EOT > $PKG/usr/bin/CopyAgent -#!/bin/sh -## thanks to Eric Hameleers -## Avoid Qt incompatibilities: -QT4DIR="" QT_PLUGIN_PATH="" /opt/$PRGNAM/CopyAgent -EOT -chmod 755 $PKG/usr/bin/CopyAgent - -ln -sf /opt/$PRGNAM/CopyCmd $PKG/usr/bin/ -ln -sf /opt/$PRGNAM/CopyConsole $PKG/usr/bin/ - -install -m644 $CWD/$DSKNAM.desktop $PKG/usr/share/applications/ - -mkdir -p $PKG/usr/share/icons -install -m644 $CWD/copy-client.png $PKG/usr/share/icons - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cat README > $PKG/usr/doc/$PRGNAM-$VERSION/README -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/network/copy/copy.info b/network/copy/copy.info deleted file mode 100644 index 7aece41ce8..0000000000 --- a/network/copy/copy.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="copy" -VERSION="3.2.02.0496" -HOMEPAGE="https://www.copy.com" -DOWNLOAD="http://sourceforge.net/projects/slackbuildsdirectlinks/files/copy/Copy-3.2.02.0496.tgz" -MD5SUM="b1a1c18047ea124b52bcab03e47fd24c" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Ryan P.C. McQuen" -EMAIL="ryan.q@linux.com" diff --git a/network/copy/doinst.sh b/network/copy/doinst.sh deleted file mode 100644 index 5fb28930db..0000000000 --- a/network/copy/doinst.sh +++ /dev/null @@ -1,3 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi diff --git a/network/copy/slack-desc b/network/copy/slack-desc deleted file mode 100644 index 77fee727d2..0000000000 --- a/network/copy/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------------------------------------------------------| -copy: copy (File syncing client) -copy: -copy: Copy gives you 15gb of free space to sync -copy: across all your systems. -copy: -copy: It supports x86, x86_64 and armv6h. -copy: -copy: -copy: -copy: https://copy.com -copy: |