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