From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6529F1396D9 for ; Thu, 12 Oct 2017 18:25:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6525E0C01; Thu, 12 Oct 2017 18:25:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81FFAE0C01 for ; Thu, 12 Oct 2017 18:25:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 80E9433C4EE for ; Thu, 12 Oct 2017 18:25:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B347907B for ; Thu, 12 Oct 2017 18:25:22 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1507832717.b1c99556303893ae969b5e6864d3ad525e7e5c43.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/btrfs-progs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/btrfs-progs/btrfs-progs-9999.ebuild X-VCS-Directories: sys-fs/btrfs-progs/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: b1c99556303893ae969b5e6864d3ad525e7e5c43 X-VCS-Branch: master Date: Thu, 12 Oct 2017 18:25:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 57174968-13bf-40eb-96e0-9d013a73a67d X-Archives-Hash: 17ca102600b0e58d2f984d6ed6b11827 commit: b1c99556303893ae969b5e6864d3ad525e7e5c43 Author: Sergei Trofimovich gentoo org> AuthorDate: Thu Oct 12 18:25:05 2017 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Thu Oct 12 18:25:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1c99556 sys-fs/btrfs-progs: update live ebuild to use comma separator https://github.com/kdave/btrfs-progs/commit/ab74bdc1cbc874078f80796537542075741586f3 fixes comma (',') as a list separator. Package-Manager: Portage-2.3.10, Repoman-2.3.3 sys-fs/btrfs-progs/btrfs-progs-9999.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild b/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild index 0dc40a977f4..49ff5c4dffd 100644 --- a/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild +++ b/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} != 9999 ]]; then else WANT_LIBTOOL=none inherit autotools git-r3 - EGIT_REPO_URI="git://repo.or.cz/btrfs-progs-unstable/devel.git" + EGIT_REPO_URI="https://github.com/kdave/btrfs-progs.git" EGIT_BRANCH="devel" fi @@ -81,9 +81,7 @@ src_configure() { --bindir="${EPREFIX}"/sbin $(use_enable convert) $(use_enable elibc_glibc backtrace) - # No whitespace due to 'ext2,reiserfs' being invalid - # for configure. TODO: Why it's not valid? - --with-convert=ext2$(usex reiserfs 'reiserfs' '') + --with-convert=ext2$(usex reiserfs ',reiserfs' '') ) econf "${myeconfargs[@]}" }