diff options
author | Christoph Willing <chris.willing@linux.com> | 2024-09-08 17:02:56 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-09-09 06:28:34 +0700 |
commit | 73eceea8cb3c7da74ab20ed42b774d15e3c1e217 (patch) | |
tree | 1131a7fdb88bca8286b880ac2e4b39e84784a8b8 /system/cowsql | |
parent | 3d8e30caf4af8c9fa6274a7472568b2126681189 (diff) | |
download | slackbuilds-73eceea8cb3c7da74ab20ed42b774d15e3c1e217.tar.gz slackbuilds-73eceea8cb3c7da74ab20ed42b774d15e3c1e217.tar.xz |
system/cowsql: Added (SQL engine).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/cowsql')
-rw-r--r-- | system/cowsql/README | 13 | ||||
-rw-r--r-- | system/cowsql/cowsql.SlackBuild | 110 | ||||
-rw-r--r-- | system/cowsql/cowsql.info | 10 | ||||
-rw-r--r-- | system/cowsql/slack-desc | 19 |
4 files changed, 152 insertions, 0 deletions
diff --git a/system/cowsql/README b/system/cowsql/README new file mode 100644 index 0000000000..c7b34ad294 --- /dev/null +++ b/system/cowsql/README @@ -0,0 +1,13 @@ +cowsql is a C library that implements an embeddable and replicated +SQL database engine with high availability and automatic failover. + +cowsql extends SQLite with a network protocol that can connect +together various instances of your application and have them act as +a highly-available cluster, with no dependency on external databases. + +The name "cowsql" loosely refers to the "pets vs. cattle" concept, +since it's generaly fine to delete or rebuild a particular node of +an application that uses cowsql for data storage. + +cowsql is a fork of Canonical's dqlite project, which was originally +written by cowsql's author himself while working at Canonical. diff --git a/system/cowsql/cowsql.SlackBuild b/system/cowsql/cowsql.SlackBuild new file mode 100644 index 0000000000..b65a5dba14 --- /dev/null +++ b/system/cowsql/cowsql.SlackBuild @@ -0,0 +1,110 @@ +#!/bin/bash + +# Slackware build script for cowsql + +# Copyright 2024 Christoph Willing Sydney, Australia +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=cowsql +VERSION=${VERSION:-1.15.3} +BUILD=${BUILD:-1} +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 [ ! -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" +elif [ "$ARCH" = "aarch64" ]; 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.gz +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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +autoreconf -i +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +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/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS LICENSE 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/system/cowsql/cowsql.info b/system/cowsql/cowsql.info new file mode 100644 index 0000000000..f8f57025e5 --- /dev/null +++ b/system/cowsql/cowsql.info @@ -0,0 +1,10 @@ +PRGNAM="cowsql" +VERSION="1.15.3" +HOMEPAGE="https://github.com/cowsql/cowsql" +DOWNLOAD="https://github.com/cowsql/cowsql/archive/refs/tags/v1.15.3/cowsql-1.15.3.tar.gz" +MD5SUM="8d99d812a98971d25f6e1683803e2287" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="raft" +MAINTAINER="Christoph Willing" +EMAIL="chris.willing@linux.com" diff --git a/system/cowsql/slack-desc b/system/cowsql/slack-desc new file mode 100644 index 0000000000..d792c3afcf --- /dev/null +++ b/system/cowsql/slack-desc @@ -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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +cowsql: cowsql (Embeddable SQL Engine) +cowsql: +cowsql: cowsql is a C library that implements an embeddable and replicated +cowsql: SQL database engine with high availability and automatic failover. +cowsql: +cowsql: cowsql extends SQLite with a network protocol that can connect +cowsql: together various instances of your application and have them act as +cowsql: a highly-available cluster, with no dependency on external databases. +cowsql: +cowsql: cowsql is a fork of Canonical's dqlite project, which was originally +cowsql: written by cowsql's author himself while working at Canonical. |