Re: [LEDE-DEV] [PATCH] packages: Use https instead of git

2017-02-15 Thread David Woodhouse
On Wed, 2017-02-15 at 12:27 +, David Woodhouse wrote:
> On Wed, 2017-02-15 at 13:11 +0300, Alexey Brodkin wrote:
> > 
> > 
> > On some [especially corporate] networks non-standard ports are blocked
> > and git is one of them. So switch to more convenient https transport.
> Here's a nickel, kid. Get yourself a proper Internet connection.
> 
> Seriously, better to advocate that users take a cluebat to stupid
> network admins, than to pander to this.
> 
> Make it git-only, and IPv6-only :)

Slightly more seriously, a configuration option for a proxy tool to use
for git might be worthwhile, to save users from having to set it up for
themselves. But then again, users in such broken networks will probably
already have done so, won't they?

smime.p7s
Description: S/MIME cryptographic signature
___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


Re: [LEDE-DEV] [PATCH] packages: Use https instead of git

2017-02-15 Thread David Woodhouse
On Wed, 2017-02-15 at 13:11 +0300, Alexey Brodkin wrote:
> 
> On some [especially corporate] networks non-standard ports are blocked
> and git is one of them. So switch to more convenient https transport.

Here's a nickel, kid. Get yourself a proper Internet connection.

Seriously, better to advocate that users take a cluebat to stupid
network admins, than to pander to this.

Make it git-only, and IPv6-only :)

smime.p7s
Description: S/MIME cryptographic signature
___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


[LEDE-DEV] [PATCH] packages: Use https instead of git

2017-02-15 Thread Alexey Brodkin
From: Alexey Brodkin 

On some [especially corporate] networks non-standard ports are blocked
and git is one of them. So switch to more convenient https transport.

Signed-off-by: Alexey Brodkin 
---
 libs/dmx_usb_module/Makefile  | 2 +-
 libs/libhttp-parser/Makefile  | 2 +-
 libs/libsoxr/Makefile | 2 +-
 libs/protobuf-c/Makefile  | 2 +-
 libs/yajl/Makefile| 2 +-
 net/acme/Makefile | 2 +-
 net/coova-chilli/Makefile | 2 +-
 net/horst/Makefile| 2 +-
 net/linuxptp/Makefile | 2 +-
 net/lispmob/Makefile  | 2 +-
 net/mii-tool/Makefile | 2 +-
 net/opentracker/Makefile  | 2 +-
 net/port-mirroring/Makefile   | 2 +-
 net/wifidog/Makefile  | 2 +-
 sound/forked-daapd/Makefile   | 2 +-
 sound/shairplay/Makefile  | 2 +-
 sound/shairport-sync/Makefile | 2 +-
 sound/shairport/Makefile  | 2 +-
 utils/acl/Makefile| 2 +-
 utils/ap51-flash/Makefile | 2 +-
 utils/ecdsautils/Makefile | 2 +-
 utils/evtest/Makefile | 2 +-
 utils/mbtools/Makefile| 2 +-
 utils/openocd/Makefile| 2 +-
 utils/pps-tools/Makefile  | 2 +-
 utils/rtklib/Makefile | 2 +-
 utils/rtl-sdr/Makefile| 2 +-
 utils/sispmctl/Makefile   | 2 +-
 utils/triggerhappy/Makefile   | 2 +-
 29 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/libs/dmx_usb_module/Makefile b/libs/dmx_usb_module/Makefile
index d9e458fbe7eb..4487437d3f88 100644
--- a/libs/dmx_usb_module/Makefile
+++ b/libs/dmx_usb_module/Makefile
@@ -14,7 +14,7 @@ PKG_RELEASE:=0.1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_URL:=git://github.com/lowlander/dmx_usb_module.git
+PKG_SOURCE_URL:=https://github.com/lowlander/dmx_usb_module.git
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_VERSION:=ee99ca7edbd9e093480ad63341ac007394047bde
 PKG_MAINTAINER:=Martijn Zilverschoon 
diff --git a/libs/libhttp-parser/Makefile b/libs/libhttp-parser/Makefile
index fe28b4cab263..db0a201f4867 100644
--- a/libs/libhttp-parser/Makefile
+++ b/libs/libhttp-parser/Makefile
@@ -16,7 +16,7 @@ PKG_LICENSE_FILES:=LICENSE-MIT
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_URL:=git://github.com/joyent/http-parser.git
+PKG_SOURCE_URL:=https://github.com/nodejs/http-parser.git
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_VERSION:=56f7ad0e2e5a80f79d214015c91e1f17d11d109f
 
diff --git a/libs/libsoxr/Makefile b/libs/libsoxr/Makefile
index 9881fbb9d871..52cbf4779baf 100644
--- a/libs/libsoxr/Makefile
+++ b/libs/libsoxr/Makefile
@@ -13,7 +13,7 @@ PKG_VERSION:=0.1.1
 PKG_RELEASE:=3
 
 PKG_SOURCE_PROTO:=git
-PKG_SOURCE_URL:=git://git.code.sf.net/p/soxr/code
+PKG_SOURCE_URL:=https://git.code.sf.net/p/soxr/code
 PKG_SOURCE_VERSION:=$(PKG_VERSION)
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
diff --git a/libs/protobuf-c/Makefile b/libs/protobuf-c/Makefile
index 16b2f2be326e..e2d17c06ee16 100644
--- a/libs/protobuf-c/Makefile
+++ b/libs/protobuf-c/Makefile
@@ -13,7 +13,7 @@ PKG_RELEASE:=$(PKG_SOURCE_VERSION)
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_URL:=git://github.com/protobuf-c/protobuf-c.git
+PKG_SOURCE_URL:=https://github.com/protobuf-c/protobuf-c.git
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_VERSION:=$(PKG_VERSION)
 
diff --git a/libs/yajl/Makefile b/libs/yajl/Makefile
index f9a2877a034e..79bf9b6bc01b 100644
--- a/libs/yajl/Makefile
+++ b/libs/yajl/Makefile
@@ -18,7 +18,7 @@ PKG_REV:=66cb08ca2ad8581080b626a75dfca266a890afb2
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
 PKG_SOURCE_VERSION:=$(PKG_REV)
-PKG_SOURCE_URL:=git://github.com/lloyd/yajl.git
+PKG_SOURCE_URL:=https://github.com/lloyd/yajl.git
 PKG_SOURCE_PROTO:=git
 
 include $(INCLUDE_DIR)/package.mk
diff --git a/net/acme/Makefile b/net/acme/Makefile
index 9d35f8005fcd..a75b5b5bafc4 100644
--- a/net/acme/Makefile
+++ b/net/acme/Makefile
@@ -14,7 +14,7 @@ PKG_RELEASE:=1
 PKG_LICENSE:=GPLv3
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.xz
-PKG_SOURCE_URL:=git://github.com/Neilpang/acme.sh.git
+PKG_SOURCE_URL:=https://github.com/Neilpang/acme.sh.git
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE)
 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE)
diff --git a/net/coova-chilli/Makefile b/net/coova-chilli/Makefile
index b926a1d0843d..ed54eb010ed2 100644
--- a/net/coova-chilli/Makefile
+++ b/net/coova-chilli/Makefile
@@ -15,7 +15,7 @@ PKG_LICENSE_FILES:=COPYING
 PKG_RELEASE:=4
 
 PKG_SOURCE_PROTO:=git
-PKG_SOURCE_URL:=git://github.com/coova/coova-chilli
+PKG_SOURCE_URL:=https://github.com/coova/coova-chilli
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)