Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/, sys-devel/llvm/
Date: Mon, 27 Jun 2016 08:56:16
Message-Id: 1467017757.ce14c54c36777aa0738b27f0828feddc869c1f6e.wizardedit@gentoo
1 commit: ce14c54c36777aa0738b27f0828feddc869c1f6e
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 27 08:54:29 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 27 08:55:57 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce14c54c
7
8 sys-devel/{clang,llvm}: add myself as maintainer
9
10 sys-devel/clang/metadata.xml | 4 ++++
11 sys-devel/llvm/metadata.xml | 4 ++++
12 2 files changed, 8 insertions(+)
13
14 diff --git a/sys-devel/clang/metadata.xml b/sys-devel/clang/metadata.xml
15 index 326f12b..2165c0a 100644
16 --- a/sys-devel/clang/metadata.xml
17 +++ b/sys-devel/clang/metadata.xml
18 @@ -5,6 +5,10 @@
19 <email>mgorny@g.o</email>
20 <name>Michał Górny</name>
21 </maintainer>
22 + <maintainer type="person">
23 + <email>wizardedit@g.o</email>
24 + <name>Austin English</name>
25 + </maintainer>
26 <longdescription>The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler.
27
28 Features and Goals
29
30 diff --git a/sys-devel/llvm/metadata.xml b/sys-devel/llvm/metadata.xml
31 index 6d78a05..3a671d6 100644
32 --- a/sys-devel/llvm/metadata.xml
33 +++ b/sys-devel/llvm/metadata.xml
34 @@ -9,6 +9,10 @@
35 <email>williamh@g.o</email>
36 <name>William Hubbs</name>
37 </maintainer>
38 + <maintainer type="person">
39 + <email>wizardedit@g.o</email>
40 + <name>Austin English</name>
41 + </maintainer>
42 <longdescription>Low Level Virtual Machine (LLVM) is:
43 1. A compilation strategy designed to enable effective program optimization across the entire lifetime of a program. LLVM supports effective optimization at compile time, link-time (particularly interprocedural), run-time and offline (i.e., after software is installed), while remaining transparent to developers and maintaining compatibility with existing build scripts.
44 2. A virtual instruction set - LLVM is a low-level object code representation that uses simple RISC-like instructions, but provides rich, language-independent, type information and dataflow (SSA) information about operands. This combination enables sophisticated transformations on object code, while remaining light-weight enough to be attached to the executable. This combination is key to allowing link-time, run-time, and offline transformations.