Get rid of the 'nocreate' feature, unused for 6 years and stop

building the xetcXX.tgz set
pull/1/head
matthieu 2014-08-31 16:52:26 +00:00
parent ec589d938f
commit f046325ef3
5 changed files with 6 additions and 23 deletions

View File

@ -1,12 +0,0 @@
#!/bin/sh
# $OpenBSD: genlists,v 1.1.1.1 2006/11/27 11:25:45 matthieu Exp $
arch=$1
lists="xbase xetc xserv xshare xfont"
l=""
for list in $lists
do
grep "$arch:$list" nocreate > /dev/null 2>&1 || l="$l $list"
done
echo $l

View File

@ -1,11 +1,10 @@
#!/bin/sh
# $OpenBSD: makeflist,v 1.2 2014/05/03 15:18:26 todd Exp $
# $OpenBSD: makeflist,v 1.3 2014/08/31 16:52:26 matthieu Exp $
arch=$MACHINE
listsdir=`pwd`/lists
lists=`sh ./genlists $arch`
for setname in $lists
for setname in xbase xetc xfont xserv xshare
do
sh ./gensetlist $setname
done | sort

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: makelocatedb,v 1.2 2014/07/12 19:14:55 espie Exp $
# $OpenBSD: makelocatedb,v 1.3 2014/08/31 16:52:26 matthieu Exp $
# xy
RELEASE=$1
@ -12,9 +12,7 @@ fi
pwd=`pwd`
listsdir=`pwd`/lists
lists=`sh ./genlists ${MACHINE}`
for setname in $lists; do
for setname in xbase xetc xfont xserv xshare; do
(cd $pwd; sh gensetlist $setname) | \
sed -e "s,^\.,${setname}${RELEASE}:,"
done | sort | /usr/libexec/locate.mklocatedb

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: maketars,v 1.5 2014/05/03 15:18:26 todd Exp $
# $OpenBSD: maketars,v 1.6 2014/08/31 16:52:26 matthieu Exp $
# xy
RELEASE=$1
@ -29,11 +29,9 @@ trap 'rm -f $TMP1 $TMP2; rmdir $TMPDIR' 0 1 15
TMP1=$TMPDIR/one
TMP2=$TMPDIR/two
lists=`sh ./genlists $arch`
cd $DESTDIR
for setname in $lists; do
for setname in xbase xfont xserv xshare; do
echo -n "${setname}: "
(cd $pwd; sh gensetlist $setname) | sort > $TMP1
sed -n '/^\.\/usr\/X11R6\/lib\/lib.*\.so\..*/{p;}' $TMP1 > $TMP2

View File