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 1903A1382C5 for ; Thu, 7 Jan 2021 23:19:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55C90E0871; Thu, 7 Jan 2021 23:19:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 39A12E0871 for ; Thu, 7 Jan 2021 23:19:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3B4373413D9 for ; Thu, 7 Jan 2021 23:19:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACB24491 for ; Thu, 7 Jan 2021 23:19:28 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1610061326.7166bcf1dfc943fc8c43402aea49c97e8246545c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/smart-live-rebuild/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6-r1.ebuild app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild X-VCS-Directories: app-portage/smart-live-rebuild/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7166bcf1dfc943fc8c43402aea49c97e8246545c X-VCS-Branch: master Date: Thu, 7 Jan 2021 23:19:28 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 04afaaa6-25ac-409e-aabd-cb27125916c7 X-Archives-Hash: d53740805805fdff5c2daff39a5e3f8c commit: 7166bcf1dfc943fc8c43402aea49c97e8246545c Author: Michał Górny gentoo org> AuthorDate: Thu Jan 7 21:09:09 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jan 7 23:15:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7166bcf1 app-portage/smart-live-rebuild: Limit to py3.8+ due to pkgcore Signed-off-by: Michał Górny gentoo.org> ...ld-9999.ebuild => smart-live-rebuild-1.3.6-r1.ebuild} | 16 +++++++++------- .../smart-live-rebuild/smart-live-rebuild-9999.ebuild | 6 +++--- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6-r1.ebuild similarity index 67% copy from app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild copy to app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6-r1.ebuild index 1f974965eed..ccc36895bd2 100644 --- a/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild +++ b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6-r1.ebuild @@ -1,25 +1,27 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_COMPAT=( python3_{8..9} ) -EGIT_REPO_URI="https://github.com/mgorny/${PN}.git" -inherit distutils-r1 git-r3 +inherit distutils-r1 DESCRIPTION="Check live packages for updates and emerge them as necessary" HOMEPAGE="https://github.com/mgorny/smart-live-rebuild/" -SRC_URI="" +SRC_URI="https://github.com/mgorny/smart-live-rebuild/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86" IUSE="" RDEPEND=">=app-portage/gentoopm-0.2.1[${PYTHON_USEDEP}]" +# Tests need to be fixed +RESTRICT=test + python_test() { esetup.py test } diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild b/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild index 1f974965eed..adf1f7f98ae 100644 --- a/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild +++ b/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_COMPAT=( python3_{8..9} ) EGIT_REPO_URI="https://github.com/mgorny/${PN}.git" inherit distutils-r1 git-r3