2007-06-02 20:59:54 -04:00
|
|
|
#!/bin/bash -e
|
2006-12-21 14:11:22 -05:00
|
|
|
#
|
2009-08-18 16:10:56 -04:00
|
|
|
# makepkg - make packages compatible for use with pacman
|
2007-05-30 11:04:49 -04:00
|
|
|
# @configure_input@
|
2006-12-21 14:11:22 -05:00
|
|
|
#
|
2009-07-01 03:08:33 -04:00
|
|
|
# Copyright (c) 2006-2009 Pacman Development Team <pacman-dev@archlinux.org>
|
|
|
|
# Copyright (c) 2002-2006 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
|
2007-12-10 23:55:22 -05:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-14 20:51:43 -05:00
|
|
|
#
|
|
|
|
|
2007-07-15 22:31:29 -04:00
|
|
|
# makepkg uses quite a few external programs during its execution. You
|
|
|
|
# need to have at least the following installed for makepkg to function:
|
|
|
|
# awk, bsdtar (libarchive), bzip2, coreutils, fakeroot, find (findutils),
|
2008-05-31 02:35:16 -04:00
|
|
|
# getopt (util-linux), gettext, grep, gzip, openssl, sed
|
2007-07-15 22:31:29 -04:00
|
|
|
|
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
|
|
|
|
2008-05-27 15:23:56 -04:00
|
|
|
# file -i does not work on Mac OSX unless legacy mode is set
|
|
|
|
export COMMAND_MODE='legacy'
|
|
|
|
|
2007-04-11 15:35:29 -04:00
|
|
|
myver='@PACKAGE_VERSION@'
|
2007-06-01 10:28:52 -04:00
|
|
|
confdir='@sysconfdir@'
|
2008-12-27 01:35:06 -05:00
|
|
|
BUILDSCRIPT='@BUILDSCRIPT@'
|
2007-06-01 10:28:52 -04:00
|
|
|
startdir="$PWD"
|
2007-05-30 14:32:04 -04:00
|
|
|
srcdir="$startdir/src"
|
|
|
|
pkgdir="$startdir/pkg"
|
2009-01-16 07:22:04 -05:00
|
|
|
|
2008-12-07 06:14:32 -05:00
|
|
|
packaging_options=('strip' 'docs' 'libtool' 'emptydirs' 'zipman' 'purge')
|
2008-09-27 00:47:29 -04:00
|
|
|
other_options=('ccache' 'distcc' 'makeflags' 'force')
|
2009-01-16 07:22:04 -05:00
|
|
|
splitpkg_overrides=('pkgdesc' 'license' 'groups' 'depends' 'optdepends' 'provides' \
|
|
|
|
'conflicts' 'replaces' 'backup' 'options' 'install')
|
|
|
|
readonly -a packaging_options other_options splitpkg_overrides
|
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
|
|
|
|
FORCE=0
|
2007-04-11 15:06:25 -04:00
|
|
|
INFAKEROOT=0
|
2006-11-14 02:58:42 -05:00
|
|
|
GENINTEG=0
|
2009-08-10 09:50:53 -04:00
|
|
|
SKIPINTEG=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
|
2007-06-04 17:06:11 -04:00
|
|
|
IGNOREARCH=0
|
2008-01-13 18:39:06 -05:00
|
|
|
HOLDVER=0
|
2009-01-17 01:41:01 -05:00
|
|
|
PKGFUNC=0
|
2009-01-16 07:32:05 -05:00
|
|
|
SPLITPKG=0
|
2009-03-14 09:51:58 -04:00
|
|
|
COLORMSG=0
|
2006-01-21 21:16:41 -05:00
|
|
|
|
2007-10-26 22:32:09 -04:00
|
|
|
# Forces the pkgver of the current PKGBUILD. Used by the fakeroot call
|
|
|
|
# when dealing with svn/cvs/etc PKGBUILDs.
|
|
|
|
FORCE_VER=""
|
|
|
|
|
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
|
2009-03-14 09:51:58 -04:00
|
|
|
if [ $COLORMSG -eq 1 ]; then
|
2007-09-28 13:45:14 -04:00
|
|
|
printf "\033[1;1m ${mesg}\033[1;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
|
2009-03-14 09:51:58 -04:00
|
|
|
if [ $COLORMSG -eq 1 ]; then
|
2007-09-28 13:45:14 -04:00
|
|
|
printf "\033[1;32m==>\033[1;0m\033[1;1m ${mesg}\033[1;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
|
2009-03-14 09:51:58 -04:00
|
|
|
if [ $COLORMSG -eq 1 ]; then
|
2007-09-28 13:45:14 -04:00
|
|
|
printf "\033[1;34m ->\033[1;0m\033[1;1m ${mesg}\033[1;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
|
2009-03-14 09:51:58 -04:00
|
|
|
if [ $COLORMSG -eq 1 ]; then
|
2007-09-28 13:45:14 -04:00
|
|
|
printf "\033[1;33m==> $(gettext "WARNING:")\033[1;0m\033[1;1m ${mesg}\033[1;0m\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-06-04 16:47:40 -04:00
|
|
|
printf "==> $(gettext "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
|
2009-03-14 09:51:58 -04:00
|
|
|
if [ $COLORMSG -eq 1 ]; then
|
2007-09-28 13:45:14 -04:00
|
|
|
printf "\033[1;31m==> $(gettext "ERROR:")\033[1;0m\033[1;1m ${mesg}\033[1;0m\n" "$@" >&2
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2007-06-04 16:47:40 -04:00
|
|
|
printf "==> $(gettext "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() {
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$INFAKEROOT" -eq 0 ]; then
|
2007-06-02 20:59:54 -04:00
|
|
|
echo
|
|
|
|
error "$@"
|
|
|
|
fi
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
##
|
|
|
|
# Clean up function. Called automatically when the script exits.
|
|
|
|
##
|
|
|
|
clean_up() {
|
|
|
|
local EXIT_CODE=$?
|
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$INFAKEROOT" -eq 1 ]; then
|
2007-06-02 20:59:54 -04:00
|
|
|
# Don't clean up when leaving fakeroot, we're not done yet.
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ $EXIT_CODE -eq 0 -a "$CLEANUP" -eq 1 ]; then
|
2007-06-02 20:59:54 -04:00
|
|
|
# If it's a clean exit and -c/--clean has been passed...
|
|
|
|
msg "$(gettext "Cleaning up...")"
|
2008-06-22 06:11:54 -04:00
|
|
|
rm -rf "$pkgdir" "$srcdir"
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$pkgname" ]; then
|
2007-06-02 20:59:54 -04:00
|
|
|
# Can't do this unless the BUILDSCRIPT has been sourced.
|
2009-03-25 11:29:15 -04:00
|
|
|
rm -f "${pkgbase}-${pkgver}-${pkgrel}-${CARCH}-build.log"*
|
|
|
|
if [ "$PKGFUNC" -eq 1 ]; then
|
|
|
|
rm -f "${pkgbase}-${pkgver}-${pkgrel}-${CARCH}-package.log"*
|
|
|
|
elif [ "$SPLITPKG" -eq 1 ]; then
|
|
|
|
for pkg in ${pkgname[@]}; do
|
|
|
|
rm -f "${pkg}-${pkgver}-${pkgrel}-${CARCH}-package.log"*
|
|
|
|
done
|
|
|
|
fi
|
2007-06-02 20:59:54 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
remove_deps
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
##
|
|
|
|
# Signal Traps
|
|
|
|
##
|
2009-08-23 11:16:21 -04:00
|
|
|
set -E
|
2007-06-02 20:59:54 -04:00
|
|
|
trap 'clean_up' 0
|
|
|
|
trap 'trap_exit "$(gettext "TERM signal caught. Exiting...")"' TERM HUP QUIT
|
|
|
|
trap 'trap_exit "$(gettext "Aborted by user! Exiting...")"' INT
|
2009-08-18 16:10:56 -04:00
|
|
|
trap 'trap_exit "$(gettext "An unknown error has occurred. Exiting...")"' ERR
|
2007-06-02 20:59:54 -04:00
|
|
|
|
2008-08-23 10:34:42 -04:00
|
|
|
# a source entry can have two forms :
|
|
|
|
# 1) "filename::http://path/to/file"
|
|
|
|
# 2) "http://path/to/file"
|
|
|
|
|
|
|
|
# extract the filename from a source entry
|
|
|
|
get_filename() {
|
|
|
|
# if a filename is specified, use it
|
|
|
|
local filename=$(echo $1 | sed 's|::.*||')
|
2009-08-18 16:10:56 -04:00
|
|
|
# if it is just an URL, we only keep the last component
|
2008-08-23 10:34:42 -04:00
|
|
|
echo "$filename" | sed 's|^.*://.*/||g'
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2009-08-18 16:10:56 -04:00
|
|
|
# extract the URL from a source entry
|
2008-08-23 10:34:42 -04:00
|
|
|
get_url() {
|
|
|
|
# strip an eventual filename
|
|
|
|
echo $1 | sed 's|.*::||'
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
# 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() {
|
2008-06-15 06:56:40 -04:00
|
|
|
local needle=$(echo $1 | tr '[:upper:]' '[:lower:]'); shift
|
2007-06-02 13:04:41 -04:00
|
|
|
|
|
|
|
local opt
|
|
|
|
for opt in "$@"; do
|
2008-06-15 06:56:40 -04:00
|
|
|
opt=$(echo $opt | tr '[:upper:]' '[:lower:]')
|
2007-06-02 13:04:41 -04:00
|
|
|
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() {
|
2009-08-18 16:10:56 -04:00
|
|
|
# $1 = URL with valid protocol prefix
|
2007-04-04 22:30:05 -04:00
|
|
|
local url=$1
|
2008-08-01 02:29:46 -04:00
|
|
|
local proto=$(echo "$url" | sed 's|://.*||')
|
2007-04-04 22:30:05 -04:00
|
|
|
|
|
|
|
# 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|::.*||')
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$proto" = "$handler" ]; then
|
2007-04-04 22:30:05 -04:00
|
|
|
agent=$(echo $i | sed 's|^.*::||')
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# if we didn't find an agent, return an error
|
|
|
|
if [ -z "$agent" ]; then
|
2008-08-07 11:08:33 -04:00
|
|
|
error "$(gettext "There is no agent set up to handle %s URLs. Check %s.")" "$proto" "$MAKEPKG_CONF"
|
2007-06-02 13:39:48 -04:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2008-08-01 02:29:46 -04:00
|
|
|
download_file() {
|
2008-08-23 10:34:42 -04:00
|
|
|
# download command
|
2008-08-01 02:29:46 -04:00
|
|
|
local dlcmd=$1
|
2009-08-18 16:10:56 -04:00
|
|
|
# URL of the file
|
2008-08-23 10:34:42 -04:00
|
|
|
local url=$2
|
|
|
|
# destination file
|
2008-02-10 11:56:47 -05:00
|
|
|
local file=$3
|
2009-08-18 16:10:56 -04:00
|
|
|
# temporary download file, default to last component of the URL
|
2008-08-23 10:34:42 -04:00
|
|
|
local dlfile=$(echo "$url" | sed 's|^.*://.*/||g')
|
2008-02-10 11:56:47 -05:00
|
|
|
|
2008-08-23 10:34:42 -04:00
|
|
|
# replace %o by the temporary dlfile if it exists
|
|
|
|
if echo "$dlcmd" | grep -q "%o" ; then
|
2009-07-11 11:07:46 -04:00
|
|
|
dlcmd=${dlcmd//\%o/\"$file.part\"}
|
2008-08-23 10:34:42 -04:00
|
|
|
dlfile="$file.part"
|
|
|
|
fi
|
2009-08-18 16:10:56 -04:00
|
|
|
# add the URL, either in place of %u or at the end
|
2008-08-23 10:34:42 -04:00
|
|
|
if echo "$dlcmd" | grep -q "%u" ; then
|
2009-07-11 11:07:46 -04:00
|
|
|
dlcmd=${dlcmd//\%u/\"$url\"}
|
2008-02-10 11:56:47 -05:00
|
|
|
else
|
2009-07-11 11:07:46 -04:00
|
|
|
dlcmd="$dlcmd \"$url\""
|
2008-02-10 11:56:47 -05:00
|
|
|
fi
|
|
|
|
|
2009-07-11 11:07:46 -04:00
|
|
|
eval $dlcmd || return $?
|
2008-08-23 10:34:42 -04:00
|
|
|
|
|
|
|
# rename the temporary download file to the final destination
|
|
|
|
if [ "$dlfile" != "$file" ]; then
|
|
|
|
mv -f "$SRCDEST/$dlfile" "$SRCDEST/$file"
|
|
|
|
fi
|
2008-02-10 11:56:47 -05:00
|
|
|
}
|
|
|
|
|
2007-06-02 13:39:47 -04:00
|
|
|
check_deps() {
|
2006-01-26 18:48:28 -05:00
|
|
|
[ $# -gt 0 ] || return
|
|
|
|
|
2007-06-29 05:41:48 -04:00
|
|
|
pmout=$(pacman $PACMAN_OPTS -T "$@")
|
2005-03-14 20:51:43 -05:00
|
|
|
ret=$?
|
2007-07-02 13:28:39 -04:00
|
|
|
if [ $ret -eq 127 ]; 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
|
|
|
|
}
|
|
|
|
|
2009-08-07 02:40:04 -04:00
|
|
|
handle_deps() {
|
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-03-19 18:48:54 -04:00
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$DEP_BIN" -eq 0 ]; then
|
2007-05-30 12:47:47 -04:00
|
|
|
return $R_DEPS_MISSING
|
|
|
|
fi
|
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$DEP_BIN" -eq 1 ]; then
|
2007-05-30 12:47:47 -04:00
|
|
|
# install missing deps from binary packages (using pacman -S)
|
|
|
|
msg "$(gettext "Installing missing dependencies...")"
|
|
|
|
local ret=0
|
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$ASROOT" -eq 0 ]; then
|
2008-07-08 04:57:57 -04:00
|
|
|
sudo pacman $PACMAN_OPTS -S --asdeps $deplist || ret=$?
|
2005-03-14 20:51:43 -05:00
|
|
|
else
|
2008-07-08 04:57:57 -04:00
|
|
|
pacman $PACMAN_OPTS -S --asdeps $deplist || 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
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
2006-12-21 12:42:58 -05:00
|
|
|
|
2008-07-24 05:37:36 -04:00
|
|
|
# we might need the new system environment
|
2008-08-11 11:26:39 -04:00
|
|
|
# set -e can cause problems during sourcing profile scripts
|
|
|
|
set +e
|
2008-07-24 05:37:36 -04:00
|
|
|
source /etc/profile &>/dev/null
|
2008-08-11 11:26:39 -04:00
|
|
|
set -e
|
2006-11-14 02:58:42 -05:00
|
|
|
|
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 $*)"
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -z "$deplist" ]; then
|
2007-06-02 12:41:15 -04:00
|
|
|
return $R_DEPS_SATISFIED
|
|
|
|
fi
|
2007-05-30 12:47:47 -04:00
|
|
|
|
2009-08-07 02:40:04 -04:00
|
|
|
if handle_deps $deplist; then
|
2008-07-23 09:01:35 -04:00
|
|
|
pkgdeps="$pkgdeps $deplist"
|
2007-05-30 12:47:47 -04:00
|
|
|
# check deps again to make sure they were resolved
|
2007-06-02 13:39:47 -04:00
|
|
|
deplist="$(check_deps $*)"
|
2009-01-17 10:51:48 -05:00
|
|
|
[ -z "$deplist" ] && return $R_DEPS_SATISFIED
|
2009-01-17 10:42:23 -05:00
|
|
|
elif [ "$DEP_BIN" -eq 1 ]; then
|
2007-05-30 12:47:47 -04:00
|
|
|
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()
|
2009-01-17 10:42:23 -05:00
|
|
|
[ "$RMDEPS" -eq 0 ] && return
|
2009-01-17 10:51:48 -05:00
|
|
|
[ -z "$pkgdeps" ] && return
|
2007-05-30 12:47:47 -04:00
|
|
|
|
2007-06-02 12:41:15 -04:00
|
|
|
local dep depstrip deplist
|
2008-07-23 09:01:35 -04:00
|
|
|
deplist=""
|
2007-06-02 12:41:15 -04:00
|
|
|
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..."
|
2008-04-02 11:07:25 -04:00
|
|
|
local ret=0
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$ASROOT" -eq 0 ]; then
|
2008-04-02 11:07:25 -04:00
|
|
|
sudo pacman $PACMAN_OPTS -Rns $deplist || ret=$?
|
2007-05-30 12:47:47 -04:00
|
|
|
else
|
2008-04-02 11:07:25 -04:00
|
|
|
pacman $PACMAN_OPTS -Rns $deplist || ret=$?
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Fixes FS#10039 - exit cleanly as package has built successfully
|
|
|
|
if [ $ret -ne 0 ]; then
|
|
|
|
warning "$(gettext "Failed to remove installed dependencies.")"
|
|
|
|
return 0
|
2007-01-16 23:54:55 -05:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-06-01 17:10:27 -04:00
|
|
|
download_sources() {
|
|
|
|
msg "$(gettext "Retrieving Sources...")"
|
2007-07-10 08:11:40 -04:00
|
|
|
|
|
|
|
if [ ! -w "$SRCDEST" ] ; then
|
|
|
|
error "$(gettext "You do not have write permission to store downloads in %s.")" "$SRCDEST"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
pushd "$SRCDEST" &>/dev/null
|
|
|
|
|
2007-06-01 17:10:27 -04:00
|
|
|
local netfile
|
2008-06-15 06:10:31 -04:00
|
|
|
for netfile in "${source[@]}"; do
|
2008-08-23 10:34:42 -04:00
|
|
|
local file=$(get_filename "$netfile")
|
|
|
|
local url=$(get_url "$netfile")
|
2007-07-10 08:11:40 -04:00
|
|
|
if [ -f "$startdir/$file" ]; then
|
2007-06-01 17:10:27 -04:00
|
|
|
msg2 "$(gettext "Found %s in build dir")" "$file"
|
2008-05-20 13:51:38 -04:00
|
|
|
rm -f "$srcdir/$file"
|
|
|
|
ln -s "$startdir/$file" "$srcdir/"
|
2007-06-01 17:10:27 -04:00
|
|
|
continue
|
|
|
|
elif [ -f "$SRCDEST/$file" ]; then
|
|
|
|
msg2 "$(gettext "Using cached copy of %s")" "$file"
|
2008-05-20 13:51:38 -04:00
|
|
|
rm -f "$srcdir/$file"
|
|
|
|
ln -s "$SRCDEST/$file" "$srcdir/"
|
2007-06-01 17:10:27 -04:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2008-01-16 00:03:51 -05:00
|
|
|
# if we get here, check to make sure it was a URL, else fail
|
2008-08-23 10:34:42 -04:00
|
|
|
if [ "$file" = "$url" ]; then
|
|
|
|
error "$(gettext "%s was not found in the build directory and is not a URL.")" "$file"
|
2008-01-16 00:03:51 -05:00
|
|
|
exit 1 # $E_MISSING_FILE
|
|
|
|
fi
|
|
|
|
|
2007-06-01 17:10:27 -04:00
|
|
|
# find the client we should use for this URL
|
2008-08-23 10:34:42 -04:00
|
|
|
local dlclient=$(get_downloadclient "$url") || 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
|
2008-08-23 10:34:42 -04:00
|
|
|
download_file "$dlclient" "$url" "$file" || ret=$?
|
2007-06-01 17:10:27 -04:00
|
|
|
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
|
2008-05-20 13:51:38 -04:00
|
|
|
rm -f "$srcdir/$file"
|
|
|
|
ln -s "$SRCDEST/$file" "$srcdir/"
|
2007-06-01 17:10:27 -04:00
|
|
|
done
|
2007-07-10 08:11:40 -04:00
|
|
|
|
|
|
|
popd &>/dev/null
|
2007-06-01 17:10:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
generate_checksums() {
|
|
|
|
msg "$(gettext "Generating checksums for source files...")"
|
|
|
|
plain ""
|
|
|
|
|
2008-08-23 11:19:17 -04:00
|
|
|
if [ ! $(type -p openssl) ]; then
|
|
|
|
error "$(gettext "Cannot find openssl.")"
|
|
|
|
exit 1 # $E_MISSING_PROGRAM
|
|
|
|
fi
|
|
|
|
|
2007-06-01 17:10:27 -04:00
|
|
|
local integ
|
|
|
|
for integ in ${INTEGRITY_CHECK[@]}; do
|
2008-06-15 06:56:40 -04:00
|
|
|
integ="$(echo $integ | tr '[:upper:]' '[:lower:]')"
|
2007-06-01 17:10:27 -04:00
|
|
|
case "$integ" in
|
|
|
|
md5|sha1|sha256|sha384|sha512) : ;;
|
|
|
|
*)
|
|
|
|
error "$(gettext "Invalid integrity algorithm '%s' specified.")" "$integ"
|
|
|
|
exit 1;; # $E_CONFIG_ERROR
|
|
|
|
esac
|
|
|
|
|
|
|
|
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
|
2008-06-15 06:10:31 -04:00
|
|
|
for netfile in "${source[@]}"; do
|
2008-08-23 10:34:42 -04:00
|
|
|
local file="$(get_filename "$netfile")"
|
2007-07-10 08:11:40 -04:00
|
|
|
|
|
|
|
if [ ! -f "$file" ] ; then
|
|
|
|
if [ ! -f "$SRCDEST/$file" ] ; then
|
|
|
|
error "$(gettext "Unable to find source file %s to generate checksum.")" "$file"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1
|
|
|
|
else
|
2008-06-22 06:11:54 -04:00
|
|
|
file="$SRCDEST/$file"
|
2007-07-10 08:11:40 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-05-31 02:35:16 -04:00
|
|
|
local sum="$(openssl dgst -${integ} "$file" | awk '{print $NF}')"
|
2007-06-01 17:10:27 -04:00
|
|
|
[ $ct -gt 0 ] && echo -n "$indent"
|
|
|
|
echo -n "'$sum'"
|
|
|
|
ct=$(($ct+1))
|
|
|
|
[ $ct -lt $numsrc ] && echo
|
|
|
|
done
|
|
|
|
|
|
|
|
echo ")"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
check_checksums() {
|
2009-03-14 09:43:05 -04:00
|
|
|
[ ${#source[@]} -eq 0 ] && return 0
|
|
|
|
|
2008-08-23 11:19:17 -04:00
|
|
|
if [ ! $(type -p openssl) ]; then
|
|
|
|
error "$(gettext "Cannot find openssl.")"
|
|
|
|
exit 1 # $E_MISSING_PROGRAM
|
|
|
|
fi
|
2007-06-01 17:10:27 -04:00
|
|
|
|
2009-01-13 17:59:33 -05:00
|
|
|
local correlation=0
|
2008-08-23 11:19:17 -04:00
|
|
|
local integ required
|
|
|
|
for integ in md5 sha1 sha256 sha384 sha512; do
|
2008-06-15 06:56:40 -04:00
|
|
|
local integrity_sums=($(eval echo "\${${integ}sums[@]}"))
|
2007-06-01 17:10:27 -04:00
|
|
|
if [ ${#integrity_sums[@]} -eq ${#source[@]} ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg "$(gettext "Validating source files with %s...")" "${integ}sums"
|
2009-01-13 17:59:33 -05:00
|
|
|
correlation=1
|
2007-06-01 17:10:27 -04:00
|
|
|
local errors=0
|
|
|
|
local idx=0
|
|
|
|
local file
|
|
|
|
for file in "${source[@]}"; do
|
2009-04-07 00:15:45 -04:00
|
|
|
local found=1
|
2008-08-23 10:34:42 -04:00
|
|
|
file="$(get_filename "$file")"
|
2007-06-01 17:10:27 -04:00
|
|
|
echo -n " $file ... " >&2
|
|
|
|
|
2007-07-10 08:11:40 -04:00
|
|
|
if [ ! -f "$file" ] ; then
|
2009-04-11 14:09:14 -04:00
|
|
|
if [ ! -f "$SRCDEST/$file" ] ; then
|
2007-07-10 08:11:40 -04:00
|
|
|
echo "$(gettext "NOT FOUND")" >&2
|
|
|
|
errors=1
|
2009-04-07 00:15:45 -04:00
|
|
|
found=0
|
2007-07-10 08:11:40 -04:00
|
|
|
else
|
2008-06-22 06:11:54 -04:00
|
|
|
file="$SRCDEST/$file"
|
2007-07-10 08:11:40 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2009-04-07 00:15:45 -04:00
|
|
|
if [ $found -gt 0 ] ; then
|
|
|
|
local expectedsum="$(echo ${integrity_sums[$idx]} | tr '[A-F]' '[a-f]')"
|
|
|
|
local realsum="$(openssl dgst -${integ} "$file" | awk '{print $NF}')"
|
|
|
|
if [ "$expectedsum" = "$realsum" ]; then
|
|
|
|
echo "$(gettext "Passed")" >&2
|
|
|
|
else
|
|
|
|
echo "$(gettext "FAILED")" >&2
|
|
|
|
errors=1
|
|
|
|
fi
|
2007-06-01 17:10:27 -04:00
|
|
|
fi
|
2007-08-03 20:17:54 -04:00
|
|
|
|
|
|
|
idx=$((idx + 1))
|
2007-06-01 17:10:27 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
if [ $errors -gt 0 ]; then
|
|
|
|
error "$(gettext "One or more files did not pass the validity check!")"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
fi
|
2009-01-13 21:13:31 -05:00
|
|
|
elif [ ${#integrity_sums[@]} -gt 0 ]; then
|
2009-01-13 17:59:33 -05:00
|
|
|
error "$(gettext "Integrity checks (%s) differ in size from the source array.")" "$integ"
|
|
|
|
exit 1 # TODO: error code
|
2007-06-01 17:10:27 -04:00
|
|
|
fi
|
|
|
|
done
|
2009-01-13 17:59:33 -05:00
|
|
|
|
|
|
|
if [ $correlation -eq 0 ]; then
|
2009-08-10 09:50:53 -04:00
|
|
|
if [ $SKIPINTEG -eq 1 ]; then
|
|
|
|
warning "$(gettext "Integrity checks are missing.")"
|
|
|
|
else
|
|
|
|
error "$(gettext "Integrity checks are missing.")"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
fi
|
2009-01-13 17:59:33 -05:00
|
|
|
fi
|
2007-06-01 17:10:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
extract_sources() {
|
|
|
|
msg "$(gettext "Extracting Sources...")"
|
|
|
|
local netfile
|
|
|
|
for netfile in "${source[@]}"; do
|
2008-08-23 10:34:42 -04:00
|
|
|
file=$(get_filename "$netfile")
|
2007-06-01 17:10:27 -04:00
|
|
|
if in_array "$file" ${noextract[@]}; then
|
|
|
|
#skip source files in the noextract=() array
|
|
|
|
# these are marked explicitly to NOT be extracted
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2007-07-10 08:11:40 -04:00
|
|
|
if [ ! -f "$file" ] ; then
|
|
|
|
if [ ! -f "$SRCDEST/$file" ] ; then
|
|
|
|
error "$(gettext "Unable to find source file %s for extraction.")" "$file"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1
|
|
|
|
else
|
2008-06-22 06:11:54 -04:00
|
|
|
file="$SRCDEST/$file"
|
2007-07-10 08:11:40 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-06-01 17:10:27 -04:00
|
|
|
# fix flyspray #6246
|
2007-08-23 14:00:41 -04:00
|
|
|
local file_type=$(file -bizL "$file")
|
2009-08-05 10:12:46 -04:00
|
|
|
local ext=${file##*.}
|
2007-06-01 17:10:27 -04:00
|
|
|
local cmd=''
|
|
|
|
case "$file_type" in
|
2008-01-05 17:37:55 -05:00
|
|
|
*application/x-tar*|*application/zip*|*application/x-zip*|*application/x-cpio*)
|
2009-08-05 10:12:46 -04:00
|
|
|
cmd="bsdtar" ;;
|
2007-06-01 17:10:27 -04:00
|
|
|
*application/x-gzip*)
|
2009-08-05 10:12:46 -04:00
|
|
|
case "$ext" in
|
|
|
|
gz|z|Z) cmd="gzip" ;;
|
|
|
|
*) continue;;
|
|
|
|
esac ;;
|
2007-06-01 17:10:27 -04:00
|
|
|
*application/x-bzip*)
|
2009-08-05 10:12:46 -04:00
|
|
|
case "$ext" in
|
|
|
|
bz2|bz) cmd="bzip2" ;;
|
|
|
|
*) continue;;
|
|
|
|
esac ;;
|
2009-05-13 02:21:11 -04:00
|
|
|
*application/x-xz*)
|
2009-08-05 10:12:46 -04:00
|
|
|
case "$ext" in
|
|
|
|
xz) cmd="xz" ;;
|
|
|
|
*) continue;;
|
|
|
|
esac ;;
|
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
|
2009-08-05 10:12:46 -04:00
|
|
|
msg2 "$(gettext "extracting %s with %s")" "$file" "$cmd"
|
|
|
|
if [ "$cmd" = "bsdtar" ]; then
|
|
|
|
$cmd -xf "$file" || ret=?
|
|
|
|
else
|
|
|
|
rm -f "${file%.*}"
|
|
|
|
$cmd -dcf "$file" > "${file%.*}" || ret=?
|
|
|
|
fi
|
2007-06-02 12:41:15 -04:00
|
|
|
if [ $ret -ne 0 ]; then
|
2007-06-22 14:23:28 -04:00
|
|
|
error "$(gettext "Failed to extract %s")" "$file"
|
|
|
|
plain "$(gettext "Aborting...")"
|
2007-06-27 07:04:33 -04:00
|
|
|
exit 1
|
2007-06-01 17:10:27 -04:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $EUID -eq 0 ]; then
|
2008-05-27 15:22:08 -04:00
|
|
|
# change perms of all source files to root user & root group
|
|
|
|
chown -R 0:0 "$srcdir"
|
2007-06-01 17:10:27 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-08-24 18:19:20 -04:00
|
|
|
error_function() {
|
2009-08-23 11:16:21 -04:00
|
|
|
if [ -p "$logpipe" ]; then
|
|
|
|
rm "$logpipe"
|
|
|
|
fi
|
|
|
|
# first exit all subshells, then print the error
|
|
|
|
if [ $BASH_SUBSHELL -eq 0 ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
plain "$(gettext "Aborting...")"
|
2007-06-02 13:39:47 -04:00
|
|
|
remove_deps
|
2007-04-11 15:06:09 -04:00
|
|
|
fi
|
2009-08-23 11:16:21 -04:00
|
|
|
exit 2 # $E_BUILD_FAILED
|
2007-04-11 15:06:09 -04:00
|
|
|
}
|
|
|
|
|
2009-08-24 18:19:20 -04:00
|
|
|
run_function() {
|
2009-01-16 07:26:52 -05:00
|
|
|
if [ -z "$1" ]; then
|
2009-08-24 18:19:20 -04:00
|
|
|
return 1
|
2009-01-16 07:26:52 -05:00
|
|
|
fi
|
2009-08-24 18:19:20 -04:00
|
|
|
pkgfunc="$1"
|
2009-01-16 07:26:52 -05:00
|
|
|
|
2009-01-16 07:20:05 -05:00
|
|
|
# clear user-specified makeflags if requested
|
|
|
|
if [ "$(check_option makeflags)" = "n" ]; then
|
|
|
|
MAKEFLAGS=""
|
|
|
|
fi
|
|
|
|
|
2009-01-16 07:26:52 -05:00
|
|
|
msg "$(gettext "Starting %s()...")" "$pkgfunc"
|
2009-01-16 07:20:05 -05:00
|
|
|
cd "$srcdir"
|
|
|
|
|
|
|
|
# ensure all necessary build variables are exported
|
|
|
|
export CFLAGS CXXFLAGS LDFLAGS MAKEFLAGS CHOST
|
2009-08-24 18:19:20 -04:00
|
|
|
# save our shell options so pkgfunc() can't override what we need
|
|
|
|
local shellopts=$(shopt -p)
|
2009-01-16 07:20:05 -05:00
|
|
|
|
|
|
|
local ret=0
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$LOGGING" -eq 1 ]; then
|
2009-08-24 18:19:20 -04:00
|
|
|
BUILDLOG="${startdir}/${pkgname}-${pkgver}-${pkgrel}-${CARCH}-$pkgfunc.log"
|
2009-01-16 07:20:05 -05:00
|
|
|
if [ -f "$BUILDLOG" ]; then
|
|
|
|
local i=1
|
|
|
|
while true; do
|
|
|
|
if [ -f "$BUILDLOG.$i" ]; then
|
|
|
|
i=$(($i +1))
|
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
mv "$BUILDLOG" "$BUILDLOG.$i"
|
|
|
|
fi
|
|
|
|
|
2009-08-18 16:10:56 -04:00
|
|
|
# ensure overridden package variables survive tee with split packages
|
2008-12-07 21:21:03 -05:00
|
|
|
logpipe=$(mktemp -u "$startdir/logpipe.XXXXXXXX")
|
|
|
|
mknod "$logpipe" p
|
|
|
|
exec 3>&1
|
|
|
|
tee "$BUILDLOG" < "$logpipe" &
|
|
|
|
exec 1>"$logpipe" 2>"$logpipe"
|
2009-08-23 11:16:21 -04:00
|
|
|
restoretrap=$(trap -p ERR)
|
2009-08-24 18:19:20 -04:00
|
|
|
trap 'error_function' ERR
|
2009-08-23 11:16:21 -04:00
|
|
|
$pkgfunc 2>&1
|
|
|
|
eval $restoretrap
|
2008-12-07 21:21:03 -05:00
|
|
|
sync
|
|
|
|
exec 1>&3 2>&3 3>&-
|
|
|
|
rm "$logpipe"
|
2009-01-16 07:20:05 -05:00
|
|
|
else
|
2009-08-23 11:16:21 -04:00
|
|
|
restoretrap=$(trap -p ERR)
|
2009-08-24 18:19:20 -04:00
|
|
|
trap 'error_function' ERR
|
2009-08-23 11:16:21 -04:00
|
|
|
$pkgfunc 2>&1
|
|
|
|
eval $restoretrap
|
2009-01-16 07:20:05 -05:00
|
|
|
fi
|
2009-08-24 18:19:20 -04:00
|
|
|
# reset our shell options
|
|
|
|
eval "$shellopts"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_build() {
|
|
|
|
# use distcc if it is requested (check buildenv and PKGBUILD opts)
|
|
|
|
if [ "$(check_buildenv distcc)" = "y" -a "$(check_option distcc)" != "n" ]; then
|
|
|
|
[ -d /usr/lib/distcc/bin ] && export PATH="/usr/lib/distcc/bin:$PATH"
|
|
|
|
export DISTCC_HOSTS
|
|
|
|
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
|
|
|
|
[ -d /usr/lib/ccache/bin ] && export PATH="/usr/lib/ccache/bin:$PATH"
|
|
|
|
fi
|
|
|
|
|
|
|
|
run_function "build"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_package() {
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
pkgfunc="package"
|
|
|
|
else
|
|
|
|
pkgfunc="package_$1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
run_function "$pkgfunc"
|
2009-01-16 07:20:05 -05:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-01-03 05:19:12 -05:00
|
|
|
if [ "$(check_option docs)" = "n" -a -n "${DOC_DIRS[*]}" ]; then
|
2008-08-12 13:00:18 -04:00
|
|
|
msg2 "$(gettext "Removing doc files...")"
|
2007-04-11 15:05:54 -04:00
|
|
|
rm -rf ${DOC_DIRS[@]}
|
|
|
|
fi
|
|
|
|
|
2009-01-03 05:19:12 -05:00
|
|
|
if [ "$(check_option purge)" = "y" -a -n "${PURGE_TARGETS[*]}" ]; then
|
|
|
|
msg2 "$(gettext "Purging other files...")"
|
2008-12-07 06:14:32 -05:00
|
|
|
local pt
|
|
|
|
for pt in "${PURGE_TARGETS[@]}"; do
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "${pt}" = "${pt//\/}" ]; then
|
2008-12-07 06:14:32 -05:00
|
|
|
find . -type f -name "${pt}" -exec rm -f -- '{}' \;
|
|
|
|
else
|
|
|
|
rm -f ${pt}
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2009-01-03 05:19:12 -05:00
|
|
|
if [ "$(check_option zipman)" = "y" -a -n "${MAN_DIRS[*]}" ]; then
|
2008-08-12 13:00:18 -04:00
|
|
|
msg2 "$(gettext "Compressing man and info pages...")"
|
2008-11-23 06:17:15 -05:00
|
|
|
local manpage ext file link hardlinks hl
|
|
|
|
find ${MAN_DIRS[@]} -type f 2>/dev/null |
|
2008-03-12 19:25:38 -04:00
|
|
|
while read manpage ; do
|
|
|
|
# check file still exists (potentially compressed with hard link)
|
|
|
|
if [ -f ${manpage} ]; then
|
|
|
|
ext="${manpage##*.}"
|
|
|
|
file="${manpage##*/}"
|
|
|
|
if [ "$ext" != "gz" -a "$ext" != "bz2" ]; then
|
|
|
|
# update symlinks to this manpage
|
2008-11-23 06:17:15 -05:00
|
|
|
find ${MAN_DIRS[@]} -lname "$file" 2>/dev/null |
|
2008-03-12 19:25:38 -04:00
|
|
|
while read link ; do
|
|
|
|
rm -f "$link"
|
|
|
|
ln -sf "${file}.gz" "${link}.gz"
|
|
|
|
done
|
|
|
|
# find hard links and remove them
|
|
|
|
# the '|| true' part keeps the script from bailing if find returned an
|
|
|
|
# error, such as when one of the man directories doesn't exist
|
2008-11-23 06:17:15 -05:00
|
|
|
hardlinks="$(find ${MAN_DIRS[@]} \! -name "$file" -samefile "$manpage" 2>/dev/null)" || true
|
2008-03-12 19:25:38 -04:00
|
|
|
for hl in ${hardlinks}; do
|
|
|
|
rm -f "${hl}";
|
|
|
|
done
|
|
|
|
# compress the original
|
|
|
|
gzip -9 "$manpage"
|
|
|
|
# recreate hard links removed earlier
|
|
|
|
for hl in ${hardlinks}; do
|
|
|
|
ln "${manpage}.gz" "${hl}.gz"
|
|
|
|
chmod 644 ${hl}.gz
|
|
|
|
done
|
|
|
|
fi
|
2007-12-04 18:50:29 -05:00
|
|
|
fi
|
2008-03-12 19:25:38 -04:00
|
|
|
done
|
|
|
|
fi
|
2007-04-11 15:05:54 -04:00
|
|
|
|
2009-01-03 05:19:12 -05:00
|
|
|
if [ "$(check_option strip)" = "y" -a -n "${STRIP_DIRS[*]}" ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Stripping debugging symbols from binaries and libraries...")"
|
2008-07-20 01:57:03 -04:00
|
|
|
local binary
|
|
|
|
find ${STRIP_DIRS[@]} -type f 2>/dev/null | while read binary ; do
|
2008-04-27 12:43:41 -04:00
|
|
|
case "$(file -biz "$binary")" in
|
2009-08-18 16:10:56 -04:00
|
|
|
*compressed-encoding*) # Skip compressed binaries
|
2009-05-03 03:21:02 -04:00
|
|
|
;;
|
2008-07-18 00:20:24 -04:00
|
|
|
*application/x-sharedlib*) # Libraries (.so)
|
2009-02-08 01:12:14 -05:00
|
|
|
/usr/bin/strip -S "$binary";;
|
2008-07-18 00:20:24 -04:00
|
|
|
*application/x-archive*) # Libraries (.a)
|
2009-02-08 01:12:14 -05:00
|
|
|
/usr/bin/strip -S "$binary";;
|
2007-04-11 15:05:54 -04:00
|
|
|
*application/x-executable*) # Binaries
|
2008-04-27 12:43:41 -04:00
|
|
|
/usr/bin/strip "$binary";;
|
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...")"
|
2008-06-27 01:01:02 -04:00
|
|
|
find . ! -type d -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...")"
|
2007-10-28 22:18:39 -04:00
|
|
|
find . -depth -type d -empty -delete
|
2007-04-11 15:05:54 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-06-22 02:04:44 -04:00
|
|
|
write_pkginfo() {
|
2007-09-19 01:21:56 -04:00
|
|
|
local builddate=$(date -u "+%s")
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$PACKAGER" ]; then
|
2007-04-11 15:05:47 -04:00
|
|
|
local packager="$PACKAGER"
|
2007-04-11 15:05:23 -04:00
|
|
|
else
|
2007-12-16 23:00:12 -05:00
|
|
|
local packager="Unknown Packager"
|
2007-04-11 15:05:23 -04:00
|
|
|
fi
|
2008-05-26 17:46:01 -04:00
|
|
|
local size=$(du -sk | awk '{print $1 * 1024}')
|
2007-04-11 15:05:23 -04:00
|
|
|
|
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
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$INFAKEROOT" -eq 1 ]; then
|
2007-06-12 18:30:56 -04:00
|
|
|
echo "# using $(fakeroot -v)" >>.PKGINFO
|
|
|
|
fi
|
2008-07-17 23:38:34 -04:00
|
|
|
echo "# $(LC_ALL=C date -u)" >>.PKGINFO
|
2009-06-30 23:52:52 -04:00
|
|
|
echo "pkgname = $1" >>.PKGINFO
|
2009-07-21 22:33:09 -04:00
|
|
|
[ "$SPLITPKG" -eq 1 ] && echo "pkgbase = $pkgbase" >>.PKGINFO
|
2007-04-11 15:05:23 -04:00
|
|
|
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
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$CARCH" ]; then
|
2007-04-11 15:05:23 -04:00
|
|
|
echo "arch = $CARCH" >>.PKGINFO
|
|
|
|
fi
|
2008-02-02 15:52:19 -05:00
|
|
|
if [ "$(check_option force)" = "y" ]; then
|
|
|
|
echo "force = true" >> .PKGINFO
|
|
|
|
fi
|
2007-04-11 15:05:23 -04:00
|
|
|
|
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
|
2007-09-26 00:02:30 -04:00
|
|
|
for it in "${optdepends[@]}"; do
|
|
|
|
echo "optdepend = $it" >>.PKGINFO
|
|
|
|
done
|
2007-04-11 15:05:23 -04:00
|
|
|
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
|
2008-09-27 00:47:29 -04:00
|
|
|
for it in "${packaging_options[@]}"; do
|
|
|
|
local ret="$(check_option $it)"
|
|
|
|
if [ "$ret" != "?" ]; then
|
|
|
|
if [ "$ret" = "y" ]; then
|
|
|
|
echo "makepkgopt = $it" >>.PKGINFO
|
|
|
|
else
|
|
|
|
echo "makepkgopt = !$it" >>.PKGINFO
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
2007-04-11 15:05:23 -04:00
|
|
|
|
|
|
|
# TODO maybe remove this at some point
|
|
|
|
# warn if license array is not present or empty
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -z "$license" ]; then
|
2007-05-28 15:21:58 -04:00
|
|
|
warning "$(gettext "Please add a license line to your %s!")" "$BUILDSCRIPT"
|
2009-05-03 03:21:02 -04:00
|
|
|
plain "$(gettext "Example for GPL\'ed software: license=('GPL').")"
|
2007-04-11 15:05:23 -04:00
|
|
|
fi
|
2009-06-22 02:04:44 -04:00
|
|
|
}
|
|
|
|
|
2009-08-18 14:30:04 -04:00
|
|
|
check_package() {
|
|
|
|
cd "$pkgdir"
|
|
|
|
|
|
|
|
# check existence of backup files
|
|
|
|
local file
|
|
|
|
for file in "${backup[@]}"; do
|
|
|
|
if [ ! -f "$file" ]; then
|
|
|
|
warning "$(gettext "Invalid backup entry : %s")" "$file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2009-06-22 02:04:44 -04:00
|
|
|
create_package() {
|
|
|
|
if [ ! -d "$pkgdir" ]; then
|
|
|
|
error "$(gettext "Missing pkg/ directory.")"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1 # $E_MISSING_PKGDIR
|
|
|
|
fi
|
|
|
|
|
2009-08-18 14:30:04 -04:00
|
|
|
check_package
|
|
|
|
|
2009-08-08 05:21:50 -04:00
|
|
|
cd "$pkgdir"
|
|
|
|
msg "$(gettext "Creating package...")"
|
|
|
|
|
2009-06-22 02:04:44 -04:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
nameofpkg="$pkgname"
|
|
|
|
else
|
|
|
|
nameofpkg="$1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
write_pkginfo $nameofpkg
|
|
|
|
|
2007-12-29 12:24:57 -05:00
|
|
|
local comp_files=".PKGINFO"
|
2007-04-11 15:05:47 -04:00
|
|
|
|
2007-04-11 15:05:23 -04:00
|
|
|
# check for an install script
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$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
|
|
|
|
2008-09-04 21:44:19 -04:00
|
|
|
case "$PKGEXT" in
|
2009-02-19 13:12:34 -05:00
|
|
|
*tar.gz) EXT=${PKGEXT%.gz} ;;
|
|
|
|
*tar.bz2) EXT=${PKGEXT%.bz2} ;;
|
2009-05-13 02:21:11 -04:00
|
|
|
*tar.xz) EXT=${PKGEXT%.xz} ;;
|
2008-09-04 21:44:19 -04:00
|
|
|
*) warning "$(gettext "'%s' is not a valid archive extension.")" \
|
2009-02-19 13:12:34 -05:00
|
|
|
"$PKGEXT" ; EXT=$PKGEXT ;;
|
2008-09-04 21:44:19 -04:00
|
|
|
esac
|
2009-02-19 13:12:34 -05:00
|
|
|
local pkg_file="$PKGDEST/${nameofpkg}-${pkgver}-${pkgrel}-${CARCH}${EXT}"
|
2008-09-04 21:44:19 -04:00
|
|
|
|
2009-02-19 13:12:34 -05:00
|
|
|
local ret=0
|
2007-04-11 15:05:23 -04:00
|
|
|
|
2008-08-01 02:29:46 -04:00
|
|
|
# when fileglobbing, we want * in an empty directory to expand to
|
|
|
|
# the null string rather than itself
|
|
|
|
shopt -s nullglob
|
2009-02-19 13:12:34 -05:00
|
|
|
bsdtar -cf - $comp_files * > "$pkg_file" || ret=$?
|
|
|
|
shopt -u nullglob
|
2008-08-01 02:29:46 -04:00
|
|
|
|
2009-02-19 13:12:34 -05:00
|
|
|
if [ $ret -eq 0 ]; then
|
|
|
|
case "$PKGEXT" in
|
|
|
|
*tar.gz) gzip -f -n "$pkg_file" ;;
|
|
|
|
*tar.bz2) bzip2 -f "$pkg_file" ;;
|
2009-05-13 02:21:11 -04:00
|
|
|
*tar.xz) xz -z -f "$pkg_file" ;;
|
2009-02-19 13:12:34 -05:00
|
|
|
esac
|
|
|
|
ret=$?
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $ret -ne 0 ]; 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
|
|
|
}
|
|
|
|
|
2007-05-30 14:27:13 -04:00
|
|
|
create_srcpackage() {
|
|
|
|
cd "$startdir"
|
2009-06-19 14:33:09 -04:00
|
|
|
|
|
|
|
# Get back to our src directory so we can begin with sources.
|
|
|
|
mkdir -p "$srcdir"
|
|
|
|
cd "$srcdir"
|
|
|
|
download_sources
|
|
|
|
# We can only check checksums if we have all files.
|
|
|
|
check_checksums
|
|
|
|
cd "$startdir"
|
|
|
|
|
2007-05-30 14:27:13 -04:00
|
|
|
msg "$(gettext "Creating source package...")"
|
2008-06-06 21:58:21 -04:00
|
|
|
local srclinks="$(mktemp -d "$startdir"/srclinks.XXXXXXXXX)"
|
2009-03-06 03:28:47 -05:00
|
|
|
mkdir "${srclinks}"/${pkgbase}
|
2008-06-06 21:58:21 -04:00
|
|
|
|
2008-02-20 09:08:31 -05:00
|
|
|
msg2 "$(gettext "Adding %s...")" "$BUILDSCRIPT"
|
2009-07-12 03:10:11 -04:00
|
|
|
ln -s "${BUILDFILE}" "${srclinks}/${pkgbase}/${BUILDSCRIPT}"
|
2007-05-30 14:27:13 -04:00
|
|
|
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$install" ]; then
|
2007-05-30 14:27:13 -04:00
|
|
|
if [ -f $install ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
msg2 "$(gettext "Adding install script...")"
|
2009-03-06 03:28:47 -05:00
|
|
|
ln -s "${startdir}/$install" "${srclinks}/${pkgbase}/"
|
2007-05-30 14:27:13 -04:00
|
|
|
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"
|
2009-03-06 03:28:47 -05:00
|
|
|
ln -s "${startdir}/ChangeLog" "${srclinks}/${pkgbase}"
|
2007-06-02 22:33:17 -04:00
|
|
|
fi
|
|
|
|
|
2008-06-06 21:58:21 -04:00
|
|
|
local netfile
|
2008-06-15 06:10:31 -04:00
|
|
|
for netfile in "${source[@]}"; do
|
2008-08-23 10:34:42 -04:00
|
|
|
local file=$(get_filename "$netfile")
|
2008-06-15 06:10:31 -04:00
|
|
|
if [ -f "$netfile" ]; then
|
2008-06-06 21:58:21 -04:00
|
|
|
msg2 "$(gettext "Adding %s...")" "$netfile"
|
2009-03-06 03:28:47 -05:00
|
|
|
ln -s "${startdir}/$netfile" "${srclinks}/${pkgbase}"
|
2009-01-17 10:42:23 -05:00
|
|
|
elif [ "$SOURCEONLY" -eq 2 -a -f "$SRCDEST/$file" ]; then
|
2008-06-06 21:58:21 -04:00
|
|
|
msg2 "$(gettext "Adding %s...")" "$file"
|
2009-03-06 03:28:47 -05:00
|
|
|
ln -s "$SRCDEST/$file" "${srclinks}/${pkgbase}/"
|
2007-05-30 14:27:13 -04:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2008-09-04 21:44:19 -04:00
|
|
|
local TAR_OPT
|
|
|
|
case "$SRCEXT" in
|
|
|
|
*tar.gz) TAR_OPT="z" ;;
|
|
|
|
*tar.bz2) TAR_OPT="j" ;;
|
2009-05-13 02:21:11 -04:00
|
|
|
*tar.xz) TAR_OPT="J" ;;
|
2008-09-04 21:44:19 -04:00
|
|
|
*) warning "$(gettext "'%s' is not a valid archive extension.")" \
|
|
|
|
"$SRCEXT" ;;
|
|
|
|
esac
|
|
|
|
|
2009-03-06 03:28:47 -05:00
|
|
|
local pkg_file="$PKGDEST/${pkgbase}-${pkgver}-${pkgrel}${SRCEXT}"
|
2007-05-30 14:27:13 -04:00
|
|
|
|
|
|
|
# tar it up
|
|
|
|
msg2 "$(gettext "Compressing source package...")"
|
2008-06-22 06:11:54 -04:00
|
|
|
cd "${srclinks}"
|
2009-03-06 03:28:47 -05:00
|
|
|
if ! bsdtar -c${TAR_OPT}Lf "$pkg_file" ${pkgbase}; then
|
2007-05-30 14:27:13 -04:00
|
|
|
error "$(gettext "Failed to create source package file.")"
|
|
|
|
exit 1 # TODO: error code
|
|
|
|
fi
|
2008-06-22 06:11:54 -04:00
|
|
|
cd "${startdir}"
|
|
|
|
rm -rf "${srclinks}"
|
2007-05-30 14:27:13 -04:00
|
|
|
}
|
|
|
|
|
2007-06-02 13:39:47 -04:00
|
|
|
install_package() {
|
2009-01-17 10:42:23 -05:00
|
|
|
[ "$INSTALL" -eq 0 ] && return
|
2009-03-25 09:52:27 -04:00
|
|
|
|
|
|
|
if [ "$SPLITPKG" -eq 0 ]; then
|
|
|
|
msg "$(gettext "Installing package ${pkgname} with pacman -U...")"
|
|
|
|
else
|
|
|
|
msg "$(gettext "Installing ${pkgbase} package group with pacman -U...")"
|
|
|
|
fi
|
|
|
|
|
|
|
|
local pkglist
|
|
|
|
for pkg in ${pkgname[@]}; do
|
|
|
|
pkglist="${pkglist} $PKGDEST/${pkg}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}"
|
|
|
|
done
|
|
|
|
|
2009-03-29 02:49:57 -04:00
|
|
|
local ret=0
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$ASROOT" -eq 0 ]; then
|
2009-03-29 02:49:57 -04:00
|
|
|
sudo pacman $PACMAN_OPTS -U ${pkglist} || ret=$?
|
2007-06-01 13:43:41 -04:00
|
|
|
else
|
2009-03-29 02:49:57 -04:00
|
|
|
pacman $PACMAN_OPTS -U ${pkglist} || ret=$?
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $ret -ne 0 ]; then
|
|
|
|
warning "$(gettext "Failed to install built package(s).")"
|
|
|
|
return 0
|
2007-02-11 16:47:37 -05:00
|
|
|
fi
|
|
|
|
}
|
2007-01-16 23:54:55 -05:00
|
|
|
|
2009-06-06 13:49:37 -04:00
|
|
|
check_sanity() {
|
|
|
|
# check for no-no's in the build script
|
|
|
|
if [ -z "$pkgname" ]; then
|
|
|
|
error "$(gettext "%s is not allowed to be empty.")" "pkgname"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
if [ -z "$pkgver" ]; then
|
|
|
|
error "$(gettext "%s is not allowed to be empty.")" "pkgver"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
if [ -z "$pkgrel" ]; then
|
|
|
|
error "$(gettext "%s is not allowed to be empty.")" "pkgrel"
|
|
|
|
return 1
|
|
|
|
fi
|
2009-06-09 15:33:12 -04:00
|
|
|
if [ "${pkgname:0:1}" == "-" ]; then
|
|
|
|
error "$(gettext "%s is not allowed to start with a hyphen.")" "pkgname"
|
|
|
|
return 1
|
|
|
|
fi
|
2009-06-06 13:49:37 -04:00
|
|
|
if [ "$pkgver" != "${pkgver//-/}" ]; then
|
|
|
|
error "$(gettext "%s is not allowed to contain hyphens.")" "pkgver"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
if [ "$pkgrel" != "${pkgrel//-/}" ]; then
|
|
|
|
error "$(gettext "%s is not allowed to contain hyphens.")" "pkgrel"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$arch" = 'any' ]; then
|
|
|
|
CARCH='any'
|
|
|
|
fi
|
|
|
|
if ! in_array $CARCH ${arch[@]}; then
|
|
|
|
if [ "$IGNOREARCH" -eq 0 ]; then
|
|
|
|
error "$(gettext "%s is not available for the '%s' architecture.")" "$pkgbase" "$CARCH"
|
|
|
|
plain "$(gettext "Note that many packages may need a line added to their %s")" "$BUILDSCRIPT"
|
|
|
|
plain "$(gettext "such as arch=('%s').")" "$CARCH"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
local provide
|
|
|
|
for provide in ${provides[@]}; do
|
|
|
|
if [ $provide != ${provide//</} -o $provide != ${provide//>/} ]; then
|
|
|
|
error "$(gettext "Provides array cannot contain comparison (< or >) operators.")"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2009-08-18 14:30:04 -04:00
|
|
|
local file
|
|
|
|
for file in "${backup[@]}"; do
|
|
|
|
if [ "${file:0:1}" = "/" ]; then
|
|
|
|
error "$(gettext "Invalid backup entry : %s")" "$file"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2009-08-30 16:05:46 -04:00
|
|
|
local optdepend
|
|
|
|
for optdepend in "${optdepends[@]}"; do
|
|
|
|
pkg=${optdepend%%:*}
|
|
|
|
if [[ ! $pkg =~ ^[[:alnum:]\>\<\=\.\+\_\-]*$ ]]; then
|
|
|
|
error "$(gettext "Invalid syntax for optdepend : '%s'")" "$optdepend"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2009-06-06 13:49:37 -04:00
|
|
|
if [ "$install" -a ! -f "$install" ]; then
|
|
|
|
error "$(gettext "Install scriptlet (%s) does not exist.")" "$install"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
local valid_options=1
|
|
|
|
local opt known kopt
|
|
|
|
for opt in ${options[@]}; do
|
|
|
|
known=0
|
|
|
|
# check if option matches a known option or its inverse
|
|
|
|
for kopt in ${packaging_options[@]} ${other_options[@]}; do
|
|
|
|
if [ "${opt}" = "${kopt}" -o "${opt}" = "!${kopt}" ]; then
|
|
|
|
known=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ $known -eq 0 ]; then
|
|
|
|
error "$(gettext "options array contains unknown option '%s'")" "$opt"
|
|
|
|
valid_options=0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ $valid_options -eq 0 ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2009-07-03 13:16:14 -04:00
|
|
|
if [ "${#pkgname[@]}" -gt "1" ]; then
|
|
|
|
for pkg in ${pkgname[@]}; do
|
|
|
|
if [ "$(type -t package_${pkg})" != "function" ]; then
|
|
|
|
error "$(gettext "missing package function for split package '%s'")" "$pkg"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2009-06-06 13:49:37 -04:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2007-10-26 22:32:09 -04:00
|
|
|
devel_check() {
|
|
|
|
newpkgver=""
|
2009-04-26 05:52:29 -04:00
|
|
|
|
|
|
|
# Do not update pkgver if --holdver is set, when building a source package,
|
2009-07-12 03:10:11 -04:00
|
|
|
# when reading PKGBUILD from pipe (-f), or if we cannot write to the file (-w)
|
|
|
|
if [ "$HOLDVER" -eq 1 -o "$SOURCEONLY" -ne 0 -o ! -f "$BUILDFILE" \
|
|
|
|
-o ! -w "$BUILDFILE" ]; then
|
2008-10-28 08:04:39 -04:00
|
|
|
return
|
|
|
|
fi
|
2009-04-26 05:52:29 -04:00
|
|
|
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -z "$FORCE_VER" ]; then
|
2007-10-26 22:32:09 -04:00
|
|
|
# Check if this is a svn/cvs/etc PKGBUILD; set $newpkgver if so.
|
|
|
|
# This will only be used on the first call to makepkg; subsequent
|
|
|
|
# calls to makepkg via fakeroot will explicitly pass the version
|
|
|
|
# number to avoid having to determine the version number twice.
|
2008-02-07 20:43:52 -05:00
|
|
|
# Also do a brief check to make sure we have the VCS tool available.
|
2007-10-26 22:32:09 -04:00
|
|
|
oldpkgver=$pkgver
|
2009-01-01 23:34:52 -05:00
|
|
|
if [ -n "${_darcstrunk}" -a -n "${_darcsmod}" ] ; then
|
2008-02-07 20:43:52 -05:00
|
|
|
[ $(type -p darcs) ] || return 0
|
2007-10-26 22:32:09 -04:00
|
|
|
msg "$(gettext "Determining latest darcs revision...")"
|
|
|
|
newpkgver=$(date +%Y%m%d)
|
2009-01-01 23:34:52 -05:00
|
|
|
elif [ -n "${_cvsroot}" -a -n "${_cvsmod}" ] ; then
|
2008-02-07 20:43:52 -05:00
|
|
|
[ $(type -p cvs) ] || return 0
|
2007-10-26 22:32:09 -04:00
|
|
|
msg "$(gettext "Determining latest cvs revision...")"
|
|
|
|
newpkgver=$(date +%Y%m%d)
|
2009-01-01 23:34:52 -05:00
|
|
|
elif [ -n "${_gitroot}" -a -n "${_gitname}" ] ; then
|
2008-02-07 20:43:52 -05:00
|
|
|
[ $(type -p git) ] || return 0
|
2007-10-26 22:32:09 -04:00
|
|
|
msg "$(gettext "Determining latest git revision...")"
|
|
|
|
newpkgver=$(date +%Y%m%d)
|
2009-01-01 23:34:52 -05:00
|
|
|
elif [ -n "${_svntrunk}" -a -n "${_svnmod}" ] ; then
|
2008-02-07 20:43:52 -05:00
|
|
|
[ $(type -p svn) ] || return 0
|
2007-10-26 22:32:09 -04:00
|
|
|
msg "$(gettext "Determining latest svn revision...")"
|
2008-07-17 23:38:34 -04:00
|
|
|
newpkgver=$(LC_ALL=C svn info $_svntrunk | sed -n 's/^Last Changed Rev: \([0-9]*\)$/\1/p')
|
2009-01-01 23:34:52 -05:00
|
|
|
elif [ -n "${_bzrtrunk}" -a -n "${_bzrmod}" ] ; then
|
2008-02-07 20:43:52 -05:00
|
|
|
[ $(type -p bzr) ] || return 0
|
2007-10-26 22:32:09 -04:00
|
|
|
msg "$(gettext "Determining latest bzr revision...")"
|
|
|
|
newpkgver=$(bzr revno ${_bzrtrunk})
|
2009-01-01 23:34:52 -05:00
|
|
|
elif [ -n "${_hgroot}" -a -n "${_hgrepo}" ] ; then
|
2008-02-07 20:43:52 -05:00
|
|
|
[ $(type -p hg) ] || return 0
|
2007-10-26 22:32:09 -04:00
|
|
|
msg "$(gettext "Determining latest hg revision...")"
|
|
|
|
if [ -d ./src/$_hgrepo ] ; then
|
|
|
|
cd ./src/$_hgrepo
|
|
|
|
hg pull
|
|
|
|
hg update
|
|
|
|
else
|
2007-11-05 02:37:37 -05:00
|
|
|
[[ ! -d ./src/ ]] && mkdir ./src/
|
2007-10-26 22:32:09 -04:00
|
|
|
hg clone $_hgroot/$_hgrepo ./src/$_hgrepo
|
|
|
|
cd ./src/$_hgrepo
|
|
|
|
fi
|
2008-11-30 17:07:06 -05:00
|
|
|
newpkgver=$(hg tip --template "{rev}")
|
2007-10-26 22:32:09 -04:00
|
|
|
cd ../../
|
|
|
|
fi
|
|
|
|
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$newpkgver" ]; then
|
2007-10-26 22:32:09 -04:00
|
|
|
msg2 "$(gettext "Version found: %s")" "$newpkgver"
|
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
|
|
|
# Version number retrieved from fakeroot->makepkg argument
|
|
|
|
newpkgver=$FORCE_VER
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
devel_update() {
|
|
|
|
# This is lame, but if we're wanting to use an updated pkgver for
|
|
|
|
# retrieving svn/cvs/etc sources, we'll update the PKGBUILD with
|
|
|
|
# the new pkgver and then re-source it. This is the most robust
|
|
|
|
# method for dealing with PKGBUILDs that use, e.g.:
|
|
|
|
#
|
|
|
|
# pkgver=23
|
|
|
|
# ...
|
|
|
|
# _foo=pkgver
|
|
|
|
#
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$newpkgver" ]; then
|
2008-10-28 07:22:05 -04:00
|
|
|
if [ "$newpkgver" != "$pkgver" ]; then
|
2009-07-12 03:10:11 -04:00
|
|
|
if [ -f "$BUILDFILE" -a -w "$BUILDFILE" ]; then
|
|
|
|
@SEDINPLACE@ "s/^pkgver=[^ ]*/pkgver=$newpkgver/" "$BUILDFILE"
|
|
|
|
@SEDINPLACE@ "s/^pkgrel=[^ ]*/pkgrel=1/" "$BUILDFILE"
|
|
|
|
source "$BUILDFILE"
|
2008-10-28 08:04:39 -04:00
|
|
|
fi
|
2007-10-26 22:32:09 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-01-16 07:22:04 -05:00
|
|
|
backup_package_variables() {
|
|
|
|
for var in ${splitpkg_overrides[@]}; do
|
|
|
|
indirect="${var}_backup"
|
2009-06-09 00:11:15 -04:00
|
|
|
eval "${indirect}=(\${$var[@]})"
|
2009-01-16 07:22:04 -05:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
restore_package_variables() {
|
|
|
|
for var in ${splitpkg_overrides[@]}; do
|
|
|
|
indirect="${var}_backup"
|
|
|
|
if [ -n "${!indirect}" ]; then
|
2009-06-09 00:11:15 -04:00
|
|
|
eval "${var}=(\${$indirect[@]})"
|
2009-01-16 07:22:04 -05:00
|
|
|
else
|
|
|
|
unset ${var}
|
|
|
|
fi
|
|
|
|
done
|
2009-07-03 12:28:03 -04:00
|
|
|
|
|
|
|
# pkgdesc gets restored as an array - convert back to a string
|
|
|
|
local pkgdesc_backup="${pkgdesc[@]}"
|
|
|
|
unset pkgdesc
|
|
|
|
pkgdesc=${pkgdesc_backup}
|
2009-01-16 07:22:04 -05:00
|
|
|
}
|
|
|
|
|
2008-12-22 06:28:35 -05:00
|
|
|
# getopt like parser
|
|
|
|
parse_options() {
|
|
|
|
local short_options=$1; shift;
|
|
|
|
local long_options=$1; shift;
|
|
|
|
local ret=0;
|
|
|
|
local unused_options=""
|
|
|
|
|
|
|
|
while [ -n "$1" ]; do
|
|
|
|
if [ ${1:0:2} = '--' ]; then
|
|
|
|
if [ -n "${1:2}" ]; then
|
|
|
|
local match=""
|
|
|
|
for i in ${long_options//,/ }; do
|
|
|
|
if [ ${1:2} = ${i//:} ]; then
|
|
|
|
match=$i
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ -n "$match" ]; then
|
|
|
|
if [ ${1:2} = $match ]; then
|
|
|
|
printf ' %s' "$1"
|
|
|
|
else
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
printf ' %s' "$1"
|
|
|
|
shift
|
|
|
|
printf " '%s'" "$1"
|
|
|
|
else
|
|
|
|
echo "makepkg: option '$1' $(gettext "requires an argument")" >&2
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "makepkg: $(gettext "unrecognized option") '$1'" >&2
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
elif [ ${1:0:1} = '-' ]; then
|
|
|
|
for ((i=1; i<${#1}; i++)); do
|
|
|
|
if [[ "$short_options" =~ "${1:i:1}" ]]; then
|
|
|
|
if [[ "$short_options" =~ "${1:i:1}:" ]]; then
|
|
|
|
if [ -n "${1:$i+1}" ]; then
|
|
|
|
printf ' -%s' "${1:i:1}"
|
|
|
|
printf " '%s'" "${1:$i+1}"
|
|
|
|
else
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
printf ' -%s' "${1:i:1}"
|
|
|
|
shift
|
|
|
|
printf " '%s'" "${1}"
|
|
|
|
else
|
|
|
|
echo "makepkg: option $(gettext "requires an argument") -- '${1:i:1}'" >&2
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
break
|
|
|
|
else
|
|
|
|
printf ' -%s' "${1:i:1}"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "makepkg: $(gettext "invalid option") -- '${1:i:1}'" >&2
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
unused_options="${unused_options} '$1'"
|
|
|
|
fi
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
printf " --"
|
|
|
|
if [ -n "$unused_options" ]; then
|
|
|
|
for i in ${unused_options[@]}; do
|
|
|
|
printf ' %s' "$i"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
if [ -n "$1" ]; then
|
|
|
|
while [ -n "$1" ]; do
|
|
|
|
printf " '%s'" "${1}"
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
printf "\n"
|
|
|
|
|
|
|
|
return $ret
|
|
|
|
}
|
|
|
|
|
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:")"
|
2007-06-04 17:06:11 -04:00
|
|
|
printf "$(gettext " -A, --ignorearch Ignore incomplete arch field in %s")\n" "$BUILDSCRIPT"
|
2007-03-31 20:07:37 -04:00
|
|
|
echo "$(gettext " -c, --clean Clean up work files after build")"
|
|
|
|
echo "$(gettext " -C, --cleancache Clean up source files from the cache")"
|
2008-08-07 11:08:33 -04:00
|
|
|
printf "$(gettext " --config <config> Use an alternate config file (instead of '%s')")\n" "$confdir/makepkg.conf"
|
2007-03-31 20:07:37 -04:00
|
|
|
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")"
|
2009-08-10 09:50:53 -04:00
|
|
|
echo "$(gettext " --skipinteg Do not fail when integrity checks are missing")"
|
2007-03-31 20:07:37 -04:00
|
|
|
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
|
2009-05-10 11:16:51 -04:00
|
|
|
echo "$(gettext " -R, --repackage Repackage contents of the package without rebuilding")"
|
2007-03-31 20:07:37 -04:00
|
|
|
echo "$(gettext " -s, --syncdeps Install missing dependencies with pacman")"
|
2008-07-30 22:53:02 -04:00
|
|
|
echo "$(gettext " --allsource Generate a source-only tarball including downloaded sources")"
|
2007-06-01 13:43:41 -04:00
|
|
|
echo "$(gettext " --asroot Allow makepkg to run as root user")"
|
2008-01-13 18:39:06 -05:00
|
|
|
echo "$(gettext " --holdver Prevent automatic version bumping for development PKGBUILDs")"
|
2008-07-30 22:53:02 -04:00
|
|
|
echo "$(gettext " --source Generate a source-only tarball without downloaded sources")"
|
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() {
|
2007-07-06 19:35:32 -04:00
|
|
|
printf "makepkg (pacman) %s\n" "$myver"
|
|
|
|
printf "$(gettext "\
|
2009-07-01 03:08:33 -04:00
|
|
|
Copyright (c) 2006-2009 Pacman Development Team <pacman-dev@archlinux.org>.\n\
|
|
|
|
Copyright (C) 2002-2006 Judd Vinet <jvinet@zeroflux.org>.\n\n\
|
2007-07-06 19:35:32 -04:00
|
|
|
This is free software; see the source for copying conditions.\n\
|
|
|
|
There is NO WARRANTY, to the extent permitted by law.\n")"
|
2007-05-29 16:53:15 -04:00
|
|
|
}
|
|
|
|
|
2008-02-17 22:15:06 -05:00
|
|
|
# PROGRAM START
|
|
|
|
|
|
|
|
# determine whether we have gettext; make it a no-op if we do not
|
|
|
|
if [ ! $(type -t gettext) ]; then
|
|
|
|
gettext() {
|
|
|
|
echo "$@"
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
ARGLIST=$@
|
|
|
|
|
2007-06-05 06:58:25 -04:00
|
|
|
# Parse Command Line Options.
|
2009-08-07 02:22:55 -04:00
|
|
|
OPT_SHORT="AcCdefFghiLmop:rRsV"
|
|
|
|
OPT_LONG="allsource,asroot,ignorearch,clean,cleancache,nodeps"
|
2008-06-06 21:58:21 -04:00
|
|
|
OPT_LONG="$OPT_LONG,noextract,force,forcever:,geninteg,help,holdver"
|
2009-08-10 09:50:53 -04:00
|
|
|
OPT_LONG="$OPT_LONG,install,log,nocolor,nobuild,rmdeps,repackage,skipinteg"
|
|
|
|
OPT_LONG="$OPT_LONG,source,syncdeps,version,config:"
|
2007-06-05 06:58:25 -04:00
|
|
|
# Pacman Options
|
|
|
|
OPT_LONG="$OPT_LONG,noconfirm,noprogressbar"
|
2008-12-22 06:28:35 -05:00
|
|
|
OPT_TEMP="$(parse_options $OPT_SHORT $OPT_LONG "$@" || echo 'PARSE_OPTIONS FAILED')"
|
|
|
|
if echo "$OPT_TEMP" | grep -q 'PARSE_OPTIONS FAILED'; then
|
2007-06-05 06:58:25 -04:00
|
|
|
# This is a small hack to stop the script bailing with 'set -e'
|
|
|
|
echo; usage; exit 1 # E_INVALID_OPTION;
|
|
|
|
fi
|
|
|
|
eval set -- "$OPT_TEMP"
|
|
|
|
unset OPT_SHORT OPT_LONG OPT_TEMP
|
|
|
|
|
|
|
|
while true; do
|
|
|
|
case "$1" in
|
|
|
|
# Pacman Options
|
2006-02-16 17:57:25 -05:00
|
|
|
--noconfirm) PACMAN_OPTS="$PACMAN_OPTS --noconfirm" ;;
|
|
|
|
--noprogressbar) PACMAN_OPTS="$PACMAN_OPTS --noprogressbar" ;;
|
2007-06-05 06:58:25 -04:00
|
|
|
|
|
|
|
# Makepkg Options
|
2008-06-06 21:58:21 -04:00
|
|
|
--allsource) SOURCEONLY=2 ;;
|
2007-06-05 06:58:25 -04:00
|
|
|
--asroot) ASROOT=1 ;;
|
|
|
|
-A|--ignorearch) IGNOREARCH=1 ;;
|
|
|
|
-c|--clean) CLEANUP=1 ;;
|
|
|
|
-C|--cleancache) CLEANCACHE=1 ;;
|
2008-08-07 11:08:33 -04:00
|
|
|
--config) shift; MAKEPKG_CONF=$1 ;;
|
2007-06-05 06:58:25 -04:00
|
|
|
-d|--nodeps) NODEPS=1 ;;
|
|
|
|
-e|--noextract) NOEXTRACT=1 ;;
|
|
|
|
-f|--force) FORCE=1 ;;
|
2008-01-13 18:39:06 -05:00
|
|
|
#hidden opt used by fakeroot call for svn/cvs/etc PKGBUILDs to set pkgver
|
|
|
|
--forcever) shift; FORCE_VER=$1;;
|
2007-06-13 05:48:22 -04:00
|
|
|
-F) INFAKEROOT=1 ;;
|
2007-06-05 06:58:25 -04:00
|
|
|
-g|--geninteg) GENINTEG=1 ;;
|
2008-01-13 18:39:06 -05:00
|
|
|
--holdver) HOLDVER=1 ;;
|
2007-06-05 06:58:25 -04:00
|
|
|
-i|--install) INSTALL=1 ;;
|
|
|
|
-L|--log) LOGGING=1 ;;
|
|
|
|
-m|--nocolor) USE_COLOR='n' ;;
|
|
|
|
-o|--nobuild) NOBUILD=1 ;;
|
2009-07-12 03:10:11 -04:00
|
|
|
-p) shift; BUILDFILE=$1 ;;
|
2007-06-05 06:58:25 -04:00
|
|
|
-r|--rmdeps) RMDEPS=1 ;;
|
|
|
|
-R|--repackage) REPKG=1 ;;
|
2009-08-10 09:50:53 -04:00
|
|
|
--skipinteg) SKIPINTEG=1 ;;
|
2007-06-05 06:58:25 -04:00
|
|
|
--source) SOURCEONLY=1 ;;
|
|
|
|
-s|--syncdeps) DEP_BIN=1 ;;
|
2007-06-02 13:39:48 -04:00
|
|
|
|
2007-06-05 06:58:25 -04:00
|
|
|
-h|--help) usage; exit 0 ;; # E_OK
|
|
|
|
-V|--version) version; exit 0 ;; # E_OK
|
|
|
|
|
2007-06-13 05:48:22 -04:00
|
|
|
--) OPT_IND=0; shift; break;;
|
2007-06-05 06:58:25 -04:00
|
|
|
*) usage; exit 1 ;; # E_INVALID_OPTION
|
2005-03-14 20:51:43 -05:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2008-08-07 11:08:33 -04:00
|
|
|
#preserve environment variables
|
|
|
|
_PKGDEST=${PKGDEST}
|
|
|
|
_SRCDEST=${SRCDEST}
|
|
|
|
|
|
|
|
# default config is makepkg.conf
|
|
|
|
MAKEPKG_CONF=${MAKEPKG_CONF:-$confdir/makepkg.conf}
|
|
|
|
|
|
|
|
# Source the config file; fail if it is not found
|
|
|
|
if [ -r "$MAKEPKG_CONF" ]; then
|
|
|
|
source "$MAKEPKG_CONF"
|
|
|
|
else
|
|
|
|
error "$(gettext "%s not found.")" "$MAKEPKG_CONF"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1 # $E_CONFIG_ERROR
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Source user-specific makepkg.conf overrides
|
|
|
|
if [ -r ~/.makepkg.conf ]; then
|
|
|
|
source ~/.makepkg.conf
|
|
|
|
fi
|
|
|
|
|
2009-03-14 09:51:58 -04:00
|
|
|
# check if messages are to be printed using color
|
|
|
|
if [ -t 2 -a ! "$USE_COLOR" = "n" -a "$(check_buildenv color)" = "y" ]; then
|
|
|
|
COLORMSG=1
|
|
|
|
fi
|
|
|
|
|
2008-08-07 11:08:33 -04:00
|
|
|
# override settings with an environment variable for batch processing
|
|
|
|
PKGDEST=${_PKGDEST:-$PKGDEST}
|
|
|
|
PKGDEST=${PKGDEST:-$startdir} #default to $startdir if undefined
|
|
|
|
SRCDEST=${_SRCDEST:-$SRCDEST}
|
|
|
|
SRCDEST=${SRCDEST:-$startdir} #default to $startdir if undefined
|
|
|
|
|
|
|
|
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ "$HOLDVER" -eq 1 -a -n "$FORCE_VER" ]; then
|
2008-05-26 02:27:22 -04:00
|
|
|
# The '\\0' is here to prevent gettext from thinking --holdver is an option
|
2008-01-20 08:08:55 -05:00
|
|
|
error "$(gettext "\\0--holdver and --forcever cannot both be specified" )"
|
2008-01-13 18:39:06 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$CLEANCACHE" -eq 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"
|
2008-07-17 16:35:35 -04:00
|
|
|
echo -n "$(gettext " Are you sure you wish to do this? ")"
|
|
|
|
echo -n "$(gettext "[Y/n]")"
|
2007-03-08 23:35:04 -05:00
|
|
|
read answer
|
2008-07-17 16:35:35 -04:00
|
|
|
answer=$(echo $answer | tr '[:lower:]' '[:upper:]')
|
|
|
|
if [ "$answer" = "$(gettext "YES")" -o "$answer" = "$(gettext "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
|
2008-08-07 11:08:33 -04:00
|
|
|
error "$(gettext "Source destination must be defined in %s.")" "$MAKEPKG_CONF"
|
2007-03-31 20:07:37 -04:00
|
|
|
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
|
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$INFAKEROOT" -eq 0 ]; then
|
|
|
|
if [ $EUID -eq 0 -a "$ASROOT" -eq 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
|
2009-01-17 10:42:23 -05:00
|
|
|
elif [ $EUID -gt 0 -a "$ASROOT" -eq 1 ]; then
|
2007-06-01 13:43:41 -04:00
|
|
|
# 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-07-10 10:31:03 -04:00
|
|
|
elif [ "$(check_buildenv fakeroot)" = "y" -a $EUID -gt 0 ]; then
|
2007-05-27 17:01:49 -04:00
|
|
|
if [ ! $(type -p fakeroot) ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
error "$(gettext "Fakeroot must be installed if using the 'fakeroot' option")"
|
2008-08-07 11:08:33 -04:00
|
|
|
plain "$(gettext "in the BUILDENV array in %s.")" "$MAKEPKG_CONF"
|
2007-05-27 17:01:49 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
2007-07-10 10:31:03 -04:00
|
|
|
elif [ $EUID -gt 0 ]; then
|
2007-04-11 15:06:25 -04:00
|
|
|
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")"
|
2008-08-07 11:08:33 -04:00
|
|
|
plain "$(gettext "placing 'fakeroot' in the BUILDENV array in %s.")" "$MAKEPKG_CONF"
|
2007-04-11 15:06:25 -04:00
|
|
|
sleep 1
|
|
|
|
fi
|
|
|
|
else
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -z "$FAKEROOTKEY" ]; then
|
2007-04-11 15:06:25 -04:00
|
|
|
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
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$ASROOT" -eq 0 \
|
|
|
|
-a \( "$DEP_BIN" -eq 1 -o "$RMDEPS" -eq 1 -o "$INSTALL" -eq 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
|
|
|
|
|
2009-03-06 03:28:47 -05:00
|
|
|
unset pkgname pkgbase pkgver pkgrel pkgdesc url license groups provides
|
|
|
|
unset md5sums replaces depends conflicts backup source install build
|
|
|
|
unset makedepends optdepends options noextract
|
2006-11-14 02:58:42 -05:00
|
|
|
|
2009-07-12 03:10:11 -04:00
|
|
|
BUILDFILE=${BUILDFILE:-$BUILDSCRIPT}
|
|
|
|
if [ ! -f "$BUILDFILE" ]; then
|
2008-10-29 00:21:28 -04:00
|
|
|
if [ -t 0 ]; then
|
2009-07-12 03:10:11 -04:00
|
|
|
error "$(gettext "%s does not exist.")" "$BUILDFILE"
|
2008-10-29 00:21:28 -04:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
# PKGBUILD passed through a pipe
|
2009-07-12 03:10:11 -04:00
|
|
|
BUILDFILE=/dev/stdin
|
|
|
|
source "$BUILDFILE"
|
2008-10-29 00:21:28 -04:00
|
|
|
fi
|
2008-12-07 00:32:34 -05:00
|
|
|
else
|
2009-07-12 03:10:11 -04:00
|
|
|
crlftest=$(file "$BUILDFILE" | grep -F 'CRLF' || true)
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$crlftest" ]; then
|
2009-07-12 03:10:11 -04:00
|
|
|
error "$(gettext "%s contains CRLF characters and cannot be sourced.")" "$BUILDFILE"
|
2008-12-07 00:32:34 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2009-07-12 03:10:11 -04:00
|
|
|
if [ "${BUILDFILE:0:1}" != "/" ]; then
|
|
|
|
BUILDFILE="$startdir/$BUILDFILE"
|
|
|
|
fi
|
|
|
|
source "$BUILDFILE"
|
2009-05-15 23:48:10 -04:00
|
|
|
fi
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$GENINTEG" -eq 1 ]; then
|
2008-05-26 02:27:22 -04:00
|
|
|
mkdir -p "$srcdir"
|
|
|
|
cd "$srcdir"
|
|
|
|
download_sources
|
|
|
|
generate_checksums
|
|
|
|
exit 0 # $E_OK
|
|
|
|
fi
|
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$(type -t package)" = "function" ]; then
|
2009-01-17 01:41:01 -05:00
|
|
|
PKGFUNC=1
|
|
|
|
fi
|
|
|
|
|
2009-06-06 13:49:37 -04:00
|
|
|
# check the PKGBUILD for some basic requirements
|
2009-06-13 09:54:23 -04:00
|
|
|
check_sanity || exit 1
|
2008-05-13 06:26:11 -04:00
|
|
|
|
2008-01-13 18:39:06 -05:00
|
|
|
# We need to run devel_update regardless of whether we are in the fakeroot
|
|
|
|
# build process so that if the user runs makepkg --forcever manually, we
|
|
|
|
# 1) output the correct pkgver, and 2) use the correct filename when
|
|
|
|
# checking if the package file already exists - fixes FS #9194
|
2007-11-08 02:26:01 -05:00
|
|
|
devel_check
|
2008-01-13 18:39:06 -05:00
|
|
|
devel_update
|
2007-11-08 02:26:01 -05:00
|
|
|
|
2009-03-06 03:28:47 -05:00
|
|
|
if [ "${#pkgname[@]}" -gt "1" ]; then
|
|
|
|
SPLITPKG=1
|
|
|
|
fi
|
|
|
|
|
2009-07-03 13:16:14 -04:00
|
|
|
pkgbase=${pkgbase:-${pkgname[0]}}
|
|
|
|
|
2009-07-01 23:53:29 -04:00
|
|
|
if [ "$SPLITPKG" -eq 0 ]; then
|
|
|
|
if [ -f "$PKGDEST/${pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}" \
|
|
|
|
-a "$FORCE" -eq 0 -a "$SOURCEONLY" -eq 0 -a "$NOBUILD" -eq 0 ]; then
|
|
|
|
if [ "$INSTALL" -eq 1 ]; then
|
|
|
|
warning "$(gettext "A package has already been built, installing existing package...")"
|
|
|
|
install_package
|
|
|
|
exit $?
|
|
|
|
else
|
|
|
|
error "$(gettext "A package has already been built. (use -f to overwrite)")"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
allpkgbuilt=1
|
|
|
|
somepkgbuilt=0
|
|
|
|
for pkg in ${pkgname[@]}; do
|
|
|
|
if [ -f "$PKGDEST/${pkg}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}" ]; then
|
|
|
|
somepkgbuilt=1
|
|
|
|
else
|
|
|
|
allpkgbuilt=0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ "$FORCE" -eq 0 -a "$SOURCEONLY" -eq 0 -a "$NOBUILD" -eq 0 ]; then
|
|
|
|
if [ "$allpkgbuilt" -eq 1 ]; then
|
|
|
|
if [ "$INSTALL" -eq 1 ]; then
|
|
|
|
warning "$(gettext "The package group has already been built, installing existing packages...")"
|
|
|
|
install_package
|
|
|
|
exit $?
|
|
|
|
else
|
|
|
|
error "$(gettext "The package group has already been built. (use -f to overwrite)")"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$somepkgbuilt" -eq 1 ]; then
|
|
|
|
error "$(gettext "Part of the package group has already been built. (use -f to overwrite)")"
|
|
|
|
exit 1
|
|
|
|
fi
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
2009-07-01 23:53:29 -04:00
|
|
|
unset allpkgbuilt somepkgbuilt
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
|
2007-10-26 22:32:09 -04:00
|
|
|
# Run the bare minimum in fakeroot
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$INFAKEROOT" -eq 1 ]; then
|
|
|
|
if [ "$SPLITPKG" -eq 0 ]; then
|
|
|
|
if [ "$PKGFUNC" -eq 0 ]; then
|
|
|
|
if [ "$REPKG" -eq 0 ]; then
|
2009-01-16 07:32:05 -05:00
|
|
|
run_build
|
2009-03-30 03:41:34 -04:00
|
|
|
tidy_install
|
2009-01-16 07:32:05 -05:00
|
|
|
fi
|
2009-01-17 01:41:01 -05:00
|
|
|
else
|
|
|
|
run_package
|
2009-01-16 07:32:05 -05:00
|
|
|
tidy_install
|
2009-01-16 07:20:05 -05:00
|
|
|
fi
|
2009-01-16 07:32:05 -05:00
|
|
|
create_package
|
|
|
|
else
|
|
|
|
for pkg in ${pkgname[@]}; do
|
|
|
|
pkgdir="$pkgdir/$pkg"
|
|
|
|
mkdir -p "$pkgdir"
|
|
|
|
backup_package_variables
|
|
|
|
run_package $pkg
|
|
|
|
tidy_install
|
|
|
|
create_package $pkg
|
|
|
|
restore_package_variables
|
|
|
|
pkgdir="${pkgdir%/*}"
|
|
|
|
done
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
2007-04-11 15:06:25 -04:00
|
|
|
|
|
|
|
msg "$(gettext "Leaving fakeroot environment.")"
|
|
|
|
exit 0 # $E_OK
|
2005-03-14 20:51:43 -05:00
|
|
|
fi
|
|
|
|
|
2009-03-06 03:28:47 -05:00
|
|
|
msg "$(gettext "Making package: %s")" "$pkgbase $pkgver-$pkgrel $CARCH ($(date))"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-05-30 14:27:13 -04:00
|
|
|
# if we are creating a source-only package, go no further
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$SOURCEONLY" -ne 0 ]; then
|
2009-03-06 03:28:47 -05:00
|
|
|
if [ -f "$PKGDEST/${pkgbase}-${pkgver}-${pkgrel}${SRCEXT}" \
|
2009-01-17 10:42:23 -05:00
|
|
|
-a "$FORCE" -eq 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
|
2009-03-06 03:28:47 -05:00
|
|
|
msg "$(gettext "Source package created: %s")" "$pkgbase ($(date))"
|
2007-05-30 14:27:13 -04:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2006-12-21 12:42:58 -05:00
|
|
|
# fix flyspray bug #5973
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$NODEPS" -eq 1 -o "$NOBUILD" -eq 1 -o "$REPKG" -eq 1 ]; then
|
2008-11-13 12:08:52 -05:00
|
|
|
# no warning message needed for nobuild, repkg
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$NODEPS" -eq 1 ]; then
|
2007-06-02 13:39:48 -04:00
|
|
|
warning "$(gettext "Skipping dependency checks.")"
|
2007-01-31 21:12:49 -05:00
|
|
|
fi
|
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
|
|
|
|
|
2008-02-08 16:34:51 -05:00
|
|
|
# ensure we have a sane umask set
|
|
|
|
umask 0022
|
|
|
|
|
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
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$NOEXTRACT" -eq 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
|
|
|
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ "$NOEXTRACT" -eq 1 -a -z "$(ls "$srcdir" 2>/dev/null)" ]; then
|
2007-06-02 22:33:17 -04:00
|
|
|
error "$(gettext "The source directory is empty, there is nothing to build!")"
|
|
|
|
plain "$(gettext "Aborting...")"
|
|
|
|
exit 1
|
|
|
|
fi
|
2009-01-17 10:42:23 -05:00
|
|
|
elif [ "$REPKG" -eq 1 ]; then
|
|
|
|
if [ "$PKGFUNC" -eq 0 -a "$SPLITPKG" -eq 0 \
|
2009-01-17 10:51:48 -05:00
|
|
|
-a \( ! -d "$pkgdir" -o -z "$(ls "$pkgdir" 2>/dev/null)" \) ]; then
|
2009-01-17 01:41:01 -05:00
|
|
|
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
|
|
|
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$NOBUILD" -eq 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
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ -d "$pkgdir" \
|
|
|
|
-a \( "$REPKG" -eq 0 -o "$PKGFUNC" -eq 1 -o "$SPLITPKG" -eq 1 \) ]; 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"
|
2008-01-08 10:10:45 -05:00
|
|
|
cd "$startdir"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2008-11-13 12:08:52 -05:00
|
|
|
# if we are root or if fakeroot is not enabled, then we don't use it
|
2008-05-27 02:00:51 -04:00
|
|
|
if [ "$(check_buildenv fakeroot)" != "y" -o $EUID -eq 0 ]; then
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$REPKG" -eq 0 ]; then
|
2009-01-17 01:41:01 -05:00
|
|
|
devel_update
|
|
|
|
run_build
|
|
|
|
fi
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$SPLITPKG" -eq 0 ]; then
|
|
|
|
if [ "$PKGFUNC" -eq 1 ]; then
|
2009-01-17 01:41:01 -05:00
|
|
|
run_package
|
|
|
|
tidy_install
|
2009-01-17 10:42:23 -05:00
|
|
|
elif [ "$REPKG" -eq 0 ]; then
|
2009-01-16 07:32:05 -05:00
|
|
|
tidy_install
|
|
|
|
fi
|
|
|
|
create_package
|
|
|
|
else
|
|
|
|
for pkg in ${pkgname[@]}; do
|
|
|
|
pkgdir="$pkgdir/$pkg"
|
|
|
|
mkdir -p "$pkgdir"
|
|
|
|
backup_package_variables
|
|
|
|
run_package $pkg
|
|
|
|
tidy_install
|
|
|
|
create_package $pkg
|
|
|
|
restore_package_variables
|
|
|
|
pkgdir="${pkgdir%/*}"
|
|
|
|
done
|
2007-04-11 15:06:25 -04:00
|
|
|
fi
|
|
|
|
else
|
2009-01-17 10:42:23 -05:00
|
|
|
if [ "$REPKG" -eq 0 -a \( "$PKGFUNC" -eq 1 -o "$SPLITPKG" -eq 1 \) ]; then
|
2009-01-16 07:20:05 -05:00
|
|
|
devel_update
|
|
|
|
run_build
|
|
|
|
cd "$startdir"
|
|
|
|
fi
|
|
|
|
|
2007-04-11 15:06:25 -04:00
|
|
|
msg "$(gettext "Entering fakeroot environment...")"
|
|
|
|
|
2009-01-17 10:51:48 -05:00
|
|
|
if [ -n "$newpkgver" ]; then
|
2007-10-26 22:32:09 -04:00
|
|
|
fakeroot -- $0 --forcever $newpkgver -F $ARGLIST || exit $?
|
|
|
|
else
|
|
|
|
fakeroot -- $0 -F $ARGLIST || exit $?
|
|
|
|
fi
|
2007-04-11 15:06:25 -04:00
|
|
|
fi
|
|
|
|
fi
|
2006-12-05 02:43:42 -05:00
|
|
|
|
2009-03-06 03:28:47 -05:00
|
|
|
msg "$(gettext "Finished making: %s")" "$pkgbase $pkgver-$pkgrel $CARCH ($(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:
|