blob: 95484665bc522d35cef8d09314f57e4b594a84d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#! /usr/bin/env bash
# Stage queued packages (see stage script for details).
#
usage="usage: etc/stage-queue"
owd=`pwd`
trap "{ cd $owd; exit 1; }" ERR
set -o errtrace # Trap in functions.
function info () { echo "$*" 1>&2; }
function error () { info "$*"; exit 1; }
while [ $# -gt 0 ]; do
case $1 in
*)
error "unexpected $1"
;;
esac
done
# Generate package archives.
#
# These are currently pulled from cppget.org (we cannot have the same
# versions in multiple places since archive checksums are not stable).
#
#etc/stage-pkg -Q -c -d curl packaging/curl/curl/libcurl
#etc/stage-pkg -Q -c -d curl packaging/curl/curl/curl
#etc/stage-pkg -Q -c -d curl packaging/curl/ca-certificates-curl/libca-certificates-curl
#etc/stage-pkg -Q -c -d icu packaging/icu/icu/libicuuc
#etc/stage-pkg -Q -c -d icu packaging/icu/icu/libicui18n
#etc/stage-pkg -Q -c -d icu packaging/icu/icu/libicuio
#etc/stage-pkg -Q -c -d tinycbor packaging/tinycbor/tinycbor/libtinycbor
#etc/stage-pkg -Q -c -d xxd packaging/xxd/xxd/xxd
#etc/stage-pkg -Q -c -d byacc packaging/byacc/byacc/byacc
#etc/stage-pkg -Q -c -d reflex packaging/reflex/reflex/reflex
#etc/stage-pkg -Q -c -d openbsd-m4 packaging/openbsd-m4/openbsd-m4/openbsd-m4
etc/stage-pkg -Q -c -d kconfig packaging/kconfig/kconfig/liblkc \
packaging/kconfig/kconfig/kconfig-conf \
packaging/kconfig/kconfig/kconfig-qconf
#etc/stage-pkg -Q -c -d xerces-c packaging/xerces-c/xerces-c/libxerces-c
#etc/stage-pkg -Q -c -d libcutl ../cutl/libcutl
#etc/stage-pkg -Q -c -d cli ../cli/cli/cli
#etc/stage-pkg -Q -c -d cli ../cli/cli/cli-tests
#etc/stage-pkg -Q -c -d cli ../cli/cli/cli-examples
#etc/stage-pkg -Q -c -d libxsd-frontend ../xsd/libxsd-frontend/
#etc/stage-pkg -Q -c -d xsd ../xsd/xsd/libxsd
#etc/stage-pkg -Q -c -d xsd ../xsd/xsd/libxsd-tests
#etc/stage-pkg -Q -c -d xsd ../xsd/xsd/xsd
#etc/stage-pkg -Q -c -d xsd ../xsd/xsd/xsd-tests
#etc/stage-pkg -Q -c -d xsd ../xsd/xsd/xsd-examples
#etc/stage-pkg -Q -c -d boost packaging/boost/boost/libboost-*/
etc/stage-pkg -Q -c -d libb2 packaging/libb2/libb2
etc/stage-pkg -Q -c -d libjpeg-turbo packaging/libjpeg-turbo/libjpeg-turbo/libjpeg-turbo
etc/stage-pkg -Q -c -d freetype packaging/libfreetype/libfreetype
etc/stage-pkg -Q -c -d harfbuzz packaging/harfbuzz/harfbuzz/libharfbuzz
etc/stage-pkg -Q -c -d Qt5 packaging/qt5/Qt5/Qt5Moc \
packaging/qt5/Qt5/Qt5Rcc \
packaging/qt5/Qt5/libQt5Core
etc/stage-pkg -Q -c -d Qt6 packaging/qt6/Qt6/Qt6Moc \
packaging/qt6/Qt6/Qt6Rcc \
packaging/qt6/Qt6/libQt6Core
# Regenerate repository and publish.
#
etc/stage-pkg -Q -g --min-bpkg-version 0.14.0
etc/stage-pkg -Q -p
|