Meta/Announce: code.google.com no longer accepts new downloads

Junio C Hamano committed Apr 18, 2014 at 12:33 UTC 644f4d33143a1df6c11c6a322db6aa041254b202
1 file changed +10 -27
Announce
+10 -27
@@ -22,10 +22,9 @@ esac
22 case "$vername" in
23 *-rc[0-9]*)
24 rpmroot=testing
25 - vername=$(echo "$vername" | tr "-" ".")
25 case "$vername" in
26 *-rc0)
28 - kind="An early preview"
27 + kind="An early preview release"
28 ;;
29 *)
30 kind="A release candidate"
@@ -39,6 +38,8 @@ case "$vername" in
38 ;;
39 esac
40
41 +vername=$(echo "$vername" | tr "-" ".")
42 +
43 cat <<EOF
44 To: git@vger.kernel.org
45 Cc: Linux Kernel <linux-kernel@vger.kernel.org>
@@ -51,25 +52,14 @@ fmt -68 <<EOF
52 $kind Git $relname is now available$for_testing at the usual places.
53 EOF
54
54 -cat <<\EOF
55 -
56 -The release tarballs are found at:
57 -
58 - http://code.google.com/p/git-core/downloads/list
59 -
60 -and their SHA-1 checksums are:
55 +cat <<EOF
56
62 -EOF
57 +The tarballs are found at:
58
64 -if test -f git-$vername.sign
65 -then
66 - sed -e '1,/^$/d' -e '/^-----BEGIN PGP SIGNATURE/,$d' git-$vername.sign
67 -fi
59 + https://www.kernel.org/pub/software/scm/git/${for_testing+testing/}
60
69 -cat <<EOF
70 -
71 -The following public repositories all have a copy of the $relname
72 -tag and the $branch branch that the tag points at:
61 +The following public repositories all have a copy of the '$relname'
62 +tag and the '$branch' branch that the tag points at:
63
64 url = https://kernel.googlesource.com/pub/scm/git/git
65 url = git://repo.or.cz/alt-git.git
@@ -80,18 +70,12 @@ tag and the $branch branch that the tag points at:
70
71 EOF
72
83 -test -n "$for_testing" ||
84 -cat <<EOF
85 -Also, http://www.kernel.org/pub/software/scm/git/ has copies of the
86 -release tarballs.
87 -
88 -EOF
89 -
73 RelNotes=$(git cat-file blob "${branch}:RelNotes") &&
74 git cat-file blob "${branch}:$RelNotes" |
75 case "$relname" in
76 *-rc[0-9]*)
94 - sed -e 's/^Git .* Release Notes$/& (draft)/'
77 + sed -e 's/^Git .* Release Notes$/& (draft)/' \
78 + -e 's/^=============/&========/'
79 ;;
80 *)
81 cat
@@ -108,4 +92,3 @@ EOF
92
93 git log --no-merges "$previous".."$branch" |
94 git shortlog
111 -