diff options
author | Sven Wegener <swegener@gentoo.org> | 2022-01-08 16:22:55 +0100 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2022-01-08 16:31:43 +0100 |
commit | dab36d146ec26fe68a1e1a979de02a7c90fca058 (patch) | |
tree | 10e4f7c843a3df5fe88c85ed086d7f78dffee6be /sci-electronics/sigrok-cli/sigrok-cli-0.7.2.ebuild | |
parent | sci-electronics/sigrok-cli: Cleanup (diff) | |
download | gentoo-dab36d146ec26fe68a1e1a979de02a7c90fca058.tar.gz gentoo-dab36d146ec26fe68a1e1a979de02a7c90fca058.tar.bz2 gentoo-dab36d146ec26fe68a1e1a979de02a7c90fca058.zip |
sci-electronics/sigrok-cli: Remove python USE flags
Selecting the python interpreter is completely done by libsigrokdecode.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Sven Wegener <swegener@gentoo.org>
Diffstat (limited to 'sci-electronics/sigrok-cli/sigrok-cli-0.7.2.ebuild')
-rw-r--r-- | sci-electronics/sigrok-cli/sigrok-cli-0.7.2.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/sci-electronics/sigrok-cli/sigrok-cli-0.7.2.ebuild b/sci-electronics/sigrok-cli/sigrok-cli-0.7.2.ebuild deleted file mode 100644 index 7033695a6683..000000000000 --- a/sci-electronics/sigrok-cli/sigrok-cli-0.7.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{7,8,9} ) - -inherit python-single-r1 xdg-utils - -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="git://sigrok.org/${PN}" - inherit git-r3 autotools -else - SRC_URI="https://sigrok.org/download/source/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DESCRIPTION="Command-line client for the sigrok logic analyzer software" -HOMEPAGE="https://sigrok.org/wiki/Sigrok-cli" - -LICENSE="GPL-3" -SLOT="0" -IUSE="+decode" -REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=">=dev-libs/glib-2.32.0 - >=sci-libs/libsigrok-0.5.0:= - decode? ( - >=sci-libs/libsigrokdecode-0.5.0:=[${PYTHON_SINGLE_USEDEP}] - ${PYTHON_DEPS} - )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - [[ ${PV} == "9999" ]] && eautoreconf - eapply_user -} - -src_configure() { - econf $(use_with decode libsigrokdecode) -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} |