summaryrefslogtreecommitdiff
path: root/tcwg-release.sh
blob: f83c5ea0ffeecbdbef1b4db755c84520dcc438e5 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
#!/bin/bash

# Style 
NC='\e[0m'
red='\e[0;31m'
blue='\e[1;34m'
green='\e[0;32m'
bold='\e[1m'
italic='\e[3m'
lines="$(perl -E 'say "-" x 80')"
EDITOR="${EDITOR:-vim}"
# ==============================================================================
# Usage and Help
# ==============================================================================
usage() {
    # Format this section with 75 columns.
    cat << EOF
  ${release_script} [-a FILE] [-b BRANCH] [-d DATE] [-h] [-e REMOTE]
                  [-f FILESERVER] [-n] [-r [RC] [SPIN]] [-R [SPIN]] [-S [SPIN]]
                  [-t TAG] [-u] [-v]
EOF
    return 0
}

extended_usage() {
    echo -e "${bold}Usage:${NC}"
    usage;
    print_info "Run \"${release_script} -help\" for detailed usage information."
}

help()
{
    # Format this section of text with 75 columns.
    #cat << EOF
    echo -e "\
${bold}NAME${NC}
  ${release_script} - The Linaro GCC snapshot, and release script.

${bold}SYNOPSIS${NC}"

    usage

    echo -e "\

${bold}DESCRIPTION${NC}"
    echo -e "\
  \"${release_script}\" is a utility that is used to create tarballs
  and branches for Linaro toolchain GCC monthly snapshots, quarterly
  releases.

  By default ${release_script} creates a snapshot tarball, branch,
  and tag.

  ${bold}REMOTES${NC}
    ${release_script} attempts to be intelligent (and slightly permissive)
    about handling git remote naming.  Its ability to do so is complicated
    by how the Linaro git mirror is set-up.

    Linaro maintains a mirror of the upstream FSF git repository in order
    to locally stage backports, store snapshot and release branches, and store
    snapshot, release candidate, and release tags.

    The Linaro GCC mirror includes a writeable ${bold}linaro-local/${NC} namespace
    that is not present on the upstream FSF git repository.

    The following, Linaro only, writable namespaces are used for storing
    Linaro snapshot and release branches, respectively:

      ${bold}linaro-local/snapshots/${NC}
      ${bold}linaro-local/releases/${NC}

    Linaro provides read-only access to the Linaro GCC mirror via ${italic}gitolite${NC}
    and read-write access (only to the linaro-local/* namespace) via ${italic}gerrit${NC}.

    Here is the recommended setup of the gcc git repository:

      1) Clone the read-only gitolite repository as 'origin':

        git clone https://git.linaro.org/toolchain/gcc.git gcc.git

         ${italic}${bold}Note: ${NC}${italic} If you would like use a remote name other than 'origin' run
         the following command and then replace 'origin' in the examples with
         your desired remote name.${NC}

         git remote rename origin ${italic}<remote>${NC}

      2) Set the pushurl for the default remote as the gerrit server:

        git config remote.origin.pushurl \\
          ssh://review.linaro.org:29418/toolchain/gcc

       3) Set the gerrit username:

           ${italic}${bold}Note: ${NC}${italic}To find your gerrit username look on: review.linaro.org
	     -> [User Name] -> Settings -> username

         git config remote.origin.username ${italic}<Linaro gerrit username>${NC}

    This is an example of what .git/config will look like for remote
    'origin' after setting up the repository:

      [remote "origin"]
              url = https://git.linaro.org/toolchain/gcc.git
              fetch = +refs/heads/*:refs/remotes/origin/*
              pushurl = ssh://review.linaro.org:29418/toolchain/gcc
              username = ryanarn

${bold}PRECONDITIONS${NC}
  ${release_script} needs to be executed in the top-level GCC source
  directory.

  The GCC source directory must be a git repository.  This script will not
  work on a GCC source tarball or a GCC SVN repository.

  See the following subsection on ${bold}REMOTES${NC} for a
  recommendation on how how to clone the GCC repository in a manner which
  will allow pushing changes to the repository.

${bold}OPTIONS${NC}"
    cat << EOF
  -a FILE
                FILE is the path to the optional amend file to pass to
                gitlog-to-changelog.  For more information on how to use
                this feature please run gitlog-to-changelog --help.

  -b BRANCH
                Derive (track) the snapshot, release, or release candidate
                from branch BRANCH.  The default is to use the existing
                branch.  Using -t with -b is not allowed since -t and -b
                are both aliases for a single commit.

  -d DATE
                Create DATE snapshot or release.  The DATE may be in the
                following formats: YYYY.MM, YYYY-MM, YYYY/MM, YYYY.MM.DD,
                YYYY-MM-DD, YYYY/MM/DD.  The Default is the current date.

  -e REMOTE
                This specifies the remote (as REMOTE) to use when
                outputting the push instructions.  NOTE: This script does
                not actually push to the remotes.

                It is necessary to designate an alternate FSF remote in
                order to push tags and gcc/LINARO-VERSION updates to the
                upstream branches for snapshots.

  -f FILESERVER
                This specifies the file server location (as FILESERVER) where
                the tarball and its signature will be uploaded.  By default
                FILESERVER is set to:
                dev-01.tcwglab:releases/sources/

  -h
                Print this extended help text.

  -n
                No build.  Skip the 'build' stage.

  -R [SPIN]
                This tells ${release_script} to create a release tarball,
                branch and tag with an optional spin number SPIN.  By
                default no SPIN number is used.  SPIN must be > 0 if
                specified.

  -S [SPIN]
                [Default] This explicitly tells ${release_script} to create
                a snapshot tarball, branch, and tag with an optional spin
                number SPIN.  By default no SPIN number is used.  SPIN must
                be > 0 if specified.

  -r [RC] [SPIN]
                This tells ${release_script} to create a release candidate
                tarball, branch and tag with an optional release candidate
                number RC and an optional spin number SPIN.  By default RC
                number '1' is used and SPIN is left blank/off.  RC must be
                >= 1.  SPIN must be >= 1 if used.  This option will append
                "[-SPIN]-rcRC" on the end of the release string.

                Note: If you want to specify a SPIN you MUST specify an RC
                argument as well or ${release_script} will make the first
                argument the RC value.

  -t TAG
                Derive (track) the snapshot, release, or release candidate
                from tag TAG.  The default is to use the existing branch
                and not use a TAG.  Using -t with -b is not allowed since
                -t and -b are both aliases for a single commit.

  -v
                Emit verbose output.  Use more than once to increase output
                further.

  -u
EOF
echo -e "\
                Print the short form usage text.  See '${bold}SYNOPSIS${NC}' above.

${bold}EXAMPLES${NC}

  ${bold}Snapshot Examples:

    ${bold}Implicit Snapshot Based on Current Branch:${NC}
      ${release_script}

    ${bold}Explicit Snapshot Based on Current Branch With Today's Date:${NC}
      ${release_script} -S

    ${bold}Snapshot Based on Current Branch With Commit Message Fixup With
    Today's Date:${NC}
      ${release_script} -S \\
          -a <path-to>/tcwg-release-tools/gitlog-amend-gcc-5

    ${bold}Snapshot Based on Linaro GCC 5 Branch With Today's Date:${NC}
      ${release_script} -S -b remotes/origin/linaro/gcc-5-branch

    ${bold}Respin Snapshot Based On A Snapshot Branch And An Explicit Date:${NC}
      ${release_script} -S 1 -d 2015.06 \\
      -b remotes/origin/linaro-local/snapshots/linaro-5.1-2015.06

  ${bold}Release Candidate Examples:

    ${bold}Release Candidate With Implicit Spin Number Based On A Snapshot
    Branch And An Explicit Date:${NC}
      ${release_script} -d 2015.06 \\
      -b remotes/origin/linaro-local/snapshots/linaro-5.1-2015.06

    ${bold}Release Candidate Based On A Snapshot Branch And An Explicit Date:${NC}
      ${release_script} -r 1 -d 2015.06 \\
      -b remotes/origin/linaro-local/snapshots/linaro-5.1-2015.06

    ${bold}Release Candidate Respin Based On The Release Branch With An
    Explicit Date:${NC}
      ${release_script} -r 2 -d 2015.06 \\
      -b remotes/origin/linaro-local/releases/linaro-5.1-2015.06

  ${bold}Release Examples:

    ${bold}Release Based on Current Branch With Today's Date:${NC}
      ${release_script} -R

    ${bold}Release Based on Release Branch With An Explicit Date:${NC}
      ${release_script} -R -d 2015.05 \\
      -b remotes/origin/linaro-local/releases/linaro-5.1-2015.06

    ${bold}Release Respin Based on Release Branch With An Explicit Date:${NC}
      ${release_script} -R 1 -d 2015.05 \\
      -b remotes/origin/linaro-local/releases/linaro-5.1-2015.06

${bold}AUTHORS${NC}
  ${release_script} was written by:

    Yvan Roux <yvan.roux@linaro.org>
    Christophe Lyon <christophe.lyon@linaro.org>
    Ryan S Arnold <ryan.arnold@linaro.org>
"
    return 0
}

# ==============================================================================
# Functions
# ==============================================================================
print_step() {
    echo -e "${blue}${lines}\n${red}** ${1}\n${blue}${lines}${NC}\n"
}

print_info() {
    echo -e "${blue}** ${NC}${1}${NC}"
}

clean() {
    # This will bring us back to the starting directory even if we're already
    # there.
    popd &>/dev/null

    # Return the tree to the starting branch if it's not already there.  We
    # can't be in one of the working branches if we want to delete it.
    if [ "${save_branch:+set}" = "set" ]; then
	print_info "${bold}Returning tree to the saved branch..."
	git checkout ${save_branch} 2>&1>/dev/null
    fi

    ask "May I remove ${REL_DIR}/git [N/y] ?" user_ok
    if [ "$user_ok" = "y" ]; then
	if [ -d "$REL_DIR/git" ]; then
	    rm -rf $REL_DIR/git
	    if [ $? -eq 0 ]; then
		print_info "Removed ${REL_DIR}/git"
	    fi
	fi
    fi

    git_out=""

    # check to see if the local_branch has been created.
    git rev-parse --verify ${local_branch} &>/dev/null
    if [ $? -eq 0 ]; then
	ask "May I remove the local branch named \"${local_branch}\" as part of the cleanup process [N/y] ?" user_ok
	if [ "$user_ok" = "y" ]; then
	    git_out=$(git branch -D ${local_branch})
	    print_info "${git_out}"
	fi
    fi

    if [[ "${SNAPSHOT:+set}" = "set" && "${SPIN:+set}" != "set" ]]; then
	# check to see if the local_int_branch has been created.
	git rev-parse --verify ${local_int_branch} &>/dev/null
	if [ $? -eq 0 ]; then
	    ask "May I remove the local integration branch named \"${local_int_branch}\" as part of the cleanup process [N/y] ?" user_ok
	    if [ "$user_ok" = "y" ]; then
		git_out=$(git branch -D ${local_int_branch})
		print_info "${git_out}"
	    fi
	fi
    fi

    # If there is a tag created/associated with this release then it should be
    # removed as well.
    if [ x"$(git tag -l ${release_tag})" != x ]; then
	ask "May I remove the local tag named \"${release_tag}\" as part of the cleanup process [N/y] ?" user_ok
	if [ "$user_ok" = "y" ]; then
	    git_out=$(git tag -d ${release_tag})
	    print_info "${git_out}"

	fi
    fi
}

clean_and_die() {
    echo -e "${red}${bold}ERROR: ${NC}${bold}${1}${NC}"
    clean
    exit 1
}

die() {
    echo -e "${red}${bold}ERROR: ${NC}${bold}${1}${NC}"
    exit 1
}

handle_ctrl_c() {
    # set -x is not well handled by trap and cleanup, so turning it off.
    (( VERBOSITY >= 2 )) && set +x
    clean_and_die "User hit ctrl-c.  Operation aborted."
}

debug_handler() {
    echo "$BASH_COMMAND" | grep -v "echo\|ask\|print\|exec\|eval\|\[\|\]"
}

# arg1: a date in any format
# print a sanitized version of the date, or the error
# as generated by `date` if the input is invalid.  The
# return value is non-zero if there's an error.
sanitize_input_date() {
    local in_date="$1"
    in_date=${in_date//./-}

    # If the in_date doesn't include the 'day' add it on
    # because `date` expects it.
    [[ ${#in_date} -lt 8 ]] && { in_date="${in_date}-01"; }

    local sanitized_date=
    sanitized_date="$(date -d ${in_date} +%Y-%m-%d 2>&1)"
    ret=$?
    echo "${sanitized_date}"

    return $ret;
}

# arg1 : a sentence
# arg2 : a variable
# print arg1 and gather user input in arg2 (in lowercase)
ask() {
    echo -n -e "${blue}** ${NC}${bold}${1} ${NC}"
    read answer
    # Normalize input to lowercase
    eval "${2}=${answer,,}"
}

changelog() {
    echo "${SNAPSHOT:+Snapshot }${release}" > $REL_DIR/git/gcc/LINARO-VERSION
    for cl in $(find $REL_DIR/git -name 'ChangeLog.linaro'); do
	if [ x"$cl" = x"$REL_DIR/git/gcc/ChangeLog.linaro" ]; then
	    cat - $cl > $cl.new <<EOF
$today  $NAME  <$EMAIL>

	$chglmsg
	* LINARO-VERSION: Update.

EOF
	else
	    cat - $cl > $cl.new <<EOF
$today  $NAME  <$EMAIL>

	$chglmsg

EOF
	fi
	mv $cl.new $cl
    done

    pushd $REL_DIR/git 1>/dev/null
    if [ ${vstring%%.*} -ge "5" ]; then
	git commit -a -F- <<EOF
${commitmsg}

	gcc/
	* LINARO-VERSION: Update.
EOF
    else
	git commit -a -m "${commitmsg}"
    fi
    popd  1>/dev/null
}

bump_and_dev() {
    local bump_to="$1"
    echo "${bump_to}" > $REL_DIR/git/gcc/LINARO-VERSION
    pushd $REL_DIR/git 1>/dev/null
    git commit -q -a -F- <<EOF
	gcc/
	* LINARO-VERSION: Bump version number, post ${SNAPSHOT:+snapshot}${RELEASE:+release}${CANDIDATE:+release candidate}.
EOF
    print_info "${bold}Bumped gcc/LINARO-VERSION to ${bump_to} in $(git rev-parse --abbrev-ref HEAD)"
    popd  1>/dev/null
}

export_source() {
    pushd $REL_DIR/git 1>/dev/null
    git checkout-index -f -a --prefix=$REL_DIR/gcc-linaro-${rname}/
    popd 1>/dev/null
}

build() {
    pushd $REL_DIR/gcc-linaro-${rname} 1>/dev/null
    env SOURCEDIR="$PWD/gcc/doc" DESTDIR="$PWD/INSTALL" ./gcc/doc/install.texi2html || clean_and_die "Failed to build documentation."
    env MAKE="make -j4" contrib/gcc_build -d $REL_DIR/gcc-linaro-${rname} \
	-o $REL_DIR/objdir -c \
	"--enable-generated-files-in-srcdir --disable-multilib" build || clean_and_die "Failed to build GCC."
    mv -v $REL_DIR/objdir/gcc/po/*.gmo $REL_DIR/gcc-linaro-${rname}/gcc/po/ || clean_and_die "Failed to move gmo files"
    popd 1>/dev/null
}

md5() {
    pushd $REL_DIR/gcc-linaro-${rname} 1>/dev/null
    cat - >MD5SUMS <<EOF
# This file contains the MD5 checksums of the files in the 
# gcc-linaro-${rname}.tar.xz tarball.
#
# Besides verifying that all files in the tarball were correctly expanded,
# it also can be used to determine if any files have changed since the
# tarball was expanded or to verify that a patchfile was correctly applied.
#
# Suggested usage:
# md5sum -c MD5SUMS | grep -v "OK$"
EOF
    find . -type f | sed -e 's:^\./::' -e '/MD5SUMS/d' | LC_ALL=C sort | xargs md5sum >>MD5SUMS
    popd 1>/dev/null
}

tag() {
    pushd $REL_DIR/git 1>/dev/null
    git tag -a ${release_tag} -m "${tagmsg}"
    if [ $? != 0 ]; then
	clean_and_die "Creation of git tag ${release_tag} failed."
    fi

    # Query the git repo for the tag as a sanity step.
    print_info "${bold}Created tag \"${red}$(git tag -l ${release_tag})${NC}${bold}\" with tag message \"${red}${tagmsg}${NC}${bold}\""
    ask "Does this look right [N/y] ?" user_ok
    if [ "$user_ok" != "y" ]; then
	clean
	exit 1
    fi
    popd 1>/dev/null
}

info() {
    print_info "${bold}${italic}You are about to create ${SNAPSHOT:+snapshot }${RELEASE:+release }${CANDIDATE:+release candidate }${red}${rname}:"
    print_info "${bold}+--------------------------------------------------------------------------------"
    print_info "${bold}+ Tracking remote ${BRANCH:+branch}${TAG:+tag}:"
    print_info "${bold}|   ${red}${track}"
    print_info "${bold}+ With new local branch:"
    print_info "${bold}|   ${red}${local_branch}"
    print_info "${bold}+ The ${RELEASE:+release}${SNAPSHOT:+snapshot}${CANDIDATE:+release candidate} will be tagged as:"
    print_info "${bold}|   ${red}${release_tag}"
    print_info "${bold}+ The local branch has gcc/LINARO-VERSION set to:"
    print_info "${bold}|   ${red}$(git show ${track}:gcc/LINARO-VERSION)"
    print_info "${bold}+ For the ${SNAPSHOT:+snapshot}${RELEASE:+release}${CANDIDATE:+release candidate} gcc/LINARO-VERSION will be set:"
    print_info "${bold}|   ${red}${SNAPSHOT:+Snapshot }${release}"
    print_info "${bold}+ The gcc/LINARO-VERSION will be bumped to:"
    print_info "${bold}|   ${red}${bump_mode_to}"
    print_info "${bold}+ The local branch should be pushed to:"
    print_info "${bold}|   ${red}${remote_mode_branch}"
    if [[ "${SNAPSHOT:+set}" = "set" && "${SPIN:+set}" != "set" ]]; then
        print_info "${bold}|  +-----------------------------------------------------------------------------"
	print_info "${bold}|  + The local integration branch is:"
	print_info "${bold}|  |   ${red}${local_int_branch}"
	print_info "${bold}|  + The local integration branch will have gcc/LINARO-VERSION bumped:"
	print_info "${bold}|  |   ${italic}from: ${red}$(git show ${remote_int__branch}:gcc/LINARO-VERSION)"
	print_info "${bold}|  |   ${italic}to:   ${red}${bump_int_to}"
	print_info "${bold}|  + The local integration branch should be pushed to:"
	print_info "${bold}|  |   ${red}${remote_int_branch}"
	print_info "${bold}+--+-----------------------------------------------------------------------------"
    else
	print_info "${bold}+--------------------------------------------------------------------------------"
    fi
    print_info "${italic}${bold}After the build completes push branches and tags to the Linaro git repo:"
}

# Called at the beginning and the end to give pertinent information to the user.
hint() {
    local pushurl=$(git config --get remote.${REMOTE}.pushurl)
    if [ x"${pushurl}" = x ]; then
	print_info "Couldn't determine viable url from remote \"${REMOTE}\""
    fi

    print_info "${bold}+--------------------------------------------------------------------------------"
    print_info "${bold}|  ${italic}NOTE:${NC}${italic} The Linaro GCC git mirror only allows pushes through gerrit"
    print_info "${bold}|  The pushurl for remote \"${REMOTE}\" is:"
    print_info "${bold}|${NC}    ${red}${pushurl}"
    print_info "${bold}|  For gerrit user:"
    print_info "${bold}|${NC}    ${red}$(git config --get remote.${REMOTE}.username)"
    print_info "${bold}+--------------------------------------------------------------------------------"
    print_info "${bold}+  Push local tag ${red}${release_tag}${NC}${bold} to remote \"${REMOTE}\" with:"
    print_info "${bold}|${NC}    git push ${REMOTE} ${release_tag}"
    print_info "${bold}+  Push local branch ${red}${local_branch}${NC}${bold} to remote \"${REMOTE}\" with:"
    print_info "${bold}|${NC}    git push ${REMOTE} ${local_branch}:${remote_mode_branch/remotes\/${REMOTE}/refs/heads}"

    if [[ "${SNAPSHOT:+set}" = "set" && "${SPIN:+set}" != "set" ]]; then
	print_info "${bold}+  Push local integration branch ${red}${local_int_branch}${NC}${bold} to remote \"${REMOTE}\" with:"
	print_info "${bold}|${NC}    git push ${REMOTE} ${local_int_branch}:${remote_int_branch/remotes\/${REMOTE}/refs/heads}"
        print_info "${bold}+--------------------------------------------------------------------------------"
	print_info ""
	print_info "${italic}${bold}Note: ${NC}${italic}Someone with FSF write permission (and a configured fsf remote) will need"
	print_info "${italic}      to push the remote_int_branch changes to the FSF linaro/gcc-${vstring%.*}-branch:"
        print_info "${NC}        git push FSF ${remote_int_branch}:linaro/gcc-${vstring%.*}-branch"
    else
        print_info "${bold}+--------------------------------------------------------------------------------"
    fi
    print_info ""
    print_info "${bold}The ${SNAPSHOT:+snapshot}${RELEASE:+release}${CANDIDATE:+release candidate} tarball is in:"
    print_info "  ${REL_DIR}/gcc-linaro-${rname}.tar.xz"
    print_info "${bold}The ${SNAPSHOT:+snapshot}${RELEASE:+release}${CANDIDATE:+release candidate} tarball signature file is in:"
    print_info "  ${REL_DIR}/gcc-linaro-${rname}.tar.xz.asc"
    print_info "${bold}Tarball and its signature will be uploaded to:"
    print_info "  ${FILESERVER}"
}

# ==============================================================================
# Settings
# ==============================================================================

# Clear the directory stack so a popd in clean() always returns us to the right
# place.
dirs -c

GIT_REPO="$PWD"
VERBOSITY=0

# Leave these unset by default!
SPIN=
RELEASE=
SNAPSHOT=
RC=
CANDIDATE=
REMOTE=
BUILD="build"

NAME="$(git config user.name)"
EMAIL="$(git config user.email)"
today="$(date +%Y-%m-%d)"
gitlog_amend=

release_script="$(basename "$0")"

# Arguments.  The first colon puts getopts into silent error reporting mode
# which sets $OPTARG to the unknown option if one is encountered.
while getopts ":a:b:d:e:f:hnrRSt:uv" options
do
    case $options in
	a ) gitlog_amend="--amend $OPTARG"
	    ;;
	b ) BRANCH="$OPTARG"
	    ;;
	d ) DATE=$(sanitize_input_date "$OPTARG")
	    if [ $? -ne 0 ]; then
		# ${DATE} will contain the error message
		die "${DATE}"
	    fi
	    # We only use YYYY.MM format
	    DATE=$(date -d "$DATE" +%Y.%m 2>&1)
	    ;;
	e ) REMOTE="$OPTARG"
	    ;;
	f ) FILESERVER="$OPTARG"
	    ;;
	h ) help; exit 1;
	    ;;
	n ) unset BUILD
	    ;;
	r ) CANDIDATE=1
	    # If the next input is not a -option then it is an optional RC arg.
	    [[ ${!OPTIND} =~ ^-. ]] || { RC=${!OPTIND} ; OPTIND=$(( OPTIND + 1 )); }

	    # If the next input is not a -option then it is an optional SPIN
	    # arg.
	    [[ ${!OPTIND} =~ ^-. ]] || { SPIN=${!OPTIND} ; OPTIND=$(( OPTIND + 1 )); }

	    # The default RC for release candidates is '1'. Set it if it's
	    # undefined or the null string.  The leading colon causes the
	    # variable expansion to take place without evaluating the expansion
	    # as a statement.
	    : ${RC:=1}
	    # SPIN is left unset if not provided by the user.
	    ;;
	R ) RELEASE=1
	    # If the next input is not a -option then it is an optional SPIN
	    # arg.
	    [[ ${!OPTIND} =~ ^-. ]] || { SPIN=${!OPTIND} ; OPTIND=$(( OPTIND + 1 )); }
	    ;;
	S ) SNAPSHOT=1
	    # If the next input is not a -option then it is an optional SPIN
	    # arg.
	    [[ ${!OPTIND} =~ ^-. ]] || { SPIN=${!OPTIND} ; OPTIND=$(( OPTIND + 1 )); }
	    ;;
	t ) TAG="$OPTARG"
	    ;;
	u ) extended_usage; exit 1;
	    ;;
	v ) (( VERBOSITY=VERBOSITY+1 ))
	    ;;
	\?) print_info "Option -${BOLD}$OPTARG${NC} Unsupported."
	    ;;
	: ) extended_usage; die "Option \"-$OPTARG\" requires an argument."
	    ;;
    esac
done

if [ $# -lt 1 ]; then
    extended_usage
fi

shift $(( OPTIND - 1 ))

# If DATE wasn't set by the user, set it.
: ${DATE:=$(date -d "$today" +%Y.%m)}

# If no FILESERVER is passed as an argument, set it to ex40-01
: ${FILESERVER:=dev-01.tcwglab:/home/tcwg-buildslave/releases/sources/}

if [[ "${RELEASE:+rel}" = "rel" && "${SNAPSHOT:+snap}" = "snap" ]]; then
    die "-R and -S can not be specified at the same time."
elif [[ "${RELEASE:+rel}" = "rel" && "${CANDIDATE:+rc}" = "rc" ]]; then
    die "-R and -r can not be specified at the same time."
elif [[ "${CANDIDATE:+rc}" = "rc" && "${SNAPSHOT:+snap}" = "snap" ]]; then
    die "-r and -S can not be specified at the same time."
fi

# This uses variable substitution to test if SPIN is set, and NOT the empty
# string which protects against -S "" or -R "" (which sets SPIN to the empty
# string).
if [ "${SPIN:+set}" = "set" ]; then
    # Test if the user input contains anything other than numbers.
    if [[ ${SPIN} =~ [^0-9] ]]; then
	die "${RELEASE:+Release}${Snapshot:+Snapshot}${CANDIDATE:+Release candidate} with SPIN input \"${SPIN}\" is not a number."
    elif [[ ${SPIN} -le 0 ]]; then
	die "${RELEASE:+Release}${Snapshot:+Snapshot}${CANDIDATE:+Release candidate} with SPIN number '${SPIN}' must be greater than zero."
    fi
fi

if [ "${RC:+set}" = "set" ]; then
    # Test if the user input contains anything other than numbers.
    if [[ ${RC} =~ [^0-9] ]]; then
	die "Release candidate with RC input \"${RC}\" is not a number."
    elif [[ ${RC} -lt 1 ]]; then
	die "Release candidate with RC number '${RC}' must be greater than one."
    fi
fi

# Test if the current working directory is a git directory.
if [ x"$(git rev-parse --is-inside-work-tree 2>/dev/null)" != xtrue ]; then
    die "${GIT_REPO} is not a git repository."
elif [ ! -d "${GIT_REPO}/gcc" ]; then
    die "${GIT_REPO} is not the top-level GCC source directory."
fi

if [[ "${TAG:+t}" = "t" && "${BRANCH:+b}" = "b" ]]; then
    die "Using -t and -b together is not allowed."
fi

# Handle verbosity mode
if (( VERBOSITY == 1 )); then
    trap "debug_handler" DEBUG;
elif (( VERBOSITY == 2 )); then
    exec 4> >( grep -v "^++\|echo\|ask\|print\|exec\|eval\|\[\|\]" >&2)
    BASH_XTRACEFD=4
    set -x;
elif (( VERBOSITY >= 3 )); then
    set -x;
fi

# If the REMOTE hasn't been specified, default to 'origin'.
: ${REMOTE:=origin}

# The release notes generation uses this information.
basis="${BRANCH:+${BRANCH}}${TAG:+${TAG}}"

# Release-Candidates and Releases are both pushed to the release branch
# since there is a strict linear progression from candidates to releases.
#
# If the user is tracking a release tag or candidate tag to build a new
# candidate or release, we need to checkout from the release branch and not the
# tag so that we don't get merge conflicts with a previous rc 'bump' when the
# new series is pushed, or miss a cherry-picked patch on the release branch.
# The following is a merge-conflict due to checking out linaro-6.1-2018.08-rc2
# from the linaro-6.1-2016.08-rc1 tag:
#
#  linaro-local/releases/linaro-6.1-2016.08
#    o - Backport Commit
#    o - FSF Branch Merge Commit
#    o - Snapshot Version Commit
#    o - -rc1 Version Commit     <--- [TAG] linaro-6.1-2016.08-rc1
#    o - -rc2~dev Version Bump Commit   |
#    o - Cherry-Picked Patch Commit     +-- releases/linaro-6.1-2016.08-rc2
#                                            o - Backport Commit
#     ^                                      o - FSF Branch Merge Commit
#     |                                      o - Snapshot Version Commit
#     |                                      o - -rc1 Version Commit
#     |    linaro-6.1-2016.08-rc2 [TAG] ---> o - -rc2 Version Commit
#     |
#     +- merge conflict & merge commit <--- git push
#
# Pushing release/linaro-6.1-2016.08-rc2 onto the remote
# linaro-local/releases/linaro-6.1-2016.08 release branch will cause a merge
# conflict between the "-rc2 Version Commit", "-rc2~dev Version Bump Commit",
# and the "Cherry-Picked Patch Commit".  While a merge commit could be pushed
# to the linaro-local/releases/linaro-6.1-2016.08 remote branch, the newly
# created linaro-6.1-2016.08-rc2 tag would not represent an accurate view of the
# remote branch head.
#
# The correct behavior is use the tag to determine the correct release branch
# and checkout a working branch (releases/linaro-6.2-2016.08-rc2) from that and
# not the tag.
if [ "${CANDIDATE:+set}" = "set" ] || [ "${RELEASE:+set}" = "set" ]; then
    # We only redirect track to a branch if the tag being tracked is not
    # a snapshot tag.
    if [ "${TAG:+set}" = "set" ] && [ `echo $TAG | grep -c "snapshot"` -lt 1 ]; then

	# The git -r switch denotes that we only want remote branches that a tag
	# lives on.  We then have to grep for '${REMOTE}' because users might
	# have more than one remote (e.g., an additional 'gerrit' remote) or have
	# a remote named something other than 'origin'.  The tag might show up on
	# more than one branch so we restrict to the first branch we find.
	BRANCH="`git branch -r --contains ${TAG} | grep -m 1 ${REMOTE}`"

	# If a branch isn't pushed upstream from a previous invocation, a tag
	# might not exist on a remote branch.  This should produce an error
	# rather than defaulting to 'master'.
	if [ "${BRANCH:+set}" != "set" ]; then
	    clean_and_die "Tag '${TAG}' not found in any remote branch.  Did you push the release branch from your previous build?"
	fi
	# Remove leading whitespace
	BRANCH="${BRANCH#"${BRANCH%%[![:space:]]*}"}"
	unset TAG
    fi
fi

# Track either the BRANCH or the TAG
track="${BRANCH:+${BRANCH}}${TAG:+${TAG}}"

if [ "x${track}" = "x" ]; then
    # If the user didn't specify a tracking branch, just use the current
    # branch.
    track="$(git rev-parse --abbrev-ref HEAD)"
    # Set this because we use it to expand the "Branch" text later.
    BRANCH=$track
fi

# Keep track of the branch we start from because we'll want to return there at
# the end or if we have to cleanup prematurely.
save_branch="$(git rev-parse --abbrev-ref HEAD)"

# Test to make sure the branch or tag exists
git rev-parse --abbrev-ref $track &>/dev/null || die "${TAG:+Tag }${BRANCH:+Branch }\"$track\" doesn't exist."

if [[ x"$(git remote -v | grep "${REMOTE}")" = x ]]; then
    die "remote ${REMOTE} is not in your git repository."
fi

# Place this here so that all info output is after all die conditions.
if [[ "${RELEASE:+rel}" != "rel" && "${SNAPSHOT:+snap}" != "snap" && "${CANDIDATE:+rc}" != "rc" ]]; then
    print_info "${bold}${release_script} will default to creating a snapshot."
    SNAPSHOT=1
fi

vstring=$(git show "$track":gcc/BASE-VER)
release=${vstring%.*}-"$DATE"

# Some things are only necessary when we're in snapshot mode.
if [ "${SNAPSHOT:+set}" = "set" ]; then
    # The snapshot branch only gets the spin number bumped.
    bump_mode_to="${release}-$(( SPIN + 1 ))~dev"

    # The local integration branch only gets its DATE bumped.  Ask `date` to
    # figure out what the next month is.  Use mid-month as a starting point to
    # allow `date` to compute with accuracy.
    bump_int_date="$(date -d "$(date -d "${DATE//./-}-15" +%Y-%m-%d) +1 month" +%Y.%m)"

    # For next month on the integration branch there is no SPIN number.
    bump_int_to="${vstring%.*}-${bump_int_date}~dev"

    # Due to a change in the GCC branch naming policy, all new GCC releases
    # start with a single digit release.
    if [ ${vstring%%.*} -ge "5" ]; then
	int_vstring=${vstring%%.*}
    else
	# The 4.[1-9] branches have the .[digit] in the branch name.
	int_vstring=${vstring%.*}
    fi

    # This is the local branch where we bump the gcc/LINARO-VERSION to indicate
    # the next month.  We don't need ~dev in the local int branch name.  This
    # will not be used when respinning.
    local_int_branch="snapshots/gcc-${int_vstring}-integration-branch-${bump_int_to%\~dev}"

    # At the end of the script it will recommend that changes to the
    # local_int_branch will be pushed to the remote_int_branch.
    remote_int_branch="remotes/${REMOTE}/linaro-local/gcc-${int_vstring}-integration-branch"
elif [ "${CANDIDATE:+set}" = "set" ]; then
    bump_mode_to="${release}${SPIN:+-${SPIN}}-rc$(( RC + 1 ))~dev"
else
    bump_mode_to="${release}-$(( SPIN + 1 ))-rc$(( RC + 1 ))~dev"
fi

# The local branch can have the SPIN number on the name.
local_branch=${SNAPSHOT:+snapshots/}${RELEASE:+releases/}${CANDIDATE:+releases/}linaro-${release}${SPIN:+-$SPIN}${CANDIDATE:+-rc${RC}}

if [ x"${local_branch}" = x"$(git rev-parse --abbrev-ref HEAD)" ]; then
    die "Local branch \"${local_branch}\" already exists and your tree is checked out in it."
fi

# Release candidates and releases always push against the future or current
# release branch.  Snapshots always go into the snapshots namespace.
remote_mode_branch="remotes/${REMOTE}/linaro-local/${SNAPSHOT:+snapshots}${RELEASE:+releases}${CANDIDATE:+releases}/linaro-${release}"

# The rest of the uses of ${release} should include the SPIN number so add the
# SPIN number if it was specified.
release="${release}${SPIN:+-${SPIN}}${CANDIDATE:+-rc${RC}}"

# Differentiate between Snapshots and Releases, depending on what's set.
rname=${SNAPSHOT:+snapshot-}$release
chglmsg="GCC Linaro ${release} ${SNAPSHOT:+snapshot}${RELEASE:+release}${CANDIDATE:+release candidate}."
commitmsg="Make Linaro GCC ${SNAPSHOT:+Snapshot }${RELEASE:+Release }${CANDIDATE:+Release Candidate }${release}."

#Remove 'Make' for the front, and '.' from the back for the tag message.
tagmsg=${commitmsg#Make }
tagmsg=${tagmsg%.}
release_tag="linaro-${rname}"

REL_DIR="$PWD/../release/gcc-linaro-${rname}"


# ==============================================================================
# Prepare Sources
# ==============================================================================

# Display informational output about this run of ${release_script}.
info
hint

# Terminal lines (minus 7 to account for interesting prior output.
terminal_lines=$(( $(tput lines) - 7 ))

ask "To see the most recent commits on the tracked ${BRANCH:+branch}${TAG:+tag} press [Enter]." user_ok

# the last ten commits should be more than enough.
git log -n 10 ${track} 2>/dev/null| head -n ${terminal_lines}

ask "Does this look OK [N/y] ?" user_ok
if [ "$user_ok" != "y" ]; then
    # No need to clean here since we haven't actually done anything.
    exit 1
fi

# trap ctrl-c and call the handler function.  We don't need to register the
# handler until we actually need to do cleanup.
trap handle_ctrl_c INT

print_info "${bold}Creating git work dir \"${REL_DIR}/git\"..."
git-new-workdir $GIT_REPO $REL_DIR/git || die "Couldn't extract sources."

print_info "${bold}Saved branch: ${save_branch}"

print_info "${bold}Checking out branch \"${local_branch}\"..."
pushd $REL_DIR/git 1>/dev/null
git checkout -B ${local_branch} ${track} 2>/dev/null

popd 1>/dev/null

print_info "${bold}Creating ${SNAPSHOT:+snapshot}${RELEASE:+release}${CANDIDATE:+release candidate} ChangeLog entries..."

changelog

print_info "${bold}The following commit was made when updating the ChangeLog entries."

# Display the changes from the ChangeLog commit.
git show -n 1 ${local_branch} 2>/dev/null
# Empty line seems appropriate for visual continuity.
echo ""

ask "Does this look OK [N/y] ?" user_ok
if [ "$user_ok" != "y" ]; then
    clean
    exit 1
fi

tag

print_info "${bold}Exporting sources from git..."
export_source

# Generate ChangeLog.linaro from git commit messages for GCC branches >= 5
if [ ${vstring%%.*} -ge "5" ]; then
    pushd $REL_DIR/git 1>/dev/null
    print_info "${bold}Generating ChangeLog.linaro from git commit messages..."
    SINCE=$(git log --format=%H --grep="git-svn-id" | head -n 1)
    mydir="$(dirname "$(readlink -f "$0")")"
    ${mydir}/gitlog-to-changelog --since ${SINCE} --no-cluster \
	--strip-change-id --format=%B --strip-tab \
	${gitlog_amend} > $REL_DIR/gcc-linaro-${rname}/ChangeLog.linaro

    # Some git commit messages are not formatted correctly. Fix them manually.
    ask "Please check the generated ChangeLog and update it if needed by pressing [Enter]." user_ok
    $EDITOR $REL_DIR/gcc-linaro-${rname}/ChangeLog.linaro
    popd 1>/dev/null
fi

if [ "${BUILD:+set}" = "set" ]; then
    print_info "${bold}Building ${release}..."
    build
else
    print_info "${bold}Skipping build for ${release}..."
fi

md5

pushd $REL_DIR 1>/dev/null
print_info "${bold}Creating tarball gcc-linaro-${rname}.tar.xz..."
tar cfJ gcc-linaro-${rname}.tar.xz gcc-linaro-${rname}
md5sum gcc-linaro-${rname}.tar.xz > gcc-linaro-${rname}.tar.xz.asc
# TODO Move this to after the release notes generation?
if [ "${BUILD:+set}" = "set" ]; then
    ask "Do you want to upload the tarball to ${FILESERVER} [N/y] ?" user_ok
    if [ "$user_ok" == "y" ]; then
	scp gcc-linaro-${rname}.tar.* "${FILESERVER}"
	if [ $? -ne 0 ]; then
            print_info "${bold}${red}Uploading to ${FILESERVER} failed. Offending command is:"
            print_info "${bold}scp gcc-linaro-${rname}.tar.* ${FILESERVER}"
            print_info "${bold}${red}Please verify your settings (ssh, server address, destination directory, ...)."
            print_info "${bold}${red}Manual upload is required."
            ask "Press [Enter] to continue"
	fi
    fi
else
    print_info "${bold}${red}Skipping upload of ${release} since you skipped the build phase"
    ask "Press [Enter] to continue"
fi
popd 1>/dev/null

if [[ "${SNAPSHOT:+set}" = "set" && "${SPIN:+set}" != "set" ]]; then
    print_info "${bold}Checking out branch \"${local_int_branch}\"..."
    pushd $REL_DIR/git 1>/dev/null
    git checkout -B ${local_int_branch} ${local_branch} 1>/dev/null

    # Bump the integration branch gcc/LINARO-VERSION
    bump_and_dev "${bump_int_to}"

    print_info "${bold}Returning to git branch \"${save_branch}\"..."
    git checkout ${save_branch} 1>/dev/null
    popd 1>/dev/null
fi

pushd $REL_DIR/git 1>/dev/null
git checkout ${local_branch} 1>/dev/null
bump_and_dev "${bump_mode_to}"
popd 1>/dev/null

# Output the info a second time so it's all at the end of any captured logs.
info
hint

print_info "${bold}Generating release notes..." 
pushd $REL_DIR/git 1>/dev/null

mydir="$(dirname "$(readlink -f "$0")")"

print_info "${bold}Generating release notes into ${REL_DIR}/git/"

next_series="${SNAPSHOT:+-s}${RELEASE:+-r}${CANDIDATE:+-c}"

set -x
    python ${mydir}/rn.py ${basis} ${next_series} -g ${REL_DIR}/git --date ${DATE}
set +x

popd 1>/dev/null