| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2013 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ghc-package.eclass,v 1.23 2007/07/25 18:07:02 dcoutts Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ghc-package.eclass,v 1.36 2013/01/06 13:06:35 slyfox Exp $ |
| 4 | # |
4 | |
|
|
5 | # @ECLASS: ghc-package.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # "Gentoo's Haskell Language team" <haskell@gentoo.org> |
|
|
8 | # @AUTHOR: |
| 5 | # Author: Andres Loeh <kosmikus@gentoo.org> |
9 | # Original Author: Andres Loeh <kosmikus@gentoo.org> |
| 6 | # Maintained by: Haskell herd <haskell@gentoo.org> |
|
|
| 7 | # |
|
|
| 8 | # This eclass helps with the Glasgow Haskell Compiler's package |
10 | # @BLURB: This eclass helps with the Glasgow Haskell Compiler's package configuration utility. |
| 9 | # configuration utility. |
11 | # @DESCRIPTION: |
|
|
12 | # Helper eclass to handle ghc installation/upgrade/deinstallation process. |
| 10 | |
13 | |
| 11 | inherit versionator |
14 | inherit versionator |
| 12 | |
15 | |
| 13 | # promote /opt/ghc/bin to a better position in the search path |
16 | # @FUNCTION: ghc-getghc |
| 14 | PATH="/usr/bin:/opt/ghc/bin:${PATH}" |
17 | # @DESCRIPTION: |
| 15 | |
|
|
| 16 | # for later configuration using environment variables/ |
|
|
| 17 | # returns the name of the ghc executable |
18 | # returns the name of the ghc executable |
| 18 | ghc-getghc() { |
19 | ghc-getghc() { |
| 19 | type -P ghc |
20 | type -P ghc |
| 20 | } |
21 | } |
| 21 | |
22 | |
|
|
23 | # @FUNCTION: ghc-getghcpkg |
|
|
24 | # @DESCRIPTION: |
| 22 | # returns the name of the ghc-pkg executable |
25 | # Internal function determines returns the name of the ghc-pkg executable |
| 23 | ghc-getghcpkg() { |
26 | ghc-getghcpkg() { |
| 24 | type -P ghc-pkg |
27 | type -P ghc-pkg |
| 25 | } |
28 | } |
| 26 | |
29 | |
|
|
30 | # @FUNCTION: ghc-getghcpkgbin |
|
|
31 | # @DESCRIPTION: |
| 27 | # returns the name of the ghc-pkg binary (ghc-pkg |
32 | # returns the name of the ghc-pkg binary (ghc-pkg |
| 28 | # itself usually is a shell script, and we have to |
33 | # itself usually is a shell script, and we have to |
| 29 | # bypass the script under certain circumstances); |
34 | # bypass the script under certain circumstances); |
| 30 | # for Cabal, we add an empty global package config file, |
35 | # for Cabal, we add an empty global package config file, |
| 31 | # because for some reason the global package file |
36 | # because for some reason the global package file |
| 32 | # must be specified |
37 | # must be specified |
| 33 | ghc-getghcpkgbin() { |
38 | ghc-getghcpkgbin() { |
| 34 | if ghc-cabal; then |
39 | # the ghc-pkg executable changed name in ghc 6.10, as it no longer needs |
|
|
40 | # the wrapper script with the static flags |
| 35 | echo '[]' > "${T}/empty.conf" |
41 | echo '[]' > "${T}/empty.conf" |
|
|
42 | if version_is_at_least "7.7.20121101" "$(ghc-version)"; then |
|
|
43 | # was moved to bin/ subtree by: |
|
|
44 | # http://www.haskell.org/pipermail/cvs-ghc/2012-September/076546.html |
|
|
45 | echo "$(ghc-libdir)/bin/ghc-pkg" "--global-package-db=${T}/empty.conf" |
|
|
46 | elif version_is_at_least "7.5.20120516" "$(ghc-version)"; then |
| 36 | echo "$(ghc-libdir)/ghc-pkg.bin" "--global-conf=${T}/empty.conf" |
47 | echo "$(ghc-libdir)/ghc-pkg" "--global-package-db=${T}/empty.conf" |
| 37 | else |
48 | else |
| 38 | echo "$(ghc-libdir)/ghc-pkg.bin" |
49 | echo "$(ghc-libdir)/ghc-pkg" "--global-conf=${T}/empty.conf" |
| 39 | fi |
50 | fi |
| 40 | } |
51 | } |
| 41 | |
52 | |
|
|
53 | # @FUNCTION: ghc-version |
|
|
54 | # @DESCRIPTION: |
| 42 | # returns the version of ghc |
55 | # returns the version of ghc |
| 43 | _GHC_VERSION_CACHE="" |
56 | _GHC_VERSION_CACHE="" |
| 44 | ghc-version() { |
57 | ghc-version() { |
| 45 | if [[ -z "${_GHC_VERSION_CACHE}" ]]; then |
58 | if [[ -z "${_GHC_VERSION_CACHE}" ]]; then |
| 46 | _GHC_VERSION_CACHE="$($(ghc-getghc) --numeric-version)" |
59 | _GHC_VERSION_CACHE="$($(ghc-getghc) --numeric-version)" |
| 47 | fi |
60 | fi |
| 48 | echo "${_GHC_VERSION_CACHE}" |
61 | echo "${_GHC_VERSION_CACHE}" |
| 49 | } |
62 | } |
| 50 | |
63 | |
| 51 | # this function can be used to determine if ghc itself |
64 | # @FUNCTION: ghc-bestcabalversion |
| 52 | # uses the Cabal package format; it has nothing to do |
65 | # @DESCRIPTION: |
| 53 | # with the Cabal libraries ... ghc uses the Cabal package |
|
|
| 54 | # format since version 6.4 |
|
|
| 55 | ghc-cabal() { |
|
|
| 56 | version_is_at_least "6.4" "$(ghc-version)" |
|
|
| 57 | } |
|
|
| 58 | |
|
|
| 59 | # return the best version of the Cabal library that is available |
66 | # return the best version of the Cabal library that is available |
| 60 | ghc-bestcabalversion() { |
67 | ghc-bestcabalversion() { |
| 61 | local cabalversion |
|
|
| 62 | if ghc-cabal; then |
|
|
| 63 | # We ask portage, not ghc, so that we only pick up |
68 | # We ask portage, not ghc, so that we only pick up |
| 64 | # portage-installed cabal versions. |
69 | # portage-installed cabal versions. |
| 65 | cabalversion="$(ghc-extractportageversion dev-haskell/cabal)" |
70 | local cabalversion="$(ghc-extractportageversion dev-haskell/cabal)" |
| 66 | echo "Cabal-${cabalversion}" |
71 | echo "Cabal-${cabalversion}" |
| 67 | else |
|
|
| 68 | # older ghc's don't support package versioning |
|
|
| 69 | echo Cabal |
|
|
| 70 | fi |
|
|
| 71 | } |
72 | } |
| 72 | |
73 | |
|
|
74 | # @FUNCTION: ghc-sanecabal |
|
|
75 | # @DESCRIPTION: |
| 73 | # check if a standalone Cabal version is available for the |
76 | # check if a standalone Cabal version is available for the |
| 74 | # currently used ghc; takes minimal version of Cabal as |
77 | # currently used ghc; takes minimal version of Cabal as |
| 75 | # an optional argument |
78 | # an optional argument |
| 76 | ghc-sanecabal() { |
79 | ghc-sanecabal() { |
| 77 | local f |
80 | local f |
| … | |
… | |
| 81 | [[ -f "${f}" ]] && version_is_at_least "${version}" "${f#*cabal-}" && return |
84 | [[ -f "${f}" ]] && version_is_at_least "${version}" "${f#*cabal-}" && return |
| 82 | done |
85 | done |
| 83 | return 1 |
86 | return 1 |
| 84 | } |
87 | } |
| 85 | |
88 | |
| 86 | # checks if ghc and ghc-bin are installed in the same version |
89 | # @FUNCTION: ghc-supports-shared-libraries |
| 87 | # (if they're both installed); if this is not the case, we |
90 | # @DESCRIPTION: |
| 88 | # unfortunately cannot trust portage's dependency resolution |
91 | # checks if ghc is built with support for building |
| 89 | ghc-saneghc() { |
92 | # shared libraries (aka '-dynamic' option) |
| 90 | local ghcversion |
93 | ghc-supports-shared-libraries() { |
| 91 | local ghcbinversion |
94 | $(ghc-getghc) --info | grep "RTS ways" | grep -q "dyn" |
| 92 | if [[ "${PN}" == "ghc" || "${PN}" == "ghc-bin" ]]; then |
|
|
| 93 | return |
|
|
| 94 | fi |
|
|
| 95 | if has_version dev-lang/ghc && has_version dev-lang/ghc-bin; then |
|
|
| 96 | ghcversion="$(ghc-extractportageversion dev-lang/ghc)" |
|
|
| 97 | ghcbinversion="$(ghc-extractportageversion dev-lang/ghc-bin)" |
|
|
| 98 | if [[ "${ghcversion}" != "${ghcbinversion}" ]]; then |
|
|
| 99 | return 1 |
|
|
| 100 | fi |
|
|
| 101 | fi |
|
|
| 102 | return |
|
|
| 103 | } |
95 | } |
| 104 | |
96 | |
|
|
97 | # @FUNCTION: ghc-supports-threaded-runtime |
|
|
98 | # @DESCRIPTION: |
|
|
99 | # checks if ghc is built with support for threaded |
|
|
100 | # runtime (aka '-threaded' option) |
|
|
101 | ghc-supports-threaded-runtime() { |
|
|
102 | $(ghc-getghc) --info | grep "RTS ways" | grep -q "thr" |
|
|
103 | } |
|
|
104 | |
|
|
105 | # @FUNCTION: ghc-extractportageversion |
|
|
106 | # @DESCRIPTION: |
| 105 | # extract the version of a portage-installed package |
107 | # extract the version of a portage-installed package |
| 106 | ghc-extractportageversion() { |
108 | ghc-extractportageversion() { |
| 107 | local pkg |
109 | local pkg |
| 108 | local version |
110 | local version |
| 109 | pkg="$(best_version $1)" |
111 | pkg="$(best_version $1)" |
| … | |
… | |
| 111 | version="${version%-r*}" |
113 | version="${version%-r*}" |
| 112 | version="${version%_pre*}" |
114 | version="${version%_pre*}" |
| 113 | echo "${version}" |
115 | echo "${version}" |
| 114 | } |
116 | } |
| 115 | |
117 | |
|
|
118 | # @FUNCTION: ghc-libdir |
|
|
119 | # @DESCRIPTION: |
| 116 | # returns the library directory |
120 | # returns the library directory |
| 117 | _GHC_LIBDIR_CACHE="" |
121 | _GHC_LIBDIR_CACHE="" |
| 118 | ghc-libdir() { |
122 | ghc-libdir() { |
| 119 | if [[ -z "${_GHC_LIBDIR_CACHE}" ]]; then |
123 | if [[ -z "${_GHC_LIBDIR_CACHE}" ]]; then |
| 120 | _GHC_LIBDIR_CACHE="$($(ghc-getghc) --print-libdir)" |
124 | _GHC_LIBDIR_CACHE="$($(ghc-getghc) --print-libdir)" |
| 121 | fi |
125 | fi |
| 122 | echo "${_GHC_LIBDIR_CACHE}" |
126 | echo "${_GHC_LIBDIR_CACHE}" |
| 123 | } |
127 | } |
| 124 | |
128 | |
|
|
129 | # @FUNCTION: ghc-confdir |
|
|
130 | # @DESCRIPTION: |
| 125 | # returns the (Gentoo) library configuration directory |
131 | # returns the (Gentoo) library configuration directory |
| 126 | ghc-confdir() { |
132 | ghc-confdir() { |
| 127 | echo "$(ghc-libdir)/gentoo" |
133 | echo "$(ghc-libdir)/gentoo" |
| 128 | } |
134 | } |
| 129 | |
135 | |
|
|
136 | # @FUNCTION: ghc-localpkgconf |
|
|
137 | # @DESCRIPTION: |
| 130 | # returns the name of the local (package-specific) |
138 | # returns the name of the local (package-specific) |
| 131 | # package configuration file |
139 | # package configuration file |
| 132 | ghc-localpkgconf() { |
140 | ghc-localpkgconf() { |
| 133 | echo "${PF}.conf" |
141 | echo "${PF}.conf" |
| 134 | } |
142 | } |
| 135 | |
143 | |
|
|
144 | # @FUNCTION: ghc-makeghcilib |
|
|
145 | # @DESCRIPTION: |
| 136 | # make a ghci foo.o file from a libfoo.a file |
146 | # make a ghci foo.o file from a libfoo.a file |
| 137 | ghc-makeghcilib() { |
147 | ghc-makeghcilib() { |
| 138 | local outfile |
148 | local outfile |
| 139 | outfile="$(dirname $1)/$(basename $1 | sed 's:^lib\?\(.*\)\.a$:\1.o:')" |
149 | outfile="$(dirname $1)/$(basename $1 | sed 's:^lib\?\(.*\)\.a$:\1.o:')" |
| 140 | ld --relocatable --discard-all --output="${outfile}" --whole-archive "$1" |
150 | ld --relocatable --discard-all --output="${outfile}" --whole-archive "$1" |
| 141 | } |
151 | } |
| 142 | |
152 | |
|
|
153 | # @FUNCTION: ghc-package-exists |
|
|
154 | # @DESCRIPTION: |
| 143 | # tests if a ghc package exists |
155 | # tests if a ghc package exists |
| 144 | ghc-package-exists() { |
156 | ghc-package-exists() { |
| 145 | $(ghc-getghcpkg) -s "$1" > /dev/null 2>&1 |
157 | $(ghc-getghcpkg) describe "$1" > /dev/null 2>&1 |
| 146 | } |
158 | } |
| 147 | |
159 | |
|
|
160 | # @FUNCTION: ghc-setup-pkg |
|
|
161 | # @DESCRIPTION: |
| 148 | # creates a local (package-specific) package |
162 | # creates a local (package-specific) package |
| 149 | # configuration file; the arguments should be |
163 | # configuration file; the arguments should be |
| 150 | # uninstalled package description files, each |
164 | # uninstalled package description files, each |
| 151 | # containing a single package description; if |
165 | # containing a single package description; if |
| 152 | # no arguments are given, the resulting file is |
166 | # no arguments are given, the resulting file is |
| 153 | # empty |
167 | # empty |
| 154 | ghc-setup-pkg() { |
168 | ghc-setup-pkg() { |
| 155 | local localpkgconf |
|
|
| 156 | localpkgconf="${S}/$(ghc-localpkgconf)" |
169 | local localpkgconf="${S}/$(ghc-localpkgconf)" |
| 157 | echo '[]' > "${localpkgconf}" |
170 | echo '[]' > "${localpkgconf}" |
|
|
171 | |
| 158 | for pkg in $*; do |
172 | for pkg in $*; do |
| 159 | $(ghc-getghcpkgbin) -f "${localpkgconf}" -u --force \ |
173 | $(ghc-getghcpkgbin) -f "${localpkgconf}" update - --force \ |
| 160 | < "${pkg}" || die "failed to register ${pkg}" |
174 | < "${pkg}" || die "failed to register ${pkg}" |
| 161 | done |
175 | done |
| 162 | } |
176 | } |
| 163 | |
177 | |
|
|
178 | # @FUNCTION: ghc-fixlibpath |
|
|
179 | # @DESCRIPTION: |
| 164 | # fixes the library and import directories path |
180 | # fixes the library and import directories path |
| 165 | # of the package configuration file |
181 | # of the package configuration file |
| 166 | ghc-fixlibpath() { |
182 | ghc-fixlibpath() { |
| 167 | sed -i "s|$1|$(ghc-libdir)|g" "${S}/$(ghc-localpkgconf)" |
183 | sed -i "s|$1|$(ghc-libdir)|g" "${S}/$(ghc-localpkgconf)" |
| 168 | if [[ -n "$2" ]]; then |
184 | if [[ -n "$2" ]]; then |
| 169 | sed -i "s|$2|$(ghc-libdir)/imports|g" "${S}/$(ghc-localpkgconf)" |
185 | sed -i "s|$2|$(ghc-libdir)/imports|g" "${S}/$(ghc-localpkgconf)" |
| 170 | fi |
186 | fi |
| 171 | } |
187 | } |
| 172 | |
188 | |
|
|
189 | # @FUNCTION: ghc-install-pkg |
|
|
190 | # @DESCRIPTION: |
| 173 | # moves the local (package-specific) package configuration |
191 | # moves the local (package-specific) package configuration |
| 174 | # file to its final destination |
192 | # file to its final destination |
| 175 | ghc-install-pkg() { |
193 | ghc-install-pkg() { |
| 176 | mkdir -p "${D}/$(ghc-confdir)" |
194 | mkdir -p "${D}/$(ghc-confdir)" |
| 177 | cat "${S}/$(ghc-localpkgconf)" | sed "s|${D}||g" \ |
195 | cat "${S}/$(ghc-localpkgconf)" | sed "s|${D}||g" \ |
| 178 | > "${D}/$(ghc-confdir)/$(ghc-localpkgconf)" |
196 | > "${D}/$(ghc-confdir)/$(ghc-localpkgconf)" |
| 179 | } |
197 | } |
| 180 | |
198 | |
|
|
199 | # @FUNCTION: ghc-register-pkg |
|
|
200 | # @DESCRIPTION: |
| 181 | # registers all packages in the local (package-specific) |
201 | # registers all packages in the local (package-specific) |
| 182 | # package configuration file |
202 | # package configuration file |
| 183 | ghc-register-pkg() { |
203 | ghc-register-pkg() { |
| 184 | local localpkgconf |
|
|
| 185 | localpkgconf="$(ghc-confdir)/$1" |
204 | local localpkgconf="$(ghc-confdir)/$1" |
|
|
205 | |
| 186 | if [[ -f "${localpkgconf}" ]]; then |
206 | if [[ -f "${localpkgconf}" ]]; then |
| 187 | for pkg in $(ghc-listpkg "${localpkgconf}"); do |
207 | for pkg in $(ghc-listpkg "${localpkgconf}"); do |
| 188 | ebegin "Registering ${pkg} " |
208 | ebegin "Registering ${pkg} " |
| 189 | $(ghc-getghcpkgbin) -f "${localpkgconf}" -s "${pkg}" \ |
209 | $(ghc-getghcpkgbin) -f "${localpkgconf}" describe "${pkg}" \ |
| 190 | | $(ghc-getghcpkg) -u --force > /dev/null |
210 | | $(ghc-getghcpkg) update - --force > /dev/null |
| 191 | eend $? |
211 | eend $? |
| 192 | done |
212 | done |
| 193 | fi |
213 | fi |
| 194 | } |
214 | } |
| 195 | |
215 | |
|
|
216 | # @FUNCTION: ghc-reregister |
|
|
217 | # @DESCRIPTION: |
| 196 | # re-adds all available .conf files to the global |
218 | # re-adds all available .conf files to the global |
| 197 | # package conf file, to be used on a ghc reinstallation |
219 | # package conf file, to be used on a ghc reinstallation |
| 198 | ghc-reregister() { |
220 | ghc-reregister() { |
|
|
221 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 199 | einfo "Re-adding packages (may cause several harmless warnings) ..." |
222 | einfo "Re-adding packages (may cause several harmless warnings) ..." |
| 200 | if [ -d "$(ghc-confdir)" ]; then |
223 | PATH="${EPREFIX}/usr/bin:${PATH}" CONFDIR="$(ghc-confdir)" |
| 201 | pushd "$(ghc-confdir)" > /dev/null |
224 | if [ -d "${CONFDIR}" ]; then |
|
|
225 | pushd "${CONFDIR}" > /dev/null |
| 202 | for conf in *.conf; do |
226 | for conf in *.conf; do |
| 203 | # einfo "Processing ${conf} ..." |
227 | PATH="${EPREFIX}/usr/bin:${PATH}" ghc-register-pkg "${conf}" |
| 204 | ghc-register-pkg "${conf}" |
|
|
| 205 | done |
228 | done |
| 206 | popd > /dev/null |
229 | popd > /dev/null |
| 207 | fi |
230 | fi |
| 208 | } |
231 | } |
| 209 | |
232 | |
|
|
233 | # @FUNCTION: ghc-unregister-pkg |
|
|
234 | # @DESCRIPTION: |
| 210 | # unregisters a package configuration file |
235 | # unregisters a package configuration file |
| 211 | # protected are all packages that are still contained in |
236 | # protected are all packages that are still contained in |
| 212 | # another package configuration file |
237 | # another package configuration file |
| 213 | ghc-unregister-pkg() { |
238 | ghc-unregister-pkg() { |
| 214 | local localpkgconf |
239 | local localpkgconf="$(ghc-confdir)/$1" |
| 215 | local i |
240 | local i |
| 216 | local pkg |
241 | local pkg |
| 217 | local protected |
|
|
| 218 | localpkgconf="$(ghc-confdir)/$1" |
|
|
| 219 | |
|
|
| 220 | for i in $(ghc-confdir)/*.conf; do |
|
|
| 221 | [[ "${i}" != "${localpkgconf}" ]] && protected="${protected} $(ghc-listpkg ${i})" |
|
|
| 222 | done |
|
|
| 223 | # protected now contains the packages that cannot be unregistered yet |
|
|
| 224 | |
242 | |
| 225 | if [[ -f "${localpkgconf}" ]]; then |
243 | if [[ -f "${localpkgconf}" ]]; then |
| 226 | for pkg in $(ghc-reverse "$(ghc-listpkg ${localpkgconf})"); do |
244 | for pkg in $(ghc-reverse "$(ghc-listpkg ${localpkgconf})"); do |
| 227 | if $(ghc-elem "${pkg}" "${protected}"); then |
|
|
| 228 | einfo "Package ${pkg} is protected." |
|
|
| 229 | elif ! ghc-package-exists "${pkg}"; then |
245 | if ! ghc-package-exists "${pkg}"; then |
| 230 | : |
|
|
| 231 | # einfo "Package ${pkg} is not installed for ghc-$(ghc-version)." |
246 | einfo "Package ${pkg} is not installed for ghc-$(ghc-version)." |
| 232 | else |
247 | else |
| 233 | ebegin "Unregistering ${pkg} " |
248 | ebegin "Unregistering ${pkg} " |
| 234 | $(ghc-getghcpkg) -r "${pkg}" --force > /dev/null |
249 | $(ghc-getghcpkg) unregister "${pkg}" --force > /dev/null |
| 235 | eend $? |
250 | eend $? |
| 236 | fi |
251 | fi |
| 237 | done |
252 | done |
| 238 | fi |
253 | fi |
| 239 | } |
254 | } |
| 240 | |
255 | |
|
|
256 | # @FUNCTION: ghc-reverse |
|
|
257 | # @DESCRIPTION: |
| 241 | # help-function: reverse a list |
258 | # help-function: reverse a list |
| 242 | ghc-reverse() { |
259 | ghc-reverse() { |
| 243 | local result |
260 | local result |
| 244 | local i |
261 | local i |
| 245 | for i in $1; do |
262 | for i in $1; do |
| 246 | result="${i} ${result}" |
263 | result="${i} ${result}" |
| 247 | done |
264 | done |
| 248 | echo "${result}" |
265 | echo "${result}" |
| 249 | } |
266 | } |
| 250 | |
267 | |
|
|
268 | # @FUNCTION: ghc-elem |
|
|
269 | # @DESCRIPTION: |
| 251 | # help-function: element-check |
270 | # help-function: element-check |
| 252 | ghc-elem() { |
271 | ghc-elem() { |
| 253 | local i |
272 | local i |
| 254 | for i in $2; do |
273 | for i in $2; do |
| 255 | [[ "$1" == "${i}" ]] && return 0 |
274 | [[ "$1" == "${i}" ]] && return 0 |
| 256 | done |
275 | done |
| 257 | return 1 |
276 | return 1 |
| 258 | } |
277 | } |
| 259 | |
278 | |
|
|
279 | # @FUNCTION: ghc-listpkg |
|
|
280 | # @DESCRIPTION: |
| 260 | # show the packages in a package configuration file |
281 | # show the packages in a package configuration file |
| 261 | ghc-listpkg() { |
282 | ghc-listpkg() { |
| 262 | local ghcpkgcall |
283 | local ghcpkgcall |
| 263 | local i |
284 | local i |
|
|
285 | local extra_flags |
|
|
286 | if version_is_at_least '6.12.3' "$(ghc-version)"; then |
|
|
287 | extra_flags="${extra_flags} -v0" |
|
|
288 | fi |
| 264 | for i in $*; do |
289 | for i in $*; do |
| 265 | if ghc-cabal; then |
|
|
| 266 | echo $($(ghc-getghcpkg) list -f "${i}") \ |
290 | echo $($(ghc-getghcpkg) list ${extra_flags} -f "${i}") \ |
| 267 | | sed \ |
291 | | sed \ |
| 268 | -e "s|^.*${i}:\([^:]*\).*$|\1|" \ |
292 | -e "s|^.*${i}:\([^:]*\).*$|\1|" \ |
| 269 | -e "s|/.*$||" \ |
293 | -e "s|/.*$||" \ |
| 270 | -e "s|,| |g" -e "s|[()]||g" |
294 | -e "s|,| |g" -e "s|[(){}]||g" |
| 271 | else |
|
|
| 272 | echo $($(ghc-getghcpkgbin) -l -f "${i}") \ |
|
|
| 273 | | cut -f2 -d':' \ |
|
|
| 274 | | sed 's:,: :g' |
|
|
| 275 | fi |
|
|
| 276 | done |
295 | done |
| 277 | } |
296 | } |
| 278 | |
297 | |
| 279 | # exported function: check if we have a consistent ghc installation |
298 | # @FUNCTION: ghc-package_pkg_postinst |
| 280 | ghc-package_pkg_setup() { |
299 | # @DESCRIPTION: |
| 281 | if ! ghc-saneghc; then |
|
|
| 282 | eerror "You have inconsistent versions of dev-lang/ghc and dev-lang/ghc-bin" |
|
|
| 283 | eerror "installed. Portage currently cannot work correctly with this setup." |
|
|
| 284 | eerror "There are several possibilities to work around this problem:" |
|
|
| 285 | eerror "(1) Up/downgrade ghc-bin to the same version as ghc." |
|
|
| 286 | eerror "(2) Unmerge ghc-bin." |
|
|
| 287 | eerror "(3) Unmerge ghc." |
|
|
| 288 | eerror "You probably want option 1 or 2." |
|
|
| 289 | die "Inconsistent versions of ghc and ghc-bin." |
|
|
| 290 | fi |
|
|
| 291 | } |
|
|
| 292 | |
|
|
| 293 | # exported function: registers the package-specific package |
300 | # exported function: registers the package-specific package |
| 294 | # configuration file |
301 | # configuration file |
| 295 | ghc-package_pkg_postinst() { |
302 | ghc-package_pkg_postinst() { |
| 296 | ghc-register-pkg "$(ghc-localpkgconf)" |
303 | ghc-register-pkg "$(ghc-localpkgconf)" |
| 297 | } |
304 | } |
| 298 | |
305 | |
|
|
306 | # @FUNCTION: ghc-package_pkg_prerm |
|
|
307 | # @DESCRIPTION: |
| 299 | # exported function: unregisters the package-specific package |
308 | # exported function: unregisters the package-specific package |
| 300 | # configuration file; a package contained therein is unregistered |
309 | # configuration file; a package contained therein is unregistered |
| 301 | # only if it the same package is not also contained in another |
310 | # only if it the same package is not also contained in another |
| 302 | # package configuration file ... |
311 | # package configuration file ... |
| 303 | ghc-package_pkg_prerm() { |
312 | ghc-package_pkg_prerm() { |
| 304 | ghc-unregister-pkg "$(ghc-localpkgconf)" |
313 | ghc-unregister-pkg "$(ghc-localpkgconf)" |
| 305 | } |
314 | } |
| 306 | |
315 | |
| 307 | EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_prerm |
316 | EXPORT_FUNCTIONS pkg_postinst pkg_prerm |