From patchwork Thu Oct 31 13:29:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yegor Yefremov X-Patchwork-Id: 287490 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id C3D842C03BF for ; Fri, 1 Nov 2013 00:29:29 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5AB628B966; Thu, 31 Oct 2013 13:29:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JIw15mzFqCrh; Thu, 31 Oct 2013 13:29:25 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9D9E48AF79; Thu, 31 Oct 2013 13:29:25 +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 1A1301BF857 for ; Thu, 31 Oct 2013 13:29:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 11B418B431 for ; Thu, 31 Oct 2013 13:29:24 +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 Ui4MfAVpUqfK for ; Thu, 31 Oct 2013 13:29:23 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.visionsystems.de (hhlx01.visionsystems.de [62.145.30.242]) by whitealder.osuosl.org (Postfix) with ESMTP id 898888AB24 for ; Thu, 31 Oct 2013 13:29:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.visionsystems.de (Postfix) with ESMTP id 8A6FB2D4821; Thu, 31 Oct 2013 14:29:22 +0100 (CET) Received: from mail.visionsystems.de ([127.0.0.1]) by localhost (mail.visionsystems.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07207-08; Thu, 31 Oct 2013 14:29:09 +0100 (CET) Received: from visionsystems.de (kallisto.visionsystems.local [192.168.1.3]) by mail.visionsystems.de (Postfix) with ESMTP id 0DFFD2D4820; Thu, 31 Oct 2013 14:29:09 +0100 (CET) Received: from development1.visionsystems.local ([192.168.1.36]) by visionsystems.de with Microsoft SMTPSVC(6.0.3790.4675); Thu, 31 Oct 2013 14:29:08 +0100 From: yegorslists@googlemail.com To: buildroot@busybox.net Date: Thu, 31 Oct 2013 14:29:05 +0100 Message-Id: <1383226145-12195-1-git-send-email-yegorslists@googlemail.com> X-Mailer: git-send-email 1.7.7 X-OriginalArrivalTime: 31 Oct 2013 13:29:08.0806 (UTC) FILETIME=[2DAE2660:01CED63D] X-Virus-Scanned: amavisd-new at visionsystems.de Subject: [Buildroot] [PATCH v2] libmodbus: bump version and change download location 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 From: Yegor Yefremov The license of libmodbus is LGPL v2.1 or later and the licence of programs in tests directory is GPL v3. So specify only LGPL v2.1. Signed-off-by: Yegor Yefremov --- Changes: v2: add licence info package/libmodbus/libmodbus.mk | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package/libmodbus/libmodbus.mk b/package/libmodbus/libmodbus.mk index 8f93c2b..8aa3cd7 100644 --- a/package/libmodbus/libmodbus.mk +++ b/package/libmodbus/libmodbus.mk @@ -4,8 +4,10 @@ # ################################################################################ -LIBMODBUS_VERSION = 3.0.3 -LIBMODBUS_SITE = http://github.com/downloads/stephane/libmodbus +LIBMODBUS_VERSION = 3.0.5 +LIBMODBUS_SITE = http://libmodbus.org/site_media/build/ +LIBMODBUS_LICENSE = LGPLv2.1+ +LIBMODBUS_LICENSE_FILES = COPYING.LESSER LIBMODBUS_INSTALL_STAGING = YES $(eval $(autotools-package))