Patrick Williams | 705982a | 2024-01-12 09:51:57 -0600 | [diff] [blame] | 1 | From 0a1af74ed3fae9a9a08b8b1ab89e88c02427ae06 Mon Sep 17 00:00:00 2001 |
| 2 | From: Mingli Yu <mingli.yu@windriver.com> |
| 3 | Date: Wed, 10 Jan 2024 05:57:00 +0000 |
| 4 | Subject: [PATCH] csv-revision: Drop the git revision info |
| 5 | |
| 6 | The git revison info is added [1] to make the version more descriptive |
| 7 | to produce an incremental revision number like 1.8.18.13 or 1.8.18.14 |
| 8 | and etc and more clear in terms of "what codebase was used" like |
| 9 | `1.8.18.13.gee01aa5`. But it also introduces the below version |
| 10 | inconsistence. |
| 11 | root@qemux86-64:~# ipmitool -V |
| 12 | ipmitool version 1.8.19.19.gab5ce5b |
| 13 | root@qemux86-64:~# rpm -qa | grep ipmitool |
| 14 | ipmitool-1.8.19-r0.core2_64 |
| 15 | |
| 16 | Considering the version we acutally used in oe is a release version, |
| 17 | the git revision info as [1] is meaningness. So drop the git revsion |
| 18 | info to remove the above version inconsitence. |
| 19 | |
| 20 | [1] https://github.com/ipmitool/ipmitool/commit/ba01dc84b4e225c86eac3f562e629662d752040f |
| 21 | |
| 22 | Upstream-Status: Inappropriate [OE-Specific as we use a release version in oe] |
| 23 | |
| 24 | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> |
| 25 | --- |
| 26 | csv-revision | 1 + |
| 27 | 1 file changed, 1 insertion(+) |
| 28 | |
| 29 | diff --git a/csv-revision b/csv-revision |
| 30 | index 289c133..3fa9f1c 100755 |
| 31 | --- a/csv-revision |
| 32 | +++ b/csv-revision |
| 33 | @@ -1,5 +1,6 @@ |
| 34 | #!/bin/sh |
| 35 | |
| 36 | +exit 0 |
| 37 | git describe --first-parent --tags 2>/dev/null | ( |
| 38 | IFS=- read tag rev hash |
| 39 | if [ $? ] && [ -n "$rev" ]; then |
| 40 | -- |
| 41 | 2.35.5 |
| 42 | |