add cabal-tweak-dep-ver script and allow reading latest haskell-platform.spec
backport some updates from rawhide 0.95.5: - new cabal-tweak-dep-ver script to tweak depends version bounds in .cabal - ghc-dep.sh: only use buildroot package.conf.d if it exists - ghc-deps.sh: look in buildroot package.conf.d for program deps - add a meta-package option to ghc_devel_package and use in ghc_devel_requires - allow ghc_description, ghc_devel_description, ghc_devel_post_postun to take args - support meta packages like haskell-platform without base lib files - add shell variable cabal_configure_extra_options to cabal_configure for local configuration - do not provide prof when without_prof set
This commit is contained in:
parent
8cf968c984
commit
fec42b2c88
32
cabal-tweak-dep-ver
Executable file
32
cabal-tweak-dep-ver
Executable file
@ -0,0 +1,32 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e +x
|
||||||
|
|
||||||
|
USAGE="Usage: $0 dep old new"
|
||||||
|
|
||||||
|
if [ $# -ne 3 ]; then
|
||||||
|
echo "$USAGE"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
DEP=$1
|
||||||
|
OLD=$(echo $2 | sed -e "s/*/\\\\*/g" -e "s/\./\\\\./g")
|
||||||
|
NEW=$3
|
||||||
|
|
||||||
|
CABALFILE=$(ls *.cabal)
|
||||||
|
|
||||||
|
if [ $(echo $CABALFILE | wc -w) -ne 1 ]; then
|
||||||
|
echo "There needs to be one .cabal file in the current dir!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! grep -q "$DEP.*$OLD" $CABALFILE; then
|
||||||
|
echo "$CABALFILE does not match: $DEP $OLD"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f $CABALFILE.orig ]; then
|
||||||
|
BACKUP=.orig
|
||||||
|
fi
|
||||||
|
|
||||||
|
sed -i$BACKUP -e "s/\($DEP.*\)$OLD/\1$NEW/g" $CABALFILE
|
@ -16,7 +16,7 @@ GHC_VER=$(basename $PKGBASEDIR | sed -e s/ghc-//)
|
|||||||
if [ ! -x "/usr/bin/ghc-pkg-${GHC_VER}" -a -x "$PKGBASEDIR/ghc-pkg" ]; then
|
if [ ! -x "/usr/bin/ghc-pkg-${GHC_VER}" -a -x "$PKGBASEDIR/ghc-pkg" ]; then
|
||||||
GHC_PKG="$PKGBASEDIR/ghc-pkg --global-conf=$PKGCONFDIR"
|
GHC_PKG="$PKGBASEDIR/ghc-pkg --global-conf=$PKGCONFDIR"
|
||||||
else
|
else
|
||||||
GHC_PKG=/usr/bin/ghc-pkg
|
GHC_PKG="/usr/bin/ghc-pkg"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case $MODE in
|
case $MODE in
|
||||||
@ -70,8 +70,11 @@ for i in $files; do
|
|||||||
elif [ "$MODE" = "--requires" ]; then
|
elif [ "$MODE" = "--requires" ]; then
|
||||||
if file $i | grep -q 'executable, .* dynamically linked'; then
|
if file $i | grep -q 'executable, .* dynamically linked'; then
|
||||||
BIN_DEPS=$(ldd $i | grep libHS | grep -v libHSrts | sed -e "s%^\\tlibHS\(.*\)-ghc${GHCVERSION}.so =.*%\1%")
|
BIN_DEPS=$(ldd $i | grep libHS | grep -v libHSrts | sed -e "s%^\\tlibHS\(.*\)-ghc${GHCVERSION}.so =.*%\1%")
|
||||||
|
if [ -d "$PKGCONFDIR" ]; then
|
||||||
|
PACKAGE_CONF_OPT="--package-conf=$PKGCONFDIR"
|
||||||
|
fi
|
||||||
for p in ${BIN_DEPS}; do
|
for p in ${BIN_DEPS}; do
|
||||||
HASH=$(${GHC_PKG} --global field $p id | sed -e "s/^id: \+//")
|
HASH=$(${GHC_PKG} --global $PACKAGE_CONF_OPT field $p id | sed -e "s/^id: \+//")
|
||||||
echo $HASH | sed -e "s/\(.*\)-\(.*\)/ghc(\1) = \2/"
|
echo $HASH | sed -e "s/\(.*\)-\(.*\)/ghc(\1) = \2/"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
@ -21,7 +21,7 @@ fi
|
|||||||
# configure
|
# configure
|
||||||
%cabal_configure\
|
%cabal_configure\
|
||||||
%ghc_check_bootstrap\
|
%ghc_check_bootstrap\
|
||||||
%cabal configure --prefix=%{_prefix} --libdir=%{_libdir} --docdir=%{_docdir}/%{name}-%{version} %{?pkg_name:--htmldir=%{ghclibdocdir}/%{pkg_name}-%{version}} --libsubdir='$compiler/$pkgid' --ghc %{!?ghc_without_shared:--enable-shared} %{!?ghc_without_dynamic:--enable-executable-dynamic} %{?cabal_configure_options}
|
%cabal configure --prefix=%{_prefix} --libdir=%{_libdir} --docdir=%{_docdir}/%{name}-%{version} %{?pkg_name:--htmldir=%{ghclibdocdir}/%{pkg_name}-%{version}} --libsubdir='$compiler/$pkgid' --ghc %{!?ghc_without_shared:--enable-shared} %{!?ghc_without_dynamic:--enable-executable-dynamic} %{?cabal_configure_options} $cabal_configure_extra_options
|
||||||
|
|
||||||
# install
|
# install
|
||||||
%cabal_install %cabal copy --destdir=%{buildroot} -v
|
%cabal_install %cabal copy --destdir=%{buildroot} -v
|
||||||
@ -73,7 +73,11 @@ fi\
|
|||||||
if [ -d "%{buildroot}%{docdir}" ]; then\
|
if [ -d "%{buildroot}%{docdir}" ]; then\
|
||||||
echo "%{docdir}" >> %{basepkg}-devel.files\
|
echo "%{docdir}" >> %{basepkg}-devel.files\
|
||||||
fi\
|
fi\
|
||||||
sed -i -e "s!%{buildroot}!!g" %{!?ghc_without_shared:%{basepkg}.files} %{basepkg}-devel.files\
|
for i in %{!?ghc_without_shared:%{basepkg}.files} %{basepkg}-devel.files; do\
|
||||||
|
if [ -f "$i" ]; then\
|
||||||
|
sed -i -e "s!%{buildroot}!!g" $i\
|
||||||
|
fi\
|
||||||
|
done\
|
||||||
%{nil}
|
%{nil}
|
||||||
|
|
||||||
%ghc_add_basepkg_file()\
|
%ghc_add_basepkg_file()\
|
||||||
@ -98,7 +102,7 @@ install --mode=0644 %{pkgnamever}.conf %{buildroot}%{ghclibdir}/package.conf.d\
|
|||||||
%ghc_devel_requires Requires: ghc-compiler = %{ghc_version}\
|
%ghc_devel_requires Requires: ghc-compiler = %{ghc_version}\
|
||||||
Requires(post): ghc-compiler = %{ghc_version}\
|
Requires(post): ghc-compiler = %{ghc_version}\
|
||||||
Requires(postun): ghc-compiler = %{ghc_version}\
|
Requires(postun): ghc-compiler = %{ghc_version}\
|
||||||
%if %{undefined ghc_without_shared}\
|
%if %{undefined ghc_without_shared} && 0%{!?-m:1}\
|
||||||
Requires: ghc-%{?pkg_name}%{!?pkg_name:%{pkgname}} = %{?pkgver}%{!?pkgver:%{version}}-%{release}\
|
Requires: ghc-%{?pkg_name}%{!?pkg_name:%{pkgname}} = %{?pkgver}%{!?pkgver:%{version}}-%{release}\
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -131,7 +135,7 @@ Group: System Environment/Libraries\
|
|||||||
%{?ghc_pkg_obsoletes:Obsoletes: %(echo "%{ghc_pkg_obsoletes}" | sed -e "s/\\(ghc-[^, ]*\\)-devel/\\1/g")}
|
%{?ghc_pkg_obsoletes:Obsoletes: %(echo "%{ghc_pkg_obsoletes}" | sed -e "s/\\(ghc-[^, ]*\\)-devel/\\1/g")}
|
||||||
|
|
||||||
# ghc_description [name] [version]
|
# ghc_description [name] [version]
|
||||||
%ghc_description\
|
%ghc_description()\
|
||||||
%define pkgname %{?1}%{!?1:%{pkg_name}}\
|
%define pkgname %{?1}%{!?1:%{pkg_name}}\
|
||||||
%define basepkg ghc-%{pkgname}\
|
%define basepkg ghc-%{pkgname}\
|
||||||
%description -n %{basepkg}\
|
%description -n %{basepkg}\
|
||||||
@ -175,8 +179,9 @@ This package provides the shared library.\
|
|||||||
%ghc_devel_files\
|
%ghc_devel_files\
|
||||||
%{nil}
|
%{nil}
|
||||||
|
|
||||||
# ghc_devel_package [-c cdepslist] [-h pkgdepslist] [-l licensetag] [name] [version]
|
# ghc_devel_package [-c cdepslist] [-h pkgdepslist] [-l licensetag] [-m] [name] [version]
|
||||||
%ghc_devel_package(c:h:l:)\
|
# -m : meta-package
|
||||||
|
%ghc_devel_package(c:h:l:m)\
|
||||||
%define pkgname %{?1}%{!?1:%{pkg_name}}\
|
%define pkgname %{?1}%{!?1:%{pkg_name}}\
|
||||||
%define pkgver %{?2}%{!?2:%{version}}\
|
%define pkgver %{?2}%{!?2:%{version}}\
|
||||||
%define basepkg ghc-%{pkgname}\
|
%define basepkg ghc-%{pkgname}\
|
||||||
@ -194,10 +199,12 @@ Group: Development/Libraries\
|
|||||||
Obsoletes: %{basepkg}-doc < %{pkgver}-%{release}\
|
Obsoletes: %{basepkg}-doc < %{pkgver}-%{release}\
|
||||||
Provides: %{basepkg}-doc = %{pkgver}-%{release}\
|
Provides: %{basepkg}-doc = %{pkgver}-%{release}\
|
||||||
Obsoletes: %{basepkg}-prof < %{pkgver}-%{release}\
|
Obsoletes: %{basepkg}-prof < %{pkgver}-%{release}\
|
||||||
|
%if %{undefined without_prof}\
|
||||||
Provides: %{basepkg}-prof = %{pkgver}-%{release}\
|
Provides: %{basepkg}-prof = %{pkgver}-%{release}\
|
||||||
|
%endif
|
||||||
|
|
||||||
# ghc_devel_description
|
# ghc_devel_description
|
||||||
%ghc_devel_description\
|
%ghc_devel_description()\
|
||||||
%define pkgname %{?1}%{!?1:%{pkg_name}}\
|
%define pkgname %{?1}%{!?1:%{pkg_name}}\
|
||||||
%define basepkg ghc-%{pkgname}\
|
%define basepkg ghc-%{pkgname}\
|
||||||
%description -n %{basepkg}-devel\
|
%description -n %{basepkg}-devel\
|
||||||
@ -206,7 +213,7 @@ Provides: %{basepkg}-prof = %{pkgver}-%{release}\
|
|||||||
This package contains the development files.
|
This package contains the development files.
|
||||||
|
|
||||||
# ghc_devel_post_postun
|
# ghc_devel_post_postun
|
||||||
%ghc_devel_post_postun\
|
%ghc_devel_post_postun()\
|
||||||
%define pkgname %{?1}%{!?1:%{pkg_name}}\
|
%define pkgname %{?1}%{!?1:%{pkg_name}}\
|
||||||
%define basepkg ghc-%{pkgname}\
|
%define basepkg ghc-%{pkgname}\
|
||||||
%post -n %{basepkg}-devel\
|
%post -n %{basepkg}-devel\
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
%global macros_file %{_sysconfdir}/rpm/macros.ghc
|
%global macros_file %{_sysconfdir}/rpm/macros.ghc
|
||||||
|
|
||||||
Name: ghc-rpm-macros
|
Name: ghc-rpm-macros
|
||||||
Version: 0.15.5
|
Version: 0.15.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Macros for building packages for GHC
|
Summary: Macros for building packages for GHC
|
||||||
|
|
||||||
@ -13,11 +13,13 @@ URL: https://fedoraproject.org/wiki/Haskell_SIG
|
|||||||
|
|
||||||
# This is a Fedora maintained package which is specific to
|
# This is a Fedora maintained package which is specific to
|
||||||
# our distribution. Thus the source is only available from
|
# our distribution. Thus the source is only available from
|
||||||
# within this srpm.
|
# within this srpm. But it could be moved to fedorahosted.org
|
||||||
|
# if other rpm distros want to use it.
|
||||||
Source0: ghc-rpm-macros.ghc
|
Source0: ghc-rpm-macros.ghc
|
||||||
Source1: COPYING
|
Source1: COPYING
|
||||||
Source2: AUTHORS
|
Source2: AUTHORS
|
||||||
Source3: ghc-deps.sh
|
Source3: ghc-deps.sh
|
||||||
|
Source4: cabal-tweak-dep-ver
|
||||||
Requires: redhat-rpm-config
|
Requires: redhat-rpm-config
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -40,6 +42,8 @@ install -p -D -m 0644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{macros_file}
|
|||||||
|
|
||||||
install -p -D -m 0755 %{SOURCE3} %{buildroot}/%{_prefix}/lib/rpm/ghc-deps.sh
|
install -p -D -m 0755 %{SOURCE3} %{buildroot}/%{_prefix}/lib/rpm/ghc-deps.sh
|
||||||
|
|
||||||
|
install -p -D -m 0755 %{SOURCE4} %{buildroot}/%{_bindir}/cabal-tweak-dep-ver
|
||||||
|
|
||||||
# this is why this package is now arch-dependent:
|
# this is why this package is now arch-dependent:
|
||||||
# turn off shared libs and dynamic linking on secondary archs
|
# turn off shared libs and dynamic linking on secondary archs
|
||||||
%ifnarch %{ix86} x86_64
|
%ifnarch %{ix86} x86_64
|
||||||
@ -56,9 +60,23 @@ EOF
|
|||||||
%doc COPYING AUTHORS
|
%doc COPYING AUTHORS
|
||||||
%config(noreplace) %{macros_file}
|
%config(noreplace) %{macros_file}
|
||||||
%{_prefix}/lib/rpm/ghc-deps.sh
|
%{_prefix}/lib/rpm/ghc-deps.sh
|
||||||
|
%{_bindir}/cabal-tweak-dep-ver
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jun 8 2012 Jens Petersen <petersen@redhat.com> - 0.15.6-1
|
||||||
|
- cabal-tweak-dep-ver: new script to tweak depends version bounds in .cabal
|
||||||
|
from ghc-rpm-macros-0.95.5
|
||||||
|
- ghc-dep.sh: only use buildroot package.conf.d if it exists
|
||||||
|
- ghc-deps.sh: look in buildroot package.conf.d for program deps
|
||||||
|
- add a meta-package option to ghc_devel_package and use in ghc_devel_requires
|
||||||
|
- allow ghc_description, ghc_devel_description, ghc_devel_post_postun
|
||||||
|
to take args
|
||||||
|
- support meta packages like haskell-platform without base lib files
|
||||||
|
- add shell variable cabal_configure_extra_options to cabal_configure for
|
||||||
|
local configuration
|
||||||
|
- do not provide prof when without_prof set
|
||||||
|
|
||||||
* Thu Feb 23 2012 Jens Petersen <petersen@redhat.com> - 0.15.5-1
|
* Thu Feb 23 2012 Jens Petersen <petersen@redhat.com> - 0.15.5-1
|
||||||
- fix handling of devel docdir for non-shared builds
|
- fix handling of devel docdir for non-shared builds
|
||||||
- simplify ghc_bootstrap
|
- simplify ghc_bootstrap
|
||||||
|
Loading…
Reference in New Issue
Block a user