|
@@ -3,13 +3,14 @@
|
|
|
|
|
|
Usage_C(){
|
|
Usage_C(){
|
|
cat<<EOF
|
|
cat<<EOF
|
|
-Usage: $(basename $0) {--version [version]} {--arch [arch]} {--dist-upgrade} {--target [target]} {--with-compat32} {--bootstrap-dir [directory]} {--cache-dir [directory]} {--built-rpms-dir [directory]} {clean|build|build-rpm [src.rpm]|install-rpm [arch.rpm|package]|remove-rpm [package]|show-info}
|
|
|
|
|
|
+Usage: $(basename $0) {--version [version]} {--arch [arch]} {--category [categories]} {--dist-upgrade} {--target [target]} {--with-compat32} {--bootstrap-dir [directory]} {--cache-dir [directory]} {--built-rpms-dir [directory]} {clean|build|build-rpm [src.rpm]|install-rpm [arch.rpm|package]|remove-rpm [package]|show-info}
|
|
|
|
|
|
Options:
|
|
Options:
|
|
--version: set [version] (default: ${DEFAULT_VERSION})
|
|
--version: set [version] (default: ${DEFAULT_VERSION})
|
|
--arch: set [arch] (default: $(uname -i))
|
|
--arch: set [arch] (default: $(uname -i))
|
|
|
|
+ --category: set [categories] (default: ${CATEGORIES})
|
|
--dist-upgrade: make VineSeed bootstrap via ${STABLE_VERSION}
|
|
--dist-upgrade: make VineSeed bootstrap via ${STABLE_VERSION}
|
|
- --unionfs cover a bootstrap with unionfs
|
|
|
|
|
|
+ --unionfs: cover a bootstrap with unionfs
|
|
--target: build rpms with [target]
|
|
--target: build rpms with [target]
|
|
--with-compat32: build rpms with compat32 on boostrap
|
|
--with-compat32: build rpms with compat32 on boostrap
|
|
--bootstrap-dir: set a bootstrap directory (default: ${VBOOTSTRAP_DIR})
|
|
--bootstrap-dir: set a bootstrap directory (default: ${VBOOTSTRAP_DIR})
|
|
@@ -59,6 +60,20 @@ E: ${para} 以後のいくつかの引数に間違いがあります
|
|
EOF
|
|
EOF
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+Msg_NoSuchCategoryExists_C(){
|
|
|
|
+ local para=$1
|
|
|
|
+ cat<<EOF
|
|
|
|
+E: No such category exists: $para
|
|
|
|
+EOF
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+Msg_NoSuchCategoryExists_ja(){
|
|
|
|
+ local para=$1
|
|
|
|
+ cat<<EOF
|
|
|
|
+E: そのようなカテゴリは存在しません: $para
|
|
|
|
+EOF
|
|
|
|
+}
|
|
|
|
+
|
|
Msg_GiveMoreOptions_C(){
|
|
Msg_GiveMoreOptions_C(){
|
|
cat<<EOF
|
|
cat<<EOF
|
|
E: You can give no more options after actions
|
|
E: You can give no more options after actions
|
|
@@ -170,7 +185,7 @@ check-parameter(){
|
|
Usage_$LOCALE
|
|
Usage_$LOCALE
|
|
return 1
|
|
return 1
|
|
;;
|
|
;;
|
|
- --version|--arch|--target|--bootstrap-dir|--cache-dir|--built-rpms-dir)
|
|
|
|
|
|
+ --version|--arch|--category|--target|--bootstrap-dir|--cache-dir|--built-rpms-dir)
|
|
[ $with_actions -eq 1 ] && \
|
|
[ $with_actions -eq 1 ] && \
|
|
Msg_GiveNoMoreOptions_$LOCALE && return 1
|
|
Msg_GiveNoMoreOptions_$LOCALE && return 1
|
|
shift
|
|
shift
|
|
@@ -219,6 +234,8 @@ setup-vbuilder(){
|
|
fi
|
|
fi
|
|
[ -z "${DEFAULT_VERSION}" ] && \
|
|
[ -z "${DEFAULT_VERSION}" ] && \
|
|
DEFAULT_VERSION=@@VBUILDER_DEFAULT_VERSION@@
|
|
DEFAULT_VERSION=@@VBUILDER_DEFAULT_VERSION@@
|
|
|
|
+ [ -z "${CATEGORIES}" ] && \
|
|
|
|
+ CATEGORIES=@@VBUILDER_CATEGORIES@@
|
|
[ -z "${VBOOTSTRAP_DIR}" ] && \
|
|
[ -z "${VBOOTSTRAP_DIR}" ] && \
|
|
VBOOTSTRAP_DIR=@@VBUILDER_VBOOTSTRAP_DIR@@
|
|
VBOOTSTRAP_DIR=@@VBUILDER_VBOOTSTRAP_DIR@@
|
|
[ -z "${CACHE_DIR}" ] && \
|
|
[ -z "${CACHE_DIR}" ] && \
|
|
@@ -243,6 +260,10 @@ setup-vbuilder(){
|
|
with_unionfs=0
|
|
with_unionfs=0
|
|
with_dist_upgrade=0
|
|
with_dist_upgrade=0
|
|
with_actions=0
|
|
with_actions=0
|
|
|
|
+ with_category_main=0
|
|
|
|
+ with_category_plus=0
|
|
|
|
+ with_category_nonfree=0
|
|
|
|
+ with_category_proposed_updates=0
|
|
}
|
|
}
|
|
|
|
|
|
setup-vbootstrap(){
|
|
setup-vbootstrap(){
|
|
@@ -290,6 +311,36 @@ setup-vbootstrap(){
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
+ ## set ${MAJOR_VERSION}
|
|
|
|
+ MAJOR_VERSION=$(echo ${VERSION} | sed -e "s/_i[0-9]86//")
|
|
|
|
+
|
|
|
|
+ ## check apt categories
|
|
|
|
+ ## The main category main is unconditionally permited
|
|
|
|
+ with_category_main=1
|
|
|
|
+ for cat in $(echo ${CATEGORIES} | sed -e "s/,/ /"g); do
|
|
|
|
+ case $cat in
|
|
|
|
+ main)
|
|
|
|
+ with_category_main=1
|
|
|
|
+ ;;
|
|
|
|
+ plus)
|
|
|
|
+ with_category_plus=1
|
|
|
|
+ ;;
|
|
|
|
+ nonfree)
|
|
|
|
+ with_category_nonfree=1
|
|
|
|
+ ;;
|
|
|
|
+ proposed-updates)
|
|
|
|
+ ##!! 4.2 has no apt-sourceslist-proposed-updates packages
|
|
|
|
+ [ "${MAJOR_VERSION}" = "4.2" ] && \
|
|
|
|
+ Msg_NoSuchCategoryExists_$LOCALE ${cat} && exit 1
|
|
|
|
+
|
|
|
|
+ with_category_proposed_updates=1
|
|
|
|
+ ;;
|
|
|
|
+ *)
|
|
|
|
+ Msg_NoSuchCategoryExists_$LOCALE ${cat} && exit 1
|
|
|
|
+ ;;
|
|
|
|
+ esac
|
|
|
|
+ done
|
|
|
|
+
|
|
## check build target option ${TARGET}
|
|
## check build target option ${TARGET}
|
|
if [ ! -z "${TARGET}" ]; then
|
|
if [ ! -z "${TARGET}" ]; then
|
|
RPM_TARGET_LIST="$(cat /usr/lib/rpm/rpmrc | grep arch_canon: | sed -e "s/arch_canon:[[:blank:]]*\(.*\):.*/\1/")"
|
|
RPM_TARGET_LIST="$(cat /usr/lib/rpm/rpmrc | grep arch_canon: | sed -e "s/arch_canon:[[:blank:]]*\(.*\):.*/\1/")"
|
|
@@ -300,8 +351,6 @@ setup-vbootstrap(){
|
|
|
|
|
|
fi
|
|
fi
|
|
|
|
|
|
- MAJOR_VERSION=$(echo ${VERSION} | sed -e "s/_i[0-9]86//")
|
|
|
|
-
|
|
|
|
BUILD_ROOT=${VBOOTSTRAP_DIR}/${VERSION}
|
|
BUILD_ROOT=${VBOOTSTRAP_DIR}/${VERSION}
|
|
BUILD_USER=vbuilder
|
|
BUILD_USER=vbuilder
|
|
BUILD_DIR=/home/${BUILD_USER}/rpm
|
|
BUILD_DIR=/home/${BUILD_USER}/rpm
|
|
@@ -462,26 +511,29 @@ mount-chroot-mount(){
|
|
}
|
|
}
|
|
|
|
|
|
write-vbuilder-log(){
|
|
write-vbuilder-log(){
|
|
|
|
+ HRULE="======================================================================"
|
|
|
|
+
|
|
[ -d ${BUILD_ROOT} ] || return 1
|
|
[ -d ${BUILD_ROOT} ] || return 1
|
|
|
|
|
|
if [ ! -f $VBUILDER_LOG ]; then
|
|
if [ ! -f $VBUILDER_LOG ]; then
|
|
cat<<EOF > $VBUILDER_LOG
|
|
cat<<EOF > $VBUILDER_LOG
|
|
-======================================================================
|
|
|
|
|
|
+${HRULE}
|
|
VBUILDER REPORT
|
|
VBUILDER REPORT
|
|
DATE: $(LANG=C date)
|
|
DATE: $(LANG=C date)
|
|
HOSTNAME: $(hostname)
|
|
HOSTNAME: $(hostname)
|
|
OS: $(echo $($__chroot_sh "cat /etc/vine-release"))
|
|
OS: $(echo $($__chroot_sh "cat /etc/vine-release"))
|
|
%_arch: $(echo $($__chroot_sh "rpm --eval %_arch"))
|
|
%_arch: $(echo $($__chroot_sh "rpm --eval %_arch"))
|
|
|
|
|
|
---version: ${VERSION}
|
|
|
|
-$(echo $([ -z "${VARCH}" ] || echo "--arch: ${VARCH}"))
|
|
|
|
|
|
+--version: ${VERSION}
|
|
|
|
+$(echo $([ -z "${VARCH}" ] || echo "--arch: ${VARCH}"))
|
|
|
|
+$(echo $([ -z "${CATEGORIES}" ] || echo "--category: ${CATEGORIES}"))
|
|
$(echo $([ $with_dist_upgrade -eq 1 ] && echo "--dist-upgrade"))
|
|
$(echo $([ $with_dist_upgrade -eq 1 ] && echo "--dist-upgrade"))
|
|
$(echo $([ $with_unionfs -eq 1 ] && echo "--unionfs"))
|
|
$(echo $([ $with_unionfs -eq 1 ] && echo "--unionfs"))
|
|
-$(echo $([ -z "${TARGET}" ] || echo "--target: ${TARGET}"))
|
|
|
|
---bootstrap-dir: ${VBOOTSTRAP_DIR}
|
|
|
|
---cache-dir: ${CACHE_DIR}
|
|
|
|
---built-rpms-dir: ${BUILT_RPMS_DIR}
|
|
|
|
-======================================================================
|
|
|
|
|
|
+$(echo $([ -z "${TARGET}" ] || echo "--target: ${TARGET}"))
|
|
|
|
+--bootstrap-dir: ${VBOOTSTRAP_DIR}
|
|
|
|
+--cache-dir: ${CACHE_DIR}
|
|
|
|
+--built-rpms-dir: ${BUILT_RPMS_DIR}
|
|
|
|
+${HRULE}
|
|
|
|
|
|
[$VBUILDER_CONF]
|
|
[$VBUILDER_CONF]
|
|
$(cat $VBUILDER_CONF)
|
|
$(cat $VBUILDER_CONF)
|
|
@@ -501,8 +553,7 @@ Clean(){
|
|
setup-vbootstrap
|
|
setup-vbootstrap
|
|
|
|
|
|
# output end-of-line in $VBUILDER_LOG
|
|
# output end-of-line in $VBUILDER_LOG
|
|
- [ -f $VBUILDER_LOG ] && \
|
|
|
|
- write-vbuilder-log "======================================================================"
|
|
|
|
|
|
+ [ -f $VBUILDER_LOG ] && write-vbuilder-log ${HRULE}
|
|
Show-Info
|
|
Show-Info
|
|
|
|
|
|
# mount-chroot --umount /home
|
|
# mount-chroot --umount /home
|
|
@@ -552,17 +603,34 @@ Build(){
|
|
|
|
|
|
$__chroot_sh 'apt-get -qq update && apt-get -qq -y dist-upgrade'
|
|
$__chroot_sh 'apt-get -qq update && apt-get -qq -y dist-upgrade'
|
|
|
|
|
|
- ##!! 4.2 has no apt-sourceslist-{plus,nonfree} packages
|
|
|
|
- if [ "${MAJOR_VERSION}" != "4.2" ]; then
|
|
|
|
- $__chroot_sh 'apt-get -qq update && apt-get -qq -y install apt-sourceslist-plus'
|
|
|
|
- $__chroot_sh 'apt-get -qq update && apt-get -qq -y install apt-sourceslist-nonfree'
|
|
|
|
- fi
|
|
|
|
|
|
+ ##!! 4.2 has no apt-sourceslist-{plus,nonfree,proposed-updates} packages
|
|
|
|
+ case ${MAJOR_VERSION} in
|
|
|
|
+ 4.2)
|
|
|
|
+ $__chroot_sh "sed -i -e 's/main plus updates nonfree *$/$(echo ${CATEGORIES} | sed -e "s/,/ /"g) updates/g' /etc/apt/sources.list"
|
|
|
|
+ ;;
|
|
|
|
+ @@VBUILDER_STABLE_VERSION@@)
|
|
|
|
+ [ $with_category_plus -eq 1 ] && \
|
|
|
|
+ $__chroot_sh 'apt-get -qq update && apt-get -qq -y install apt-sourceslist-plus'
|
|
|
|
+ [ $with_category_nonfree -eq 1 ] && \
|
|
|
|
+ $__chroot_sh 'apt-get -qq update && apt-get -qq -y install apt-sourceslist-nonfree'
|
|
|
|
+ [ $with_category_proposed_updates -eq 1 ] && \
|
|
|
|
+ $__chroot_sh 'apt-get -qq update && apt-get -qq -y install apt-sourceslist-proposed-updates'
|
|
|
|
+ ;;
|
|
|
|
+ VineSeed)
|
|
|
|
+ [ $with_category_plus -eq 1 ] && \
|
|
|
|
+ $__chroot_sh 'apt-get -qq update && apt-get -qq -y install apt-sourceslist-plus'
|
|
|
|
+ [ $with_category_nonfree -eq 1 ] && \
|
|
|
|
+ $__chroot_sh 'apt-get -qq update && apt-get -qq -y install apt-sourceslist-nonfree'
|
|
|
|
+ ;;
|
|
|
|
+ esac
|
|
|
|
|
|
- if [ $with_dist_upgrade -eq 1 ]; then
|
|
|
|
|
|
+ [ $with_dist_upgrade -eq 1 ] && \
|
|
$__chroot_sh 'apt-get -qq update && apt-get -qq -y dist-upgrade'
|
|
$__chroot_sh 'apt-get -qq update && apt-get -qq -y dist-upgrade'
|
|
- fi
|
|
|
|
|
|
+
|
|
$__chroot_sh 'apt-get -qq -y install build-essential'
|
|
$__chroot_sh 'apt-get -qq -y install build-essential'
|
|
- $__chroot_sh 'apt-get -qq -y install self-build-setup'
|
|
|
|
|
|
+
|
|
|
|
+ [ $with_category_nonfree -eq 1 ] && \
|
|
|
|
+ $__chroot_sh 'apt-get -qq -y install self-build-setup'
|
|
|
|
|
|
$__chroot_sh 'apt-get -qq -y install etcskel shadow-utils'
|
|
$__chroot_sh 'apt-get -qq -y install etcskel shadow-utils'
|
|
|
|
|
|
@@ -697,7 +765,7 @@ check-parameter $* || exit 1
|
|
while [ $# -gt 0 ]; do
|
|
while [ $# -gt 0 ]; do
|
|
tmpARG=$1
|
|
tmpARG=$1
|
|
case $tmpARG in
|
|
case $tmpARG in
|
|
- --version|--arch|--target|--bootstrap-dir|--cache-dir|--built-rpms-dir)
|
|
|
|
|
|
+ --version|--arch|--category|--target|--bootstrap-dir|--cache-dir|--built-rpms-dir)
|
|
shift
|
|
shift
|
|
;;
|
|
;;
|
|
--dist-upgrade|--unionfs|--with-compat32)
|
|
--dist-upgrade|--unionfs|--with-compat32)
|
|
@@ -720,6 +788,9 @@ while [ $# -gt 0 ]; do
|
|
--arch)
|
|
--arch)
|
|
VARCH=$1
|
|
VARCH=$1
|
|
;;
|
|
;;
|
|
|
|
+ --category)
|
|
|
|
+ CATEGORIES=$1
|
|
|
|
+ ;;
|
|
--dist-upgrade)
|
|
--dist-upgrade)
|
|
with_dist_upgrade=1
|
|
with_dist_upgrade=1
|
|
;;
|
|
;;
|