Skip to content

Commit 90cbd56

Browse files
committed
Publish testing RPMs
1 parent 62e619c commit 90cbd56

File tree

3 files changed

+57
-37
lines changed

3 files changed

+57
-37
lines changed

DoKernelOrg

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,20 @@ maint | master)
8383
ln -f git-htmldocs-$V.tar.gz git-manpages-$V.tar.gz $G/.
8484
;;
8585
esac >>./:all.log 2>&1 &&
86-
case "$NO_RPM_PLEASE" in
87-
'')
86+
case "$V" in
87+
*.rc[0-9]*)
88+
mkdir -p $G/testing &&
89+
for a in $narch
90+
do
91+
for rr in $HOME/rpms/RPMS/$a/*-$V-*.$a.rpm
92+
do
93+
test -f "$rr" || continue
94+
ln -f "$rr" $G/testing/.
95+
done
96+
done &&
97+
ln -f $HOME/rpms/SRPMS/git-$V-*.src.rpm $G/testing/.
98+
;;
99+
*)
88100
mkdir -p $G/RPMS/$arch $G/RPMS/SRPMS &&
89101
for a in $narch
90102
do
@@ -105,8 +117,6 @@ maint | master)
105117
/usr/local/bin/yummy $G/RPMS/SRPMS
106118
:
107119
} >>./:all.log 2>&1 ;;
108-
*)
109-
echo Skipping RPM ;;
110120
esac &&
111121
make clean &&
112122

prep-maint.txt

Lines changed: 30 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,62 @@
1-
diff --git a/Documentation/RelNotes-1.5.2.3.txt b/Documentation/RelNotes-1.5.2.3.txt
1+
diff --git a/Documentation/RelNotes-1.5.2.4.txt b/Documentation/RelNotes-1.5.2.4.txt
22
new file mode 100644
3-
index 0000000..6ba264d
3+
index 0000000..a46b495
44
--- /dev/null
5-
+++ b/Documentation/RelNotes-1.5.2.3.txt
6-
@@ -0,0 +1,26 @@
7-
+GIT v1.5.2.3 Release Notes
5+
+++ b/Documentation/RelNotes-1.5.2.4.txt
6+
@@ -0,0 +1,34 @@
7+
+GIT v1.5.2.4 Release Notes
88
+==========================
99
+
10-
+Fixes since v1.5.2.2
10+
+Fixes since v1.5.2.3
1111
+--------------------
1212
+
1313
+ * Bugfixes
1414
+
15-
+ - Version 2 pack index format was introduced in version 1.5.2
16-
+ to support pack files that has offset that cannot be
17-
+ represented in 32-bit. The runtime code to validate such
18-
+ an index mishandled such an index for an empty pack.
15+
+ - "git-gui" bugfixes, including a handful fixes to run it
16+
+ better on Cygwin/MSYS.
1917
+
20-
+ - Commit walkers (most notably, fetch over http protocol)
21-
+ tried to traverse commit objects contained in trees (aka
22-
+ subproject); they shouldn't.
18+
+ - "git checkout" failed to switch back and forth between
19+
+ branches, one of which has "frotz -> xyzzy" symlink and
20+
+ file "xyzzy/filfre", while the other one has a file
21+
+ "frotz/filfre".
22+
+
23+
+ - "git prune" used to segfault upon seeing a commit that is
24+
+ referred to by a tree object (aka "subproject").
25+
+
26+
+ - "git diff --name-status --no-index" mishandled an added file.
27+
+
28+
+ - "git apply --reverse --whitespace=warn" still complained
29+
+ about whitespaces that a forward application would have
30+
+ introduced.
2331
+
2432
+ * Documentation Fixes and Updates
2533
+
26-
+ - git-config --regexp was not documented properly.
34+
+ - A handful documentation updates.
2735
+
28-
+--
36+
+--
2937
+exec >/var/tmp/1
30-
+O=v1.5.2.2-11-gb833651
38+
+O=v1.5.2.3-24-gec0603e
3139
+echo O=`git describe refs/heads/maint`
3240
+git shortlog --no-merges $O..refs/heads/maint
3341
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
34-
index 3c3cd2f..5c6d2b2 100755
42+
index 5c6d2b2..a318baa 100755
3543
--- a/GIT-VERSION-GEN
3644
+++ b/GIT-VERSION-GEN
3745
@@ -1,7 +1,7 @@
3846
#!/bin/sh
3947

4048
GVF=GIT-VERSION-FILE
41-
-DEF_VER=v1.5.2.2.GIT
42-
+DEF_VER=v1.5.2.3.GIT
49+
-DEF_VER=v1.5.2.3.GIT
50+
+DEF_VER=v1.5.2.4.GIT
4351

4452
LF='
4553
'
4654
diff --git a/RelNotes b/RelNotes
47-
index 61f9778..a1c82a8 120000
55+
index a1c82a8..1f6c16e 120000
4856
--- a/RelNotes
4957
+++ b/RelNotes
5058
@@ -1 +1 @@
51-
-Documentation/RelNotes-1.5.2.2.txt
59+
-Documentation/RelNotes-1.5.2.3.txt
5260
\ No newline at end of file
53-
+Documentation/RelNotes-1.5.2.3.txt
61+
+Documentation/RelNotes-1.5.2.4.txt
5462
\ No newline at end of file

prep-master.txt

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
2-
index 06c360b..3c0032c 100755
3-
--- a/GIT-VERSION-GEN
4-
+++ b/GIT-VERSION-GEN
5-
@@ -1,7 +1,7 @@
6-
#!/bin/sh
1+
diff --git a/Documentation/RelNotes-1.5.3.txt b/Documentation/RelNotes-1.5.3.txt
2+
index 03d1843..6f5d14f 100644
3+
--- a/Documentation/RelNotes-1.5.3.txt
4+
+++ b/Documentation/RelNotes-1.5.3.txt
5+
@@ -47,8 +47,8 @@ Updates since v1.5.2
6+
renaming history of a single file.
77

8-
GVF=GIT-VERSION-FILE
9-
-DEF_VER=v1.5.2.GIT
10-
+DEF_VER=v1.5.3.GIT
8+
- "git-filter-branch" lets you rewrite the revision history of
9+
- the current branch, creating a new branch. You can specify a
10+
- number of filters to modify the commits, files and trees.
11+
+ specified branches. You can specify a number of filters to
12+
+ modify the commits, files and trees.
1113

12-
LF='
13-
'
14+
- "git-cvsserver" learned new options (--base-path, --export-all,
15+
--strict-paths) inspired by git-daemon.

0 commit comments

Comments
 (0)