Date: Mon, 24 Feb 2020 19:18:50 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r358298 - in projects/clang1000-import/lib/clang/include: . llvm/Support Message-ID: <202002241918.01OJIolp031503@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dim Date: Mon Feb 24 19:18:50 2020 New Revision: 358298 URL: https://svnweb.freebsd.org/changeset/base/358298 Log: Instead of using just the long upstream commit hash for LLVM component versions, use "git describe --tags --long" output, which is more descriptive. E.g., "90c78073f73eac58f4f8b4772a896dc8aac023bc" becomes "llvmorg-10.0.0-rc2-0-g90c78073f73". Modified: projects/clang1000-import/lib/clang/include/VCSVersion.inc projects/clang1000-import/lib/clang/include/llvm/Support/VCSRevision.h Modified: projects/clang1000-import/lib/clang/include/VCSVersion.inc ============================================================================== --- projects/clang1000-import/lib/clang/include/VCSVersion.inc Mon Feb 24 19:12:20 2020 (r358297) +++ projects/clang1000-import/lib/clang/include/VCSVersion.inc Mon Feb 24 19:18:50 2020 (r358298) @@ -1,14 +1,14 @@ // $FreeBSD$ -#define LLVM_REVISION "90c78073f73eac58f4f8b4772a896dc8aac023bc" +#define LLVM_REVISION "llvmorg-10.0.0-rc2-0-g90c78073f73" #define LLVM_REPOSITORY "git@github.com:llvm/llvm-project.git" -#define CLANG_REVISION "90c78073f73eac58f4f8b4772a896dc8aac023bc" +#define CLANG_REVISION "llvmorg-10.0.0-rc2-0-g90c78073f73" #define CLANG_REPOSITORY "git@github.com:llvm/llvm-project.git" // <Upstream revision at import>-<Local identifier in __FreeBSD_version style> -#define LLD_REVISION "90c78073f73eac58f4f8b4772a896dc8aac023bc-1300007" +#define LLD_REVISION "llvmorg-10.0.0-rc2-0-g90c78073f73-1300007" #define LLD_REPOSITORY "FreeBSD" -#define LLDB_REVISION "90c78073f73eac58f4f8b4772a896dc8aac023bc" +#define LLDB_REVISION "llvmorg-10.0.0-rc2-0-g90c78073f73" #define LLDB_REPOSITORY "git@github.com:llvm/llvm-project.git" Modified: projects/clang1000-import/lib/clang/include/llvm/Support/VCSRevision.h ============================================================================== --- projects/clang1000-import/lib/clang/include/llvm/Support/VCSRevision.h Mon Feb 24 19:12:20 2020 (r358297) +++ projects/clang1000-import/lib/clang/include/llvm/Support/VCSRevision.h Mon Feb 24 19:18:50 2020 (r358298) @@ -1,3 +1,3 @@ /* $FreeBSD$ */ -#define LLVM_REVISION "90c78073f73eac58f4f8b4772a896dc8aac023bc" +#define LLVM_REVISION "llvmorg-10.0.0-rc2-0-g90c78073f73" #define LLVM_REPOSITORY "git@github.com:llvm/llvm-project.git"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002241918.01OJIolp031503>