summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2012-05-02 17:03:57 +0000
committerMichał Górny <mgorny@gentoo.org>2012-05-02 17:03:57 +0000
commit2d0013171a259199f0721a40017e318b65c8d211 (patch)
tree4a28c517829a83da2d820e5bd9061311a2121406
parentRemove dependency on ispell closing #413363. Fixed an annoying typo in tm-fil... (diff)
downloadgentoo-2-2d0013171a259199f0721a40017e318b65c8d211.tar.gz
gentoo-2-2d0013171a259199f0721a40017e318b65c8d211.tar.bz2
gentoo-2-2d0013171a259199f0721a40017e318b65c8d211.zip
Add myself as a co-maintainer.
(Portage version: 2.2.0_alpha101_p3/cvs/Linux x86_64)
-rw-r--r--sys-devel/llvm/ChangeLog5
-rw-r--r--sys-devel/llvm/metadata.xml4
2 files changed, 8 insertions, 1 deletions
diff --git a/sys-devel/llvm/ChangeLog b/sys-devel/llvm/ChangeLog
index c493f5aed0b9..2e78db4a0e54 100644
--- a/sys-devel/llvm/ChangeLog
+++ b/sys-devel/llvm/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/llvm
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.69 2012/04/30 15:19:44 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.70 2012/05/02 17:03:57 mgorny Exp $
+
+ 02 May 2012; Michał Górny <mgorny@gentoo.org> metadata.xml:
+ Add myself as a co-maintainer.
30 Apr 2012; Fabian Groffen <grobian@gentoo.org>
+files/llvm-3.2-nodoctargz.patch, llvm-9999.ebuild:
diff --git a/sys-devel/llvm/metadata.xml b/sys-devel/llvm/metadata.xml
index 140a2f8c7cf3..e5a362b5c5b3 100644
--- a/sys-devel/llvm/metadata.xml
+++ b/sys-devel/llvm/metadata.xml
@@ -5,6 +5,10 @@
<email>voyageur@gentoo.org</email>
<name>Bernard Cafarelli</name>
</maintainer>
+ <maintainer>
+ <email>mgorny@gentoo.org</email>
+ <name>Michał Górny</name>
+ </maintainer>
<longdescription>Low Level Virtual Machine (LLVM) is:
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.
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.