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 6C339138334 for ; Wed, 27 Jun 2018 01:31:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3583E0A45; Wed, 27 Jun 2018 01:28:49 +0000 (UTC) Received: from mx-out1.startmail.com (mx-out1.startmail.com [145.131.90.139]) (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 A5064E09F7 for ; Wed, 27 Jun 2018 01:28:48 +0000 (UTC) From: "Marty E. Plummer" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=startmail.com; s=2017-11; t=1530062927; bh=bEtErzFLl1fiNZ0HfFbKQhp0a3wV5wogAwmrJ72fdz8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pBAlaKAP7vGtKUiS5G06NdIR6fw5GILKrcJdIuIzRZc4ftaEjoy8D8VQc5DHyuK5e U9e9TX6q+m5RmgHoeXazuCrl0oBgr083j6gCF5M5anQAlHYftPqFLjHcQk+0PpzZ5q 8gdIeCzTe9OLMgT2y7EJToaAJn2MJImYX2Bkz90NlXJMQaMckZ908lo8RNuqlP08Ig JKk3SJO/UGCW6zqdQ3Omx41sFoSV65YYO89cbC8IVzFgBxNw6pYMeg04dT3RKVJQq9 5+pvKL826en+xuDs5Cr8TdCKuwjyYEvkuJJ1Mu1CK/JFHEHCk363HrEXwDh+lT5Ggw gekl0eDBxciPw== To: gentoo-dev@lists.gentoo.org Cc: "Marty E. Plummer" Subject: [gentoo-dev] [PATCH 07/10] xdg-utils.eclass: enable EAPI 7 Date: Tue, 26 Jun 2018 20:27:31 -0500 Message-Id: <20180627012734.1319-8-hanetzer@startmail.com> In-Reply-To: <20180627012734.1319-1-hanetzer@startmail.com> References: <20180627012734.1319-1-hanetzer@startmail.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Archives-Salt: 3d49be95-0174-4be4-a12e-d0ccfc99195a X-Archives-Hash: 86a7e470f3aa3d4a32f178005e5b035d Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- eclass/xdg-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/xdg-utils.eclass b/eclass/xdg-utils.eclass index 9e4d4638e38..a947aad58d6 100644 --- a/eclass/xdg-utils.eclass +++ b/eclass/xdg-utils.eclass @@ -15,7 +15,7 @@ # * XDG mime information database management case "${EAPI:-0}" in - 0|1|2|3|4|5|6) ;; + 0|1|2|3|4|5|6|7) ;; *) die "EAPI=${EAPI} is not supported" ;; esac -- 2.17.1