* [gentoo-commits] repo/gentoo:master commit in: net-wireless/bdaddr/
@ 2024-02-18 16:23 Florian Schmaus
0 siblings, 0 replies; 3+ messages in thread
From: Florian Schmaus @ 2024-02-18 16:23 UTC (permalink / raw
To: gentoo-commits
commit: 665e49fcbf6df283b22c918fdfd42e8a33fcb184
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 16:22:50 2024 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 16:22:50 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=665e49fc
net-wireless/bdaddr: new package, add 0_p20210511
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
net-wireless/bdaddr/Manifest | 2 +
net-wireless/bdaddr/bdaddr-0_p20210511.ebuild | 56 +++++++++++++++++++++++++++
net-wireless/bdaddr/metadata.xml | 11 ++++++
3 files changed, 69 insertions(+)
diff --git a/net-wireless/bdaddr/Manifest b/net-wireless/bdaddr/Manifest
new file mode 100644
index 000000000000..bd6ae2aeadc2
--- /dev/null
+++ b/net-wireless/bdaddr/Manifest
@@ -0,0 +1,2 @@
+DIST bdaddr-0_p20210511-idiomatic-makefile.patch 840 BLAKE2B d0be6e61728313517816db440ebb54bbece61f98ffa8d0cf28f23fcc0d3538baec77392b634be74a5ea4d9f72342ebeec99c0c226c52d7f9f8fee983f63b2c21 SHA512 4b67caa9afeeca31e3b3c5c8a61186769f94c7edd34694d9546d8242bc2762f98c7709cf2f1453b68b913e498c8f45003b9ccce7bc1ee8904e585c43c5db2ae9
+DIST bdaddr-0_p20210511.tar.gz 5236 BLAKE2B a445586cc016f57f1922d6cff9dcf3141d35122a0dd4a3c338cc98515dadcf40265c3f4dcb2da03d3cd4214ab3d57172d78677afe9099d380e1241677d13b486 SHA512 956e1207c4b082d6322ab0ce9cdc76c9c2c9f17fe4ecb3d03b4839025b49f102a4e35b05e2489eca3fee6fc4a611d942e598c97cab7db6b530e895818e33a150
diff --git a/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild b/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild
new file mode 100644
index 000000000000..4b3ac829697a
--- /dev/null
+++ b/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Utility for changing the Bluetooth device address"
+HOMEPAGE="https://github.com/thxomas/bdaddr"
+
+if [[ ${PV} == "9999" ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/thxomas/bdaddr"
+else
+ MY_COMMIT=53dae3f6a33bca202ddae0e7b14beeaf2d7d653b
+ SRC_URI="
+ https://github.com/thxomas/bdaddr/archive/${MY_COMMIT}.tar.gz
+ -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64"
+ S="${WORKDIR}/${PN}-${MY_COMMIT}"
+fi
+
+# https://github.com/thxomas/bdaddr/pull/6
+SRC_URI+="
+ https://github.com/Flowdalic/bdaddr/commit/e5cf5666e00828a3769fcda4717b0ee6f277001d.patch
+ -> ${PN}-0_p20210511-idiomatic-makefile.patch
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+COMMON_DEPEND="
+ net-wireless/bluez:=
+"
+RDEPEND="
+ ${COMMON_DEPEND}
+ sys-apps/hwdata
+"
+DEPEND="
+ ${COMMON_DEPEND}
+"
+BDEPEND="dev-go/go-md2man"
+
+PATCHES=(
+ "${DISTDIR}"/${PN}-0_p20210511-idiomatic-makefile.patch
+)
+
+src_compile() {
+ emake
+
+ go-md2man -in README.md -out ${PN}.1 || die
+}
+
+src_install() {
+ dobin ${PN}
+ doman ${PN}.1
+ dosym ../hwdata/oui.txt usr/share/misc/oui.txt
+}
diff --git a/net-wireless/bdaddr/metadata.xml b/net-wireless/bdaddr/metadata.xml
new file mode 100644
index 000000000000..b25bbf170df9
--- /dev/null
+++ b/net-wireless/bdaddr/metadata.xml
@@ -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">
+ <name>Florian Schmaus</name>
+ <email>flow@gentoo.org</email>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">thxomas/bdaddr</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/bdaddr/
@ 2024-02-18 17:58 Florian Schmaus
0 siblings, 0 replies; 3+ messages in thread
From: Florian Schmaus @ 2024-02-18 17:58 UTC (permalink / raw
To: gentoo-commits
commit: e67eda102b3f001d33c3889fee83541533a72b50
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 17:57:17 2024 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 17:58:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e67eda10
net-wireless/bdaddr: fix direct cc call
Closes: https://bugs.gentoo.org/924938
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
net-wireless/bdaddr/Manifest | 2 +-
net-wireless/bdaddr/bdaddr-0_p20210511.ebuild | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-wireless/bdaddr/Manifest b/net-wireless/bdaddr/Manifest
index bd6ae2aeadc2..180301cd51cb 100644
--- a/net-wireless/bdaddr/Manifest
+++ b/net-wireless/bdaddr/Manifest
@@ -1,2 +1,2 @@
-DIST bdaddr-0_p20210511-idiomatic-makefile.patch 840 BLAKE2B d0be6e61728313517816db440ebb54bbece61f98ffa8d0cf28f23fcc0d3538baec77392b634be74a5ea4d9f72342ebeec99c0c226c52d7f9f8fee983f63b2c21 SHA512 4b67caa9afeeca31e3b3c5c8a61186769f94c7edd34694d9546d8242bc2762f98c7709cf2f1453b68b913e498c8f45003b9ccce7bc1ee8904e585c43c5db2ae9
+DIST bdaddr-0_p20210511-idiomatic-makefile-r1.patch 883 BLAKE2B 805f5faf7bc1260f7f415eb92d02e0269ec6b753e31106f81970c28e1692226ce2f6fb08eb05438b190a321a6789fe600fd9ae6006a1fb54d92a96f55a6db80c SHA512 1938644c359c061966e1278bf97cd622cfa9c74eac7e5c0373df1ce0bc6b36a3034e47bb95601d31d28ec2a0627e0e2b3bb2174d1613368fbf2f2eb0ec237043
DIST bdaddr-0_p20210511.tar.gz 5236 BLAKE2B a445586cc016f57f1922d6cff9dcf3141d35122a0dd4a3c338cc98515dadcf40265c3f4dcb2da03d3cd4214ab3d57172d78677afe9099d380e1241677d13b486 SHA512 956e1207c4b082d6322ab0ce9cdc76c9c2c9f17fe4ecb3d03b4839025b49f102a4e35b05e2489eca3fee6fc4a611d942e598c97cab7db6b530e895818e33a150
diff --git a/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild b/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild
index 4b3ac829697a..8686e8e58f20 100644
--- a/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild
+++ b/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild
@@ -20,8 +20,8 @@ fi
# https://github.com/thxomas/bdaddr/pull/6
SRC_URI+="
- https://github.com/Flowdalic/bdaddr/commit/e5cf5666e00828a3769fcda4717b0ee6f277001d.patch
- -> ${PN}-0_p20210511-idiomatic-makefile.patch
+ https://github.com/Flowdalic/bdaddr/commit/85eeb2a13ab664432ce357cdb0641163fc541a99.patch
+ -> ${PN}-0_p20210511-idiomatic-makefile-r1.patch
"
LICENSE="GPL-2+"
@@ -40,7 +40,7 @@ DEPEND="
BDEPEND="dev-go/go-md2man"
PATCHES=(
- "${DISTDIR}"/${PN}-0_p20210511-idiomatic-makefile.patch
+ "${DISTDIR}"/${PN}-0_p20210511-idiomatic-makefile-r1.patch
)
src_compile() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/bdaddr/
@ 2024-06-22 17:38 Florian Schmaus
0 siblings, 0 replies; 3+ messages in thread
From: Florian Schmaus @ 2024-06-22 17:38 UTC (permalink / raw
To: gentoo-commits
commit: a76d4ae1a86943403e9bd636d5fdf0a1fa1f2ec6
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 22 17:37:18 2024 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sat Jun 22 17:37:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a76d4ae1
net-wireless/bdaddr: stabilize 0_p20210511 for amd64
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
net-wireless/bdaddr/bdaddr-0_p20210511.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild b/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild
index 8686e8e58f20..b1c2edecc39d 100644
--- a/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild
+++ b/net-wireless/bdaddr/bdaddr-0_p20210511.ebuild
@@ -14,7 +14,7 @@ else
SRC_URI="
https://github.com/thxomas/bdaddr/archive/${MY_COMMIT}.tar.gz
-> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64"
+ KEYWORDS="amd64 ~arm64"
S="${WORKDIR}/${PN}-${MY_COMMIT}"
fi
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-06-22 17:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-18 16:23 [gentoo-commits] repo/gentoo:master commit in: net-wireless/bdaddr/ Florian Schmaus
-- strict thread matches above, loose matches on Subject: below --
2024-02-18 17:58 Florian Schmaus
2024-06-22 17:38 Florian Schmaus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox