-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Zen <[email protected]>
- Loading branch information
Showing
3 changed files
with
35 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 @@ | ||
DIST qmodbus-0.3.0.tar.gz 217064 BLAKE2B 6fd6c2219b1498312879295042fe2cc50546c1e4e26b30f73eca1d7f6aa629cbb055653a4237ea1500a2b8a908342faaa4c12f9917aa84e5ae66f99a9a8ed424 SHA512 fdb10f05ed8bd2f37d0fb14685891bf6a39f4ffea80a9f2fefca72f69fcd6045a0379caf2b58b166086e4be4ad1fb0ae37b4b1a7c38257e1d8e6097f8693a073 |
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 "https://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Zen</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">ed-chemnitz/qmodbus</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
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,23 @@ | ||
# Copyright 2025 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit qmake-utils | ||
|
||
DESCRIPTION="QT Modbus Master" | ||
HOMEPAGE="https://github.com/ed-chemnitz/qmodbus" | ||
SRC_URI="https://github.com/ed-chemnitz/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
src_configure() { | ||
eqmake5 | ||
} | ||
|
||
src_install() { | ||
insinto /usr/bin | ||
dobin qmodbus | ||
} |