From patchwork Mon Oct 27 14:34:08 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 403623 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id A6BEA14007D for ; Tue, 28 Oct 2014 01:34:25 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 9077495E05; Mon, 27 Oct 2014 14:34:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id f1xDdeRrMim2; Mon, 27 Oct 2014 14:34:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id A3CA895D7A; Mon, 27 Oct 2014 14:34:22 +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 3A0DF1C2214 for ; Mon, 27 Oct 2014 14:34:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 358EC923B7 for ; Mon, 27 Oct 2014 14:34:21 +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 D-KQFzG3niLV for ; Mon, 27 Oct 2014 14:34:20 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [62.210.192.172]) by whitealder.osuosl.org (Postfix) with ESMTPS id 1B4CF92347 for ; Mon, 27 Oct 2014 14:34:19 +0000 (UTC) Received: from asgard (cpe-186-23-17-245.telecentro-reversos.com.ar [186.23.17.245] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.14.9/8.14.9) with ESMTP id s9REYD9A003514 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 27 Oct 2014 14:34:16 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1414420458; bh=ZFQt6dBgts49d+Ro2XITCpVA+irFLoosv3SMWjnBDeM=; h=From:To:Cc:Subject:Date; b=bvQkE5YDot8EH5P2z6mXN949ui2R8nlOM3HRS9NwWFB/RRLfX5FEw0FoMYXat2OON 5jwEJiWpH0r8odA+7swu0OcW5d36JZIY0ukQbfBFzUOHo539rYWWKMZu9INLa/j19V HOOW4OJJeLbycKZBpc0uY0qwPPIFIbpSTXTuMer0= Received: by asgard (sSMTP sendmail emulation); Mon, 27 Oct 2014 11:34:08 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 27 Oct 2014 11:34:08 -0300 Message-Id: <1414420448-5573-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.0.4 X-Virus-Scanned: clamav-milter 0.98.4 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH] subversion: fix dependencies/selects X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Add all of the missing selects and dependencies, they may be inherent to other dependencies but are used by subversion itself. Except for sqlite which fixes: http://autobuild.buildroot.net/results/40c/40ce377893789883503deaa57912b87d2e0192e8/ Also add hash file. Signed-off-by: Gustavo Zacarias --- package/subversion/Config.in | 8 +++++++- package/subversion/subversion.hash | 2 ++ package/subversion/subversion.mk | 3 +-- 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 package/subversion/subversion.hash diff --git a/package/subversion/Config.in b/package/subversion/Config.in index cc2549f..34d1987 100644 --- a/package/subversion/Config.in +++ b/package/subversion/Config.in @@ -1,12 +1,18 @@ config BR2_PACKAGE_SUBVERSION bool "subversion" - select BR2_PACKAGE_APR_UTIL # apr really needs shared library support depends on !BR2_PREFER_STATIC_LIB depends on BR2_USE_MMU # apr + select BR2_PACKAGE_APR_UTIL + select BR2_PACKAGE_EXPAT select BR2_PACKAGE_NEON select BR2_PACKAGE_NEON_XML + select BR2_PACKAGE_SQLITE + select BR2_PACKAGE_ZLIB help Subversion is an open source version control system http://subversion.apache.org/ + +comment "subversion needs a toolchain w/ dynamic library" + depends on BR2_PREFER_STATIC_LIB diff --git a/package/subversion/subversion.hash b/package/subversion/subversion.hash new file mode 100644 index 0000000..08e5cb8 --- /dev/null +++ b/package/subversion/subversion.hash @@ -0,0 +1,2 @@ +# From http://archive.apache.org/dist/subversion/subversion-1.7.18.tar.gz.sha1 +sha1 96873512eeb196e5ba6435fbffb24ba284bfcf84 subversion-1.7.18.tar.gz diff --git a/package/subversion/subversion.mk b/package/subversion/subversion.mk index af5244b..f74c8e5 100644 --- a/package/subversion/subversion.mk +++ b/package/subversion/subversion.mk @@ -8,8 +8,7 @@ SUBVERSION_VERSION = 1.7.18 SUBVERSION_SITE = http://archive.apache.org/dist/subversion SUBVERSION_LICENSE = Apache-2.0 SUBVERSION_LICENSE_FILES = LICENSE - -SUBVERSION_DEPENDENCIES = apr apr-util expat neon zlib +SUBVERSION_DEPENDENCIES = apr apr-util expat neon sqlite zlib SUBVERSION_CONF_OPTS = \ --with-expat=$(STAGING_DIR)/usr/include:$(STAGING_DIR)/usr/lib: \ --with-apr=$(STAGING_DIR)/usr \