diff options
author | Yixun Lan <dlan@gentoo.org> | 2024-01-31 09:32:45 +0000 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2024-01-31 09:32:45 +0000 |
commit | a66f97b855cc28d9f0f6e9640beb3a7399e5609e (patch) | |
tree | 55fb50b95048cb283ab1898596de88cfee5984ba /net-misc/ofono | |
parent | net-misc/ofono: Stabilize 2.1 arm64, #923338 (diff) | |
download | gentoo-a66f97b855cc28d9f0f6e9640beb3a7399e5609e.tar.gz gentoo-a66f97b855cc28d9f0f6e9640beb3a7399e5609e.tar.bz2 gentoo-a66f97b855cc28d9f0f6e9640beb3a7399e5609e.zip |
net-misc/ofono: drop 1.33
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'net-misc/ofono')
-rw-r--r-- | net-misc/ofono/Manifest | 1 | ||||
-rw-r--r-- | net-misc/ofono/ofono-1.33.ebuild | 66 |
2 files changed, 0 insertions, 67 deletions
diff --git a/net-misc/ofono/Manifest b/net-misc/ofono/Manifest index 383d43806414..18448a795f89 100644 --- a/net-misc/ofono/Manifest +++ b/net-misc/ofono/Manifest @@ -1,3 +1,2 @@ -DIST ofono-1.33.tar.xz 1060408 BLAKE2B 646a96c0926ea032fef0357aabe6a4be6da88f4ccbdff59bb86b5de73a9b469362151b212a05234619f5d616b534343137c66e923782c7d50dfe13d2bf66558c SHA512 8d88226aa2b43eca840c6330045ee7a96c91f6003b06fca5ea55b74fc229f0e0ba0c8d98f7945f8c23ec5a8e7057bffef6335c61842e245686e0ed7c5feda589 DIST ofono-2.1.tar.xz 1097624 BLAKE2B 574293a73061470eec322df7fa62d581e8e8d2c5b81e896bff52173a986733f448686186bc0400ccf256fb931e26a1fef6a664dafa8f64935f936c9347e4a054 SHA512 7227939c488c2a62f640d5a8279e0698935aa1df5a2a349e195df9a8d9d9123c73a7f1177aae022b4c805d266c24a9770784193100adffa45f6c36a3ed847bb1 DIST ofono-2.3.tar.xz 1216872 BLAKE2B e32ea09dbc8f0aa2ca3f322ffc34d9f9d06d862792b05a0f96ddba4ebe4038199ab40a4065582d68a35d2a5725646626bc36c8f9e83d89a42be8d76271144751 SHA512 0c53c2c441d28f89140192fe808769b3b27ef1ebf75e9ee9f9bfa53d0d102a47d11fcb364077ca88cdc598e8368924f477024b44a2adf795efe40b52ffe92dce diff --git a/net-misc/ofono/ofono-1.33.ebuild b/net-misc/ofono/ofono-1.33.ebuild deleted file mode 100644 index baad2dd7743f..000000000000 --- a/net-misc/ofono/ofono-1.33.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit systemd - -DESCRIPTION="Open Source mobile telephony (GSM/UMTS) daemon" -HOMEPAGE="https://git.kernel.org/pub/scm/network/ofono/ofono.git" -SRC_URI="https://www.kernel.org/pub/linux/network/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86" -IUSE="+atmodem bluetooth +cdmamodem +datafiles doc dundee examples +isimodem +phonesim +provision +qmimodem tools +udev upower" - -REQUIRED_USE="dundee? ( bluetooth )" - -RDEPEND=">=sys-apps/dbus-1.6 - >=dev-libs/glib-2.68 - 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 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 -} |