Skip to content
arm-link 2.73 KiB
Newer Older
Seblu's avatar
Seblu committed
#!/bin/bash -e

# Copyright © Sébastien Luttringer
#
# 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.
#
# 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.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

LOCKFILE=~/."${0##*/}".lock
ARMBASE=/srv/ftp/archlinux/arm
Seblu's avatar
Seblu committed
PKGTREE=packages
PKGFLAT=all
LASTM=month
LASTW=week
Seblu's avatar
Seblu committed

Seblu's avatar
Seblu committed
[[ $1 != "" && ${1:0:1} != / ]] && { echo 'Absolute path please, ln is bugged'; exit 1; }
Seblu's avatar
Seblu committed

# we lock!
exec 9> "$LOCKFILE"
flock -n 9 || { echo 'Locking Failed' >&2; exit 1; }

# nice umask
umask 022

cd "$ARMBASE"

# update last month
ln -snf "$(date +%Y/%m/01)" "$LASTM"

# update last week
ln -snf "$(date -d 'last monday' +%Y/%m/%d)" "$LASTW"

Seblu's avatar
Seblu committed

for _d in "$PKGTREE" "$PKGFLAT"; do
  # ensure dir are here
  [[ -e $_d ]] || mkdir -p "$_d"

  echo ":: removing dead links in ${_d##*/}"
  find -L "$_d" -type l -delete -print

  echo ":: removing empty directories in ${_d##*/}"
  find "$_d" -type d -empty -delete -print
done
Seblu's avatar
Seblu committed

# create new links pass
echo ':: creating new links'
find ${1:-"$ARMBASE"/20??} -type f -name '*.pkg.tar.xz'| while read src; do
  filename="${src##*/}"
  pkgname="${filename%-*}" #remove arch and extension
  pkgname="${pkgname%-*}" #remove pkgrel
  pkgname="${pkgname%-*}" #remove pkgver
Seblu's avatar
Seblu committed
  first="${pkgname:0:1}"
  parent="$ARMBASE/$PKGTREE/${first,,}/$pkgname"
Seblu's avatar
Seblu committed
  # destination in tree
  tdst="$parent/$filename"
Seblu's avatar
Seblu committed
  # destination in flat dir
  fdst="$ARMBASE/$PKGFLAT/$filename"
Seblu's avatar
Seblu committed
  # ensure pkgtree dad dir is present
Seblu's avatar
Seblu committed
  [[ -d "$parent" ]] || mkdir -v -p "$parent"
  # copy file if necessary
Seblu's avatar
Seblu committed
  if [[ "$src" -nt "$tdst" ]]; then
Seblu's avatar
Seblu committed
    # remove is necessary to be done and not use -f in ln
    # because this create buggy relative symlink in some case.
    # there is fix around this in next coreutils
Seblu's avatar
Seblu committed
    [[ -e "$tdst" ]] && rm -f -v "$tdst"
Seblu's avatar
Seblu committed
    # don't use harlink, to be able to easily remove package by date
    # removing a directory by date, will remove symlink in the clean pass
Seblu's avatar
Seblu committed
    ln -v -r -s "$src" "$tdst"
  fi
  if [[ "$src" -nt "$fdst" ]]; then
    [[ -e "$fdst" ]] && rm -f -v "$fdst"
    ln -v -r -s "$src" "$fdst"
Seblu's avatar
Seblu committed
  fi
done

Seblu's avatar
Seblu committed
# disallow listing of PKGFLAT. Too much file
echo 'No listing allowed here.' > "$PKGFLAT"/index.html

touch "$PKGTREE" "$PKGFLAT"
Seblu's avatar
Seblu committed

# vim:set sw=2 ts=2 ft=sh et: