From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1098070-garchives=archives.gentoo.org@lists.gentoo.org>
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 AC51B138334
	for <garchives@archives.gentoo.org>; Tue,  2 Jul 2019 13:32:22 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id E11D1E07D0;
	Tue,  2 Jul 2019 13:32:21 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(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 C9487E07D0
	for <gentoo-commits@lists.gentoo.org>; Tue,  2 Jul 2019 13:32:21 +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 45E21346E19
	for <gentoo-commits@lists.gentoo.org>; Tue,  2 Jul 2019 13:32:20 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1413062F
	for <gentoo-commits@lists.gentoo.org>; Tue,  2 Jul 2019 13:32:18 +0000 (UTC)
From: "Louis Sautier" <sbraz@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" <sbraz@gentoo.org>
Message-ID: <1562074264.c4edda0d524dfca20de6f9546f3806de9109fdae.sbraz@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/namespace-jaraco/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/namespace-jaraco/namespace-jaraco-2.ebuild
X-VCS-Directories: dev-python/namespace-jaraco/
X-VCS-Committer: sbraz
X-VCS-Committer-Name: Louis Sautier
X-VCS-Revision: c4edda0d524dfca20de6f9546f3806de9109fdae
X-VCS-Branch: master
Date: Tue,  2 Jul 2019 13:32:18 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 5d7a09e8-585a-4558-a081-0722396a7e0b
X-Archives-Hash: 40ffc9ade4774f92d4fdf7b7fd05192b

commit:     c4edda0d524dfca20de6f9546f3806de9109fdae
Author:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  2 12:55:15 2019 +0000
Commit:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Tue Jul  2 13:31:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4edda0d

dev-python/namespace-jaraco: bump to v2 for pkgutil-style packages

All dev-python/jaraco-* packages are switching to pkgutil-style
packages.

Drop blocker on older jaraco-logging versions that are not in the tree
any more.

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>

 .../namespace-jaraco/namespace-jaraco-2.ebuild     | 35 ++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/dev-python/namespace-jaraco/namespace-jaraco-2.ebuild b/dev-python/namespace-jaraco/namespace-jaraco-2.ebuild
new file mode 100644
index 00000000000..eae5d12efb4
--- /dev/null
+++ b/dev-python/namespace-jaraco/namespace-jaraco-2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7}} )
+inherit python-r1
+
+DESCRIPTION="Namespace package declaration for jaraco"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages"
+SRC_URI=""
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd"
+IUSE=""
+
+RDEPEND="
+	!<dev-python/jaraco-packaging-5.1
+	${PYTHON_DEPS}
+"
+DEPEND="${PYTHON_DEPS}"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+src_unpack() {
+	mkdir -p "${S}"/jaraco || die
+	cat > "${S}"/jaraco/__init__.py <<-EOF || die
+		__path__ = __import__('pkgutil').extend_path(__path__, __name__)
+	EOF
+}
+
+src_install() {
+	python_foreach_impl python_domodule jaraco
+}