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