]> git.ipfire.org Git - thirdparty/dhcp.git/blob - util/bind.sh
[master] Add support for user selection of the from address for DDNS transactions
[thirdparty/dhcp.git] / util / bind.sh
1 #!/bin/sh
2 #
3 # Copyright (C) 2009-2013 Internet Systems Consortium, Inc. ("ISC")
4 #
5 # Permission to use, copy, modify, and/or distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10 # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11 # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12 # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13 # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15 # PERFORMANCE OF THIS SOFTWARE.
16
17 # $Id: bind.sh,v 1.32 2012/05/24 17:50:00 sar Exp $
18
19 # Get the bind distribution for the libraries
20 # This script is used to build the DHCP distribution and shouldn't be shipped
21 #
22 # Usage: sh bind.sh [--remote=<path>] <DHCP version>
23 #
24 # Normally remote will only be used by Robie
25 #
26 #
27
28 topdir=`pwd`
29 binddir=$topdir/bind
30 remote=--remote=cvs.isc.org:/proj/git/prod/bind9.git
31
32 case "${1:-}" in
33 --remote=*)
34 remote="${1}";
35 shift
36 ;;
37 esac
38
39 case $# in
40 1)
41 case "$1" in
42 ###
43 ### Robie calls this script with the building branch name so we can
44 ### build with BIND9 HEAD for the relevant branch we would release
45 ### with.
46 ###
47 ### XXX: We can't use the 'snapshot' syntax right now because kit.sh
48 ### pulls the version.tmp off the branch name, and then stores a
49 ### tarball with vastly different values. So the version.tmp can not
50 ### be used to chdir down into the directory that is unpacked.
51 ###
52 v4_2) noSNAP=snapshot BINDTAG=v9_8 ;;
53 v4_3) noSNAP=snapshot BINDTAG=v9_9 ;;
54 ### change to using the head of v9_9 until we upgrade DHCP
55 ### to use shared libraries
56 HEAD|v[0-9]_[0-9].*) noSNAP=snapshot BINDTAG=v9_9 ;;
57 ### HEAD|v[0-9]_[0-9].*) noSNAP=snapshot BINDTAG=HEAD ;;
58 ###
59 ### For ease of use, this records the sticky tag of versions
60 ### released with each point release.
61 ###
62 4.3.0a1) BINDTAG=v9_9 ;;
63 4.2.6b1) BINDTAG=v9_8_6 ;;
64 4.2.5b1|4.2.5rc1) BINDTAG=v9_8_4_P1 ;;
65 4.2.4rc2|4.2.4) BINDTAG=v9_8_3 ;;
66 4.2.4b1|4.2.4rc1) BINDTAG=v9_8_2 ;;
67 4.2.3-P1|4.2.3-P2) BINDTAG=v9_8_1_P1 ;;
68 4.2.3rc1|4.2.3) BINDTAG=v9_8_1 ;;
69 4.2.2rc1|4.2.2) BINDTAG=v9_8_0_P4 ;;
70 4.2.1|4.2.1-P1|4.2.2b1) BINDTAG=v9_8_0 ;;
71 4.2.1rc1) BINDTAG=v9_8_0rc1 ;;
72 4.2.1b1) BINDTAG=v9_8_0b1 ;;
73 4.2.0rc1|4.2.0) BINDTAG=v9_7_1 ;;
74 4.2.0b2) BINDTAG=v9_7_1rc1 ;;
75 4.2.0b1) BINDTAG=v9_7_0_P1 ;;
76 4.2.0a2|4.2.0a1) BINDTAG=v9_7_0b3 ;;
77 *) echo "bind.sh: unsupported version: $1" >&2
78 exit 1
79 ;;
80 esac
81 ;;
82 *) echo "usage: sh bind.sh [--remote=<path>] [<branch>|<version>]" >&2
83 exit 1
84 ;;
85 esac
86
87 # Delete all previous bind stuff
88 rm -rf bind
89
90 # Make and move to our directory for all things bind
91 mkdir $binddir
92 cp util/Makefile.bind bind/Makefile
93 cd $binddir
94
95 # Get the bind version file and move it to version.tmp
96 git archive --format tar $remote $BINDTAG version | tar xf -
97 mv version version.tmp
98
99 # Get the bind release kit shell script
100 git archive --format tar $remote master:util/ | tar xf - kit.sh
101
102 # Create the bind tarball, which has the side effect of
103 # setting up the bind directory we will use for building
104 # the export libraries
105 echo Creating tarball for $BINDTAG
106 sh kit.sh $remote $SNAP $BINDTAG $binddir
107
108 . ./version.tmp
109
110 version=${MAJORVER}.${MINORVER}.${PATCHVER}${RELEASETYPE}${RELEASEVER}
111 bindsrcdir=bind-$version
112 mm=${MAJORVER}.${MINORVER}
113
114 # move the tar file to a known place for use by the make dist command
115 echo Moving tar file to bind.tar.gz for distribution
116 mv bind-${mm}*.tar.gz bind.tar.gz
117