Compare commits

..

No commits in common. "985c0e7a06c90a380f76825f6aedbcf2648629f7" and "9aedecc62e9585ba1d9b88efe083b52105e0947f" have entirely different histories.

32
makedeb
View file

@ -13,7 +13,6 @@ _ARGLIST=("$@")
OVERRIDE_SOURCE=0 OVERRIDE_SOURCE=0
QUIET=0 QUIET=0
PACKAGELIST=0 PACKAGELIST=0
IS_DYNAMICV_PKGVER=0
_STEP_CLEAN=1 _STEP_CLEAN=1
_STEP_RETRIEVE_SOURCE=1 _STEP_RETRIEVE_SOURCE=1
@ -437,16 +436,14 @@ function enable_stdout {
function show_help { function show_help {
echo "$0 [OPTIONS]" echo "$0 [OPTIONS]"
echo " -Q quiet, disable log" echo " -Q quiet, disable log"
echo " -f|--force don't check if package already exists, will" echo " -f|--force don't check if package already exists, will"
echo " --nobuild retrieve source, update pkgver and stop" echo " override the existed package"
echo " override the existed package" echo " --noextract use the current srcdir to build package, skip"
echo " --noextract use the current srcdir to build package, skip" echo " those retrieve source steps"
echo " those retrieve source steps" echo " --noarchive retrieve and build, but don't package to .deb"
echo " --noarchive retrieve and build, but don't package to .deb" echo " --packagelist show file to be generated by current DEBBUILD"
echo " --packagelist show file to be generated by current DEBBUILD" echo " -h|--help show this message"
echo " --is-dynamic-pkgver exit with 0 if DEBBUILD will update pkgver later"
echo " -h|--help show this message"
} }
## ##
@ -478,8 +475,9 @@ while (( "$#" >= 1 )); do
_STOP_AFTER_BUILD=1 _STOP_AFTER_BUILD=1
;; ;;
--packagelist) PACKAGELIST=1 ;; --packagelist)
--is-dynamic-pkgver) IS_DYNAMICV_PKGVER=1 ;; PACKAGELIST=1
;;
-h|--help) show_help ; exit 0;; -h|--help) show_help ; exit 0;;
*) err "Unkown option $1" *) err "Unkown option $1"
@ -497,14 +495,6 @@ if (( PACKAGELIST )) ; then
exit 0 exit 0
fi fi
if (( IS_DYNAMICV_PKGVER )) ; then
if is_function pkgver ; then
exit 0
else
exit 4
fi
fi
if (( QUIET )) ; then if (( QUIET )) ; then
disable_stdout disable_stdout
fi fi