Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ustr: metadata.xml ustr-1.0.4-r3.ebuild ChangeLog
Date: Sat, 09 Nov 2013 14:54:21
Message-Id: 20131109145414.545F72004B@flycatcher.gentoo.org
1 hwoarang 13/11/09 14:54:14
2
3 Modified: metadata.xml ChangeLog
4 Added: ustr-1.0.4-r3.ebuild
5 Log:
6 Fix installation path. Patch by Sven Eden <Yamakuzure@×××.net> who will also be the maintainer
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
9
10 Revision Changes Path
11 1.4 dev-libs/ustr/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/metadata.xml?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/metadata.xml?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/metadata.xml?r1=1.3&r2=1.4
16
17 Index: metadata.xml
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ustr/metadata.xml,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- metadata.xml 12 Oct 2013 06:45:03 -0000 1.3
24 +++ metadata.xml 9 Nov 2013 14:54:14 -0000 1.4
25 @@ -1,7 +1,10 @@
26 <?xml version="1.0" encoding="UTF-8"?>
27 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
28 <pkgmetadata>
29 +<herd>proxy-maintainers</herd>
30 <maintainer>
31 - <email>maintainer-needed@g.o</email>
32 + <email>Yamakuzure@×××.net</email>
33 + <name>Sven Eden</name>
34 + <description>Maintainer. Assign bugs to him</description>
35 </maintainer>
36 </pkgmetadata>
37
38
39
40 1.10 dev-libs/ustr/ChangeLog
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?rev=1.10&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?rev=1.10&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?r1=1.9&r2=1.10
45
46 Index: ChangeLog
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v
49 retrieving revision 1.9
50 retrieving revision 1.10
51 diff -u -r1.9 -r1.10
52 --- ChangeLog 13 Oct 2013 13:40:41 -0000 1.9
53 +++ ChangeLog 9 Nov 2013 14:54:14 -0000 1.10
54 @@ -1,6 +1,13 @@
55 # ChangeLog for dev-libs/ustr
56 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.9 2013/10/13 13:40:41 jer Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.10 2013/11/09 14:54:14 hwoarang Exp $
59 +
60 +*ustr-1.0.4-r3 (09 Nov 2013)
61 +
62 + 09 Nov 2013; Markos Chandras <hwoarang@g.o> +ustr-1.0.4-r3.ebuild,
63 + metadata.xml:
64 + Fix installation path. Patch by Sven Eden <Yamakuzure@×××.net> who will also
65 + be the maintainer
66
67 *ustr-1.0.4-r2 (13 Oct 2013)
68
69
70
71
72 1.1 dev-libs/ustr/ustr-1.0.4-r3.ebuild
73
74 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r3.ebuild?rev=1.1&view=markup
75 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r3.ebuild?rev=1.1&content-type=text/plain
76
77 Index: ustr-1.0.4-r3.ebuild
78 ===================================================================
79 # Copyright 1999-2013 Gentoo Foundation
80 # Distributed under the terms of the GNU General Public License v2
81 # $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r3.ebuild,v 1.1 2013/11/09 14:54:14 hwoarang Exp $
82
83 EAPI=5
84
85 inherit multilib toolchain-funcs
86
87 DESCRIPTION="Low-overhead managed string library for C"
88 HOMEPAGE="http://www.and.org/ustr"
89 SRC_URI="ftp://ftp.and.org/pub/james/ustr/${PV}/${P}.tar.bz2"
90
91 LICENSE="|| ( BSD-2 MIT LGPL-2 )"
92 SLOT="0"
93 KEYWORDS="~amd64 ~x86"
94 IUSE=""
95
96 DEPEND=""
97 RDEPEND=""
98
99 src_compile() {
100 emake AR=$(tc-getAR) CC=$(tc-getCC) CFLAGS="${CFLAGS}" HIDE= \
101 SHRDIR="/usr/share/${P}" \
102 all-shared
103 }
104
105 src_test() {
106 emake AR=$(tc-getAR) CC=$(tc-getCC) CFLAGS="${CFLAGS}" HIDE= check
107 }
108
109 src_install() {
110 emake install DESTDIR="${D}" HIDE= \
111 libdir="/usr/$(get_libdir)" \
112 mandir="/usr/share/man" \
113 SHRDIR="/usr/share/${P}" \
114 DOCSHRDIR="/usr/share/doc/${PF}"
115
116 dodoc ChangeLog README README-DEVELOPERS AUTHORS NEWS TODO
117 }