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