Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/dwz: dwz-0.9.ebuild metadata.xml ChangeLog
Date: Mon, 04 Mar 2013 16:40:21
Message-Id: 20130304164018.4D01A2171D@flycatcher.gentoo.org
1 dev-zero 13/03/04 16:40:18
2
3 Added: dwz-0.9.ebuild metadata.xml ChangeLog
4 Log:
5 Initial commit, ebuild written by me.
6
7 (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 0x1E0CA85F!)
8
9 Revision Changes Path
10 1.1 sys-devel/dwz/dwz-0.9.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dwz/dwz-0.9.ebuild?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dwz/dwz-0.9.ebuild?rev=1.1&content-type=text/plain
14
15 Index: dwz-0.9.ebuild
16 ===================================================================
17 # Copyright 1999-2013 Gentoo Foundation
18 # Distributed under the terms of the GNU General Public License v2
19 # $Header: /var/cvsroot/gentoo-x86/sys-devel/dwz/dwz-0.9.ebuild,v 1.1 2013/03/04 16:40:18 dev-zero Exp $
20
21 EAPI=5
22
23 DESCRIPTION="DWARF optimization and duplicate removal tool"
24 HOMEPAGE="http://sourceware.org/git/?p=dwz.git;a=summary"
25 SRC_URI="mirror://gentoo/${P}.tar.xz"
26
27 LICENSE="GPL-2+ GPL-3+"
28 SLOT="0"
29 KEYWORDS="~amd64"
30 IUSE=""
31
32 DEPEND="dev-libs/elfutils"
33 RDEPEND="${DEPEND}"
34
35 src_prepare() {
36 sed -i \
37 -e '/^CFLAGS/d' \
38 Makefile || die "sed failed"
39 }
40
41
42
43 1.1 sys-devel/dwz/metadata.xml
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dwz/metadata.xml?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dwz/metadata.xml?rev=1.1&content-type=text/plain
47
48 Index: metadata.xml
49 ===================================================================
50 <?xml version="1.0" encoding="UTF-8"?>
51 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
52 <pkgmetadata>
53 <maintainer>
54 <email>dev-zero@g.o</email>
55 <name>Tiziano Müller</name>
56 </maintainer>
57 <longdescription>
58 The dwz package contains a program that attempts to optimize DWARF
59 debugging information contained in ELF shared libraries and ELF executables
60 for size, by replacing DWARF information representation with equivalent
61 smaller representation where possible and by reducing the amount of
62 duplication using techniques from DWARF standard appendix E - creating
63 DW_TAG_partial_unit compilation units (CUs) for duplicated information
64 and using DW_TAG_imported_unit to import it into each CU that needs it.
65 </longdescription>
66 </pkgmetadata>
67
68
69
70 1.1 sys-devel/dwz/ChangeLog
71
72 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dwz/ChangeLog?rev=1.1&view=markup
73 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dwz/ChangeLog?rev=1.1&content-type=text/plain
74
75 Index: ChangeLog
76 ===================================================================
77 # ChangeLog for sys-devel/dwz
78 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
79 # $Header: /var/cvsroot/gentoo-x86/sys-devel/dwz/ChangeLog,v 1.1 2013/03/04 16:40:18 dev-zero Exp $
80
81 *dwz-0.9 (04 Mar 2013)
82
83 04 Mar 2013; Tiziano Müller <dev-zero@g.o> +dwz-0.9.ebuild,
84 +metadata.xml:
85 Initial commit, ebuild written by me.