1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
#!/bin/sh
#
# Copyright © 2004, 2005, 2007, 2009 Guillem Jover <guillem@debian.org>
#
# 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.
#
set -e
set -u
pkg=inetutils
pkg_file=libinetutils
action=$1
shift
get_version()
{
local d=$1
$d/configure --version | sed -ne 's/-/./;s/GNU inetutils configure *//p'
}
echo "-> getting the source."
case "$action" in
snapshot)
echo " -> making a git snapshot."
snapshot_dir="$pkg-snapshot"
if [ -d $snapshot_dir ]; then
cd $snapshot_dir
git pull
cd ..
else
git clone https://git.savannah.gnu.org/git/inetutils.git $snapshot_dir
fi
echo " -> bootstrapping source tree form gnulib."
cd $snapshot_dir
./bootstrap --copy --no-bootstrap-sync
cd ..
version="$(get_version $snapshot_dir)"
;;
tarball)
echo " -> unpacking upstream tarball."
upstream_dir="$pkg-tarball"
upstream_tarball=$1
mkdir $upstream_dir
cd $upstream_dir
tar xJf ../$upstream_tarball --strip 1
cd ..
version=$(get_version $upstream_dir)
;;
esac
tarball="${pkg}_${version}.orig.tar.xz"
tree="${pkg}-${version}"
echo "-> package ${pkg} version ${version}"
echo "-> filling the working tree."
case "$action" in
snapshot)
cp -al $snapshot_dir $tree
;;
tarball)
mv $upstream_dir $tree
;;
esac
if ! [ -e $tree/$pkg_file ]
then
echo "error: no $pkg tree available."
exit 1
fi
echo "-> cleaning tree."
# Clean non-free stuff
: nothing to clean
# Clean junk from CVS to git conversion
rm -rf $tree/Attic
# Clean bootstrap and autofoo stuff
rm -rf $tree/autom4te.cache
rm -rf $tree/gnulib
# Clean vcs stuff
find $tree -name 'CVS' -o -name '.cvsignore' -o \
-name '.git' -o -name '.gitignore' | xargs rm -rf
echo "-> creating new tarball."
tar cJf $tarball $tree
echo "-> cleaning directory tree."
rm -rf $tree
|