hooks/do-pkg: clean up 00-gen-pkg.sh
This commit is contained in:
parent
0795d6a787
commit
f19bca3bce
1 changed files with 10 additions and 45 deletions
|
@ -30,9 +30,7 @@ genpkg() {
|
||||||
fi
|
fi
|
||||||
cd $pkgdir
|
cd $pkgdir
|
||||||
|
|
||||||
if [ -n "$preserve" ]; then
|
_preserve=${preserve:+-p}
|
||||||
_preserve="-p"
|
|
||||||
fi
|
|
||||||
if [ -s ${PKGDESTDIR}/rdeps ]; then
|
if [ -s ${PKGDESTDIR}/rdeps ]; then
|
||||||
_deps="$(cat ${PKGDESTDIR}/rdeps)"
|
_deps="$(cat ${PKGDESTDIR}/rdeps)"
|
||||||
fi
|
fi
|
||||||
|
@ -46,48 +44,15 @@ genpkg() {
|
||||||
_gitrevs="$(cat ${XBPS_STATEDIR}/gitrev)"
|
_gitrevs="$(cat ${XBPS_STATEDIR}/gitrev)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$provides" ]; then
|
# Stripping whitespaces
|
||||||
local _provides=
|
local _provides="$(echo $provides)"
|
||||||
for f in ${provides}; do
|
local _conflicts="$(echo $conflicts)"
|
||||||
_provides="${_provides} ${f}"
|
local _replaces="$(echo $replaces)"
|
||||||
done
|
local _reverts="$(echo $reverts)"
|
||||||
fi
|
local _mutable_files="$(echo $mutable_files)"
|
||||||
if [ -n "$conflicts" ]; then
|
local _conf_files="$(echo $conf_files)"
|
||||||
local _conflicts=
|
local _alternatives="$(echo $alternatives)"
|
||||||
for f in ${conflicts}; do
|
local _tags="$(echo $tags)"
|
||||||
_conflicts="${_conflicts} ${f}"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
if [ -n "$replaces" ]; then
|
|
||||||
local _replaces=
|
|
||||||
for f in ${replaces}; do
|
|
||||||
_replaces="${_replaces} ${f}"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
if [ -n "$reverts" ]; then
|
|
||||||
local _reverts=
|
|
||||||
for f in ${reverts}; do
|
|
||||||
_reverts="${_reverts} ${f}"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
if [ -n "$mutable_files" ]; then
|
|
||||||
local _mutable_files=
|
|
||||||
for f in ${mutable_files}; do
|
|
||||||
_mutable_files="${_mutable_files} ${f}"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
if [ -n "$conf_files" ]; then
|
|
||||||
local _conf_files=
|
|
||||||
for f in ${conf_files}; do
|
|
||||||
_conf_files="${_conf_files} ${f}"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
if [ -n "$alternatives" ]; then
|
|
||||||
local _alternatives=
|
|
||||||
for f in ${alternatives}; do
|
|
||||||
_alternatives="${_alternatives} ${f}"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
msg_normal "Creating $binpkg for repository $pkgdir ...\n"
|
msg_normal "Creating $binpkg for repository $pkgdir ...\n"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue