diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-08 21:48:24 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-10 16:13:47 +0100 |
commit | cdc0774a75c8eecd1d68d2b0b1687884b88b9331 (patch) | |
tree | 9b77a5773bcffa670927e93a4a1d38456520b488 /dev-lang | |
parent | app-i18n/man-pages-pl: drop old EAPI (diff) | |
download | gentoo-cdc0774a75c8eecd1d68d2b0b1687884b88b9331.tar.gz gentoo-cdc0774a75c8eecd1d68d2b0b1687884b88b9331.tar.bz2 gentoo-cdc0774a75c8eecd1d68d2b0b1687884b88b9331.zip |
*/*: Inline mirror://hackage and update URIs
This change inlines mirror://hackage in all ebuilds, and updates URIs
to the modern form (old URIs redirect to that).
The change has been made using the following command:
find -name '*.ebuild' -exec sed -r -i \
-e 's@mirror://hackage/@https://hackage.haskell.org/@g' \
-e 's@https://hackage.haskell.org/packages/archive/([^/]*)/([^/]*)/@https://hackage.haskell.org/package/\1-\2/@g' \
-e '/hackage\.haskell\.org/s@\$\{PN}-\$\{PV}@${P}@g' \
-e '/hackage\.haskell\.org/s@\$\{MY_PN}-\$\{PV}@${MY_P}@g' \
-e '/hackage\.haskell\.org/s@\$\{PN}-\$\{MY_PV}@${MY_P}@g' \
{} +
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/epic/epic-0.9.3.3-r1.ebuild | 2 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-7.10.3.ebuild | 2 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.0.2.ebuild | 2 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.2.1.ebuild | 4 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.2.2.ebuild | 4 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.4.1.ebuild | 4 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.4.2.ebuild | 4 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.4.3.ebuild | 4 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.6.4.ebuild | 2 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.6.5.ebuild | 2 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-8.8.1.ebuild | 2 | ||||
-rw-r--r-- | dev-lang/helium/helium-1.8.1.ebuild | 2 | ||||
-rw-r--r-- | dev-lang/whitespace/whitespace-0.4.ebuild | 4 |
13 files changed, 19 insertions, 19 deletions
diff --git a/dev-lang/epic/epic-0.9.3.3-r1.ebuild b/dev-lang/epic/epic-0.9.3.3-r1.ebuild index 7f844cf90283..a1022b072aae 100644 --- a/dev-lang/epic/epic-0.9.3.3-r1.ebuild +++ b/dev-lang/epic/epic-0.9.3.3-r1.ebuild @@ -10,7 +10,7 @@ inherit haskell-cabal DESCRIPTION="Compiler for a simple functional language" HOMEPAGE="https://github.com/edwinb/EpiVM" -SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" diff --git a/dev-lang/ghc/ghc-7.10.3.ebuild b/dev-lang/ghc/ghc-7.10.3.ebuild index 9e88b9a14faf..8181b1c93245 100644 --- a/dev-lang/ghc/ghc-7.10.3.ebuild +++ b/dev-lang/ghc/ghc-7.10.3.ebuild @@ -182,7 +182,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.0.2.ebuild b/dev-lang/ghc/ghc-8.0.2.ebuild index 48eb8d91db6e..394a15972115 100644 --- a/dev-lang/ghc/ghc-8.0.2.ebuild +++ b/dev-lang/ghc/ghc-8.0.2.ebuild @@ -181,7 +181,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.2.1.ebuild b/dev-lang/ghc/ghc-8.2.1.ebuild index 61e2fdf5dd92..ca642a3830f9 100644 --- a/dev-lang/ghc/ghc-8.2.1.ebuild +++ b/dev-lang/ghc/ghc-8.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -181,7 +181,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.2.2.ebuild b/dev-lang/ghc/ghc-8.2.2.ebuild index 6e41de8bde93..4de85c302b7e 100644 --- a/dev-lang/ghc/ghc-8.2.2.ebuild +++ b/dev-lang/ghc/ghc-8.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -181,7 +181,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.4.1.ebuild b/dev-lang/ghc/ghc-8.4.1.ebuild index e23cc25aadde..bbff8dde2634 100644 --- a/dev-lang/ghc/ghc-8.4.1.ebuild +++ b/dev-lang/ghc/ghc-8.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -181,7 +181,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.4.2.ebuild b/dev-lang/ghc/ghc-8.4.2.ebuild index 2b6dbd92fe91..7c0065d00feb 100644 --- a/dev-lang/ghc/ghc-8.4.2.ebuild +++ b/dev-lang/ghc/ghc-8.4.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -181,7 +181,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.4.3.ebuild b/dev-lang/ghc/ghc-8.4.3.ebuild index f7908959c942..e315edb423ea 100644 --- a/dev-lang/ghc/ghc-8.4.3.ebuild +++ b/dev-lang/ghc/ghc-8.4.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -181,7 +181,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.6.4.ebuild b/dev-lang/ghc/ghc-8.6.4.ebuild index e2425f54b116..03eca516b7e1 100644 --- a/dev-lang/ghc/ghc-8.6.4.ebuild +++ b/dev-lang/ghc/ghc-8.6.4.ebuild @@ -186,7 +186,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.6.5.ebuild b/dev-lang/ghc/ghc-8.6.5.ebuild index 379ebf395c3a..34f42ebdb243 100644 --- a/dev-lang/ghc/ghc-8.6.5.ebuild +++ b/dev-lang/ghc/ghc-8.6.5.ebuild @@ -186,7 +186,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/ghc/ghc-8.8.1.ebuild b/dev-lang/ghc/ghc-8.8.1.ebuild index 107850a9f4a5..c53fccaeb533 100644 --- a/dev-lang/ghc/ghc-8.8.1.ebuild +++ b/dev-lang/ghc/ghc-8.8.1.ebuild @@ -189,7 +189,7 @@ update_SRC_URI() { set -- $p pn=$1 pv=$2 - SRC_URI+=" mirror://hackage/package/${pn}/${pn}-${pv}.tar.gz" + SRC_URI+=" https://hackage.haskell.org/package/${pn}/${pn}-${pv}.tar.gz" done } diff --git a/dev-lang/helium/helium-1.8.1.ebuild b/dev-lang/helium/helium-1.8.1.ebuild index c8752db7630c..2a9fb0d552d9 100644 --- a/dev-lang/helium/helium-1.8.1.ebuild +++ b/dev-lang/helium/helium-1.8.1.ebuild @@ -10,7 +10,7 @@ inherit haskell-cabal DESCRIPTION="The Helium Compiler" HOMEPAGE="https://github.com/Helium4Haskell/helium" -SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0/${PV}" diff --git a/dev-lang/whitespace/whitespace-0.4.ebuild b/dev-lang/whitespace/whitespace-0.4.ebuild index 2074c9e8c41e..c84fac19416d 100644 --- a/dev-lang/whitespace/whitespace-0.4.ebuild +++ b/dev-lang/whitespace/whitespace-0.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -10,7 +10,7 @@ inherit eutils haskell-cabal DESCRIPTION="Whitespace, an esoteric programming language" HOMEPAGE="https://github.com/haroldl/whitespace-nd" -SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" |