Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/7] Moving from ftp to http/https
@ 2017-06-13 14:29 Maxin B. John
  2017-06-13 14:29 ` [PATCH 1/7] libpcre: switch from ftp to https Maxin B. John
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Maxin B. John @ 2017-06-13 14:29 UTC (permalink / raw)
  To: openembedded-core

Reduce the usage of ftp protocol in SRC_URIs:

https://www.debian.org/News/2017/20170425

As part of [YOCTO #11413]


Maxin B. John (7):
  libpcre: switch from ftp to https
  dhcp: switch from ftp to http
  mesa-demos: switch from ftp to https
  mesa: switch from ftp to https
  libglu: switch from ftp to https
  libid3tag: switch from ftp to http
  grub: switch from ftp to https

 meta/recipes-bsp/grub/grub2.inc                        | 2 +-
 meta/recipes-connectivity/dhcp/dhcp.inc                | 2 +-
 meta/recipes-graphics/mesa/libglu_9.0.0.bb             | 2 +-
 meta/recipes-graphics/mesa/mesa-demos_8.3.0.bb         | 2 +-
 meta/recipes-graphics/mesa/mesa_17.1.1.bb              | 2 +-
 meta/recipes-multimedia/libid3tag/libid3tag_0.15.1b.bb | 2 +-
 meta/recipes-support/libpcre/libpcre_8.40.bb           | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

-- 
2.4.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/7] libpcre: switch from ftp to https
  2017-06-13 14:29 [PATCH 0/7] Moving from ftp to http/https Maxin B. John
@ 2017-06-13 14:29 ` Maxin B. John
  2017-06-13 14:29 ` [PATCH 2/7] dhcp: switch from ftp to http Maxin B. John
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Maxin B. John @ 2017-06-13 14:29 UTC (permalink / raw)
  To: openembedded-core

For the same reasons as Debian:
https://www.debian.org/News/2017/20170425

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-support/libpcre/libpcre_8.40.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/libpcre/libpcre_8.40.bb b/meta/recipes-support/libpcre/libpcre_8.40.bb
index 6396872..8563cd1 100644
--- a/meta/recipes-support/libpcre/libpcre_8.40.bb
+++ b/meta/recipes-support/libpcre/libpcre_8.40.bb
@@ -7,7 +7,7 @@ HOMEPAGE = "http://www.pcre.org"
 SECTION = "devel"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=60da32d84d067f53e22071c4ecb4384d"
-SRC_URI = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${PV}.tar.bz2 \
+SRC_URI = "https://ftp.pcre.org/pub/pcre/pcre-${PV}.tar.bz2 \
            file://pcre-cross.patch \
            file://fix-pcre-name-collision.patch \
            file://run-ptest \
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/7] dhcp: switch from ftp to http
  2017-06-13 14:29 [PATCH 0/7] Moving from ftp to http/https Maxin B. John
  2017-06-13 14:29 ` [PATCH 1/7] libpcre: switch from ftp to https Maxin B. John
@ 2017-06-13 14:29 ` Maxin B. John
  2017-06-13 14:29 ` [PATCH 3/7] mesa-demos: switch from ftp to https Maxin B. John
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Maxin B. John @ 2017-06-13 14:29 UTC (permalink / raw)
  To: openembedded-core

For the same reasons as Debian:
https://www.debian.org/News/2017/20170425

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-connectivity/dhcp/dhcp.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-connectivity/dhcp/dhcp.inc b/meta/recipes-connectivity/dhcp/dhcp.inc
index 969fdcb..eff3dc5 100644
--- a/meta/recipes-connectivity/dhcp/dhcp.inc
+++ b/meta/recipes-connectivity/dhcp/dhcp.inc
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;beginline=4;md5=c5c64d696107f84b56fe337d14da1
 
 DEPENDS = "openssl bind"
 
-SRC_URI = "ftp://ftp.isc.org/isc/dhcp/${PV}/dhcp-${PV}.tar.gz \
+SRC_URI = "http://ftp.isc.org/isc/dhcp/${PV}/dhcp-${PV}.tar.gz \
            file://define-macro-_PATH_DHCPD_CONF-and-_PATH_DHCLIENT_CON.patch \
            file://init-relay file://default-relay \
            file://init-server file://default-server \
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 3/7] mesa-demos: switch from ftp to https
  2017-06-13 14:29 [PATCH 0/7] Moving from ftp to http/https Maxin B. John
  2017-06-13 14:29 ` [PATCH 1/7] libpcre: switch from ftp to https Maxin B. John
  2017-06-13 14:29 ` [PATCH 2/7] dhcp: switch from ftp to http Maxin B. John
@ 2017-06-13 14:29 ` Maxin B. John
  2017-06-13 14:29 ` [PATCH 4/7] mesa: " Maxin B. John
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Maxin B. John @ 2017-06-13 14:29 UTC (permalink / raw)
  To: openembedded-core

For the same reasons as Debian:
https://www.debian.org/News/2017/20170425

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-graphics/mesa/mesa-demos_8.3.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/mesa/mesa-demos_8.3.0.bb b/meta/recipes-graphics/mesa/mesa-demos_8.3.0.bb
index e43b9ef..bae3b18 100644
--- a/meta/recipes-graphics/mesa/mesa-demos_8.3.0.bb
+++ b/meta/recipes-graphics/mesa/mesa-demos_8.3.0.bb
@@ -9,7 +9,7 @@ LICENSE = "MIT & PD"
 LIC_FILES_CHKSUM = "file://src/xdemos/glxgears.c;beginline=1;endline=20;md5=914225785450eff644a86c871d3ae00e \
                     file://src/xdemos/glxdemo.c;beginline=1;endline=8;md5=b01d5ab1aee94d35b7efaa2ef48e1a06"
 
-SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/demos/${PV}/${BPN}-${PV}.tar.bz2 \
+SRC_URI = "https://mesa.freedesktop.org/archive/demos/${PV}/${BPN}-${PV}.tar.bz2 \
            file://0001-mesa-demos-Add-missing-data-files.patch \
            file://0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch \
            file://0004-Use-DEMOS_DATA_DIR-to-locate-data-files.patch \
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 4/7] mesa: switch from ftp to https
  2017-06-13 14:29 [PATCH 0/7] Moving from ftp to http/https Maxin B. John
                   ` (2 preceding siblings ...)
  2017-06-13 14:29 ` [PATCH 3/7] mesa-demos: switch from ftp to https Maxin B. John
@ 2017-06-13 14:29 ` Maxin B. John
  2017-06-13 14:29 ` [PATCH 5/7] libglu: " Maxin B. John
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Maxin B. John @ 2017-06-13 14:29 UTC (permalink / raw)
  To: openembedded-core

For the same reasons as Debian:
https://www.debian.org/News/2017/20170425

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-graphics/mesa/mesa_17.1.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/mesa/mesa_17.1.1.bb b/meta/recipes-graphics/mesa/mesa_17.1.1.bb
index ff84015..55c6f71 100644
--- a/meta/recipes-graphics/mesa/mesa_17.1.1.bb
+++ b/meta/recipes-graphics/mesa/mesa_17.1.1.bb
@@ -1,6 +1,6 @@
 require ${BPN}.inc
 
-SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/mesa-${PV}.tar.xz \
+SRC_URI = "https://mesa.freedesktop.org/archive/mesa-${PV}.tar.xz \
            file://replace_glibc_check_with_linux.patch \
            file://disable-asm-on-non-gcc.patch \
            file://0001-Use-wayland-scanner-in-the-path.patch \
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 5/7] libglu: switch from ftp to https
  2017-06-13 14:29 [PATCH 0/7] Moving from ftp to http/https Maxin B. John
                   ` (3 preceding siblings ...)
  2017-06-13 14:29 ` [PATCH 4/7] mesa: " Maxin B. John
@ 2017-06-13 14:29 ` Maxin B. John
  2017-06-13 14:29 ` [PATCH 6/7] libid3tag: switch from ftp to http Maxin B. John
  2017-06-13 14:29 ` [PATCH 7/7] grub: switch from ftp to https Maxin B. John
  6 siblings, 0 replies; 8+ messages in thread
From: Maxin B. John @ 2017-06-13 14:29 UTC (permalink / raw)
  To: openembedded-core

For the same reasons as Debian:
https://www.debian.org/News/2017/20170425

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-graphics/mesa/libglu_9.0.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/mesa/libglu_9.0.0.bb b/meta/recipes-graphics/mesa/libglu_9.0.0.bb
index 8b94613..eeb898f 100644
--- a/meta/recipes-graphics/mesa/libglu_9.0.0.bb
+++ b/meta/recipes-graphics/mesa/libglu_9.0.0.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://include/GL/glu.h;endline=29;md5=6b79c570f644363b35645
 PE = "2"
 PR = "0"
 
-SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/glu/glu-${PV}.tar.bz2"
+SRC_URI = "https://mesa.freedesktop.org/archive/glu/glu-${PV}.tar.bz2"
 
 SRC_URI[md5sum] = "be9249132ff49275461cf92039083030"
 SRC_URI[sha256sum] = "1f7ad0d379a722fcbd303aa5650c6d7d5544fde83196b42a73d1193568a4df12"
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 6/7] libid3tag: switch from ftp to http
  2017-06-13 14:29 [PATCH 0/7] Moving from ftp to http/https Maxin B. John
                   ` (4 preceding siblings ...)
  2017-06-13 14:29 ` [PATCH 5/7] libglu: " Maxin B. John
@ 2017-06-13 14:29 ` Maxin B. John
  2017-06-13 14:29 ` [PATCH 7/7] grub: switch from ftp to https Maxin B. John
  6 siblings, 0 replies; 8+ messages in thread
From: Maxin B. John @ 2017-06-13 14:29 UTC (permalink / raw)
  To: openembedded-core

For the same reasons as Debian:
https://www.debian.org/News/2017/20170425

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-multimedia/libid3tag/libid3tag_0.15.1b.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/libid3tag/libid3tag_0.15.1b.bb b/meta/recipes-multimedia/libid3tag/libid3tag_0.15.1b.bb
index 05a8a47..cc48bae 100644
--- a/meta/recipes-multimedia/libid3tag/libid3tag_0.15.1b.bb
+++ b/meta/recipes-multimedia/libid3tag/libid3tag_0.15.1b.bb
@@ -9,7 +9,7 @@ SECTION = "libs"
 DEPENDS = "zlib gperf-native"
 PR = "r7"
 
-SRC_URI = "ftp://ftp.mars.org/pub/mpeg/libid3tag-${PV}.tar.gz \
+SRC_URI = "${SOURCEFORGE_MIRROR}/mad/libid3tag-${PV}.tar.gz \
            file://addpkgconfig.patch \
            file://obsolete_automake_macros.patch \
 "
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 7/7] grub: switch from ftp to https
  2017-06-13 14:29 [PATCH 0/7] Moving from ftp to http/https Maxin B. John
                   ` (5 preceding siblings ...)
  2017-06-13 14:29 ` [PATCH 6/7] libid3tag: switch from ftp to http Maxin B. John
@ 2017-06-13 14:29 ` Maxin B. John
  6 siblings, 0 replies; 8+ messages in thread
From: Maxin B. John @ 2017-06-13 14:29 UTC (permalink / raw)
  To: openembedded-core

For the same reasons as Debian:
https://www.debian.org/News/2017/20170425

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-bsp/grub/grub2.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc
index bb6ebdd..da6aad2 100644
--- a/meta/recipes-bsp/grub/grub2.inc
+++ b/meta/recipes-bsp/grub/grub2.inc
@@ -11,7 +11,7 @@ SECTION = "bootloaders"
 LICENSE = "GPLv3"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
-SRC_URI = "ftp://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \
+SRC_URI = "https://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \
            file://0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch \
            file://0001-Unset-need_charset_alias-when-building-for-musl.patch \
            file://autogen.sh-exclude-pc.patch \
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-06-13 14:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-13 14:29 [PATCH 0/7] Moving from ftp to http/https Maxin B. John
2017-06-13 14:29 ` [PATCH 1/7] libpcre: switch from ftp to https Maxin B. John
2017-06-13 14:29 ` [PATCH 2/7] dhcp: switch from ftp to http Maxin B. John
2017-06-13 14:29 ` [PATCH 3/7] mesa-demos: switch from ftp to https Maxin B. John
2017-06-13 14:29 ` [PATCH 4/7] mesa: " Maxin B. John
2017-06-13 14:29 ` [PATCH 5/7] libglu: " Maxin B. John
2017-06-13 14:29 ` [PATCH 6/7] libid3tag: switch from ftp to http Maxin B. John
2017-06-13 14:29 ` [PATCH 7/7] grub: switch from ftp to https Maxin B. John

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox