Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/rfc5051: metadata.xml rfc5051-0.1.0.3.ebuild ChangeLog
Date: Wed, 20 Nov 2013 14:24:09
Message-Id: 20131120142400.48E372004B@flycatcher.gentoo.org
1 slyfox 13/11/20 14:24:00
2
3 Added: metadata.xml rfc5051-0.1.0.3.ebuild ChangeLog
4 Log:
5 Initial commit. Simple unicode collation as per RFC5051.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
8
9 Revision Changes Path
10 1.1 dev-haskell/rfc5051/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/rfc5051/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/rfc5051/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 <use>
25 <flag name='mkunicodedata'>build codes generator itself</flag>
26 </use>
27 <longdescription>
28 This library implements @i;unicode-casemap@,
29 the simple, non locale-sensitive unicode collation
30 algorithm described in RFC 5051 (&lt;http://www.rfc-editor.org/rfc/rfc5051.txt&gt;).
31 Proper unicode collation can be done using text-icu, but that is a big
32 dependency that depends on a large C library, and rfc5051 might be better
33 for some purposes.
34
35 Here is a list of strings sorted by the Prelude&#39;s @sort@ function:
36
37 @Abe Oeb abe ab&amp;#233; oeb &amp;#193;be &amp;#196;be &amp;#212;eb &amp;#225;be &amp;#228;be &amp;#244;eb@
38
39 Here is the same list sorted by @sortBy compareUnicode@:
40
41 @Abe abe ab&amp;#233; &amp;#193;be &amp;#225;be &amp;#196;be &amp;#228;be Oeb oeb &amp;#212;eb &amp;#244;eb@
42 </longdescription>
43 </pkgmetadata>
44
45
46
47 1.1 dev-haskell/rfc5051/rfc5051-0.1.0.3.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/rfc5051/rfc5051-0.1.0.3.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/rfc5051/rfc5051-0.1.0.3.ebuild?rev=1.1&content-type=text/plain
51
52 Index: rfc5051-0.1.0.3.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/rfc5051/rfc5051-0.1.0.3.ebuild,v 1.1 2013/11/20 14:24:00 slyfox Exp $
57
58 EAPI=5
59
60 # ebuild generated by hackport 0.3.4.9999
61
62 CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
63 inherit haskell-cabal
64
65 DESCRIPTION="Simple unicode collation as per RFC5051."
66 HOMEPAGE="http://hackage.haskell.org/package/rfc5051"
67 SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
68
69 LICENSE="BSD"
70 SLOT="0/${PV}"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="mkunicodedata"
73
74 RDEPEND=">=dev-lang/ghc-7.0.1:=
75 "
76 DEPEND="${RDEPEND}
77 >=dev-haskell/cabal-1.10.0.0
78 "
79
80 src_configure() {
81 haskell-cabal_src_configure \
82 $(cabal_flag mkunicodedata mkunicodedata)
83 }
84
85
86
87 1.1 dev-haskell/rfc5051/ChangeLog
88
89 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/rfc5051/ChangeLog?rev=1.1&view=markup
90 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/rfc5051/ChangeLog?rev=1.1&content-type=text/plain
91
92 Index: ChangeLog
93 ===================================================================
94 # ChangeLog for dev-haskell/rfc5051
95 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
96 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/rfc5051/ChangeLog,v 1.1 2013/11/20 14:24:00 slyfox Exp $
97
98 *rfc5051-0.1.0.3 (20 Nov 2013)
99
100 20 Nov 2013; Sergei Trofimovich <slyfox@g.o> +metadata.xml,
101 +rfc5051-0.1.0.3.ebuild:
102 Initial commit. Simple unicode collation as per RFC5051.