mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-01 13:49:03 +03:00
package: Remove trailing slash from all package site URLs
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530a few months ago and earlier inc7f4b96471and4a9eb20de8, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
5f6cb63454
commit
7b0e757fb8
@@ -6,7 +6,7 @@
|
||||
|
||||
PYTHON_PYCLI_VERSION = devel
|
||||
PYTHON_PYCLI_SOURCE = pyCLI-$(PYTHON_PYCLI_VERSION).tar.gz
|
||||
PYTHON_PYCLI_SITE = https://pypi.python.org/packages/source/p/pyCLI/
|
||||
PYTHON_PYCLI_SITE = https://pypi.python.org/packages/source/p/pyCLI
|
||||
PYTHON_PYCLI_LICENSE = ISC-like
|
||||
PYTHON_PYCLI_LICENSE_FILES = lib/cli/__init__.py
|
||||
PYTHON_PYCLI_SETUP_TYPE = setuptools
|
||||
|
||||
Reference in New Issue
Block a user