build/rebase: feed base set changes back into repository

This commit is contained in:
Franco Fichtner 2015-12-26 10:21:42 +01:00
parent acda787d37
commit df0ee582fb
3 changed files with 42 additions and 1 deletions

View File

@ -1,6 +1,6 @@
STEPS= base kernel ports core iso memstick nano \
regress clean release skim checkout plugins \
distfiles
distfiles rebase
.PHONY: ${STEPS}
PAGER?= less

View File

@ -177,3 +177,8 @@ Available options are:
* used: review and copy upstream changes
* unused: copy unused upstream changes
* (none): all of the above
In case a release was wrapped up, the base package list and obsoleted
files need to be regenerated. This is done using:
# make rebase

36
build/rebase.sh Normal file
View File

@ -0,0 +1,36 @@
#!/bin/sh
# Copyright (c) 2015 Franco Fichtner <franco@opnsense.org>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
set -e
. ./common.sh && $(${SCRUB_ARGS})
BASE_OBSOLETE=$(find ${SETSDIR} -name "base-*-${ARCH}.obsolete")
BASE_SET=$(find ${SETSDIR} -name "base-*-${ARCH}.txz")
tar -tf ${BASE_SET} > ${CONFIGDIR}/plist.base.${ARCH}
cp ${BASE_OBSOLETE} ${CONFIGDIR}/plist.obsolete.${ARCH}