From patchwork Thu Sep 26 11:43:08 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerzy Grzegorek X-Patchwork-Id: 278164 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 8A3F12C00B9 for ; Thu, 26 Sep 2013 21:44:58 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B685231614; Thu, 26 Sep 2013 11:44:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7ZB+2nD7dYmc; Thu, 26 Sep 2013 11:44:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4456A3012C; Thu, 26 Sep 2013 11:44:52 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 0F0201BF9D3 for ; Thu, 26 Sep 2013 11:44:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0A5948AE27 for ; Thu, 26 Sep 2013 11:44:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VZIYgEfy5RFF for ; Thu, 26 Sep 2013 11:44:49 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.internet.v.pl (mail.internet.v.pl [62.69.205.34]) by whitealder.osuosl.org (Postfix) with SMTP id BA8728ADC7 for ; Thu, 26 Sep 2013 11:44:48 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.internet.v.pl (Sendmail) with ESMTP id 890C5C23BF; Thu, 26 Sep 2013 13:44:45 +0200 (CEST) Received: from mail.internet.v.pl ([127.0.0.1]) by localhost (poczta.v.pl [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 8EzeRPZKl0py; Thu, 26 Sep 2013 13:44:45 +0200 (CEST) Received: from localhost.localdomain (77-255-2-231.adsl.inetia.pl [77.255.2.231]) by mail.internet.v.pl (Sendmail) with ESMTPA id F3F41C2383; Thu, 26 Sep 2013 13:44:44 +0200 (CEST) From: Jerzy Grzegorek To: buildroot@busybox.net Date: Thu, 26 Sep 2013 13:43:08 +0200 Message-Id: <1380195788-32432-1-git-send-email-jerzy.grzegorek@trzebnica.net> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH 1/1] package: fix github download URL X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Jerzy Grzegorek --- package/cpuload/cpuload.mk | 4 ++-- package/fb-test-app/fb-test-app.mk | 4 ++-- package/input-event-daemon/input-event-daemon.mk | 4 ++-- package/lcdapi/lcdapi.mk | 4 ++-- package/libcec/libcec.mk | 4 ++-- package/libiqrf/libiqrf.mk | 4 ++-- package/luasql/luasql.mk | 4 ++-- package/tinymembench/tinymembench.mk | 4 ++-- package/xl2tp/xl2tp.mk | 4 ++-- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/package/cpuload/cpuload.mk b/package/cpuload/cpuload.mk index e0b8ccf..d00c3a4 100644 --- a/package/cpuload/cpuload.mk +++ b/package/cpuload/cpuload.mk @@ -4,8 +4,8 @@ # ################################################################################ -CPULOAD_VERSION = v0.3 -CPULOAD_SITE = http://github.com/kelvincheung/cpuload/tarball/$(CPULOAD_VERSION) +CPULOAD_VERSION = 0.3 +CPULOAD_SITE = https://github.com/kelvincheung/cpuload/tarball/v$(CPULOAD_VERSION) CPULOAD_LICENSE = GPLv2 CPULOAD_LICENSE_FILES = COPYING diff --git a/package/fb-test-app/fb-test-app.mk b/package/fb-test-app/fb-test-app.mk index a2183e0..3c14c4f 100644 --- a/package/fb-test-app/fb-test-app.mk +++ b/package/fb-test-app/fb-test-app.mk @@ -4,8 +4,8 @@ # ################################################################################ -FB_TEST_APP_VERSION = v1.0.0 -FB_TEST_APP_SITE = http://github.com/prpplague/fb-test-app/tarball/$(FB_TEST_APP_VERSION) +FB_TEST_APP_VERSION = 1.0.0 +FB_TEST_APP_SITE = https://github.com/prpplague/fb-test-app/tarball/v$(FB_TEST_APP_VERSION) FB_TEST_APP_LICENSE = GPLv2 FB_TEST_APP_LICENSE_FILES = COPYING diff --git a/package/input-event-daemon/input-event-daemon.mk b/package/input-event-daemon/input-event-daemon.mk index 762d3c2..4ce123f 100644 --- a/package/input-event-daemon/input-event-daemon.mk +++ b/package/input-event-daemon/input-event-daemon.mk @@ -4,8 +4,8 @@ # ################################################################################ -INPUT_EVENT_DAEMON_VERSION = v0.1.3 -INPUT_EVENT_DAEMON_SITE = http://github.com/gandro/input-event-daemon/tarball/$(INPUT_EVENT_DAEMON_VERSION) +INPUT_EVENT_DAEMON_VERSION = 0.1.3 +INPUT_EVENT_DAEMON_SITE = https://github.com/gandro/input-event-daemon/tarball/v$(INPUT_EVENT_DAEMON_VERSION) INPUT_EVENT_DAEMON_LICENSE = input-event-daemon license INPUT_EVENT_DAEMON_LICENSE_FILES = README diff --git a/package/lcdapi/lcdapi.mk b/package/lcdapi/lcdapi.mk index 1b7ea43..73c798e 100644 --- a/package/lcdapi/lcdapi.mk +++ b/package/lcdapi/lcdapi.mk @@ -4,8 +4,8 @@ # ################################################################################ -LCDAPI_VERSION = v0.4 -LCDAPI_SITE = http://github.com/spdawson/lcdapi/tarball/$(LCDAPI_VERSION) +LCDAPI_VERSION = 0.4 +LCDAPI_SITE = https://github.com/spdawson/lcdapi/tarball/v$(LCDAPI_VERSION) LCDAPI_LICENSE = LGPLv2.1+ LCDAPI_LICENSE_FILES = COPYING diff --git a/package/libcec/libcec.mk b/package/libcec/libcec.mk index 8a58e1e..10f9c26 100644 --- a/package/libcec/libcec.mk +++ b/package/libcec/libcec.mk @@ -4,8 +4,8 @@ # ################################################################################ -LIBCEC_VERSION = libcec-2.1.1 -LIBCEC_SITE = http://github.com/Pulse-Eight/libcec/tarball/$(LIBCEC_VERSION) +LIBCEC_VERSION = 2.1.1 +LIBCEC_SITE = https://github.com/Pulse-Eight/libcec/tarball/libcec-$(LIBCEC_VERSION) LIBCEC_LICENSE = GPLv2+ LIBCEC_LICENSE_FILES = COPYING diff --git a/package/libiqrf/libiqrf.mk b/package/libiqrf/libiqrf.mk index 6c33654..1907303 100644 --- a/package/libiqrf/libiqrf.mk +++ b/package/libiqrf/libiqrf.mk @@ -4,8 +4,8 @@ # ################################################################################ -LIBIQRF_VERSION = v0.1.2 -LIBIQRF_SITE = http://github.com/nandra/libiqrf/tarball/$(LIBIQRF_VERSION) +LIBIQRF_VERSION = 0.1.2 +LIBIQRF_SITE = https://github.com/nandra/libiqrf/tarball/v$(LIBIQRF_VERSION) LIBIQRF_INSTALL_STAGING = YES LIBIQRF_DEPENDENCIES = libusb diff --git a/package/luasql/luasql.mk b/package/luasql/luasql.mk index 6fbdccc..21c102b 100644 --- a/package/luasql/luasql.mk +++ b/package/luasql/luasql.mk @@ -4,8 +4,8 @@ # ################################################################################ -LUASQL_VERSION = v2.3.0 -LUASQL_SITE = https://github.com/keplerproject/luasql/tarball/$(LUASQL_VERSION) +LUASQL_VERSION = 2.3.0 +LUASQL_SITE = https://github.com/keplerproject/luasql/tarball/v$(LUASQL_VERSION) LUASQL_LICENSE = MIT LUASQL_LICENSE_FILES = README LUASQL_DEPENDENCIES = lua diff --git a/package/tinymembench/tinymembench.mk b/package/tinymembench/tinymembench.mk index 732616f..bb280af 100644 --- a/package/tinymembench/tinymembench.mk +++ b/package/tinymembench/tinymembench.mk @@ -4,8 +4,8 @@ # ################################################################################ -TINYMEMBENCH_VERSION = v0.2 -TINYMEMBENCH_SITE = http://github.com/ssvb/tinymembench/tarball/$(TINYMEMBENCH_VERSION) +TINYMEMBENCH_VERSION = 0.2 +TINYMEMBENCH_SITE = https://github.com/ssvb/tinymembench/tarball/v$(TINYMEMBENCH_VERSION) TINYMEMBENCH_LICENSE = MIT TINYMEMBENCH_LICENSE_FILES = main.c diff --git a/package/xl2tp/xl2tp.mk b/package/xl2tp/xl2tp.mk index 7b0a228..7b8e015 100644 --- a/package/xl2tp/xl2tp.mk +++ b/package/xl2tp/xl2tp.mk @@ -4,8 +4,8 @@ # ################################################################################ -XL2TP_VERSION = v1.3.1 -XL2TP_SITE = http://github.com/xelerance/xl2tpd/tarball/$(XL2TP_VERSION) +XL2TP_VERSION = 1.3.1 +XL2TP_SITE = https://github.com/xelerance/xl2tpd/tarball/v$(XL2TP_VERSION) XL2TP_DEPENDENCIES = libpcap define XL2TP_BUILD_CMDS