apt-cyg/apt-cyg

504 lines
11 KiB
Plaintext
Raw Normal View History

2013-07-28 09:12:28 -07:00
#!/bin/bash
# apt-cyg: install tool for cygwin similar to debian apt-get
# The MIT License (MIT)
#
# Copyright (c) 2013 Trans-code Design
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# this script requires some packages
if ! type awk bzip2 tar wget xz &>/dev/null
2013-07-28 09:12:28 -07:00
then
2013-10-23 03:59:49 -07:00
echo You must install wget, tar, gawk, xz and bzip2 to use apt-cyg.
2013-07-28 09:12:28 -07:00
exit 1
fi
[ $HOSTTYPE = x86_64 ] && ARCH=x86_64 || ARCH=x86
2013-07-28 09:12:28 -07:00
function usage () {
rw=(
'usage: apt-cyg [command] [options] [packages]'
''
'Commands:'
' install <packages> install packages'
' remove <packages> remove packages'
' update update setup.ini'
' list [patterns] list packages matching given pattern. If no'
' pattern is given, list all installed packages.'
' listfiles <packages> list files owned by packages'
' show <packages> Displays the package records for the named'
' packages'
' rdepends <patterns> Display packages which require X to be installed,'
' AKA show reverse dependencies'
' search <patterns> search for a filename from installed packages'
' searchall <patterns> search for a filename from all available packages'
''
'Options:'
' -c, --cache <dir> set cache'
' -f, --file <file> read package names from file'
' -m, --mirror <url> set mirror'
' --help'
' --version'
)
printf '%s\n' "${rw[@]}"
2013-07-28 09:12:28 -07:00
}
function version()
{
echo apt-cyg version 0.59
echo Written by Stephen Jungels
echo
echo 'Copyright (c) 2005-9 Stephen Jungels. Released under the GPL.'
2013-07-28 09:12:28 -07:00
}
function findworkspace()
{
# default working directory and mirror
mirror=http://mirrors.kernel.org/sourceware/cygwin
2013-07-28 09:12:28 -07:00
cache=/setup
# work wherever setup worked last, if possible
if [ -e /etc/setup/last-cache ]
2013-07-28 09:12:28 -07:00
then
cache=$(cygpath -f /etc/setup/last-cache)
2013-07-28 09:12:28 -07:00
fi
if [ -e /etc/setup/last-mirror ]
2013-07-28 09:12:28 -07:00
then
mirror=$(</etc/setup/last-mirror)
2013-07-28 09:12:28 -07:00
fi
mirrordir=$(sed '
s / %2f g
s : %3a g
' <<< "$mirror")
2013-07-28 09:12:28 -07:00
echo Working directory is $cache
echo Mirror is $mirror
mkdir -p "$cache/$mirrordir/$ARCH"
cd "$cache/$mirrordir/$ARCH"
2013-07-28 09:12:28 -07:00
}
function getsetup()
{
(( noscripts )) && return
touch setup.ini
mv setup.ini setup.ini-save
wget -N $mirror/$ARCH/setup.bz2
if [ -e setup.bz2 ]
2013-07-28 09:12:28 -07:00
then
bunzip2 setup.bz2
mv setup setup.ini
echo Updated setup.ini
else
wget -N $mirror/$ARCH/setup.ini
if [ -e setup.ini ]
2013-07-28 09:12:28 -07:00
then
echo Updated setup.ini
else
mv setup.ini-save setup.ini
echo Error updating setup.ini, reverting
2013-07-28 09:12:28 -07:00
fi
fi
}
function checkpackages()
{
if (( ! ${#packages} ))
then
echo Nothing to do, exiting
exit
fi
2013-07-28 09:12:28 -07:00
}
# process options
dofile=0
2013-07-28 09:12:28 -07:00
noscripts=0
command=''
file=''
filepackages=''
packages=''
2013-07-28 09:12:28 -07:00
while (( $# ))
2013-07-28 09:12:28 -07:00
do
case "$1" in
--mirror | -m)
2013-07-28 09:12:28 -07:00
echo "$2" > /etc/setup/last-mirror
shift 2
2013-07-28 09:12:28 -07:00
;;
--cache | -c)
2013-07-28 09:12:28 -07:00
cygpath -aw "$2" > /etc/setup/last-cache
shift 2
2013-07-28 09:12:28 -07:00
;;
--noscripts)
noscripts=1
shift
;;
--help)
usage
exit 0
;;
--version)
version
exit 0
;;
--file | -f)
if (( ${#2} ))
2013-07-28 09:12:28 -07:00
then
file=$2
2013-07-28 09:12:28 -07:00
dofile=1
shift
else
echo No file name provided, ignoring $1 >&2
2013-07-28 09:12:28 -07:00
fi
shift
;;
update)
command=$1
shift
;;
list | listfiles | show | rdepends | search | searchall | install | remove)
if (( ${#command} ))
2013-07-28 09:12:28 -07:00
then
packages+=" $1"
2013-07-28 09:12:28 -07:00
else
command=$1
2013-07-28 09:12:28 -07:00
fi
shift
;;
*)
packages+=" $1"
2013-07-28 09:12:28 -07:00
shift
;;
esac
done
if (( dofile ))
2013-07-28 09:12:28 -07:00
then
if [ -f "$file" ]
2013-07-28 09:12:28 -07:00
then
filepackages+=$(awk '{printf " %s", $0}' "$file")
2013-07-28 09:12:28 -07:00
else
echo File $file not found, skipping
fi
packages+=" $filepackages"
2013-07-28 09:12:28 -07:00
fi
case "$command" in
update)
findworkspace
getsetup
;;
list)
if (( ${#packages} ))
then
findworkspace
for pkg in $packages
do
echo
echo Searching for installed packages matching $pkg:
awk 'NR>1 && $1~query && $0=$1' query="$pkg" /etc/setup/installed.db
echo
echo Searching for installable packages matching $pkg:
awk '$1 ~ query && $0 = $1' RS='\n\n@ ' FS='\n' query="$pkg" setup.ini
done
else
echo The following packages are installed: >&2
awk 'NR>1 && $0=$1' /etc/setup/installed.db
fi
2013-07-28 09:12:28 -07:00
;;
listfiles)
checkpackages
for pkg in $packages
do
if [ -e /etc/setup/"$pkg".lst.gz ]
then
gzip -cd /etc/setup/"$pkg".lst.gz
else
echo package $pkg is not installed
fi
echo
done |
head -c-1
;;
show)
2013-07-28 09:12:28 -07:00
checkpackages
findworkspace
for pkg in $packages
do
echo
awk '
$1 == query {
print
fd++
}
END {
if (! fd)
print "Unable to locate package " query
}
' RS='\n\n@ ' FS='\n' query="$pkg" setup.ini
2013-07-28 09:12:28 -07:00
done
;;
rdepends)
findworkspace
for pkg in $packages
do
awk '
/^@ / {
pn = $2
}
$0 ~ "^requires: .*"query {
print pn
}
' query="$pkg" setup.ini
done
;;
search)
2013-07-28 09:12:28 -07:00
checkpackages
for pkg in $packages
do
key=$(type -P "$pkg" | sed s./..)
(( ${#key} )) || key=$pkg
2013-07-28 09:12:28 -07:00
for manifest in /etc/setup/*.lst.gz
do
found=$(gzip -cd $manifest | grep -c "$key")
if (( found ))
2013-07-28 09:12:28 -07:00
then
package=$(sed '
s,/etc/setup/,,
s,.lst.gz,,
' <<< $manifest)
2013-07-28 09:12:28 -07:00
echo Found $key in the package $package
fi
done
done
;;
searchall)
for pkg in $packages
do
printf -v qs 'text=1&arch=%s&grep=%s' $ARCH "$pkg"
cd /tmp
wget -O matches cygwin.com/cgi-bin2/package-grep.cgi?"$qs"
awk '
NR > 1 &&
! /-src\t$/ &&
! mc[$2]++ &&
$0=$2
' FS=/ matches
done
;;
2013-07-28 09:12:28 -07:00
install)
checkpackages
findworkspace
for pkg in $packages
do
already=`grep -c "^$pkg " /etc/setup/installed.db`
if (( already ))
2013-07-28 09:12:28 -07:00
then
echo Package $pkg is already installed, skipping
continue
fi
echo
2013-07-28 09:12:28 -07:00
echo Installing $pkg
# look for package and save desc file
mkdir -p "release/$pkg"
awk '
$1 == package {
desc = $0
px++
}
END {
if (px == 1 && desc) print desc
else print "Package not found"
}
' RS='\n\n@ ' FS='\n' package="$pkg" setup.ini > "release/$pkg/desc"
desc=$(<"release/$pkg/desc")
if [[ $desc = 'Package not found' ]]
2013-07-28 09:12:28 -07:00
then
echo Package $pkg not found or ambiguous name, exiting
rm -r "release/$pkg"
exit 1
fi
echo Found package $pkg
2013-10-23 03:59:49 -07:00
# download and unpack the bz2 or xz file
2013-07-28 09:12:28 -07:00
# pick the latest version, which comes first
install=$(awk '/^install: / {print $2; exit}' "release/$pkg/desc")
2013-07-28 09:12:28 -07:00
if (( ! ${#install} ))
2013-07-28 09:12:28 -07:00
then
echo 'Could not find "install" in package description: obsolete package?'
2013-07-28 09:12:28 -07:00
exit 1
fi
file=`basename $install`
cd "release/$pkg"
wget -nc $mirror/$install
2013-07-28 09:12:28 -07:00
# check the md5
digest=$(awk '/^install: / {print $4; exit}' desc)
digactual=$(md5sum $file | awk NF=1)
if [ $digest != $digactual ]
2013-07-28 09:12:28 -07:00
then
echo MD5 sum did not match, exiting
exit 1
fi
2013-07-28 09:12:28 -07:00
echo "Unpacking..."
tar xvf $file -C / > "/etc/setup/$pkg.lst"
2013-07-28 09:12:28 -07:00
gzip -f "/etc/setup/$pkg.lst"
cd ../..
2013-07-28 09:12:28 -07:00
# update the package database
awk '
ins != 1 && pkg < $1 {
printf "%s %s 0\n", pkg, bz
ins=1
}
1
END {
if (ins != 1) printf "%s %s 0\n", pkg, bz
}
' pkg="$pkg" bz=$file /etc/setup/installed.db > /tmp/awk.$$
2013-07-28 09:12:28 -07:00
mv /etc/setup/installed.db /etc/setup/installed.db-save
mv /tmp/awk.$$ /etc/setup/installed.db
2013-07-28 09:12:28 -07:00
# recursively install required packages
requires=$(awk '
$0 ~ rq {
sub(rq, "")
print
}
' rq='^requires: ' "release/$pkg/desc")
2013-07-28 09:12:28 -07:00
warn=0
if (( ${#requires} ))
2013-07-28 09:12:28 -07:00
then
echo Package $pkg requires the following packages, installing:
echo $requires
for package in $requires
do
already=`grep -c "^$package " /etc/setup/installed.db`
if (( already ))
2013-07-28 09:12:28 -07:00
then
echo Package $package is already installed, skipping
continue
fi
apt-cyg --noscripts install $package
(( $? && warn++ ))
2013-07-28 09:12:28 -07:00
done
fi
if (( warn ))
2013-07-28 09:12:28 -07:00
then
echo 'Warning: some required packages did not install, continuing'
2013-07-28 09:12:28 -07:00
fi
2013-07-28 09:12:28 -07:00
# run all postinstall scripts
2013-07-28 09:12:28 -07:00
pis=`ls /etc/postinstall/*.sh 2>/dev/null | wc -l`
if (( pis && ! noscripts ))
2013-07-28 09:12:28 -07:00
then
echo Running postinstall scripts
for script in /etc/postinstall/*.sh
do
$script
mv $script $script.done
done
fi
echo Package $pkg installed
done
;;
remove)
checkpackages
for pkg in $packages
do
already=`grep -c "^$pkg " /etc/setup/installed.db`
if (( ! already ))
2013-07-28 09:12:28 -07:00
then
echo Package $pkg is not installed, skipping
continue
fi
for req in cygwin coreutils gawk bzip2 tar wget bash
2013-07-28 09:12:28 -07:00
do
if [[ $pkg = $req ]]
2013-07-28 09:12:28 -07:00
then
echo apt-cyg cannot remove package $pkg, exiting
exit 1
fi
done
if [ ! -e "/etc/setup/$pkg.lst.gz" ]
2013-07-28 09:12:28 -07:00
then
echo Package manifest missing, cannot remove $pkg. Exiting
2013-07-28 09:12:28 -07:00
exit 1
fi
echo Removing $pkg
# run preremove scripts
if [ -e "/etc/preremove/$pkg.sh" ]
2013-07-28 09:12:28 -07:00
then
"/etc/preremove/$pkg.sh"
rm "/etc/preremove/$pkg.sh"
fi
gzip -cd "/etc/setup/$pkg.lst.gz" |
awk '/[^\/]$/ {print "rm -f \"/" $0 "\""}' | sh
2013-07-28 09:12:28 -07:00
rm "/etc/setup/$pkg.lst.gz"
rm -f /etc/postinstall/$pkg.sh.done
awk '$1 != pkg' pkg="$pkg" /etc/setup/installed.db > /tmp/awk.$$
2013-07-28 09:12:28 -07:00
mv /etc/setup/installed.db /etc/setup/installed.db-save
mv /tmp/awk.$$ /etc/setup/installed.db
echo Package $pkg removed
done
;;
*)
usage
;;
esac