From 496cd259195bd8f35d1f5822a267868602755ab1 Mon Sep 17 00:00:00 2001 From: Dave Woodfall Date: Sat, 6 Aug 2022 02:18:52 +0100 Subject: development/Mk4tcl: Removed. Replaced by development/metakit. Signed-off-by: Dave Woodfall Signed-off-by: Willy Sudiarto Raharjo --- development/Mk4tcl/01-Makefile.patch | 21 ------- development/Mk4tcl/Mk4tcl.SlackBuild | 107 ----------------------------------- development/Mk4tcl/Mk4tcl.info | 10 ---- development/Mk4tcl/README | 16 ------ development/Mk4tcl/slack-desc | 19 ------- 5 files changed, 173 deletions(-) delete mode 100644 development/Mk4tcl/01-Makefile.patch delete mode 100644 development/Mk4tcl/Mk4tcl.SlackBuild delete mode 100644 development/Mk4tcl/Mk4tcl.info delete mode 100644 development/Mk4tcl/README delete mode 100644 development/Mk4tcl/slack-desc diff --git a/development/Mk4tcl/01-Makefile.patch b/development/Mk4tcl/01-Makefile.patch deleted file mode 100644 index 3e2cde4ed6..0000000000 --- a/development/Mk4tcl/01-Makefile.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nur metakit/tcl/Makefile.in metakit.new/tcl/Makefile.in ---- metakit/tcl/Makefile.in 2015-06-18 20:37:38.000000000 +0200 -+++ metakit.new/tcl/Makefile.in 2019-07-03 23:02:52.180453468 +0200 -@@ -57,7 +57,7 @@ - - PACKAGE_NAME = @PACKAGE_NAME@ - PACKAGE_VERSION = @PACKAGE_VERSION@ --CC = @CC@ -+CC = g++ - CFLAGS_DEFAULT = @CFLAGS_DEFAULT@ - CFLAGS_WARNING = @CFLAGS_WARNING@ - EXEEXT = @EXEEXT@ -@@ -117,7 +117,7 @@ - @echo " xml2nroff sample.xml > sample.n" - @echo " xml2html sample.xml > sample.html" - --install: all install-binaries install-libraries install-doc -+install: all install-binaries install-libraries - - install-binaries: binaries install-lib-binaries install-bin-binaries - diff --git a/development/Mk4tcl/Mk4tcl.SlackBuild b/development/Mk4tcl/Mk4tcl.SlackBuild deleted file mode 100644 index efbf4016ea..0000000000 --- a/development/Mk4tcl/Mk4tcl.SlackBuild +++ /dev/null @@ -1,107 +0,0 @@ -#!/bin/bash - -# Slackware build script for Mk4tcl - -# Written by Zbigniew Baniewski, - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=Mk4tcl -VERSION=${VERSION:-2.4.9.8} -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 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 metakit -tar xvf $CWD/${VERSION}.tar.gz -cd metakit/tcl -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 {} \; - -cat $CWD/01-Makefile.patch | patch -p2 || exit - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cd .. -cp -a demos doc examples $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -cd unix -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --build=$ARCH-slackware-linux - -make all -make install DESTDIR=$PKG - -cp demo dump myio $PKG/usr/bin - -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 - -cd .. - -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/development/Mk4tcl/Mk4tcl.info b/development/Mk4tcl/Mk4tcl.info deleted file mode 100644 index 2c3a703b10..0000000000 --- a/development/Mk4tcl/Mk4tcl.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="Mk4tcl" -VERSION="2.4.9.8" -HOMEPAGE="https://equi4.com/metakit/" -DOWNLOAD="https://git.jeelabs.org/jcw/metakit/archive/2.4.9.8.tar.gz" -MD5SUM="272ccefc8efb1528377883753381589a" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Zbigniew Baniewski" -EMAIL="Zbigniew.Baniewski [at] gmail [dot] com" diff --git a/development/Mk4tcl/README b/development/Mk4tcl/README deleted file mode 100644 index 8f6a845998..0000000000 --- a/development/Mk4tcl/README +++ /dev/null @@ -1,16 +0,0 @@ -Mk4tcl - Tcl binding for Metakit embedded database library - -Metakit is an efficient embedded database library with a small -footprint. It fills the gap between flat-file, relational, -object-oriented, and tree-structured databases, supporting -relational joins, serialization, nested structures, and instant schema -evolution. There is a C++ API, a Python binding called Mk4py, and a Tcl -binding called Mk4tcl. You can manipulate and exchange data between -any of these. - -Data files are portable. The library has been used on Unix, Windows, -Macintosh, VMS, and others, spanning a range of 16- to 64-bit -architectures, from PDA's to S390's. - -Metakit is in use in various commercial projects and products on -millions of desktops. diff --git a/development/Mk4tcl/slack-desc b/development/Mk4tcl/slack-desc deleted file mode 100644 index c8cc45bd68..0000000000 --- a/development/Mk4tcl/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------------------------------------------------------| -Mk4tcl: Mk4tcl (TCL binding for Metakit embedded database library) -Mk4tcl: -Mk4tcl: Metakit is an efficient embedded database library with a small -Mk4tcl: footprint. It fills the gap between flat-file, relational, -Mk4tcl: object-oriented, and tree-structured databases, supporting relational -Mk4tcl: joins, serialization, nested structures, and instant schema evolution -Mk4tcl: This packages comprises metakit Tcl binding called Mk4tcl. -Mk4tcl: Data files are portable. The library has been used on Unix, Windows, -Mk4tcl: Macintosh, VMS, and others. -Mk4tcl: -Mk4tcl: Homepage: https://equi4.com/metakit/ -- cgit v1.2.3