diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2015-08-11 00:24:23 -0400 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2015-08-11 01:22:33 -0400 |
commit | 448a2ee70be41c0b9d2e7a8a824e42d83f4215dd (patch) | |
tree | 8358ac8804870dc290e714ec3dfe4e0a9f7ce5f9 /www-client/seamonkey | |
parent | dev-ruby/httparty: avoid dependency on simplecov (diff) | |
download | gentoo-448a2ee70be41c0b9d2e7a8a824e42d83f4215dd.tar.gz gentoo-448a2ee70be41c0b9d2e7a8a824e42d83f4215dd.tar.bz2 gentoo-448a2ee70be41c0b9d2e7a8a824e42d83f4215dd.zip |
mozilla packages: Fix and normalize SRC_URI
As per gentoo bug 557040, upstream dropped their FTP archive. This
commit cleans up all MOZ_*_URI specifications in mozilla ebuilds
to match one-another. Ebuilds now use MOZ_HTTP_URI and
http://archive.mozilla.org/ ; adjusted ebuilds include:
www-client/firefox-38.1.1
www-client/firefox-39.0.3
www-client/firefox-bin-38.1.1
www-client/firefox-bin-39.0.3
mail-client/thunderbird-38.1.0
mail-client/thunderbird-bin-38.1.0
www-client/seamonkey-2.33.1-r1
www-client/seamonkey-bin-2.33.1
www-client/seamonkey-bin-2.33.1-r1
Package-Manager: portage-2.2.20
Diffstat (limited to 'www-client/seamonkey')
-rw-r--r-- | www-client/seamonkey/seamonkey-2.33.1-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www-client/seamonkey/seamonkey-2.33.1-r1.ebuild b/www-client/seamonkey/seamonkey-2.33.1-r1.ebuild index 187258834ef1..7faaa6c5c704 100644 --- a/www-client/seamonkey/seamonkey-2.33.1-r1.ebuild +++ b/www-client/seamonkey/seamonkey-2.33.1-r1.ebuild @@ -17,11 +17,11 @@ MOZ_P="${P}" MY_MOZ_P="${PN}-${MOZ_PV}" if [[ ${PV} == *_pre* ]] ; then - MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/candidates/${MOZ_PV}-candidates/build${PV##*_pre}" + MOZ_HTTP_URI="http://archive.mozilla.org/pub/${PN}/candidates/${MOZ_PV}-candidates/build${PV##*_pre}" MOZ_LANGPACK_PREFIX="linux-i686/xpi/" # And the langpack stuff stays at eclass defaults else - MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/releases/${MOZ_PV}" + MOZ_HTTP_URI="http://archive.mozilla.org/pub/${PN}/releases/${MOZ_PV}" MOZ_LANGPACK_PREFIX="langpack/${MY_MOZ_P}." MOZ_LANGPACK_SUFFIX=".langpack.xpi" fi @@ -52,7 +52,7 @@ LICENSE="MPL-2.0 GPL-2 LGPL-2.1" IUSE="+chatzilla +crypt +gmp-autoupdate +ipc minimal pulseaudio +roaming selinux test" SRC_URI="${SRC_URI} - ${MOZ_FTP_URI}/source/${MY_MOZ_P}.source.tar.bz2 -> ${P}.source.tar.bz2 + ${MOZ_HTTP_URI}/source/${MY_MOZ_P}.source.tar.bz2 -> ${P}.source.tar.bz2 http://dev.gentoo.org/~axs/mozilla/patchsets/${PATCHFF}.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCHFF}.tar.xz |