URI:
       oelint-parser-8.1.1.ebuild - overlay - dark gentoo overlay
  HTML git clone https://git.drkhsh.at/overlay.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       oelint-parser-8.1.1.ebuild (760B)
       ---
            1 # Copyright 1999-2024 Gentoo Authors
            2 # Distributed under the terms of the GNU General Public License v2
            3 
            4 EAPI=8
            5 
            6 DISTUTILS_EXT=1
            7 DISTUTILS_USE_PEP517=setuptools
            8 PYTHON_COMPAT=( python3_{10..13} )
            9 
           10 inherit distutils-r1
           11 
           12 DESCRIPTION="alternative parser for bitbake recipes"
           13 HOMEPAGE="
           14         https://github.com/priv-kweihmann/oelint-parser
           15 "
           16 SRC_URI="
           17         https://github.com/priv-kweihmann/oelint-parser/archive/refs/tags/${PV}.tar.gz
           18                 -> ${P}.gh.tar.gz
           19 "
           20 S=${WORKDIR}/${P}
           21 
           22 LICENSE="MIT"
           23 SLOT="0"
           24 KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
           25 
           26 RDEPEND="
           27         dev-python/regex[${PYTHON_USEDEP}]
           28         dev-python/deprecated[${PYTHON_USEDEP}]
           29 "
           30 BDEPEND="
           31         ${RDEPEND}
           32 "
           33 
           34 DOCS=( README.md docs/api-documentation.md )
           35 
           36 src_prepare() {
           37         distutils-r1_src_prepare
           38 
           39         rm -rf tests
           40 }