From patchwork Sun Oct 27 06:41:29 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Weber X-Patchwork-Id: 1184922 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=rockwellcollins.com Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4717YJ449Jz9sP3 for ; Sun, 27 Oct 2019 17:41:40 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id C6BB220134; Sun, 27 Oct 2019 06:41:38 +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 iElq8JRiovAO; Sun, 27 Oct 2019 06:41:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 9D704203D4; Sun, 27 Oct 2019 06:41:37 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 70D591BF29C for ; Sun, 27 Oct 2019 06:41:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6A846849E2 for ; Sun, 27 Oct 2019 06:41:34 +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 nZykn1-3YcIl for ; Sun, 27 Oct 2019 06:41:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from ch3vs03.rockwellcollins.com (smtpimr.rockwellcollins.com [205.175.226.47]) by whitealder.osuosl.org (Postfix) with ESMTPS id 07FB0847BE for ; Sun, 27 Oct 2019 06:41:32 +0000 (UTC) IronPort-SDR: yi/7Okontx9NQgbk0grgmZ56TmtoanSjQ9eFVZ+g+4u71zczoCYn/oqNNhdpCKrITWCcFZG7fc CYgnJ7aG+bEyS3Y4rpEsgOxUs+SmV1X+LmoBplaAX/gkR+B/JtvMzBNO/b/02m3hwJD4j0NwBR ovW+C3tVfl4wGCGNa2aQQgzkBh9XiP8k0WZhF+3HnTVVYUKDLq1ZZ9UaMjZxivf8V4tjF665G6 UxeXKwXafM7k9LqrS5s4MU3FVcWwSNg7rwlbPgScFazowalE77jYWBHM0zzaYdvinHN2JNKlbH stA= Received: from ofwch3n02.rockwellcollins.com (HELO dtulimr01.rockwellcollins.com) ([205.175.226.14]) by ch3vs03.rockwellcollins.com with ESMTP; 27 Oct 2019 01:41:32 -0500 X-Received: from biscuits.rockwellcollins.lab (biscuits.rockwellcollins.lab [10.148.119.137]) by dtulimr01.rockwellcollins.com (Postfix) with ESMTP id DE38960460; Sun, 27 Oct 2019 01:41:31 -0500 (CDT) From: Matt Weber To: buildroot@buildroot.org Date: Sun, 27 Oct 2019 01:41:29 -0500 Message-Id: <20191027064129.14651-1-matthew.weber@rockwellcollins.com> X-Mailer: git-send-email 2.17.1 Subject: [Buildroot] [PATCH] package/python-scapy3k: : remove 'v' prefix from github-fetched packages X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Heiko Thiery MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes version parsing for release-monitoring.org support. Cc: Heiko Thiery Signed-off-by: Matthew Weber --- package/python-scapy3k/python-scapy3k.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/python-scapy3k/python-scapy3k.mk b/package/python-scapy3k/python-scapy3k.mk index e858dcc728..63f081e3fc 100644 --- a/package/python-scapy3k/python-scapy3k.mk +++ b/package/python-scapy3k/python-scapy3k.mk @@ -4,8 +4,8 @@ # ################################################################################ -PYTHON_SCAPY3K_VERSION = v0.18 -PYTHON_SCAPY3K_SITE = $(call github,phaethon,scapy,$(PYTHON_SCAPY3K_VERSION)) +PYTHON_SCAPY3K_VERSION = 0.18 +PYTHON_SCAPY3K_SITE = $(call github,phaethon,scapy,v$(PYTHON_SCAPY3K_VERSION)) PYTHON_SCAPY3K_SETUP_TYPE = distutils PYTHON_SCAPY3K_LICENSE = GPL-2.0+