From owner-svn-src-projects@freebsd.org Mon Feb 24 19:18:51 2020 Return-Path: Delivered-To: svn-src-projects@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CEA7523FF53 for ; Mon, 24 Feb 2020 19:18:51 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48RBgb154Bz3x2T; Mon, 24 Feb 2020 19:18:50 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E342021BC; Mon, 24 Feb 2020 19:18:50 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01OJIo1n031505; Mon, 24 Feb 2020 19:18:50 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01OJIolp031503; Mon, 24 Feb 2020 19:18:50 GMT (envelope-from dim@FreeBSD.org) Message-Id: <202002241918.01OJIolp031503@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Mon, 24 Feb 2020 19:18:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r358298 - in projects/clang1000-import/lib/clang/include: . llvm/Support X-SVN-Group: projects X-SVN-Commit-Author: dim X-SVN-Commit-Paths: in projects/clang1000-import/lib/clang/include: . llvm/Support X-SVN-Commit-Revision: 358298 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2020 19:18:51 -0000 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" // - -#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"