X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 51207DC0222 for ; Fri, 19 Feb 2016 00:24:00 +0000 (UTC) Received: from mail-pa0-f52.google.com (mail-pa0-f52.google.com [209.85.220.52]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id E7F9EDC0175 for ; Fri, 19 Feb 2016 00:23:59 +0000 (UTC) Received: by mail-pa0-f52.google.com with SMTP id yy13so39754122pab.3 for ; Thu, 18 Feb 2016 16:23:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=tIX1loA4SHH+SHcV+xA1RGZriHgGLpSdQ103HTKvlxM=; b=B2L4qn18Q0Ir3RfZVL/V7bxpsQYxwt6xu33IUSh0sFDw8FvDPfE8dY6l+/YDl5Ywr6 xZXB1lm+i+Z/HsrsaaAiDkm8t1yZLZ/zhnS9UBsjwcHX4M06BKRT3R1acqIOTsTtQLoY xefNg2mM3LYwAkaLrXlZfcQH47fkOiWC0s9YCM6AdGRreZF0M7MCbaeAApDGdwPL57Rc xomv88/waihL6bFzln+V4QkRkevDtS+ZmMQzBURZyUDBDHj3FimPsdyS2y4hZoMVz/qF HwLnSgpkM8c9PZ5/TP0hsfztWJw/MwjTz8/VpJDKsZGiZItI4O3J1ExoeQ4qdru4aNWo 9xaQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-type:content-disposition:user-agent; bh=tIX1loA4SHH+SHcV+xA1RGZriHgGLpSdQ103HTKvlxM=; b=PNxioOJDfRY3JdvCmLtfVMxR7w9lXrFV51PJP9Q3KSYwARLlCH5nzb9IXjIT8YIF6j ffT/wmqUg+myPU3H4xySoN24QcYVJPb/hF3Qwf0Sul8kzi96rxfHBPfLEe0tXLyCkeyy zRnfBDGVBHll8JSlkpCf3r27iAomIZX7a/8vjeUnEHE2HTsl14LdV5pz2abcF8l4+3Bb 8HYqn+xy7+iTsRyN9mottrSXa0TCGucPEvQX81wqOf7Pe0pscql01fS26cvp8GDk+b5z Bs+vzk5WGN0Yf3DRtJpqhaQ5J5Haffa/IlQkrrdh+3BFi1bFePCoYpYbHGda99RsfKW2 xW0Q== X-Gm-Message-State: AG10YORdaw+izB1QwGxWM0KxvwB+eKC7PTVicGzkm/2FcxGohfkaFx4oxY6SFdF9nkuPXQ== X-Received: by 10.67.8.2 with SMTP id dg2mr14550228pad.30.1455841438268; Thu, 18 Feb 2016 16:23:58 -0800 (PST) Received: from gmail.com (ec2-54-201-22-187.us-west-2.compute.amazonaws.com. [54.201.22.187]) by smtp.gmail.com with ESMTPSA id ah10sm12949258pad.23.2016.02.18.16.23.57 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 18 Feb 2016 16:23:57 -0800 (PST) Date: Fri, 19 Feb 2016 00:23:55 +0000 From: Paul Morgan To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 1/1] testing/editorconfig: allow multi-line value parsing Message-ID: <20160219002354.GA360@gmail.com> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Editor: VIM - Vi IMproved 7.4 X-Mailer: Mutt 1.5.24 User-Agent: Mutt/1.5.24 (2015-08-30) X-Virus-Scanned: ClamAV using ClamSMTP --- testing/editorconfig/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/editorconfig/APKBUILD b/testing/editorconfig/APKBUILD index d011a4d..8f6fd37 100644 --- a/testing/editorconfig/APKBUILD +++ b/testing/editorconfig/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Paul Morgan pkgname=editorconfig pkgver=0.12.0 -pkgrel=0 +pkgrel=1 pkgdesc="EditorConfig core library written in C (for use by plugins supporting EditorConfig parsing)" url="https://github.com/editorconfig/editorconfig-core-c" arch="x86_64" @@ -31,6 +31,7 @@ build() { cmake . \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ + -DINI_ALLOW_MULTILINE=1 \ || return 1 make || return 1 } -- 2.6.4 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---