From: "Yixun Lan" <dlan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ofono/
Date: Thu, 21 Aug 2025 23:51:45 +0000 (UTC) [thread overview]
Message-ID: <1755820278.3a821f90740bd959ea59f2ba869aa90b14be81c1.dlan@gentoo> (raw)
commit: 3a821f90740bd959ea59f2ba869aa90b14be81c1
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 21 23:38:41 2025 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Aug 21 23:51:18 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a821f90
net-misc/ofono: add 2.18
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
net-misc/ofono/Manifest | 1 +
net-misc/ofono/metadata.xml | 1 +
net-misc/ofono/ofono-2.18.ebuild | 65 ++++++++++++++++++++++++++++++++++++++++
3 files changed, 67 insertions(+)
diff --git a/net-misc/ofono/Manifest b/net-misc/ofono/Manifest
index 97555b8701b7..14b907a650f0 100644
--- a/net-misc/ofono/Manifest
+++ b/net-misc/ofono/Manifest
@@ -1,3 +1,4 @@
DIST ofono-2.1.tar.xz 1097624 BLAKE2B 574293a73061470eec322df7fa62d581e8e8d2c5b81e896bff52173a986733f448686186bc0400ccf256fb931e26a1fef6a664dafa8f64935f936c9347e4a054 SHA512 7227939c488c2a62f640d5a8279e0698935aa1df5a2a349e195df9a8d9d9123c73a7f1177aae022b4c805d266c24a9770784193100adffa45f6c36a3ed847bb1
DIST ofono-2.14.tar.xz 1311452 BLAKE2B 96f3875d9a2f515f14b5b6b6b5576e38338fd4a4912c5c7ea2c9ab8ed0e2791e4d22b591f5eb3ed9ccc1cd133174cbc3787b7d57e9bd6161fd03ad1a1e3f17f2 SHA512 77466c9155753130465748660df66473ca13afee59441a27f3d7dde653e632fb142af294aa2272ea14ce9d4845b68b5e2d4a58a9534555819c92fe161b4ff893
+DIST ofono-2.18.tar.xz 1323512 BLAKE2B 1641771cc9b1154e126a5801c95f3e7ffd2e9340718a4c3df9ca678b0b29fd3c48fa8c90190374ccac5ed87b805bce707c1dd7f9f3776e5a9c8fc9e39a23e966 SHA512 83149007804f7d62fe66efd8cbc550f5fd2b7412fe3ced1098ea26f016a4f1b39925c531419c64b3d9a408be887ccf3027b58912809e8c5382a3461daf66ed05
DIST ofono-2.9.tar.xz 1302044 BLAKE2B d468c179ead13ab75b5e9872c671bea3c5f7cd59242516ba432c323aefc423ea18fd401a236a7abacf0ff0f2c74c8921828496b8a74269a1dc246f893c89036b SHA512 181f4aad276ea5c5888c6b89187e27b65d42f002d1dd72091f377033bda82bada17364c49773d4a1fd62ea7940d27d7f796da561595b606abbf4b4ec220ae031
diff --git a/net-misc/ofono/metadata.xml b/net-misc/ofono/metadata.xml
index 754b95c8b11c..7213fceb02e0 100644
--- a/net-misc/ofono/metadata.xml
+++ b/net-misc/ofono/metadata.xml
@@ -15,6 +15,7 @@
<flag name="phonesim">Enable phone Simulator support</flag>
<flag name="provision">Enable GPRS provisioning support</flag>
<flag name="qmimodem">Enable Qualcomm QMI modem support</flag>
+ <flag name="system-ell">Use the system-wide <pkg>dev-libs/ell</pkg></flag>
<flag name="tools">Enable testing tools</flag>
</use>
</pkgmetadata>
diff --git a/net-misc/ofono/ofono-2.18.ebuild b/net-misc/ofono/ofono-2.18.ebuild
new file mode 100644
index 000000000000..83146ae8e765
--- /dev/null
+++ b/net-misc/ofono/ofono-2.18.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+DESCRIPTION="Open Source mobile telephony (GSM/UMTS) daemon"
+HOMEPAGE="https://git.kernel.org/pub/scm/network/ofono/ofono.git"
+SRC_URI="https://mirrors.edge.kernel.org/pub/linux/network/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="+atmodem bluetooth +datafiles doc dundee examples +isimodem +phonesim +qmimodem system-ell tools +udev upower"
+
+REQUIRED_USE="dundee? ( bluetooth )"
+
+RDEPEND=">=sys-apps/dbus-1.6
+ >=dev-libs/glib-2.68
+ system-ell? ( >=dev-libs/ell-0.79 )
+ net-misc/mobile-broadband-provider-info
+ bluetooth? ( >=net-wireless/bluez-4.99 )
+ udev? ( virtual/udev )
+ examples? ( dev-python/dbus-python )
+ tools? ( virtual/libusb:1 )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( ChangeLog AUTHORS )
+
+src_configure() {
+ econf \
+ $(use_enable udev) \
+ $(use_enable isimodem) \
+ $(use_enable atmodem) \
+ $(use_enable datafiles) \
+ $(use_enable dundee) \
+ $(use_enable bluetooth) \
+ $(use_enable phonesim) \
+ $(use_enable qmimodem) \
+ $(use_enable tools) \
+ $(use_enable examples test) \
+ $(use_enable upower) \
+ $(use_enable system-ell external-ell) \
+ --disable-maintainer-mode \
+ --disable-rilmodem \
+ --localstatedir=/var \
+ --with-systemdunitdir="$(systemd_get_systemunitdir)"
+}
+
+src_install() {
+ default
+
+ if use tools ; then
+ dobin tools/auto-enable \
+ tools/huawei-audio \
+ tools/lookup-apn \
+ tools/get-location \
+ tools/tty-redirector
+ fi
+
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ use doc && dodoc doc/*.txt
+}
next reply other threads:[~2025-08-21 23:51 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-21 23:51 Yixun Lan [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-08-21 23:51 [gentoo-commits] repo/gentoo:master commit in: net-misc/ofono/ Yixun Lan
2025-07-20 5:04 Sam James
2025-07-20 5:04 Sam James
2025-07-20 5:04 Sam James
2025-07-20 5:04 Sam James
2025-07-20 5:04 Sam James
2025-07-20 1:35 Yixun Lan
2025-01-10 2:52 Yixun Lan
2025-01-10 2:52 Yixun Lan
2024-07-11 12:40 Yixun Lan
2024-07-11 10:05 Yixun Lan
2024-01-31 9:33 Yixun Lan
2024-01-31 9:31 Yixun Lan
2024-01-31 0:39 Yixun Lan
2024-01-30 15:19 Sam James
2024-01-30 15:19 Sam James
2024-01-30 15:19 Sam James
2024-01-30 15:01 Sam James
2024-01-30 15:01 Sam James
2024-01-30 15:01 Sam James
2024-01-30 12:53 Yixun Lan
2024-01-30 12:53 Yixun Lan
2023-08-28 3:18 Yixun Lan
2023-08-01 16:14 Sam James
2023-01-20 12:21 Yixun Lan
2022-05-19 5:08 WANG Xuerui
2022-03-29 12:54 Yixun Lan
2022-03-29 12:54 Yixun Lan
2022-02-04 7:23 Agostino Sarubbo
2022-02-04 7:22 Agostino Sarubbo
2022-02-03 6:03 Sam James
2022-02-02 9:47 Sam James
2022-02-02 9:47 Sam James
2022-02-02 9:47 Sam James
2022-02-02 1:19 Yixun Lan
2021-09-24 2:57 Yixun Lan
2021-08-30 23:29 Marek Szuba
2020-12-23 22:57 Sam James
2020-12-21 9:36 Sergei Trofimovich
2020-12-02 23:37 Sam James
2020-12-02 14:57 Sam James
2020-11-29 8:25 Agostino Sarubbo
2020-11-29 8:22 Agostino Sarubbo
2020-11-29 8:20 Agostino Sarubbo
2020-11-29 8:16 Agostino Sarubbo
2020-11-27 16:49 Thomas Deutschmann
2019-11-16 10:45 Yixun Lan
2019-11-16 10:42 Yixun Lan
2019-10-21 1:39 Yixun Lan
2019-05-15 4:48 Aaron Bauman
2019-04-25 3:10 Yixun Lan
2019-04-25 3:10 Yixun Lan
2019-02-13 8:07 Yixun Lan
2018-08-13 4:16 Yixun Lan
2018-04-20 14:06 Yixun Lan
2018-04-20 14:06 Yixun Lan
2018-04-20 14:06 Yixun Lan
2017-06-20 12:12 Alexis Ballier
2017-06-05 9:54 Yixun Lan
2016-11-01 2:50 Yixun Lan
2016-05-27 7:17 Yixun Lan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1755820278.3a821f90740bd959ea59f2ba869aa90b14be81c1.dlan@gentoo \
--to=dlan@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox