Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmbim/
Date: Tue, 30 Mar 2021 03:19:59
Message-Id: 1617074361.af1646a0d23757821a4ecb469e60816ead7e6f43.mattst88@gentoo
1 commit: af1646a0d23757821a4ecb469e60816ead7e6f43
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 30 01:08:29 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 30 03:19:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af1646a0
7
8 net-libs/libmbim: Version bump to 1.24.6
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 net-libs/libmbim/Manifest | 1 +
13 net-libs/libmbim/libmbim-1.24.6.ebuild | 37 ++++++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/net-libs/libmbim/Manifest b/net-libs/libmbim/Manifest
17 index 30ddc790f93..105fed46eb4 100644
18 --- a/net-libs/libmbim/Manifest
19 +++ b/net-libs/libmbim/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libmbim-1.18.0.tar.xz 474768 BLAKE2B 3dce8e1fa0e57cdf75174d0145006b38213fcd2de9166589f2d3ddd7a17dae3b308ce7a7338d388543c8ba83b6a9d2bf12051cbde1666fc43580314d9906704b SHA512 510af324563a6a4f9a9d656d6724398cf5c5ba07424962d5407dd05867ef36da40e1ee6c8be8040c6a67e764bc059d24282db45ce3d47075fcf4d7416245b28d
22 DIST libmbim-1.24.4.tar.xz 512524 BLAKE2B 4f91d1fd4d993b3e28f7508f4fbc3d6f4467db1c27307a3c4bd006ad9cdb40800513641fabf37deb673f5926d7a0f0d4806e3bd62a3ad8825227631d35c67d5b SHA512 bb0b82c64213e5b382a807c5c4c36751138c343419dc6abf1605573c91620af1a6de45587eab7341265f950548924fa65fa4bfedba0659b2f9eb80fa23ae88bc
23 +DIST libmbim-1.24.6.tar.xz 511468 BLAKE2B 89c4fa25573d4e58ec993e4fa24e0ff3ab6146c905fd3110240d2dbd3ba20af8c135e5eb552b2c48b1166444e52023e314d70d4fe5904ede5e2c6d3d05724955 SHA512 b0b15aa5ffdc65e9d7af211df771f85021488258f7c50638ad109173a61ef38872b9ab42005cd972fd3cb24e617bd3fe7b0b79d335e2144558daa218fb2c4653
24
25 diff --git a/net-libs/libmbim/libmbim-1.24.6.ebuild b/net-libs/libmbim/libmbim-1.24.6.ebuild
26 new file mode 100644
27 index 00000000000..6aa324455bc
28 --- /dev/null
29 +++ b/net-libs/libmbim/libmbim-1.24.6.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit multilib
37 +
38 +DESCRIPTION="Mobile Broadband Interface Model (MBIM) modem protocol helper library"
39 +HOMEPAGE="https://www.freedesktop.org/wiki/Software/libmbim/ https://gitlab.freedesktop.org/mobile-broadband/libmbim"
40 +SRC_URI="https://www.freedesktop.org/software/libmbim/${P}.tar.xz"
41 +
42 +LICENSE="LGPL-2"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
45 +IUSE="udev"
46 +
47 +RDEPEND=">=dev-libs/glib-2.48:2
48 + udev? ( dev-libs/libgudev:= )"
49 +DEPEND="${RDEPEND}"
50 +BDEPEND="
51 + dev-util/glib-utils
52 + dev-util/gtk-doc-am
53 + virtual/pkgconfig
54 +"
55 +
56 +src_configure() {
57 + econf \
58 + --disable-Werror \
59 + --disable-static \
60 + --disable-gtk-doc \
61 + $(use_with udev)
62 +}
63 +
64 +src_install() {
65 + default
66 + find "${ED}" -name '*.la' -delete || die
67 +}