2007-06-02 20:59:54 -04:00
|
|
|
#!/bin/bash -e
|
2006-12-21 14:11:22 -05:00
|
|
|
#
|
2006-12-21 12:42:58 -05:00
|
|
|
# makepkg - make packages compatable for use with pacman
|
2007-05-30 11:04:49 -04:00
|
|
|
# @configure_input@
|
2006-12-21 14:11:22 -05:00
|
|
|
#
|
2007-05-30 11:04:49 -04:00
|
|
|
# Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org>
|
2006-11-14 02:58:42 -05:00
|
|
|
# Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
2006-10-19 11:15:20 -04:00
|
|
|
# Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2006-11-14 02:58:42 -05:00
|
|
|
# Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
|
|
|
|
# Copyright (c) 2006 by Alex Smith <alex@alex-smith.me.uk>
|
|
|
|
# Copyright (c) 2006 by Andras Voroskoi <voroskoi@frugalware.org>
|
2006-12-21 14:11:22 -05:00
|
|
|
#
|
2005-03-14 20:51:43 -05:00
|
|
|
# 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.
|
2006-12-21 14:11:22 -05:00
|
|
|
#
|
2005-03-14 20:51:43 -05:00
|
|
|
# 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.
|
2006-12-21 14:11:22 -05:00
|
|
|
#
|
2005-03-14 20:51:43 -05:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2007-05-30 11:04:49 -04:00
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
2005-03-14 20:51:43 -05:00
|
|
|
# USA.
|
|
|
|
#
|
|
|
|
|
2007-03-31 20:07:37 -04:00
|
|
|
# gettext initialization
|
2007-06-01 10:28:52 -04:00
|
|
|
export TEXTDOMAIN='pacman'
|
|
|
|
export TEXTDOMAINDIR='@localedir@'
|
2007-03-31 20:07:37 -04:00
|
|
|
|
2007-04-11 15:35:29 -04:00
|
|
|
myver='@PACKAGE_VERSION@'
|
2007-06-01 10:28:52 -04:00
|
|
|
confdir='@sysconfdir@'
|
|
|
|
startdir="$PWD"
|
2007-05-30 14:32:04 -04:00
|
|
|
srcdir="$startdir/src"
|
|
|
|
pkgdir="$startdir/pkg"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-01-21 21:16:41 -05:00
|
|
|
# Options
|
2007-04-11 15:06:25 -04:00
|
|
|
ASROOT=0
|
2006-01-21 21:16:41 -05:00
|
|
|
CLEANUP=0
|
|
|
|
CLEANCACHE=0
|
|
|
|
DEP_BIN=0
|
|
|
|
DEP_SRC=0
|
|
|
|
FORCE=0
|
2007-04-11 15:06:25 -04:00
|
|
|
INFAKEROOT=0
|
2006-11-14 02:58:42 -05:00
|
|
|
GENINTEG=0
|
2006-01-21 21:16:41 -05:00
|
|
|
INSTALL=0
|
|
|
|
NOBUILD=0
|
|
|
|
NODEPS=0
|
|
|
|
NOEXTRACT=0
|
|
|
|
RMDEPS=0
|
2006-12-21 12:42:58 -05:00
|
|
|
REPKG=0
|
2006-11-14 02:58:42 -05:00
|
|
|
LOGGING=0
|
2007-05-30 14:27:13 -04:00
|
|
|
SOURCEONLY=0
|
2006-01-21 21:16:41 -05:00
|
|
|
|
2006-02-16 17:57:25 -05:00
|
|
|
PACMAN_OPTS=
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
### SUBROUTINES ###
|
|
|
|
|
|
|
|
plain() {
|
2007-05-28 15:21:58 -04:00
|
|
|
local mesg=$1; shift
|
2007-02-04 13:28:21 -05:00
|
|
|
if [ ! "$USE_COLOR" = "n" -a "$(check_buildenv color)" = "y" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-05-28 15:21:58 -04:00
|
|
|
printf " ${mesg}\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
}
|
2006-12-21 12:42:58 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
msg() {
|
2007-05-28 15:21:58 -04:00
|
|
|
local mesg=$1; shift
|
2007-02-04 13:28:21 -05:00
|
|
|
if [ ! "$USE_COLOR" = "n" -a "$(check_buildenv color)" = "y" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "\033[1;32m==>\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "==> ${mesg}\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
}
|
2006-11-14 02:58:42 -05:00
|
|
|
|
|
|
|
msg2() {
|
2007-05-28 15:21:58 -04:00
|
|
|
local mesg=$1; shift
|
2007-02-04 13:28:21 -05:00
|
|
|
if [ ! "$USE_COLOR" = "n" -a "$(check_buildenv color)" = "y" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "\033[1;34m ->\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
2006-12-20 20:53:40 -05:00
|
|
|
else
|
2007-05-28 15:21:58 -04:00
|
|
|
printf " -> ${mesg}\n" "$@" >&2
|
2006-12-20 20:53:40 -05:00
|
|
|
fi
|
2006-11-14 02:58:42 -05:00
|
|
|
}
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
warning() {
|
2007-05-28 15:21:58 -04:00
|
|
|
local mesg=$1; shift
|
2007-02-04 13:28:21 -05:00
|
|
|
if [ ! "$USE_COLOR" = "n" -a "$(check_buildenv color)" = "y" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "\033[1;33m==> WARNING:\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "==> WARNING: ${mesg}\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
}
|
2006-12-21 12:42:58 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
error() {
|
2007-05-28 15:21:58 -04:00
|
|
|
local mesg=$1; shift
|
2007-02-04 13:28:21 -05:00
|
|
|
if [ ! "$USE_COLOR" = "n" -a "$(check_buildenv color)" = "y" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "\033[1;31m==> ERROR:\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "==> ERROR: ${mesg}\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-06-02 20:59:54 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Special exit call for traps, Don't print any error messages when inside,
|
|
|
|
# the fakeroot call, the error message will be printed by the main call.
|
|
|
|
##
|
|
|
|
trap_exit() {
|
|
|
|
if [ "$INFAKEROOT" = "0" ]; then
|
|
|
|
echo
|
|
|
|
error "$@"
|
|
|
|
fi
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
##
|
|
|
|
# Clean up function. Called automatically when the script exits.
|
|
|
|
##
|
|
|
|
clean_up() {
|
|
|
|
local EXIT_CODE=$?
|
|
|
|
|
|
|
|
if [ "$INFAKEROOT" = "1" ]; then
|
|
|
|
# Don't clean up when leaving fakeroot, we're not done yet.
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $EXIT_CODE -eq 0 -a "$CLEANUP" = "1" ]; then
|
|
|
|
# If it's a clean exit and -c/--clean has been passed...
|
|
|
|
msg "$(gettext "Cleaning up...")"
|
|
|
|
cd "$startdir"
|
|
|
|
rm -rf pkg src
|
|
|
|
if [ "$pkgname" != "" ]; then
|
|
|
|
# Can't do this unless the BUILDSCRIPT has been sourced.
|
|
|
|
rm -f "${pkgname}-${pkgver}-${pkgrel}-${CARCH}.log*"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
remove_deps
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
##
|
|
|
|
# Signal Traps
|
|
|
|
##
|
|
|
|
trap 'clean_up' 0
|
|
|
|
trap 'trap_exit "$(gettext "TERM signal caught. Exiting...")"' TERM HUP QUIT
|
|
|
|
trap 'trap_exit "$(gettext "Aborted by user! Exiting...")"' INT
|
|
|
|
trap 'trap_exit "$(gettext "An unknown error has occured. Exiting...")"' ERR
|
|
|
|
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
strip_url() {
|
2006-11-14 02:58:42 -05:00
|
|
|
echo "$1" | sed 's|^.*://.*/||g'
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-06-02 13:04:41 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Checks to see if options are present in makepkg.conf or PKGBUILD;
|
|
|
|
# PKGBUILD options always take precedence.
|
|
|
|
#
|
|
|
|
# usage : check_option( $option )
|
|
|
|
# return : y - enabled
|
|
|
|
# n - disabled
|
|
|
|
# ? - not found
|
|
|
|
##
|
2006-01-21 21:16:41 -05:00
|
|
|
check_option() {
|
2007-06-02 13:04:41 -04:00
|
|
|
local ret=$(in_opt_array "$1" ${options[@]})
|
|
|
|
if [ "$ret" != '?' ]; then
|
|
|
|
echo $ret
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# BEGIN DEPRECATED
|
|
|
|
# TODO: This code should be removed in the next release of makepkg.
|
2007-02-04 13:28:21 -05:00
|
|
|
local needle=$(echo $1 | tr [:upper:] [:lower:])
|
2007-06-02 13:04:41 -04:00
|
|
|
local opt
|
|
|
|
for opt in ${options[@]}; do
|
|
|
|
opt=$(echo $opt | tr [:upper:] [:lower:])
|
|
|
|
if [ "$opt" = "no$needle" ]; then
|
2007-04-05 11:36:38 -04:00
|
|
|
warning "$(gettext "Options beginning with 'no' will be deprecated in the next version of makepkg!")"
|
2007-06-02 13:04:41 -04:00
|
|
|
plain "$(gettext "Please replace 'no' with '!': %s -> %s.")" "no$needle" "!$needle"
|
|
|
|
echo 'n' # Disabled
|
2007-02-06 01:54:13 -05:00
|
|
|
return
|
2007-06-02 13:04:41 -04:00
|
|
|
elif [ "$opt" = "keepdocs" -a "$needle" = "docs" ]; then
|
2007-03-31 20:07:37 -04:00
|
|
|
warning "$(gettext "Option 'keepdocs' may not work as intended. Please replace with 'docs'.")"
|
2007-06-02 13:04:41 -04:00
|
|
|
echo 'y' # Enabled
|
2007-02-04 13:28:21 -05:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
2007-06-02 13:04:41 -04:00
|
|
|
# END DEPRECATED
|
|
|
|
|
|
|
|
# fall back to makepkg.conf options
|
|
|
|
ret=$(in_opt_array "$1" ${OPTIONS[@]})
|
|
|
|
if [ "$ret" != '?' ]; then
|
|
|
|
echo $ret
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo '?' # Not Found
|
2007-02-04 13:28:21 -05:00
|
|
|
}
|
|
|
|
|
2007-06-02 13:04:41 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Check if option is present in BUILDENV
|
|
|
|
#
|
|
|
|
# usage : check_buildenv( $option )
|
|
|
|
# return : y - enabled
|
|
|
|
# n - disabled
|
|
|
|
# ? - not found
|
|
|
|
##
|
2007-02-04 13:28:21 -05:00
|
|
|
check_buildenv() {
|
2007-06-02 13:04:41 -04:00
|
|
|
echo $(in_opt_array "$1" ${BUILDENV[@]})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
##
|
|
|
|
# usage : in_opt_array( $needle, $haystack )
|
|
|
|
# return : y - enabled
|
|
|
|
# n - disabled
|
|
|
|
# ? - not found
|
|
|
|
##
|
|
|
|
in_opt_array() {
|
|
|
|
local needle=$(echo $1 | tr [:upper:] [:lower:]); shift
|
|
|
|
|
|
|
|
local opt
|
|
|
|
for opt in "$@"; do
|
|
|
|
opt=$(echo $opt | tr [:upper:] [:lower:])
|
|
|
|
if [ "$opt" = "$needle" ]; then
|
|
|
|
echo 'y' # Enabled
|
2007-02-04 13:28:21 -05:00
|
|
|
return
|
2007-06-02 13:04:41 -04:00
|
|
|
elif [ "$opt" = "!$needle" ]; then
|
|
|
|
echo 'n' # Disabled
|
2006-01-21 21:16:41 -05:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
2007-06-02 13:04:41 -04:00
|
|
|
|
|
|
|
echo '?' # Not Found
|
2006-01-21 21:16:41 -05:00
|
|
|
}
|
|
|
|
|
2007-06-02 13:04:41 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# usage : in_array( $needle, $haystack )
|
|
|
|
# return : 0 - found
|
|
|
|
# 1 - not found
|
|
|
|
##
|
2006-11-14 02:58:42 -05:00
|
|
|
in_array() {
|
2007-06-02 13:04:41 -04:00
|
|
|
local needle=$1; shift
|
|
|
|
[ -z "$1" ] && return 1 # Not Found
|
|
|
|
local item
|
|
|
|
for item in "$@"; do
|
|
|
|
[ "$item" = "$needle" ] && return 0 # Found
|
2006-12-20 20:53:40 -05:00
|
|
|
done
|
2007-06-02 13:04:41 -04:00
|
|
|
return 1 # Not Found
|
2006-11-14 02:58:42 -05:00
|
|
|
}
|
|
|
|
|
2007-06-02 13:39:47 -04:00
|
|
|
get_downloadclient() {
|
2007-04-04 22:30:05 -04:00
|
|
|
# $1 = url with valid protocol prefix
|
|
|
|
local url=$1
|
|
|
|
local proto=$(echo $netfile | sed 's|://.*||')
|
|
|
|
|
|
|
|
# loop through DOWNLOAD_AGENTS variable looking for protocol
|
2007-06-01 10:28:52 -04:00
|
|
|
local i
|
2007-04-04 22:30:05 -04:00
|
|
|
for i in "${DLAGENTS[@]}"; do
|
|
|
|
local handler=$(echo $i | sed 's|::.*||')
|
|
|
|
if [ "$proto" == "$handler" ]; then
|
|
|
|
agent=$(echo $i | sed 's|^.*::||')
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# if we didn't find an agent, return an error
|
|
|
|
if [ -z "$agent" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "There is no agent set up to handle %s URLs. Check %s.")" "$proto" "$confdir/makepkg.conf"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1 # $E_CONFIG_ERROR
|
2007-04-04 22:30:05 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# ensure specified program is installed
|
|
|
|
local program="$(echo $agent | awk '{print $1 }')"
|
|
|
|
if [ ! -x "$program" ]; then
|
|
|
|
local baseprog=$(basename $program)
|
2007-05-28 15:21:58 -04:00
|
|
|
error "$(gettext "The download program %s is not installed.")" "$baseprog"
|
2007-06-02 13:39:48 -04:00
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1 # $E_MISSING_PROGRAM
|
2007-04-04 22:30:05 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$agent"
|
|
|
|
}
|
|
|
|
|
2007-06-02 13:39:47 -04:00
|
|
|
check_deps() {
|
2006-01-26 18:48:28 -05:00
|
|
|
[ $# -gt 0 ] || return
|
|
|
|
|
2007-02-14 00:52:49 -05:00
|
|
|
pmout=$(pacman $PACMAN_OPTS -T $*)
|
2005-03-14 20:51:43 -05:00
|
|
|
ret=$?
|
2007-02-26 03:43:02 -05:00
|
|
|
if [ $ret -eq 1 ]; then #unresolved deps
|
2007-04-16 21:51:18 -04:00
|
|
|
echo "$pmout"
|
2007-02-14 00:52:49 -05:00
|
|
|
elif [ $ret -ne 0 ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Pacman returned a fatal error (%i): %s")" "$ret" "$pmout"
|
2007-02-14 00:52:49 -05:00
|
|
|
exit 1
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
handledeps() {
|
2007-05-30 12:47:47 -04:00
|
|
|
local R_DEPS_SATISFIED=0
|
|
|
|
local R_DEPS_MISSING=1
|
|
|
|
|
|
|
|
[ $# -eq 0 ] && return $R_DEPS_SATISFIED
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-05-30 12:47:47 -04:00
|
|
|
local deplist="$*"
|
2007-06-02 12:41:15 -04:00
|
|
|
local dep depstrip striplist
|
2007-03-19 18:48:54 -04:00
|
|
|
for dep in $deplist; do
|
2007-06-02 12:41:15 -04:00
|
|
|
depstrip="$(echo $dep | sed -e 's|=.*$||' -e 's|>.*$||' -e 's|<.*$||')"
|
2007-03-19 18:48:54 -04:00
|
|
|
striplist="$striplist $depstrip"
|
|
|
|
done
|
|
|
|
|
2007-05-30 12:47:47 -04:00
|
|
|
if [ "$DEP_SRC" = "0" -a "$DEP_BIN" = "0" ]; then
|
|
|
|
return $R_DEPS_MISSING
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$DEP_BIN" = "1" ]; then
|
|
|
|
# install missing deps from binary packages (using pacman -S)
|
|
|
|
msg "$(gettext "Installing missing dependencies...")"
|
|
|
|
local ret=0
|
|
|
|
|
2007-06-01 13:43:41 -04:00
|
|
|
if [ "$ASROOT" = 0 ]; then
|
2007-05-30 12:47:47 -04:00
|
|
|
sudo pacman $PACMAN_OPTS -S $striplist || ret=$?
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-05-30 12:47:47 -04:00
|
|
|
pacman $PACMAN_OPTS -S $striplist || ret=$?
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
2007-05-30 12:47:47 -04:00
|
|
|
|
|
|
|
if [ $ret -ne 0 ]; then
|
|
|
|
error "$(gettext "Pacman failed to install missing dependencies.")"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
fi
|
|
|
|
elif [ "$DEP_SRC" = "1" ]; then
|
|
|
|
msg "$(gettext "Building missing dependencies...")"
|
|
|
|
|
|
|
|
# install missing deps by building them from source.
|
|
|
|
# we look for each package name in $SRCROOT and build it.
|
|
|
|
if [ "$SRCROOT" = "" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Source root cannot be found - please make sure it is specified in %s.")" "$confdir/makepkg.conf"
|
2007-05-30 12:47:47 -04:00
|
|
|
exit 1 # TODO: error code
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
2007-05-30 12:47:47 -04:00
|
|
|
|
|
|
|
# TODO: handle version comparators (eg, glibc>=2.2.5)
|
|
|
|
for dep in $striplist; do
|
|
|
|
local candidates="$(find "$SRCROOT" -type d -name "$dep")"
|
|
|
|
if [ "$candidates" = "" ]; then
|
|
|
|
error "$(gettext "Could not find '%s' under %s")" "$dep" "$SRCROOT"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
fi
|
|
|
|
|
|
|
|
local makepkg_opts='-i -c -b'
|
|
|
|
[ "$RMDEPS" = "1" ] && makepkg_opts="$makepkg_opts -r"
|
|
|
|
local ret packagedir
|
|
|
|
for packagedir in $candidates; do
|
|
|
|
if [ -f "$packagedir/$BUILDSCRIPT" ]; then
|
|
|
|
cd "$packagedir"
|
|
|
|
ret=0
|
|
|
|
PKGDEST="$PKGDEST" makepkg $makepkg_opts || ret=$?
|
|
|
|
[ $ret -eq 0 ] && continue 2
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
error "$(gettext "Failed to build '%s'")" "$dep"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
done
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
2006-12-21 12:42:58 -05:00
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
# rerun any additional sh scripts found in /etc/profile.d/
|
2007-05-30 12:47:47 -04:00
|
|
|
local script
|
|
|
|
for script in /etc/profile.d/*.sh; do
|
|
|
|
if [ -x $script ]; then
|
|
|
|
source $script &>/dev/null
|
2006-11-14 02:58:42 -05:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2007-05-30 12:47:47 -04:00
|
|
|
return $R_DEPS_SATISFIED
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-06-02 13:39:47 -04:00
|
|
|
resolve_deps() {
|
2007-06-02 12:41:15 -04:00
|
|
|
# $pkgdeps is a GLOBAL variable, used by remove_deps()
|
2007-05-30 12:47:47 -04:00
|
|
|
local R_DEPS_SATISFIED=0
|
2007-06-02 12:41:15 -04:00
|
|
|
local R_DEPS_MISSING=1
|
2007-05-30 12:47:47 -04:00
|
|
|
|
2007-06-02 12:41:15 -04:00
|
|
|
local deplist="$(check_deps $*)"
|
|
|
|
if [ "$deplist" = "" ]; then
|
|
|
|
return $R_DEPS_SATISFIED
|
|
|
|
else
|
|
|
|
pkgdeps="$pkgdeps $deplist"
|
|
|
|
fi
|
2007-05-30 12:47:47 -04:00
|
|
|
|
|
|
|
if handledeps $deplist; then
|
|
|
|
# check deps again to make sure they were resolved
|
2007-06-02 13:39:47 -04:00
|
|
|
deplist="$(check_deps $*)"
|
2007-05-30 12:47:47 -04:00
|
|
|
[ "$deplist" = "" ] && return $R_DEPS_SATISFIED
|
|
|
|
elif [ "$DEP_BIN" = "1" -o "$DEP_SRC" = "1" ]; then
|
|
|
|
error "$(gettext "Failed to install all missing dependencies.")"
|
2007-02-14 00:52:49 -05:00
|
|
|
fi
|
|
|
|
|
2007-05-30 12:47:47 -04:00
|
|
|
msg "$(gettext "Missing Dependencies:")"
|
|
|
|
local dep
|
|
|
|
for dep in $deplist; do
|
|
|
|
msg2 "$dep"
|
|
|
|
done
|
|
|
|
|
|
|
|
return $R_DEPS_MISSING
|
2007-02-14 00:52:49 -05:00
|
|
|
}
|
|
|
|
|
2007-01-16 23:54:55 -05:00
|
|
|
# fix flyspray bug #5923
|
2007-06-02 13:39:47 -04:00
|
|
|
remove_deps() {
|
2007-06-02 12:41:15 -04:00
|
|
|
# $pkgdeps is a GLOBAL variable, set by resolve_deps()
|
2007-05-30 12:47:47 -04:00
|
|
|
[ "$RMDEPS" = "0" ] && return
|
2007-06-02 12:41:15 -04:00
|
|
|
[ "$pkgdeps" = "" ] && return
|
2007-05-30 12:47:47 -04:00
|
|
|
|
2007-06-02 12:41:15 -04:00
|
|
|
local dep depstrip deplist
|
|
|
|
for dep in $pkgdeps; do
|
|
|
|
depstrip=$(echo $dep | sed -e 's|=.*$||' -e 's|>.*$||' -e 's|<.*$||')
|
|
|
|
deplist="$deplist $depstrip"
|
2007-03-19 21:34:16 -04:00
|
|
|
done
|
|
|
|
|
2007-05-30 12:47:47 -04:00
|
|
|
msg "Removing installed dependencies..."
|
2007-06-01 13:43:41 -04:00
|
|
|
if [ "$ASROOT" = "0" ]; then
|
2007-06-02 12:41:15 -04:00
|
|
|
sudo pacman $PACMAN_OPTS -Rs $deplist
|
2007-05-30 12:47:47 -04:00
|
|
|
else
|
2007-06-02 12:41:15 -04:00
|
|
|
pacman $PACMAN_OPTS -Rs $deplist
|
2007-01-16 23:54:55 -05:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-06-01 17:10:27 -04:00
|
|
|
download_sources() {
|
|
|
|
msg "$(gettext "Retrieving Sources...")"
|
|
|
|
local netfile
|
|
|
|
for netfile in ${source[@]}; do
|
|
|
|
local file=$(strip_url "$netfile")
|
|
|
|
if [ -f "../$file" ]; then
|
|
|
|
msg2 "$(gettext "Found %s in build dir")" "$file"
|
|
|
|
cp "../$file" .
|
|
|
|
continue
|
|
|
|
elif [ -f "$SRCDEST/$file" ]; then
|
|
|
|
msg2 "$(gettext "Using cached copy of %s")" "$file"
|
|
|
|
cp "$SRCDEST/$file" .
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# find the client we should use for this URL
|
2007-06-02 13:39:47 -04:00
|
|
|
local dlclient=$(get_downloadclient $netfile) || exit $?
|
2007-06-01 17:10:27 -04:00
|
|
|
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Downloading %s...")" "$file"
|
2007-06-01 17:10:27 -04:00
|
|
|
# fix flyspray bug #3289
|
|
|
|
local ret=0
|
|
|
|
$dlclient "$netfile" || ret=$?
|
|
|
|
if [ $ret -gt 0 ]; then
|
|
|
|
error "$(gettext "Failure while downloading %s")" "$file"
|
2007-06-02 13:39:48 -04:00
|
|
|
plain "$(gettext "Aborting...")"
|
2007-06-01 17:10:27 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$SRCDEST" ]; then
|
|
|
|
mkdir -p "$SRCDEST" && cp "$file" "$SRCDEST" || ret=$?
|
|
|
|
if [ $ret -gt 0 ]; then
|
|
|
|
warning "$(gettext "You do not have correct permissions to cache source in %s")" "$SRCDEST"
|
|
|
|
cp "$file" ..
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
cp "$file" ..
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
generate_checksums() {
|
|
|
|
msg "$(gettext "Generating checksums for source files...")"
|
|
|
|
plain ""
|
|
|
|
|
|
|
|
local integ
|
|
|
|
for integ in ${INTEGRITY_CHECK[@]}; do
|
|
|
|
integ="$(echo $integ | tr [:upper:] [:lower:])"
|
|
|
|
case "$integ" in
|
|
|
|
md5|sha1|sha256|sha384|sha512) : ;;
|
|
|
|
*)
|
|
|
|
error "$(gettext "Invalid integrity algorithm '%s' specified.")" "$integ"
|
|
|
|
exit 1;; # $E_CONFIG_ERROR
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ ! $(type -p "${integ}sum") ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Cannot find the '%s' program.")" "${integ}sum"
|
2007-06-01 17:10:27 -04:00
|
|
|
exit 1 # $E_MISSING_PROGRAM
|
|
|
|
fi
|
|
|
|
|
|
|
|
local ct=0
|
|
|
|
local numsrc=${#source[@]}
|
|
|
|
echo -n "${integ}sums=("
|
|
|
|
|
|
|
|
local i=0;
|
|
|
|
local indent=''
|
|
|
|
while [ $i -lt $((${#integ}+6)) ]; do
|
|
|
|
indent="$indent "
|
|
|
|
i=$(($i+1))
|
|
|
|
done
|
|
|
|
|
|
|
|
local netfile
|
|
|
|
for netfile in ${source[@]}; do
|
|
|
|
local file="$(strip_url "$netfile")"
|
|
|
|
local sum="$(${integ}sum "$file" | cut -d ' ' -f 1)"
|
|
|
|
[ $ct -gt 0 ] && echo -n "$indent"
|
|
|
|
echo -n "'$sum'"
|
|
|
|
ct=$(($ct+1))
|
|
|
|
[ $ct -lt $numsrc ] && echo
|
|
|
|
done
|
|
|
|
|
|
|
|
echo ")"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
check_checksums() {
|
|
|
|
local integ
|
|
|
|
for integ in ${INTEGRITY_CHECK[@]}; do
|
|
|
|
integ="$(echo $integ | tr [:upper:] [:lower:])"
|
|
|
|
case "$integ" in
|
|
|
|
md5|sha1|sha256|sha384|sha512) : ;;
|
|
|
|
*)
|
|
|
|
error "$(gettext "Invalid integrity algorithm '%s' specified")" "$integ"
|
|
|
|
exit 1;; # $E_CONFIG_ERROR
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ ! $(type -p "${integ}sum") ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Cannot find the '%s' program.")" "${integ}sum"
|
2007-06-01 17:10:27 -04:00
|
|
|
exit 1 # $E_MISSING_PROGRAM
|
|
|
|
fi
|
|
|
|
|
|
|
|
local integrity_sums=($(eval echo \${${integ}sums[@]}))
|
|
|
|
if [ ${#integrity_sums[@]} -eq ${#source[@]} ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg "$(gettext "Validating source files with %s...")" "${integ}sums"
|
2007-06-01 17:10:27 -04:00
|
|
|
local errors=0
|
|
|
|
local idx=0
|
|
|
|
local file
|
|
|
|
for file in "${source[@]}"; do
|
|
|
|
file="$(strip_url "$file")"
|
|
|
|
echo -n " $file ... " >&2
|
|
|
|
|
|
|
|
if echo "${integrity_sums[$idx]} $file" | ${integ}sum --status -c - &>/dev/null; then
|
|
|
|
echo "$(gettext "Passed")" >&2
|
|
|
|
else
|
|
|
|
echo "$(gettext "FAILED")" >&2
|
|
|
|
errors=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
idx=$(($idx+1))
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $errors -gt 0 ]; then
|
|
|
|
error "$(gettext "One or more files did not pass the validity check!")"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
warning "$(gettext "Integrity checks (%s) are missing or incomplete.")" "$integ"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
extract_sources() {
|
|
|
|
msg "$(gettext "Extracting Sources...")"
|
|
|
|
local netfile
|
|
|
|
for netfile in "${source[@]}"; do
|
|
|
|
unziphack=0
|
|
|
|
file=$(strip_url "$netfile")
|
|
|
|
if in_array "$file" ${noextract[@]}; then
|
|
|
|
#skip source files in the noextract=() array
|
|
|
|
# these are marked explicitly to NOT be extracted
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# fix flyspray #6246
|
|
|
|
local file_type=$(file -biz "$file")
|
|
|
|
local cmd=''
|
|
|
|
case "$file_type" in
|
|
|
|
*application/x-tar*application/x-compress*)
|
|
|
|
cmd="tar -xzf $file" ;;
|
|
|
|
*application/x-tar*)
|
|
|
|
cmd="tar -xf $file" ;;
|
|
|
|
*application/x-zip*)
|
|
|
|
unziphack=1
|
|
|
|
cmd="unzip -qqo $file" ;;
|
|
|
|
*application/x-cpio*)
|
|
|
|
cmd="bsdtar -x -f $file" ;;
|
|
|
|
*application/x-gzip*)
|
|
|
|
cmd="gunzip -d -f $file" ;;
|
|
|
|
*application/x-bzip*)
|
|
|
|
cmd="bunzip2 -f $file" ;;
|
2007-06-02 12:41:15 -04:00
|
|
|
*)
|
|
|
|
# Don't know what to use to extract this file,
|
|
|
|
# skip to the next file
|
|
|
|
continue;;
|
2007-06-01 17:10:27 -04:00
|
|
|
esac
|
|
|
|
|
2007-06-02 12:41:15 -04:00
|
|
|
local ret=0
|
|
|
|
msg2 "$cmd"
|
|
|
|
$cmd || ret=$?
|
|
|
|
if [ $ret -ne 0 ]; then
|
|
|
|
# unzip will return a 1 as a warning, it is not an error
|
|
|
|
if [ $unziphack -ne 1 -o $ret -ne 1 ]; then
|
|
|
|
error "$(gettext "Failed to extract %s")" "$file"
|
2007-06-02 13:39:48 -04:00
|
|
|
plain "$(gettext "Aborting...")"
|
2007-06-02 12:41:15 -04:00
|
|
|
exit 1
|
2007-06-01 17:10:27 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $EUID -eq 0 ]; then
|
|
|
|
# chown all source files to root.root
|
|
|
|
chown -R root.root "$srcdir"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-04-11 15:06:09 -04:00
|
|
|
run_build() {
|
|
|
|
# use distcc if it is requested (check buildenv and PKGBUILD opts)
|
|
|
|
if [ "$(check_buildenv distcc)" = "y" -a "$(check_option distcc)" != "n" ]; then
|
2007-04-11 15:06:17 -04:00
|
|
|
[ -d /usr/lib/distcc/bin ] && export PATH="/usr/lib/distcc/bin:$PATH"
|
2007-05-16 13:18:19 -04:00
|
|
|
export DISTCC_HOSTS
|
2007-04-11 15:06:09 -04:00
|
|
|
elif [ "$(check_option distcc)" = "n" ]; then
|
|
|
|
# if it is not wanted, clear the makeflags too
|
|
|
|
MAKEFLAGS=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
# use ccache if it is requested (check buildenv and PKGBUILD opts)
|
|
|
|
if [ "$(check_buildenv ccache)" = "y" -a "$(check_option ccache)" != "n" ]; then
|
2007-04-11 15:06:17 -04:00
|
|
|
[ -d /usr/lib/ccache/bin ] && export PATH="/usr/lib/ccache/bin:$PATH"
|
2007-04-11 15:06:09 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# clear user-specified makeflags if requested
|
|
|
|
if [ "$(check_option makeflags)" = "n" ]; then
|
|
|
|
MAKEFLAGS=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
msg "$(gettext "Starting build()...")"
|
2007-05-31 00:02:32 -04:00
|
|
|
cd "$srcdir"
|
2007-04-11 15:06:09 -04:00
|
|
|
|
2007-05-14 11:36:04 -04:00
|
|
|
# ensure we have a sane umask set
|
2007-04-11 15:06:09 -04:00
|
|
|
umask 0022
|
|
|
|
|
2007-05-16 13:18:19 -04:00
|
|
|
# ensure all necessary build variables are exported
|
|
|
|
export CFLAGS CXXFLAGS MAKEFLAGS
|
2007-04-11 15:06:09 -04:00
|
|
|
|
2007-04-11 15:06:17 -04:00
|
|
|
local ret=0
|
2007-04-11 15:06:09 -04:00
|
|
|
if [ "$LOGGING" = "1" ]; then
|
|
|
|
BUILDLOG="${startdir}/${pkgname}-${pkgver}-${pkgrel}-${CARCH}.log"
|
|
|
|
if [ -f "$BUILDLOG" ]; then
|
2007-04-11 15:06:17 -04:00
|
|
|
local i=1
|
2007-04-11 15:06:09 -04:00
|
|
|
while true; do
|
|
|
|
if [ -f "$BUILDLOG.$i" ]; then
|
|
|
|
i=$(($i +1))
|
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
mv "$BUILDLOG" "$BUILDLOG.$i"
|
|
|
|
fi
|
|
|
|
|
|
|
|
build 2>&1 | tee "$BUILDLOG"; ret=${PIPESTATUS[0]}
|
|
|
|
else
|
|
|
|
build 2>&1 || ret=$?
|
|
|
|
fi
|
2007-04-11 15:06:17 -04:00
|
|
|
|
2007-04-11 15:06:09 -04:00
|
|
|
if [ $ret -gt 0 ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Build Failed.")"
|
|
|
|
plain "$(gettext "Aborting...")"
|
2007-06-02 13:39:47 -04:00
|
|
|
remove_deps
|
2007-06-02 13:39:48 -04:00
|
|
|
exit 2 # $E_BUILD_FAILED
|
2007-04-11 15:06:09 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-04-11 15:05:54 -04:00
|
|
|
tidy_install() {
|
2007-05-31 00:02:32 -04:00
|
|
|
cd "$pkgdir"
|
2007-05-14 11:36:04 -04:00
|
|
|
msg "$(gettext "Tidying install...")"
|
2007-04-11 15:06:01 -04:00
|
|
|
|
2007-04-11 15:05:54 -04:00
|
|
|
if [ "$(check_option docs)" = "n" ]; then
|
2007-04-11 15:06:01 -04:00
|
|
|
msg2 "$(gettext "Removing info/doc files...")"
|
2007-04-11 15:05:54 -04:00
|
|
|
#fix flyspray bug #5021
|
|
|
|
rm -rf ${DOC_DIRS[@]}
|
|
|
|
fi
|
|
|
|
|
2007-04-11 15:06:01 -04:00
|
|
|
if [ -d usr/share/man ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Moving usr/share/man files to usr/man...")"
|
2007-04-11 15:06:01 -04:00
|
|
|
mkdir -p usr/man
|
|
|
|
cp -a usr/share/man/* usr/man/
|
|
|
|
rm -rf usr/share/man
|
2007-04-11 15:05:54 -04:00
|
|
|
fi
|
|
|
|
|
2007-04-11 15:06:01 -04:00
|
|
|
|
|
|
|
msg2 "$(gettext "Compressing man pages...")"
|
|
|
|
local manpage ext file link
|
|
|
|
find {usr{,/local},opt/*}/man -type f 2>/dev/null | while read manpage ; do
|
|
|
|
ext="${manpage##*.}"
|
|
|
|
file="${manpage##*/}"
|
2007-04-11 15:05:54 -04:00
|
|
|
if [ "$ext" != "gz" -a "$ext" != "bz2" ]; then
|
|
|
|
# update symlinks to this manpage
|
2007-04-11 15:06:01 -04:00
|
|
|
find {usr{,/local},opt/*}/man -lname "$file" 2>/dev/null | while read link ; do
|
|
|
|
rm -f "$link"
|
|
|
|
ln -sf "${file}.gz" "${link}.gz"
|
2007-04-11 15:05:54 -04:00
|
|
|
done
|
|
|
|
# compress the original
|
2007-04-11 15:06:01 -04:00
|
|
|
gzip -9 "$manpage"
|
2007-04-11 15:05:54 -04:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
if [ "$(check_option strip)" = "y" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Stripping debugging symbols from binaries and libraries...")"
|
2007-04-11 15:06:01 -04:00
|
|
|
for file in $(find {,*/}{bin,lib,sbin} -type f 2>/dev/null || true); do
|
2007-04-11 15:05:54 -04:00
|
|
|
case "$(file -biz "$file")" in
|
|
|
|
*application/x-sharedlib*) # Libraries
|
|
|
|
/usr/bin/strip --strip-debug "$file";;
|
|
|
|
*application/x-executable*) # Binaries
|
2007-06-01 13:43:41 -04:00
|
|
|
/usr/bin/strip "$file";;
|
2007-04-11 15:05:54 -04:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$(check_option libtool)" = "n" ]; then
|
2007-04-11 15:06:01 -04:00
|
|
|
msg2 "$(gettext "Removing libtool .la files...")"
|
|
|
|
find -type f -name "*.la" -exec rm -f -- '{}' \;
|
2007-04-11 15:05:54 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$(check_option emptydirs)" = "n" ]; then
|
2007-04-11 15:06:01 -04:00
|
|
|
msg2 "$(gettext "Removing empty directories...")"
|
|
|
|
find -depth -type d -empty -delete
|
2007-04-11 15:05:54 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-04-11 15:05:23 -04:00
|
|
|
create_package() {
|
2007-05-30 18:18:37 -04:00
|
|
|
if [ ! -d "$pkgdir" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Missing pkg/ directory.")"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1 # $E_MISSING_PKGDIR
|
2007-05-30 18:18:37 -04:00
|
|
|
fi
|
|
|
|
|
2007-05-31 00:02:32 -04:00
|
|
|
cd "$pkgdir"
|
2007-05-14 11:36:04 -04:00
|
|
|
msg "$(gettext "Creating package...")"
|
2007-04-11 15:05:47 -04:00
|
|
|
|
|
|
|
local builddate=$(LC_ALL= LANG= date -u "+%a %b %e %H:%M:%S %Y")
|
2007-04-11 15:05:23 -04:00
|
|
|
if [ "$PACKAGER" != "" ]; then
|
2007-04-11 15:05:47 -04:00
|
|
|
local packager="$PACKAGER"
|
2007-04-11 15:05:23 -04:00
|
|
|
else
|
2007-04-11 15:05:47 -04:00
|
|
|
local packager="Arch Linux (http://www.archlinux.org)"
|
2007-04-11 15:05:23 -04:00
|
|
|
fi
|
2007-04-11 15:05:47 -04:00
|
|
|
local size=$(du -sb | awk '{print $1}')
|
2007-04-11 15:05:23 -04:00
|
|
|
|
|
|
|
# build a filelist - do this first to keep meta files out of the list
|
2007-04-11 15:05:47 -04:00
|
|
|
msg2 "$(gettext "Generating .FILELIST file...")"
|
|
|
|
tar -cvf /dev/null * | sort >.FILELIST
|
2007-04-11 15:05:23 -04:00
|
|
|
|
|
|
|
# write the .PKGINFO file
|
2007-04-11 15:05:47 -04:00
|
|
|
msg2 "$(gettext "Generating .PKGINFO file...")"
|
2007-04-11 15:05:23 -04:00
|
|
|
echo "# Generated by makepkg $myver" >.PKGINFO
|
2007-04-11 15:05:47 -04:00
|
|
|
echo "# $(LC_ALL= LANG= date -u)" >>.PKGINFO
|
2007-04-11 15:05:23 -04:00
|
|
|
echo "pkgname = $pkgname" >>.PKGINFO
|
|
|
|
echo "pkgver = $pkgver-$pkgrel" >>.PKGINFO
|
|
|
|
echo "pkgdesc = $pkgdesc" >>.PKGINFO
|
|
|
|
echo "url = $url" >>.PKGINFO
|
|
|
|
echo "builddate = $builddate" >>.PKGINFO
|
|
|
|
echo "packager = $packager" >>.PKGINFO
|
|
|
|
echo "size = $size" >>.PKGINFO
|
|
|
|
if [ "$CARCH" != "" ]; then
|
|
|
|
echo "arch = $CARCH" >>.PKGINFO
|
|
|
|
fi
|
|
|
|
|
2007-04-11 15:05:47 -04:00
|
|
|
local it
|
2007-04-11 15:05:23 -04:00
|
|
|
for it in "${license[@]}"; do
|
|
|
|
echo "license = $it" >>.PKGINFO
|
|
|
|
done
|
|
|
|
for it in "${replaces[@]}"; do
|
|
|
|
echo "replaces = $it" >>.PKGINFO
|
|
|
|
done
|
|
|
|
for it in "${groups[@]}"; do
|
|
|
|
echo "group = $it" >>.PKGINFO
|
|
|
|
done
|
|
|
|
for it in "${depends[@]}"; do
|
|
|
|
echo "depend = $it" >>.PKGINFO
|
|
|
|
done
|
|
|
|
for it in "${conflicts[@]}"; do
|
|
|
|
echo "conflict = $it" >>.PKGINFO
|
|
|
|
done
|
|
|
|
for it in "${provides[@]}"; do
|
|
|
|
echo "provides = $it" >>.PKGINFO
|
|
|
|
done
|
|
|
|
for it in "${backup[@]}"; do
|
|
|
|
echo "backup = $it" >>.PKGINFO
|
|
|
|
done
|
|
|
|
|
|
|
|
# TODO maybe remove this at some point
|
|
|
|
# warn if license array is not present or empty
|
|
|
|
if [ "$license" = "" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
warning "$(gettext "Please add a license line to your %s!")" "$BUILDSCRIPT"
|
2007-06-02 13:39:48 -04:00
|
|
|
plain "$(gettext "Example for GPL'ed software: license=('GPL').")"
|
2007-04-11 15:05:23 -04:00
|
|
|
fi
|
|
|
|
|
2007-04-11 15:05:47 -04:00
|
|
|
local comp_files
|
|
|
|
|
2007-04-11 15:05:23 -04:00
|
|
|
# check for an install script
|
2007-04-11 15:05:47 -04:00
|
|
|
# TODO: should we include ${pkgname}.install if it exists and $install is unset?
|
2007-04-11 15:05:23 -04:00
|
|
|
if [ "$install" != "" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Adding install script...")"
|
2007-04-11 15:05:47 -04:00
|
|
|
cp "$startdir/$install" .INSTALL
|
|
|
|
comp_files="$comp_files .INSTALL"
|
2007-04-11 15:05:23 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# do we have a changelog?
|
|
|
|
if [ -f "$startdir/ChangeLog" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Adding package changelog...")"
|
2007-04-11 15:05:47 -04:00
|
|
|
cp "$startdir/ChangeLog" .CHANGELOG
|
|
|
|
comp_files="$comp_files .CHANGELOG"
|
2007-04-11 15:05:23 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# tar it up
|
2007-04-11 15:05:47 -04:00
|
|
|
msg2 "$(gettext "Compressing package...")"
|
2007-04-11 15:05:23 -04:00
|
|
|
|
2007-05-29 17:46:20 -04:00
|
|
|
local pkg_file="$PKGDEST/${pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}"
|
2007-04-11 15:05:47 -04:00
|
|
|
comp_files="$comp_files .PKGINFO .FILELIST"
|
2007-04-11 15:05:23 -04:00
|
|
|
|
2007-04-11 15:05:47 -04:00
|
|
|
if ! tar -czf "$pkg_file" $comp_files *; then
|
2007-04-11 15:05:23 -04:00
|
|
|
error "$(gettext "Failed to create package file.")"
|
2007-04-11 15:05:47 -04:00
|
|
|
exit 1 # TODO: error code
|
2007-04-11 15:05:23 -04:00
|
|
|
fi
|
2007-05-30 06:48:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
create_xdelta() {
|
|
|
|
if [ "$(check_buildenv xdelta)" != "y" ]; then
|
|
|
|
return
|
2007-05-30 06:50:42 -04:00
|
|
|
elif [ ! "$(type -p xdelta)" ]; then
|
|
|
|
error "$(gettext "Cannot find the xdelta binary! Is xdelta installed?")"
|
|
|
|
return
|
2007-05-30 06:48:18 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
local pkg_file=$1
|
2007-05-30 06:50:42 -04:00
|
|
|
local cache_dir="/var/cache/pacman/pkg" # TODO: autoconf me
|
2007-06-02 12:42:36 -04:00
|
|
|
local old_versions=( $(ls {"$cache_dir","$PKGDEST"}/${pkgname}-*-${CARCH}${PKGEXT} 2>/dev/null) )
|
2007-05-30 06:48:18 -04:00
|
|
|
|
2007-05-30 06:50:42 -04:00
|
|
|
# Check to see if we have any old versions to create deltas with
|
|
|
|
local old_file old_version latest_version base_file
|
2007-05-30 06:48:18 -04:00
|
|
|
for old_file in "${old_versions[@]}"; do
|
2007-06-02 12:42:36 -04:00
|
|
|
old_version=$(basename "${old_file%-$CARCH$PKGEXT}")
|
2007-05-30 06:50:42 -04:00
|
|
|
old_version=${old_version#$pkgname-}
|
|
|
|
|
2007-05-30 06:48:18 -04:00
|
|
|
# old_version may include the target package, only use the old versions
|
|
|
|
if [ "$old_version" != "$pkgver-$pkgrel" ] && [[ "$old_version" > "$latest_version" ]]; then
|
|
|
|
latest_version=$old_version
|
|
|
|
base_file=$old_file
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2007-05-30 06:50:42 -04:00
|
|
|
if [ "$base_file" != "" ]; then
|
2007-06-02 12:42:36 -04:00
|
|
|
msg "$(gettext "Making delta from version %s...")" "$latest_version"
|
2007-05-30 06:50:42 -04:00
|
|
|
local delta_file="$PKGDEST/$pkgname-${old_version}_to_$pkgver-$pkgrel-$CARCH.delta"
|
|
|
|
|
2007-06-02 12:42:36 -04:00
|
|
|
# xdelta will decompress base_file & pkg_file into TMP_DIR (or /tmp if
|
|
|
|
# TMP_DIR is unset) then perform the delta on the resulting tars
|
2007-05-30 06:50:42 -04:00
|
|
|
xdelta delta "$base_file" "$pkg_file" "$delta_file"
|
|
|
|
|
2007-06-02 12:42:36 -04:00
|
|
|
# Generate the final gz using xdelta for compression. xdelta will be our
|
|
|
|
# common denominator compression utility between the packager and the users
|
|
|
|
# makepkg and pacman must use the same compression algorithm or the delta
|
|
|
|
# generated package may not match, producing md5 checksum errors.
|
|
|
|
msg2 "$(gettext "Recreating package tarball from delta to match md5 signatures")"
|
|
|
|
msg2 "$(gettext "NOTE: the delta should ONLY be distributed with this tarball")"
|
2007-05-30 06:50:42 -04:00
|
|
|
xdelta patch "$delta_file" "$base_file" "$pkg_file"
|
2007-05-30 06:48:18 -04:00
|
|
|
else
|
2007-06-02 12:42:36 -04:00
|
|
|
warning "$(gettext "No previous version found, skipping xdelta.")"
|
2007-05-30 06:48:18 -04:00
|
|
|
fi
|
2007-04-11 15:05:23 -04:00
|
|
|
}
|
|
|
|
|
2007-05-30 14:27:13 -04:00
|
|
|
create_srcpackage() {
|
|
|
|
cd "$startdir"
|
|
|
|
msg "$(gettext "Creating source package...")"
|
|
|
|
local comp_files="PKGBUILD"
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Adding %s...")" "PKGBUILD"
|
2007-05-30 14:27:13 -04:00
|
|
|
|
|
|
|
if [ "$install" != "" ]; then
|
|
|
|
if [ -f $install ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Adding install script...")"
|
2007-05-30 14:27:13 -04:00
|
|
|
comp_files="$comp_files $install"
|
|
|
|
else
|
2007-06-01 10:28:52 -04:00
|
|
|
error "$(gettext "Install script %s not found.")" "$install"
|
2007-05-30 14:27:13 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-06-02 22:33:17 -04:00
|
|
|
if [ -f ChangeLog ]; then
|
|
|
|
msg2 "$(gettext "Adding %s...")" "ChangeLog"
|
|
|
|
comp_files="$comp_files ChangeLog"
|
|
|
|
fi
|
|
|
|
|
2007-05-30 14:27:13 -04:00
|
|
|
local i
|
|
|
|
for i in ${source[@]}; do
|
|
|
|
if [ -f $i ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Adding %s...")" "$i"
|
2007-05-30 14:27:13 -04:00
|
|
|
comp_files="$comp_files $i"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2007-05-31 12:21:37 -04:00
|
|
|
local pkg_file="$PKGDEST/${pkgname}-${pkgver}-${pkgrel}${SRCEXT}"
|
2007-05-30 14:27:13 -04:00
|
|
|
|
|
|
|
# tar it up
|
|
|
|
msg2 "$(gettext "Compressing source package...")"
|
|
|
|
if ! tar -czf "$pkg_file" $comp_files; then
|
|
|
|
error "$(gettext "Failed to create source package file.")"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-06-02 13:39:47 -04:00
|
|
|
install_package() {
|
2007-06-01 13:43:41 -04:00
|
|
|
[ "$INSTALL" = "0" ] && return
|
|
|
|
|
|
|
|
msg "$(gettext "Installing package with pacman -U...")"
|
|
|
|
if [ "$ASROOT" = "0" ]; then
|
2007-06-02 22:33:17 -04:00
|
|
|
sudo pacman $PACMAN_OPTS -U $PKGDEST/${pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT} || exit $?
|
2007-06-01 13:43:41 -04:00
|
|
|
else
|
2007-06-02 22:33:17 -04:00
|
|
|
pacman $PACMAN_OPTS -U $PKGDEST/${pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT} || exit $?
|
2007-02-11 16:47:37 -05:00
|
|
|
fi
|
|
|
|
}
|
2007-01-16 23:54:55 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
usage() {
|
2007-06-04 01:21:14 -04:00
|
|
|
printf "makepkg (pacman) %s\n" "$myver"
|
2006-02-16 17:57:25 -05:00
|
|
|
echo
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "$(gettext "Usage: %s [options]")\n" "$0"
|
2006-02-16 17:57:25 -05:00
|
|
|
echo
|
2007-03-31 20:07:37 -04:00
|
|
|
echo "$(gettext "Options:")"
|
|
|
|
echo "$(gettext " -b, --builddeps Build missing dependencies from source")"
|
|
|
|
echo "$(gettext " -c, --clean Clean up work files after build")"
|
|
|
|
echo "$(gettext " -C, --cleancache Clean up source files from the cache")"
|
|
|
|
echo "$(gettext " -d, --nodeps Skip all dependency checks")"
|
|
|
|
echo "$(gettext " -e, --noextract Do not extract source files (use existing src/ dir)")"
|
|
|
|
echo "$(gettext " -f, --force Overwrite existing package")"
|
|
|
|
echo "$(gettext " -g, --geninteg Generate integrity checks for source files")"
|
|
|
|
echo "$(gettext " -h, --help This help")"
|
|
|
|
echo "$(gettext " -i, --install Install package after successful build")"
|
|
|
|
echo "$(gettext " -L, --log Log package build process")"
|
|
|
|
echo "$(gettext " -m, --nocolor Disable colorized output messages")"
|
|
|
|
echo "$(gettext " -o, --nobuild Download and extract files only")"
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "$(gettext " -p <buildscript> Use an alternate build script (instead of '%s')")\n" "$BUILDSCRIPT"
|
2007-03-31 20:07:37 -04:00
|
|
|
echo "$(gettext " -r, --rmdeps Remove installed dependencies after a successful build")"
|
2006-12-21 12:42:58 -05:00
|
|
|
# fix flyspray feature request #2978
|
2007-03-31 20:07:37 -04:00
|
|
|
echo "$(gettext " -R, --repackage Repackage contents of pkg/ without building")"
|
|
|
|
echo "$(gettext " -s, --syncdeps Install missing dependencies with pacman")"
|
2007-06-01 13:43:41 -04:00
|
|
|
echo "$(gettext " --asroot Allow makepkg to run as root user")"
|
2007-05-30 14:27:13 -04:00
|
|
|
echo "$(gettext " --source Do not build package; generate a source-only tarball")"
|
2005-03-14 20:51:43 -05:00
|
|
|
echo
|
2007-03-31 20:07:37 -04:00
|
|
|
echo "$(gettext "These options can be passed to pacman:")"
|
2006-02-16 17:57:25 -05:00
|
|
|
echo
|
2007-05-30 14:27:13 -04:00
|
|
|
echo "$(gettext " --noconfirm Do not ask for confirmation when resolving dependencies")"
|
|
|
|
echo "$(gettext " --noprogressbar Do not show a progress bar when downloading files")"
|
2006-02-16 17:57:25 -05:00
|
|
|
echo
|
2007-05-28 15:21:58 -04:00
|
|
|
printf "$(gettext "If -p is not specified, makepkg will look for '%s'")\n" "$BUILDSCRIPT"
|
2005-03-14 20:51:43 -05:00
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
2007-05-29 16:53:15 -04:00
|
|
|
version() {
|
|
|
|
printf "$(gettext "makepkg (pacman) %s")\n" "$myver"
|
|
|
|
echo "$(gettext "Copyright (C) 2002-2007 Judd Vinet <jvinet@zeroflux.org>.")"
|
|
|
|
echo
|
|
|
|
echo "$(gettext "This is free software; see the source for copying conditions.")"
|
|
|
|
echo "$(gettext "There is NO WARRANTY, to the extent permitted by law.")"
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
ARGLIST=$@
|
|
|
|
|
2007-01-25 20:26:08 -05:00
|
|
|
#preserve environment variables
|
|
|
|
_PKGDEST=${PKGDEST}
|
2007-02-03 00:21:55 -05:00
|
|
|
_SRCDEST=${SRCDEST}
|
2007-01-25 20:26:08 -05:00
|
|
|
|
2007-04-01 19:55:01 -04:00
|
|
|
# Source makepkg.conf; fail if it is not found
|
2007-06-01 10:28:52 -04:00
|
|
|
if [ -r "$confdir/makepkg.conf" ]; then
|
2007-06-01 13:43:41 -04:00
|
|
|
source "$confdir/makepkg.conf"
|
2006-11-14 02:58:42 -05:00
|
|
|
else
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "%s not found.")" "$confdir/makepkg.conf"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1 # $E_CONFIG_ERROR
|
2006-11-14 02:58:42 -05:00
|
|
|
fi
|
|
|
|
|
2007-04-01 19:55:01 -04:00
|
|
|
# Source user-specific makepkg.conf overrides
|
|
|
|
if [ -r ~/.makepkg.conf ]; then
|
2006-12-21 15:03:41 -05:00
|
|
|
source ~/.makepkg.conf
|
2006-12-21 12:42:58 -05:00
|
|
|
fi
|
2006-11-14 02:58:42 -05:00
|
|
|
|
2007-01-25 20:26:08 -05:00
|
|
|
# override settings with an environment variable for batch processing
|
|
|
|
PKGDEST=${_PKGDEST:-$PKGDEST}
|
2007-02-03 00:21:55 -05:00
|
|
|
PKGDEST=${PKGDEST:-$startdir} #default to $startdir if undefined
|
2007-01-25 20:26:08 -05:00
|
|
|
SRCDEST=${_SRCDEST:-$SRCDEST}
|
2007-02-03 00:21:55 -05:00
|
|
|
SRCDEST=${SRCDEST:-$startdir} #default to $startdir if undefined
|
2007-01-25 20:26:08 -05:00
|
|
|
|
2007-06-01 10:28:52 -04:00
|
|
|
# Only use ABSROOT if we haven't been passed a SRCROOT on the command line.
|
|
|
|
if [ -z "$SRCROOT" ]; then
|
2007-06-01 17:10:27 -04:00
|
|
|
if [ -r "$confdir/abs/abs.conf" ]; then
|
|
|
|
source "$confdir/abs/abs.conf"
|
|
|
|
fi
|
|
|
|
if [ -r ~/.abs.conf ]; then
|
|
|
|
source ~/.abs.conf
|
|
|
|
fi
|
|
|
|
SRCROOT=$ABSROOT
|
2007-06-01 10:28:52 -04:00
|
|
|
fi
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
while [ "$#" -ne "0" ]; do
|
|
|
|
case $1 in
|
2006-12-20 20:53:40 -05:00
|
|
|
# pacman
|
2006-02-16 17:57:25 -05:00
|
|
|
--noconfirm) PACMAN_OPTS="$PACMAN_OPTS --noconfirm" ;;
|
|
|
|
--noprogressbar) PACMAN_OPTS="$PACMAN_OPTS --noprogressbar" ;;
|
2006-12-20 20:53:40 -05:00
|
|
|
# makepkg
|
2007-04-11 15:06:25 -04:00
|
|
|
--asroot) ASROOT=1 ;;
|
2005-03-14 20:51:43 -05:00
|
|
|
--clean) CLEANUP=1 ;;
|
|
|
|
--cleancache) CLEANCACHE=1 ;;
|
|
|
|
--syncdeps) DEP_BIN=1 ;;
|
|
|
|
--builddeps) DEP_SRC=1 ;;
|
|
|
|
--nodeps) NODEPS=1 ;;
|
|
|
|
--noextract) NOEXTRACT=1 ;;
|
|
|
|
--install) INSTALL=1 ;;
|
|
|
|
--force) FORCE=1 ;;
|
|
|
|
--nobuild) NOBUILD=1 ;;
|
|
|
|
--nocolor) USE_COLOR="n" ;;
|
2006-11-14 02:58:42 -05:00
|
|
|
--geninteg) GENINTEG=1 ;;
|
2005-03-14 20:51:43 -05:00
|
|
|
--rmdeps) RMDEPS=1 ;;
|
2006-12-21 12:42:58 -05:00
|
|
|
--repackage) REPKG=1 ;;
|
2006-12-20 20:53:40 -05:00
|
|
|
--log) LOGGING=1 ;;
|
2007-05-30 14:27:13 -04:00
|
|
|
--source) SOURCEONLY=1 ;;
|
2007-06-02 13:39:48 -04:00
|
|
|
|
|
|
|
# BEGIN DEPRECATED
|
|
|
|
--usesudo)
|
|
|
|
warning "$(gettext "Sudo is used by default now. The --usesudo option is deprecated!")" ;;
|
|
|
|
# END DEPRECATED
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
--help)
|
2006-12-21 14:11:22 -05:00
|
|
|
usage
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 0 #E_OK
|
2006-12-21 14:11:22 -05:00
|
|
|
;;
|
2007-05-29 16:53:15 -04:00
|
|
|
--version)
|
|
|
|
version
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 0 #E_OK
|
2007-05-29 16:53:15 -04:00
|
|
|
;;
|
2005-03-14 20:51:43 -05:00
|
|
|
--*)
|
2006-12-21 14:11:22 -05:00
|
|
|
usage
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 1 #E_INVALID_OPTION
|
2006-12-21 14:11:22 -05:00
|
|
|
;;
|
2005-03-14 20:51:43 -05:00
|
|
|
-*)
|
2007-06-02 13:39:48 -04:00
|
|
|
while getopts "bcCdefFghiLmop:rRsSV-" opt; do
|
2006-12-20 20:53:40 -05:00
|
|
|
case $opt in
|
|
|
|
b) DEP_SRC=1 ;;
|
|
|
|
c) CLEANUP=1 ;;
|
|
|
|
C) CLEANCACHE=1 ;;
|
|
|
|
d) NODEPS=1 ;;
|
|
|
|
e) NOEXTRACT=1 ;;
|
|
|
|
f) FORCE=1 ;;
|
2007-04-11 15:06:25 -04:00
|
|
|
F) INFAKEROOT=1 ;;
|
2006-12-20 20:53:40 -05:00
|
|
|
g) GENINTEG=1 ;;
|
|
|
|
i) INSTALL=1 ;;
|
|
|
|
L) LOGGING=1 ;;
|
|
|
|
m) USE_COLOR="n" ;;
|
|
|
|
o) NOBUILD=1 ;;
|
|
|
|
p) BUILDSCRIPT=$OPTARG ;;
|
|
|
|
r) RMDEPS=1 ;;
|
2006-12-21 12:42:58 -05:00
|
|
|
R) REPKG=1 ;;
|
2006-12-20 20:53:40 -05:00
|
|
|
s) DEP_BIN=1 ;;
|
2007-06-02 13:39:48 -04:00
|
|
|
|
|
|
|
# BEGIN DEPRECATED
|
|
|
|
S)
|
|
|
|
warning "$(gettext "Sudo is used by default now. The --usesudo option is deprecated!")" ;;
|
|
|
|
# END DEPRECATED
|
2007-05-29 16:53:15 -04:00
|
|
|
h)
|
|
|
|
usage
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 0 #E_OK
|
2007-05-29 16:53:15 -04:00
|
|
|
;;
|
|
|
|
V)
|
|
|
|
version
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 0 #E_OK
|
2007-05-29 16:53:15 -04:00
|
|
|
;;
|
2006-12-20 20:53:40 -05:00
|
|
|
-)
|
2006-12-21 14:11:22 -05:00
|
|
|
OPTIND=0
|
|
|
|
break
|
|
|
|
;;
|
2006-12-20 20:53:40 -05:00
|
|
|
*)
|
2006-12-21 14:11:22 -05:00
|
|
|
usage
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 1 #E_INVALID_OPTION
|
2006-12-21 14:11:22 -05:00
|
|
|
;;
|
2006-12-20 20:53:40 -05:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
;;
|
2005-03-14 20:51:43 -05:00
|
|
|
*)
|
2006-12-21 14:11:22 -05:00
|
|
|
true
|
|
|
|
;;
|
2005-03-14 20:51:43 -05:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$CLEANCACHE" = "1" ]; then
|
2006-12-21 12:42:58 -05:00
|
|
|
#fix flyspray feature request #5223
|
2007-03-08 23:35:04 -05:00
|
|
|
if [ -n "$SRCDEST" -a "$SRCDEST" != "$startdir" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
msg "$(gettext "Cleaning up ALL files from %s.")" "$SRCDEST"
|
2007-03-31 20:07:37 -04:00
|
|
|
echo -n "$(gettext " Are you sure you wish to do this? [Y/n] ")"
|
2007-03-08 23:35:04 -05:00
|
|
|
read answer
|
|
|
|
answer=$(echo $answer | tr [:upper:] [:lower:])
|
|
|
|
if [ "$answer" = "yes" -o "$answer" = "y" ]; then
|
2007-03-09 00:11:47 -05:00
|
|
|
rm "$SRCDEST"/*
|
2007-03-08 23:35:04 -05:00
|
|
|
if [ $? -ne 0 ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
error "$(gettext "Problem removing files; you may not have correct permissions in %s")" "$SRCDEST"
|
2007-03-08 23:35:04 -05:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
# removal worked
|
2007-03-31 20:07:37 -04:00
|
|
|
msg "$(gettext "Source cache cleaned.")"
|
2007-03-08 23:35:04 -05:00
|
|
|
exit 0
|
|
|
|
fi
|
2006-12-21 12:42:58 -05:00
|
|
|
else
|
2007-03-08 23:35:04 -05:00
|
|
|
# answer = no
|
2007-03-31 20:07:37 -04:00
|
|
|
msg "$(gettext "No files have been removed.")"
|
2006-12-21 12:42:58 -05:00
|
|
|
exit 0
|
2006-12-20 20:53:40 -05:00
|
|
|
fi
|
2006-12-21 12:42:58 -05:00
|
|
|
else
|
2007-03-09 00:11:47 -05:00
|
|
|
# $SRCDEST is $startdir, two possibilities
|
2007-03-31 20:07:37 -04:00
|
|
|
error "$(gettext "Source destination must be defined in makepkg.conf.")"
|
|
|
|
plain "$(gettext "In addition, please run makepkg -C outside of your cache directory.")"
|
2006-12-21 12:42:58 -05:00
|
|
|
exit 1
|
2006-12-20 20:53:40 -05:00
|
|
|
fi
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
|
2007-05-27 17:01:49 -04:00
|
|
|
if [ -z $BUILDSCRIPT ]; then
|
2007-06-01 17:21:31 -04:00
|
|
|
error "$(gettext "BUILDSCRIPT is undefined! Ensure you have updated %s.")" "$confdir/makepkg.conf"
|
2007-05-27 17:01:49 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2007-04-11 15:06:25 -04:00
|
|
|
if [ "$INFAKEROOT" = "0" ]; then
|
2007-06-01 13:43:41 -04:00
|
|
|
if [ $EUID -eq 0 -a "$ASROOT" = "0" ]; then
|
2007-04-11 15:06:25 -04:00
|
|
|
# Warn those who like to live dangerously.
|
2007-05-27 17:01:49 -04:00
|
|
|
error "$(gettext "Running makepkg as root is a BAD idea and can cause")"
|
2007-04-11 15:06:25 -04:00
|
|
|
plain "$(gettext "permanent, catastrophic damage to your system. If you")"
|
2007-05-30 18:26:29 -04:00
|
|
|
plain "$(gettext "wish to run as root, please use the --asroot option.")"
|
2007-06-01 13:43:41 -04:00
|
|
|
exit 1 # $E_USER_ABORT
|
|
|
|
elif [ $EUID -gt 0 -a "$ASROOT" = "1" ]; then
|
|
|
|
# Warn those who try to use the --asroot option when they are not root
|
|
|
|
error "$(gettext "The --asroot option is meant for the root user only.")"
|
|
|
|
plain "$(gettext "Please rerun makepkg without the --asroot flag.")"
|
2007-04-11 15:06:25 -04:00
|
|
|
exit 1 # $E_USER_ABORT
|
2007-05-27 17:01:49 -04:00
|
|
|
elif [ "$(check_buildenv fakeroot)" = "y" ]; then
|
|
|
|
if [ ! $(type -p fakeroot) ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Fakeroot must be installed if using the 'fakeroot' option")"
|
|
|
|
plain "$(gettext "in the BUILDENV array in %s.")" "$confdir/makepkg.conf"
|
2007-05-27 17:01:49 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
2007-04-11 15:06:25 -04:00
|
|
|
else
|
|
|
|
warning "$(gettext "Running makepkg as an unprivileged user will result in non-root")"
|
|
|
|
plain "$(gettext "ownership of the packaged files. Try using the fakeroot environment by")"
|
2007-05-27 17:01:49 -04:00
|
|
|
plain "$(gettext "placing 'fakeroot' in the BUILDENV array in makepkg.conf.")"
|
2007-04-11 15:06:25 -04:00
|
|
|
sleep 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [ "$FAKEROOTKEY" = "" ]; then
|
|
|
|
error "$(gettext "Do not use the '-F' option. This option is only for use by makepkg.")"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-06-01 13:43:41 -04:00
|
|
|
# check for sudo if we will need it during makepkg execution
|
|
|
|
if [ "$ASROOT" = "0" -a \( "$DEP_BIN" = "1" -o "$DEP_SRC" = "1" \
|
2007-06-01 17:10:27 -04:00
|
|
|
-o "$RMDEPS" = "1" -o "$INSTALL" = "1" \) ]; then
|
2007-06-01 13:43:41 -04:00
|
|
|
if [ ! "$(type -p sudo)" ]; then
|
|
|
|
error "$(gettext "Cannot find the sudo binary! Is sudo installed?")"
|
|
|
|
plain "$(gettext "Missing dependencies cannot be installed or removed as a normal user")"
|
|
|
|
plain "$(gettext "without sudo; install and configure sudo to auto-resolve dependencies.")"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
unset pkgname pkgver pkgrel pkgdesc url license groups provides md5sums force
|
|
|
|
unset replaces depends conflicts backup source install build makedepends
|
2007-01-23 11:02:37 -05:00
|
|
|
unset options noextract
|
2006-11-14 02:58:42 -05:00
|
|
|
|
2007-06-02 22:33:17 -04:00
|
|
|
if [ ! -f "$BUILDSCRIPT" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
error "$(gettext "%s does not exist.")" "$BUILDSCRIPT"
|
2005-03-14 20:51:43 -05:00
|
|
|
exit 1
|
2006-12-20 20:53:40 -05:00
|
|
|
#TODO this is an attempt at a generic way to unset all package specific
|
|
|
|
#variables in a PKGBUILD
|
|
|
|
#else
|
|
|
|
# #this is fun.... we'll unset
|
|
|
|
# for var in $(grep "=" $BUILDSCRIPT | sed "s|.*\(\<.*\>\)=.*|\1|g"); do
|
|
|
|
# unset $var
|
|
|
|
# done
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
|
2007-06-02 22:33:17 -04:00
|
|
|
source "$BUILDSCRIPT"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-02-23 14:51:24 -05:00
|
|
|
# check for no-no's in the build script
|
2006-11-14 02:58:42 -05:00
|
|
|
if [ -z "$pkgver" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "%s is not allowed to be empty.")" "pkgver"
|
2006-11-14 02:58:42 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ -z "$pkgrel" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "%s is not allowed to be empty.")" "pkgrel"
|
2006-11-14 02:58:42 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2007-03-18 19:09:50 -04:00
|
|
|
if [ $(echo "$pkgver" | grep '-') ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "%s is not allowed to contain hyphens.")" "pkgver"
|
2005-03-14 20:51:43 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2007-03-18 19:09:50 -04:00
|
|
|
if [ $(echo "$pkgrel" | grep '-') ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "%s is not allowed to contain hyphens.")" "pkgrel"
|
2005-03-14 20:51:43 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2006-12-21 15:50:24 -05:00
|
|
|
if ! in_array $CARCH ${arch[@]}; then
|
2007-05-28 15:21:58 -04:00
|
|
|
error "$(gettext "%s is not available for the '%s' architecture.")" "$pkgname" "$CARCH"
|
|
|
|
plain "$(gettext "Note that many packages may need a line added to their %s")" "$BUILDSCRIPT"
|
|
|
|
plain "$(gettext "such as arch=('%s').")" "$CARCH"
|
2006-11-14 02:58:42 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2005-10-20 16:46:35 -04:00
|
|
|
if [ "$install" -a ! -f "$install" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Install scriptlet (%s) does not exist.")" "$install"
|
2005-10-20 16:46:35 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-05-29 17:46:20 -04:00
|
|
|
if [ -f "$PKGDEST/${pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}" \
|
2007-05-30 14:27:13 -04:00
|
|
|
-a "$FORCE" = "0" -a "$GENINTEG" = "0" -a "$SOURCEONLY" = "0" ]; then
|
2005-03-14 20:51:43 -05:00
|
|
|
if [ "$INSTALL" = "1" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
warning "$(gettext "A package has already been built, installing existing package...")"
|
2007-06-02 13:39:47 -04:00
|
|
|
install_package
|
2005-03-14 20:51:43 -05:00
|
|
|
exit $?
|
|
|
|
else
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "A package has already been built. (use -f to overwrite)")"
|
2005-03-14 20:51:43 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-04-11 15:06:25 -04:00
|
|
|
# Run the bear minimum in fakeroot
|
|
|
|
# fix flyspray bug 6208 -- using makepkg with fakeroot gives an error
|
|
|
|
if [ "$INFAKEROOT" = "1" ]; then
|
|
|
|
if [ "$REPKG" = "1" ]; then
|
|
|
|
warning "$(gettext "Skipping build.")"
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-04-11 15:06:25 -04:00
|
|
|
run_build
|
|
|
|
tidy_install
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
2007-04-11 15:06:25 -04:00
|
|
|
|
|
|
|
create_package
|
|
|
|
|
|
|
|
msg "$(gettext "Leaving fakeroot environment.")"
|
|
|
|
exit 0 # $E_OK
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
|
2007-06-01 17:21:31 -04:00
|
|
|
msg "$(gettext "Making package: %s")" "$pkgname $pkgver-$pkgrel ($(date))"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-06-01 13:43:41 -04:00
|
|
|
if [ $EUID -eq 0 ]; then
|
|
|
|
warning "$(gettext "Running makepkg as root...")"
|
|
|
|
fi
|
|
|
|
|
2007-05-30 14:27:13 -04:00
|
|
|
# if we are creating a source-only package, go no further
|
|
|
|
if [ "$SOURCEONLY" = "1" ]; then
|
2007-05-31 12:21:37 -04:00
|
|
|
if [ -f "$PKGDEST/${pkgname}-${pkgver}-${pkgrel}${SRCEXT}" \
|
2007-05-30 14:27:13 -04:00
|
|
|
-a "$FORCE" = "0" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "A package has already been built. (use -f to overwrite)")"
|
2007-05-30 14:27:13 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
create_srcpackage
|
2007-06-01 17:21:31 -04:00
|
|
|
msg "$(gettext "Source package created: %s")" "$pkgname ($(date))"
|
2007-05-30 14:27:13 -04:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2006-12-21 12:42:58 -05:00
|
|
|
# fix flyspray bug #5973
|
2006-12-21 15:03:41 -05:00
|
|
|
if [ "$NODEPS" = "1" -o "$GENINTEG" = "1" -o "$NOBUILD" = "1" -o "$REPKG" = "1" ]; then
|
2007-01-31 21:12:49 -05:00
|
|
|
if [ "$NODEPS" = "1" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
warning "$(gettext "Skipping dependency checks.")"
|
2007-01-31 21:12:49 -05:00
|
|
|
fi
|
|
|
|
# skip printing a warning message for the others: geninteg, nobuild, repkg
|
2006-12-21 14:11:22 -05:00
|
|
|
elif [ $(type -p pacman) ]; then
|
2007-06-02 12:41:15 -04:00
|
|
|
unset pkgdeps # Set by resolve_deps() and used by remove_deps()
|
2007-02-14 00:52:49 -05:00
|
|
|
deperr=0
|
|
|
|
|
2007-03-31 20:07:37 -04:00
|
|
|
msg "$(gettext "Checking Runtime Dependencies...")"
|
2007-06-02 12:41:15 -04:00
|
|
|
resolve_deps ${depends[@]} || deperr=1
|
2007-02-14 00:52:49 -05:00
|
|
|
|
2007-03-31 20:07:37 -04:00
|
|
|
msg "$(gettext "Checking Buildtime Dependencies...")"
|
2007-06-02 12:41:15 -04:00
|
|
|
resolve_deps ${makedepends[@]} || deperr=1
|
2007-02-14 00:52:49 -05:00
|
|
|
|
|
|
|
if [ $deperr -eq 1 ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Could not resolve all dependencies.")"
|
2005-03-14 20:51:43 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
2007-04-11 15:06:25 -04:00
|
|
|
warning "$(gettext "pacman was not found in PATH; skipping dependency checks.")"
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
|
2007-06-02 11:45:17 -04:00
|
|
|
# get back to our src directory so we can begin with sources
|
2007-06-02 22:33:17 -04:00
|
|
|
mkdir -p "$srcdir"
|
2007-05-31 00:02:32 -04:00
|
|
|
cd "$srcdir"
|
2007-04-04 22:30:05 -04:00
|
|
|
|
2007-05-31 09:50:39 -04:00
|
|
|
if [ "$GENINTEG" = "1" ]; then
|
2007-06-02 11:45:17 -04:00
|
|
|
download_sources
|
2007-06-01 17:10:27 -04:00
|
|
|
generate_checksums
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 0 # $E_OK
|
2007-05-31 09:50:39 -04:00
|
|
|
fi
|
|
|
|
|
2006-12-21 14:11:22 -05:00
|
|
|
if [ "$NOEXTRACT" = "1" -o "$REPKG" = "1" ]; then
|
2007-06-02 11:45:17 -04:00
|
|
|
warning "$(gettext "Skipping source retrieval -- using existing src/ tree")"
|
2007-03-31 20:07:37 -04:00
|
|
|
warning "$(gettext "Skipping source integrity checks -- using existing src/ tree")"
|
|
|
|
warning "$(gettext "Skipping source extraction -- using existing src/ tree")"
|
2007-06-02 22:33:17 -04:00
|
|
|
|
|
|
|
if [ "$NOEXTRACT" = "1" -a "$(ls "$srcdir" 2>/dev/null)" = "" ]; then
|
|
|
|
error "$(gettext "The source directory is empty, there is nothing to build!")"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1
|
|
|
|
elif [ "$REPKG" = "1" -a \( ! -d "$pkgdir" -o "$(ls "$pkgdir" 2>/dev/null)" = "" \) ]; then
|
|
|
|
error "$(gettext "The package directory is empty, there is nothing to repackage!")"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1
|
|
|
|
fi
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-06-02 11:45:17 -04:00
|
|
|
download_sources
|
|
|
|
check_checksums
|
2007-06-01 17:10:27 -04:00
|
|
|
extract_sources
|
2006-12-21 14:11:22 -05:00
|
|
|
fi
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-12-21 14:11:22 -05:00
|
|
|
if [ "$NOBUILD" = "1" ]; then
|
2007-03-31 20:07:37 -04:00
|
|
|
msg "$(gettext "Sources are ready.")"
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 0 #E_OK
|
2006-12-21 14:11:22 -05:00
|
|
|
else
|
2007-04-11 15:06:25 -04:00
|
|
|
# check for existing pkg directory; don't remove if we are repackaging
|
2007-05-31 00:02:32 -04:00
|
|
|
if [ -d "$pkgdir" -a "$REPKG" = "0" ]; then
|
2007-03-31 20:07:37 -04:00
|
|
|
msg "$(gettext "Removing existing pkg/ directory...")"
|
2007-05-31 00:02:32 -04:00
|
|
|
rm -rf "$pkgdir"
|
2006-12-21 12:42:58 -05:00
|
|
|
fi
|
2007-05-31 00:02:32 -04:00
|
|
|
mkdir -p "$pkgdir"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-04-11 15:06:25 -04:00
|
|
|
if [ $EUID -eq 0 ]; then
|
|
|
|
# if we are root, then we don't need to recall makepkg with fakeroot
|
|
|
|
if [ "$REPKG" = "1" ]; then
|
|
|
|
warning "$(gettext "Skipping build.")"
|
|
|
|
else
|
|
|
|
run_build
|
|
|
|
tidy_install
|
|
|
|
fi
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-04-11 15:06:25 -04:00
|
|
|
create_package
|
|
|
|
else
|
|
|
|
msg "$(gettext "Entering fakeroot environment...")"
|
|
|
|
cd "$startdir"
|
|
|
|
|
2007-06-02 22:33:17 -04:00
|
|
|
fakeroot -- $0 -F $ARGLIST || exit $?
|
2007-04-11 15:06:25 -04:00
|
|
|
fi
|
2007-06-02 12:41:15 -04:00
|
|
|
|
|
|
|
create_xdelta "$PKGDEST/${pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}"
|
2007-04-11 15:06:25 -04:00
|
|
|
fi
|
2006-12-05 02:43:42 -05:00
|
|
|
|
2007-06-01 17:21:31 -04:00
|
|
|
msg "$(gettext "Finished making: %s")" "$pkgname ($(date))"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-06-02 13:39:47 -04:00
|
|
|
install_package
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-06-02 11:45:17 -04:00
|
|
|
exit 0 #E_OK
|
2007-03-31 20:07:37 -04:00
|
|
|
|
2007-04-11 15:05:54 -04:00
|
|
|
# vim: set ts=2 sw=2 noet:
|