app-portage/portpeek: Notify for duplicate use flags (w/make.conf)

Add support for notifying when a duplicate use flag is
in package.use/* and make.conf

Closes: https://bugs.gentoo.org/575836
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
This commit is contained in:
Mike Pagano
2020-07-24 15:40:18 -04:00
parent 7e4289274f
commit c3bb6f6285
2 changed files with 31 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST portpeek-2.1.27.tar.gz 13000 BLAKE2B a134d7c9a99dc4bfd8cbd56343a6d049c215ea
DIST portpeek-2.1.29.tar.gz 13067 BLAKE2B c0385849738303a3fab8123f6af321bd000f88975b26d363c08aacf873b657b872a898af92a0396f1e3060b5b804fc9f2ddd8579101d2f5da18628080dc4e490 SHA512 3933b39c248e3758d67e0c1dd04cb93727eecbda4ae35d55fc266d01f01d7f87c535701cbc54d48a212e1c642a4447d487f2c62aa649f084e1d1fca458263b27
DIST portpeek-3.0.1.tar.gz 12906 BLAKE2B bca14b3d1c82b270a5418ca3ff1e5422a16251bd5d7ef775311c9bf86cbb3b5c1304c688c0631247aa1e6f479d5e7eb5313c83fac5a9e197dc70bda6aa48b569 SHA512 8e0d71d71afb6b6d990e88f3c212a7e999b544cdc7a06d44cadb59ae3b70849fbbd864d855f014bb4090a031efc0713c84dc2a3079e37ab8967e546c8d165394
DIST portpeek-3.1.0.tar.gz 13353 BLAKE2B 14b2f1bd11d1a66c97251e08ed5cd54d4ca14fc927abc9301f68dfc3fd6bc2c9a50ea492ab473007521805b67dc3d01fba969fb4d309fb3584f8b8b6f2eadded SHA512 8a9e8ad81cfce8542c1f36253f4be35c638befb367ee68e06bd15b7d418fd2acee82933372faa1d2d66b6638ba81a7001ca4cfcc1e805a9de54a739ff75752d4
DIST portpeek-3.1.2.tar.gz 13701 BLAKE2B a45a4e7eb30aa71c9f050dfe85ea01cdff6ff964aa0adb0e92af3dab3212d1b91f5335c6b7ad0113f66ec3bd99bf94e7b5c02ab88c1a9b7192c1b15c7e1471ee SHA512 9ce5e8c5a73d64561c8dc1b14b20697e25c3397914088ae347368cab0240399b0162870d7d990da929bb228adcfcc8a32a3841df1be68c52e739dce6c1a23e97

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7,8} )
inherit python-r1
DESCRIPTION="A helper program for maintaining the package.keyword and package.unmask files"
HOMEPAGE="https://www.mpagano.com/blog/?page_id=3"
SRC_URI="https://www.mpagano.com/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc ~x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}
>=app-portage/gentoolkit-0.4.8
|| (
>=sys-apps/portage-3.0.0[${PYTHON_USEDEP}]
)"
src_install() {
python_foreach_impl python_doscript ${PN}
doman *.[0-9]
}