From: fsLeg Date: Fri, 11 Jul 2025 19:32:59 +0000 (+0300) Subject: dart-sdk: took over maintainership X-Git-Url: https://git.t-rg.ws/?a=commitdiff_plain;h=4813abc796927516148b44712b32e642d3180de1;p=slackbuilds.git dart-sdk: took over maintainership --- diff --git a/dart-sdk/README b/dart-sdk/README new file mode 100644 index 0000000..53460e8 --- /dev/null +++ b/dart-sdk/README @@ -0,0 +1,9 @@ +Dart is an application programming language that’s easy to learn, +easy to scale, and deployable everywhere. + +The Dart SDK has the libraries and command-line tools that you need +to develop Dart web, command-line, and server apps. + +This SBo script packages the binary release from Google. + +Homepage: http://www.dartlang.org diff --git a/dart-sdk/dart-sdk.SlackBuild b/dart-sdk/dart-sdk.SlackBuild new file mode 100644 index 0000000..3e2dc23 --- /dev/null +++ b/dart-sdk/dart-sdk.SlackBuild @@ -0,0 +1,94 @@ +#!/bin/bash + +# Slackware build script for dart-sdk + +# Copyright 2016-2020 Zhu Qun-Ying +# Copyright 2025 Vladislav 'fsLeg' Borisov, Moscow, Russia +# 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=dart-sdk +VERSION=${VERSION:-3.7.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 + +echo "arch $ARCH" +# 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" == "x86_64" ]; then + PKG_PLATFORM="x64" +elif [ "$ARCH" == "i586" ]; then + PKG_PLATFORM="ia32" +elif [ "$ARCH" == "arm" ]; then + PKG_PLATFORM="arm" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP + +mkdir -p $PKG/opt +cd $PKG/opt + +unzip $CWD/dartsdk-linux-$PKG_PLATFORM-release.zip +unzip $CWD/dartdocs-gen-api.zip + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs chmod a+x + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp $CWD/$PRGNAM.SlackBuild $PKG/usr/doc/$PRGNAM-$VERSION +mv gen-dartdocs $PKG/usr/doc/$PRGNAM-$VERSION/doc + +mkdir -p $PKG/etc/profile.d +install -Dm755 -t $PKG/etc/profile.d $CWD/dart-sdk.*sh.new + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +chmod +x $PKG/opt/dart-sdk/bin/resources +chmod +x $PKG/opt/dart-sdk/bin/resources/dartdoc/ + +cd $PKG +chmod +rx opt/dart-sdk opt/dart-sdk/bin opt/dart-sdk/bin/snapshots/ +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/dart-sdk/dart-sdk.csh.new b/dart-sdk/dart-sdk.csh.new new file mode 100644 index 0000000..2b3808b --- /dev/null +++ b/dart-sdk/dart-sdk.csh.new @@ -0,0 +1,2 @@ +#!/bin/csh +setenv PATH ${PATH}:/opt/dart-sdk/bin diff --git a/dart-sdk/dart-sdk.info b/dart-sdk/dart-sdk.info new file mode 100644 index 0000000..b465fb9 --- /dev/null +++ b/dart-sdk/dart-sdk.info @@ -0,0 +1,14 @@ +PRGNAM="dart-sdk" +VERSION="3.7.3" +HOMEPAGE="https://www.dartlang.org/" +DOWNLOAD="https://storage.googleapis.com/dart-archive/channels/stable/release/3.7.3/sdk/dartsdk-linux-ia32-release.zip \ + https://storage.googleapis.com/dart-archive/channels/stable/release/3.7.3/api-docs/dartdocs-gen-api.zip" +MD5SUM="8b0c7ded7595e52fccdfaeb8e035f1d2 \ + bf71b650c1e36aa7237a05fcdf0c2eb9" +DOWNLOAD_x86_64="https://storage.googleapis.com/dart-archive/channels/stable/release/3.7.3/sdk/dartsdk-linux-x64-release.zip \ + https://storage.googleapis.com/dart-archive/channels/stable/release/3.7.3/api-docs/dartdocs-gen-api.zip" +MD5SUM_x86_64="041eff52655875ba210aae0136191fd1 \ + bf71b650c1e36aa7237a05fcdf0c2eb9" +REQUIRES="" +MAINTAINER="Vladislav 'fsLeg' Borisov" +EMAIL="fsleg@t-rg.ws" diff --git a/dart-sdk/dart-sdk.sh.new b/dart-sdk/dart-sdk.sh.new new file mode 100644 index 0000000..ad51f09 --- /dev/null +++ b/dart-sdk/dart-sdk.sh.new @@ -0,0 +1,2 @@ +#!/bin/sh +export PATH=$PATH:/opt/dart-sdk/bin diff --git a/dart-sdk/doinst.sh b/dart-sdk/doinst.sh new file mode 100644 index 0000000..15b6424 --- /dev/null +++ b/dart-sdk/doinst.sh @@ -0,0 +1,15 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/profile.d/dart-sdk.csh.new +config etc/profile.d/dart-sdk.sh.new diff --git a/dart-sdk/slack-desc b/dart-sdk/slack-desc new file mode 100644 index 0000000..5364df0 --- /dev/null +++ b/dart-sdk/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------------------------------------------------------| +dart-sdk: dart-sdk (An SDK for application programming language) +dart-sdk: +dart-sdk: Dart is an application programming language that's easy to learn, +dart-sdk: easy to scale, and deployable everywhere. +dart-sdk: +dart-sdk: The Dart SDK has the libraries and command-line tools that you need +dart-sdk: to develop Dart web, command-line, and server apps. +dart-sdk: +dart-sdk: Homepage: http://www.dartlang.org +dart-sdk: +dart-sdk: