Gentoo Archives: gentoo-commits

From: "Alexander Vershilov (qnikst)" <qnikst@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/basic-prelude: metadata.xml basic-prelude-0.3.5.0.ebuild ChangeLog
Date: Mon, 26 Aug 2013 12:37:42
Message-Id: 20130826123739.5F40F2004C@flycatcher.gentoo.org
1 qnikst 13/08/26 12:37:39
2
3 Added: metadata.xml basic-prelude-0.3.5.0.ebuild ChangeLog
4 Log:
5 dev-haskell/basic-prelude: initial layout
6
7 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0xEAD50D64D8D3571A!)
8
9 Revision Changes Path
10 1.1 dev-haskell/basic-prelude/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/basic-prelude/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/basic-prelude/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>haskell</herd>
21 <maintainer>
22 <email>haskell@g.o</email>
23 </maintainer>
24 <longdescription>
25 The premise of @basic-prelude@ is that there are a lot of very commonly desired features missing from the standard @Prelude@, such as commonly used operators (@\&lt;$\&gt;@ and @&gt;=&gt;@, for instance) and imports for common datatypes (e.g., @ByteString@ and @Vector@). At the same time, there are lots of other components which are more debatable, such as providing polymorphic versions of common functions.
26
27 So @basic-prelude@ is intended to give a common foundation for a number of alternate preludes. The package provides two modules: @CorePrelude@ provides the common ground for other preludes to build on top of, while @BasicPrelude@ exports @CorePrelude@ together with commonly used list functions to provide a drop-in replacement for the standard @Prelude@.
28
29 Users wishing to have an improved @Prelude@ can use @BasicPrelude@. Developers wishing to create a new prelude should use @CorePrelude@.
30
31 Release history:
32
33 [0.3] Moved a number of exports from @BasicPrelude@ to @CorePrelude@ and vice-versa.
34
35 [0.2] Renamed @BasicPrelude@ to @CorePrelude@ and added a new @BasicPrelude@ module provided a full-featured @Prelude@ alternative. Also added a number of new exports.
36
37 [0.1] Initial version, code taken from @classy-prelude@ with a few minor tweaks.
38 </longdescription>
39 </pkgmetadata>
40
41
42
43 1.1 dev-haskell/basic-prelude/basic-prelude-0.3.5.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/basic-prelude/basic-prelude-0.3.5.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/basic-prelude/basic-prelude-0.3.5.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: basic-prelude-0.3.5.0.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/basic-prelude/basic-prelude-0.3.5.0.ebuild,v 1.1 2013/08/26 12:37:39 qnikst Exp $
53
54 EAPI=5
55
56 # ebuild generated by hackport 0.3.2.9999
57
58 CABAL_FEATURES="lib profile haddock hoogle hscolour"
59 inherit haskell-cabal
60
61 DESCRIPTION="An enhanced core prelude; a common foundation for alternate preludes."
62 HOMEPAGE="https://github.com/snoyberg/basic-prelude"
63 SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="0/${PV}"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND="dev-haskell/hashable:=[profile?]
71 dev-haskell/lifted-base:=[profile?]
72 =dev-haskell/readargs-1.2*:=[profile?]
73 =dev-haskell/system-filepath-0.4*:=[profile?]
74 dev-haskell/text:=[profile?]
75 dev-haskell/transformers:=[profile?]
76 dev-haskell/unordered-containers:=[profile?]
77 dev-haskell/vector:=[profile?]
78 >=dev-lang/ghc-6.10.4:="
79 DEPEND="${RDEPEND}
80 >=dev-haskell/cabal-1.8"
81
82
83
84 1.1 dev-haskell/basic-prelude/ChangeLog
85
86 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/basic-prelude/ChangeLog?rev=1.1&view=markup
87 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/basic-prelude/ChangeLog?rev=1.1&content-type=text/plain
88
89 Index: ChangeLog
90 ===================================================================
91 # ChangeLog for dev-haskell/basic-prelude
92 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
93 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/basic-prelude/ChangeLog,v 1.1 2013/08/26 12:37:39 qnikst Exp $
94
95 *basic-prelude-0.3.5.0 (26 Aug 2013)
96
97 26 Aug 2013; Alexander Vershilov <qnikst@g.o>
98 +basic-prelude-0.3.5.0.ebuild, +metadata.xml:
99 dev-haskell/basic-prelude: initial layout