Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/gentoo-functions: gentoo-functions-0.8.ebuild ChangeLog
Date: Thu, 28 Aug 2014 19:27:39
Message-Id: 20140828192734.5F2AA41CD@oystercatcher.gentoo.org
1 williamh 14/08/28 19:27:34
2
3 Modified: ChangeLog
4 Added: gentoo-functions-0.8.ebuild
5 Log:
6 emergency fix, some quoting was missed and this caused errors, thanks to zero_chaos for pointing this out.
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0x30C46538)
9
10 Revision Changes Path
11 1.24 sys-apps/gentoo-functions/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/ChangeLog?rev=1.24&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/ChangeLog?rev=1.24&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/ChangeLog?r1=1.23&r2=1.24
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/ChangeLog,v
20 retrieving revision 1.23
21 retrieving revision 1.24
22 diff -u -r1.23 -r1.24
23 --- ChangeLog 20 Aug 2014 11:38:07 -0000 1.23
24 +++ ChangeLog 28 Aug 2014 19:27:34 -0000 1.24
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/gentoo-functions
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/ChangeLog,v 1.23 2014/08/20 11:38:07 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/ChangeLog,v 1.24 2014/08/28 19:27:34 williamh Exp $
30 +
31 +*gentoo-functions-0.8 (28 Aug 2014)
32 +
33 + 28 Aug 2014; William Hubbs <williamh@g.o> +gentoo-functions-0.8.ebuild:
34 + emergency fix, some quoting was missed and this caused errors, thanks to
35 + zero_chaos for pointing this out.
36
37 20 Aug 2014; Raúl Porcel <armin76@g.o> gentoo-functions-0.7.ebuild:
38 alpha/arm64/sparc/x86 stable wrt #519734
39
40
41
42 1.1 sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gentoo-functions-0.8.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild,v 1.1 2014/08/28 19:27:34 williamh Exp $
52
53 EAPI=5
54
55 if [[ ${PV} = 9999* ]]; then
56 inherit git-r3
57 EGIT_REPO_URI="git://github.com/gentoo/${PN}.git"
58 else
59 SRC_URI="http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2"
60 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
61 fi
62
63 inherit toolchain-funcs
64
65 DESCRIPTION="base functions required by all gentoo systems"
66 HOMEPAGE="http://www.gentoo.org"
67
68 LICENSE="GPL-2"
69 SLOT="0"
70 IUSE=""
71
72 src_prepare() {
73 tc-export CC
74 }