From: "Yixun Lan" <dlan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ofono/
Date: Mon, 13 Aug 2018 04:16:47 +0000 (UTC) [thread overview]
Message-ID: <1534133708.1590e8ef7245a89d088cdf16d5cf99dda22be124.dlan@gentoo> (raw)
commit: 1590e8ef7245a89d088cdf16d5cf99dda22be124
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 13 04:15:08 2018 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Aug 13 04:15:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1590e8ef
net-misc/ofono: version bump 1.24
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-misc/ofono/Manifest | 1 +
net-misc/ofono/ofono-1.24.ebuild | 67 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/net-misc/ofono/Manifest b/net-misc/ofono/Manifest
index 7545ab02bfe..0107e32033e 100644
--- a/net-misc/ofono/Manifest
+++ b/net-misc/ofono/Manifest
@@ -1,3 +1,4 @@
DIST ofono-1.16.tar.xz 854296 BLAKE2B 4ee8f895e21903b8181fe14f5a91fea466eb3a2f66c8a5ab270a8dd81c601dc5e2a1beae368cf0f14b556f0dfb8301439d40d93bfd1d058d43ce864cdd1f0788 SHA512 21887e1bc3b8af18881f9456f950b97885b567164e28ebe2ab6fc5a3042c439891a20b5034a8fa0c7a78567286ac53c1b8a72122f428fbcf5da8bf139423b913
DIST ofono-1.20.tar.xz 935448 BLAKE2B 751f6c340cf95dd4ab6f3d17f81a967406b3f6cc4d6024435aba1e663a220a47d14f04d62b765205bf04f11a9b5b0075501dbbaaa22f9380ffb0ef3a78fce5ec SHA512 8dc86654ae8a1dc1761c95df5f0de55566db20012e523f11bcd5ab5e1540f4cd9fc7bd6bf1665dcbeb31f2925f9322c21fd05fb00034e408b5d85b265e2fe840
DIST ofono-1.23.tar.xz 978472 BLAKE2B 0bd0b7921df075f0ea35d61d4ea852dad0bc752802263f8525e697f3b23e555488116918fed8f143c95ae6fc919515cbb06d0644f7119225076d1fe7c5be1f52 SHA512 103dc28f9a6c583804884bdb891424eb53323b5edf764edd6c64e0b6c76ee6ea063c6a1d1d36a35d4ae6740e00479e2fc0abc6fca1dc92b916e166d48a1642fd
+DIST ofono-1.24.tar.xz 980644 BLAKE2B 74974ab104cc31a67ec04c62149e282de5295573e1b236b39da8005721c8277a0636fd290aaa3c6380eb117364d2098af856f22ce9f6d41af599c5bf78bf98b1 SHA512 d3148df4bcac60c0f12bc4665e170e92d35473a7ff9fc516bd6a3c35c3e9b6f9beadc624ac9bbdfb9de2876e4ab417d857bd52b27a634f433f3607a7e11381c3
diff --git a/net-misc/ofono/ofono-1.24.ebuild b/net-misc/ofono/ofono-1.24.ebuild
new file mode 100644
index 00000000000..2978ac9372e
--- /dev/null
+++ b/net-misc/ofono/ofono-1.24.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils multilib systemd
+
+DESCRIPTION="Open Source mobile telephony (GSM/UMTS) daemon"
+HOMEPAGE="https://01.org/ofono"
+SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+atmodem bluetooth +cdmamodem +datafiles doc dundee examples +isimodem +phonesim +provision +qmimodem threads tools +udev upower"
+
+REQUIRED_USE="dundee? ( bluetooth )"
+
+RDEPEND=">=sys-apps/dbus-1.4
+ >=dev-libs/glib-2.32
+ 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}
+ virtual/pkgconfig"
+
+DOCS=( ChangeLog AUTHORS )
+
+src_configure() {
+ econf \
+ $(use_enable threads) \
+ $(use_enable udev) \
+ $(use_enable isimodem) \
+ $(use_enable atmodem) \
+ $(use_enable cdmamodem) \
+ $(use_enable datafiles) \
+ $(use_enable dundee) \
+ $(use_enable bluetooth) \
+ $(use_enable phonesim) \
+ $(use_enable provision) \
+ $(use_enable qmimodem) \
+ $(use_enable tools) \
+ $(use_enable examples test) \
+ $(use_enable upower) \
+ --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-provider-name \
+ tools/lookup-apn \
+ tools/get-location \
+ tools/tty-redirector
+ fi
+
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ use doc && dodoc doc/*.txt
+}
next reply other threads:[~2018-08-13 4:16 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-13 4:16 Yixun Lan [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-10 2:52 [gentoo-commits] repo/gentoo:master commit in: net-misc/ofono/ 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-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=1534133708.1590e8ef7245a89d088cdf16d5cf99dda22be124.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