From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0F82959CB2 for ; Mon, 18 Apr 2016 16:16:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 343AE21C00C; Mon, 18 Apr 2016 16:16:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 75CDC21C010 for ; Mon, 18 Apr 2016 16:16:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 440FE340A23 for ; Mon, 18 Apr 2016 16:16:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9774516C4 for ; Mon, 18 Apr 2016 16:16:04 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1460996151.361779a94f8eb9292fb50195a126ad44b3a34e79.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pysnmp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pysnmp/pysnmp-4.3.2.ebuild X-VCS-Directories: dev-python/pysnmp/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 361779a94f8eb9292fb50195a126ad44b3a34e79 X-VCS-Branch: master Date: Mon, 18 Apr 2016 16:16:04 +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: 22e95ff6-eef4-4396-8a2e-8fb03a9f511f X-Archives-Hash: bfb2d10078b2aa05206c343b7862430d commit: 361779a94f8eb9292fb50195a126ad44b3a34e79 Author: Ming Dai gmail com> AuthorDate: Mon Apr 18 12:13:53 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Mon Apr 18 16:15:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=361779a9 dev-python/pysnmp: Do not use banned EXAMPLES in EAPI 6 Package-Manager: portage-2.2.26 Closes: https://github.com/gentoo/gentoo/pull/1299 Signed-off-by: Ian Delaney gentoo.org> dev-python/pysnmp/pysnmp-4.3.2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/pysnmp/pysnmp-4.3.2.ebuild b/dev-python/pysnmp/pysnmp-4.3.2.ebuild index ae0b0e5..794df45 100644 --- a/dev-python/pysnmp/pysnmp-4.3.2.ebuild +++ b/dev-python/pysnmp/pysnmp-4.3.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -37,7 +37,8 @@ python_compile_all() { python_install_all() { use doc && local HTML_DOCS=( docs/build/html/* ) - use examples && local EXAMPLES=( examples/. docs/mibs ) + docinto examples + use examples && dodoc -r examples/* docs/mibs distutils-r1_python_install_all }