diff options
Diffstat (limited to 'dev-lang/ghc/ghc-7.10.3.ebuild')
-rw-r--r-- | dev-lang/ghc/ghc-7.10.3.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-lang/ghc/ghc-7.10.3.ebuild b/dev-lang/ghc/ghc-7.10.3.ebuild index 8181b1c93245..7726e119c3c3 100644 --- a/dev-lang/ghc/ghc-7.10.3.ebuild +++ b/dev-lang/ghc/ghc-7.10.3.ebuild @@ -18,7 +18,7 @@ inherit autotools bash-completion-r1 eutils flag-o-matic ghc-package inherit multilib pax-utils toolchain-funcs versionator prefix DESCRIPTION="The Glasgow Haskell Compiler" -HOMEPAGE="http://www.haskell.org/ghc/" +HOMEPAGE="https://www.haskell.org/ghc/" # we don't have any binaries yet arch_binaries="" @@ -58,7 +58,7 @@ GHC_PV=${PV} #GHC_PV=7.10.2.20151030 # uncomment only for -rc ebuilds GHC_P=${PN}-${GHC_PV} # using ${P} is almost never correct -SRC_URI="!binary? ( http://downloads.haskell.org/~ghc/${PV/_rc/-rc}/${GHC_P}-src.tar.bz2 )" +SRC_URI="!binary? ( https://downloads.haskell.org/~ghc/${PV/_rc/-rc}/${GHC_P}-src.tar.bz2 )" S="${WORKDIR}"/${GHC_P} [[ -n $arch_binaries ]] && SRC_URI+=" !ghcbootstrap? ( $arch_binaries )" @@ -182,7 +182,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}-${pv}/${pn}-${pv}.tar.gz" done } @@ -257,11 +257,11 @@ ghc_setup_cflags() { gcc-specs-ssp && append-ghc-cflags persistent compile -fno-stack-protector # prevent from failind building unregisterised ghc: - # http://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg171602.html + # https://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg171602.html use ppc64 && append-ghc-cflags persistent compile -mminimal-toc # fix the similar issue as ppc64 TOC on ia64. ia64 has limited size of small data # currently ghc fails to build haddock - # http://osdir.com/ml/gnu.binutils.bugs/2004-10/msg00050.html + # https://osdir.com/ml/gnu.binutils.bugs/2004-10/msg00050.html use ia64 && append-ghc-cflags persistent compile -G0 } |