-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-misc/networkmanager-dmenu: add 2.5.0
Change-Id: Ifdf8511ff08d69f0683b82b290a4d4b2a6501ffd Signed-off-by: Woomymy <woomy@woomy.be>
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST networkmanager-dmenu-2.3.1.tar.gz 4707399 BLAKE2B 5d61d614a20726e133e450194806ad25f5de7a7060e987162738ad4a754c4a2c28908a5eb6b3d31bdde73c4b241543a2395bac8a678c8b253f2eb448cd4f57ec SHA512 720290c2b39fcd996675db4e2ec1126a3368c4b8658b95d12000ad6801ec3aa89e9ae2c263dbafac8796c260340b58ac30672142b846a4e0bc6069a6e5dfa8eb | ||
DIST networkmanager-dmenu-2.5.0.tar.gz 4708894 BLAKE2B 82998a1ac927814eaff44161a3b0673e2eb7c89dfa7ccf8a349f6bf69956bfaf3a2d9ff0dc7be5bfd4dcb4a8115caf67a74354a58a34803b4c96a057cd64b56b SHA512 5b3963f9591138e5ff64bc871ba4f0ff2fac8aa9d96e96f9ce8767ce11871b47f6596bdc9d4ea93fe72473463d29522f7f2d733d51a10de4071ca1f87a9de77f |
36 changes: 36 additions & 0 deletions
36
net-misc/networkmanager-dmenu/networkmanager-dmenu-2.5.0.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright 2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
PYTHON_COMPAT=( python3_{10..12} ) | ||
inherit desktop python-r1 | ||
|
||
DESCRIPTION="Control networkmanager using DMENU" | ||
HOMEPAGE="https://github.com/firecat53/networkmanager-dmenu" | ||
SRC_URI="https://github.com/firecat53/networkmanager-dmenu/archive/v${PV}.tar.gz -> networkmanager-dmenu-${PV}.tar.gz" | ||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 x86" | ||
IUSE="+dmenu rofi" | ||
REQUIRED_USE="^^ ( dmenu rofi ) ${PYTHON_REQUIRED_USE}" | ||
DEPEND=" | ||
net-misc/networkmanager | ||
dmenu? ( x11-misc/dmenu ) | ||
rofi? ( x11-misc/rofi ) | ||
dev-python/pygobject | ||
${PYTHON_DEPS} | ||
" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND="" | ||
S="${WORKDIR}/${PN}-${PV}" | ||
|
||
src_install() { | ||
exeinto /usr/bin/ | ||
doexe networkmanager_dmenu | ||
domenu networkmanager_dmenu.desktop | ||
dodoc LICENSE.txt | ||
dodoc README.md | ||
dodoc config.ini.example | ||
elog "Now you need to configure the package." | ||
elog "Configuration guide: https://github.com/firecat53/networkmanager-dmenu#installation" | ||
} |