diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2018-05-28 19:12:29 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 23:39:35 +0200 |
commit | 646a5c1cbfd95873950a87b5f75d52073a967023 (patch) | |
tree | b8b8d2ab3b0d432ea69ad1a64d1c789649d65020 /source/l/aspell-dict | |
parent | d31c50870d0bee042ce660e445c9294a59a3a65b (diff) | |
download | current-646a5c1cbfd95873950a87b5f75d52073a967023.tar.gz |
Mon May 28 19:12:29 UTC 201820180528191229
a/pkgtools-15.0-noarch-13.txz: Rebuilt.
installpkg: default line length for --terselength is the number of columns.
removepkg: added --terse mode.
upgradepkg: default line length for --terselength is the number of columns.
upgradepkg: accept -option in addition to --option.
ap/vim-8.1.0026-x86_64-1.txz: Upgraded.
d/bison-3.0.5-x86_64-1.txz: Upgraded.
e/emacs-26.1-x86_64-1.txz: Upgraded.
kde/kopete-4.14.3-x86_64-8.txz: Rebuilt.
Recompiled against libidn-1.35.
n/conntrack-tools-1.4.5-x86_64-1.txz: Upgraded.
n/libnetfilter_conntrack-1.0.7-x86_64-1.txz: Upgraded.
n/libnftnl-1.1.0-x86_64-1.txz: Upgraded.
n/links-2.16-x86_64-2.txz: Rebuilt.
Rebuilt to enable X driver for -g mode.
n/lynx-2.8.9dev.19-x86_64-1.txz: Upgraded.
n/nftables-0.8.5-x86_64-1.txz: Upgraded.
n/p11-kit-0.23.11-x86_64-1.txz: Upgraded.
n/ulogd-2.0.7-x86_64-1.txz: Upgraded.
n/whois-5.3.1-x86_64-1.txz: Upgraded.
xap/network-manager-applet-1.8.12-x86_64-1.txz: Upgraded.
xap/vim-gvim-8.1.0026-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/aspell-dict')
65 files changed, 0 insertions, 170 deletions
diff --git a/source/l/aspell-dict/aspell-dict.SlackBuild b/source/l/aspell-dict/aspell-dict.SlackBuild deleted file mode 100755 index f2333eb5..00000000 --- a/source/l/aspell-dict/aspell-dict.SlackBuild +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh - -# Copyright 2008, 2009, 2016 Patrick J. Volkerding, Sebeka, Minnesota, USA -# 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. - - -CWD=$(pwd) -TMP=${TMP:-/tmp} -PKG=$TMP/package-aspell-dict - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$(uname -m)" in - i?86) ARCH=i586 ;; - arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$(uname -m) ;; - esac - export ARCH -fi - -cd src -for file in aspell*bz2 ; do - NAME=$(echo $file | cut -f 1-2 -d -)-$(echo $file | cut -f 3- -d - | rev | cut -b9- | rev | tr '[\-]' '[_]') - if [ -r $CWD/build/$(basename $file | cut -f 1,2 -d -) ]; then - BUILD="$(cat $CWD/build/$(basename $file | cut -f 1,2 -d -))" - else - BUILD=1 - fi - rm -rf $PKG - mkdir -p $TMP $PKG - cd $TMP - rm -rf $(basename $file .tar.bz2) - tar xjf $CWD/src/$file - cd $(basename $file .tar.bz2) - chown -R root:root . - ./configure || exit 1 - make || exit 1 - make install DESTDIR=$PKG || exit 1 - # Use a uniform package name. - NAME=$(echo $NAME | sed 's/aspell5/aspell/' | sed 's/aspell6/aspell/') - mkdir -p $PKG/usr/doc/${NAME} - cp -a \ - README Copyright \ - $PKG/usr/doc/${NAME} - chmod 644 $PKG/usr/doc/${NAME}/* - mkdir $PKG/install - SLACKDESC=$(echo $NAME | cut -f 1-2 -d -) - echo "${SLACKDESC}: ${SLACKDESC}" > $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - echo "${SLACKDESC}: $(head -n 1 README)." >> $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - echo "${SLACKDESC}:" >> $PKG/install/slack-desc - cd $PKG - makepkg -l y -c n $TMP/${NAME}-$ARCH-$BUILD.txz -done || exit 1 diff --git a/source/l/aspell-dict/build/aspell-af b/source/l/aspell-dict/build/aspell-af deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-af +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-br b/source/l/aspell-dict/build/aspell-br deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-br +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-cy b/source/l/aspell-dict/build/aspell-cy deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-cy +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-el b/source/l/aspell-dict/build/aspell-el deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-el +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-fr b/source/l/aspell-dict/build/aspell-fr deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-fr +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-gv b/source/l/aspell-dict/build/aspell-gv deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-gv +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-hr b/source/l/aspell-dict/build/aspell-hr deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-hr +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-ia b/source/l/aspell-dict/build/aspell-ia deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-ia +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-is b/source/l/aspell-dict/build/aspell-is deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-is +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-mi b/source/l/aspell-dict/build/aspell-mi deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-mi +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-mk b/source/l/aspell-dict/build/aspell-mk deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-mk +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-ms b/source/l/aspell-dict/build/aspell-ms deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-ms +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-mt b/source/l/aspell-dict/build/aspell-mt deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-mt +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-nb b/source/l/aspell-dict/build/aspell-nb deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-nb +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-nl b/source/l/aspell-dict/build/aspell-nl deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-nl +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-nn b/source/l/aspell-dict/build/aspell-nn deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-nn +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-no b/source/l/aspell-dict/build/aspell-no deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-no +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-pt b/source/l/aspell-dict/build/aspell-pt deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-pt +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-rw b/source/l/aspell-dict/build/aspell-rw deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-rw +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-sl b/source/l/aspell-dict/build/aspell-sl deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-sl +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-sv b/source/l/aspell-dict/build/aspell-sv deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-sv +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-sw b/source/l/aspell-dict/build/aspell-sw deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-sw +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-tr b/source/l/aspell-dict/build/aspell-tr deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-tr +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-wa b/source/l/aspell-dict/build/aspell-wa deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-wa +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell-zu b/source/l/aspell-dict/build/aspell-zu deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell-zu +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-be b/source/l/aspell-dict/build/aspell5-be deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-be +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-da b/source/l/aspell-dict/build/aspell5-da deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-da +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-fo b/source/l/aspell-dict/build/aspell5-fo deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-fo +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-gd b/source/l/aspell-dict/build/aspell5-gd deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-gd +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-hil b/source/l/aspell-dict/build/aspell5-hil deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-hil +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-id b/source/l/aspell-dict/build/aspell5-id deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-id +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-mg b/source/l/aspell-dict/build/aspell5-mg deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-mg +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-ny b/source/l/aspell-dict/build/aspell5-ny deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-ny +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-sc b/source/l/aspell-dict/build/aspell5-sc deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-sc +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-tet b/source/l/aspell-dict/build/aspell5-tet deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-tet +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-tl b/source/l/aspell-dict/build/aspell5-tl deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-tl +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell5-tn b/source/l/aspell-dict/build/aspell5-tn deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell5-tn +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-am b/source/l/aspell-dict/build/aspell6-am deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-am +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-az b/source/l/aspell-dict/build/aspell6-az deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-az +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-bn b/source/l/aspell-dict/build/aspell6-bn deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-bn +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-ca b/source/l/aspell-dict/build/aspell6-ca deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-ca +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-cs b/source/l/aspell-dict/build/aspell6-cs deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-cs +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-csb b/source/l/aspell-dict/build/aspell6-csb deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-csb +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-de b/source/l/aspell-dict/build/aspell6-de deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-de +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-et b/source/l/aspell-dict/build/aspell6-et deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-et +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-fi b/source/l/aspell-dict/build/aspell6-fi deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-fi +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-he b/source/l/aspell-dict/build/aspell6-he deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-he +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-hu b/source/l/aspell-dict/build/aspell6-hu deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-hu +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-it b/source/l/aspell-dict/build/aspell6-it deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-it +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-la b/source/l/aspell-dict/build/aspell6-la deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-la +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-lv b/source/l/aspell-dict/build/aspell6-lv deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-lv +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-mr b/source/l/aspell-dict/build/aspell6-mr deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-mr +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-nds b/source/l/aspell-dict/build/aspell6-nds deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-nds +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-or b/source/l/aspell-dict/build/aspell6-or deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-or +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-pa b/source/l/aspell-dict/build/aspell6-pa deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-pa +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-qu b/source/l/aspell-dict/build/aspell6-qu deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-qu +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-ru b/source/l/aspell-dict/build/aspell6-ru deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-ru +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-sr b/source/l/aspell-dict/build/aspell6-sr deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-sr +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-ta b/source/l/aspell-dict/build/aspell6-ta deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-ta +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-te b/source/l/aspell-dict/build/aspell6-te deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-te +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-vi b/source/l/aspell-dict/build/aspell6-vi deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-vi +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/aspell6-yi b/source/l/aspell-dict/build/aspell6-yi deleted file mode 100644 index 7ed6ff82..00000000 --- a/source/l/aspell-dict/build/aspell6-yi +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/l/aspell-dict/build/increment-all-dict.sh b/source/l/aspell-dict/build/increment-all-dict.sh deleted file mode 100755 index 99861dc6..00000000 --- a/source/l/aspell-dict/build/increment-all-dict.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# A script to increment build numbers of all the dictionaries. -# -# Any that are newly added should not have a build file in -# here (or it should contain "1"). The usual method is to run this -# script and then remove the build files for any new driver versions. - -for DICTSRC in ../src/* ; do - DICTBASENAME=$(basename $DICTSRC | cut -f 1,2 -d -) - ./increment.sh $DICTBASENAME -done - diff --git a/source/l/aspell-dict/build/increment.sh b/source/l/aspell-dict/build/increment.sh deleted file mode 100755 index eff1356f..00000000 --- a/source/l/aspell-dict/build/increment.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -# A script to increment build numbers. -# Call it with the list of the build numbers to increase by one: -# -# ./increment.sh aspell6-pt_BR aspell6-qu -# -# If a build file does not exist, it will be created with a value of 2. - -for build in $* ; do - if [ ! -r $build ]; then - echo "Creating $build with value 2" - echo 2 > $build - else - echo "Incrementing $build $(cat $build) -> $(expr $(cat $build) + 1)" - echo $(expr $(cat $build) + 1) > $build - fi -done |