-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-admin/mb8611: new package, add 0.0.1
Signed-off-by: Andrew Udvare <[email protected]>
- Loading branch information
Showing
3 changed files
with
47 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
DIST mb8611-0.0.1.tar.gz 71310 BLAKE2B 190a25a230921a33954c83062a3b5efdcbaa2f628f9a7d532afd3b3376c98d8bb6969748c6923defb15da245cf7e431f894d2bc5145494dce7b8aa007e28b426 SHA512 d25cd2e805257c0d56c2f0617f22d6ea65eb043e59998461f4f303afaf6797eebacd54d1a3ee5ce8dcd1f9e62711738b92de98eb45294274269aed7ad52eb19d | ||
EBUILD mb8611-0.0.1.ebuild 857 BLAKE2B 8731f8271e33ea0a36b8f85357d3f53a3667e7fc8200d03300b9de80496abe9277b1d3bc5753e620dbc6935ede0c76a4bfe2defd06bf5d6e91caf6e0b58e2785 SHA512 736e75f73ff281f8ad182ee0c70fe5e5e737600c11c3da948abf3c33c168fce945a19bf9661b1c42f2b2b772927beb49101f54e2eb1c11c6bc74a4c053231166 | ||
MISC metadata.xml 323 BLAKE2B 1e95180ad0080c0f8e30edeaaa49777132f3297a880a66ba34661eab6febda9b1391f05dd2cceb39b7a49be298456f442d86e264ce64b8ff773767f6c3e8b999 SHA512 caed9faacbea7b46fde9c607f0e4bad560137e979ad45b156a122233acc748d7a11a68f0b900a49554aead0764156567a01ba37bae358866a7dd1e04adfebf26 |
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,33 @@ | ||
# Copyright 2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=poetry | ||
PYTHON_COMPAT=( python3_1{1,2} ) | ||
inherit distutils-r1 | ||
|
||
DESCRIPTION="CLI tool and library for managing the Motorola MB8611 modem and other devices." | ||
HOMEPAGE="https://github.com/Tatsh/mb8611" | ||
SRC_URI="https://github.com/Tatsh/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND="dev-python/click[${PYTHON_USEDEP}] | ||
dev-python/loguru[${PYTHON_USEDEP}] | ||
dev-python/requests[${PYTHON_USEDEP}] | ||
test? ( | ||
dev-python/mock[${PYTHON_USEDEP}] | ||
dev-python/pytest[${PYTHON_USEDEP}] | ||
dev-python/pytest-mock[${PYTHON_USEDEP}] | ||
dev-python/requests-mock[${PYTHON_USEDEP}] | ||
)" | ||
|
||
distutils_enable_tests pytest | ||
|
||
src_install() { | ||
doman "man/${PN}.1" | ||
distutils-r1_src_install | ||
} |
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,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Andrew Udvare</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">Tatsh/mb8611</remote-id> | ||
</upstream> | ||
</pkgmetadata> |