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: Thu, 28 Apr 2022 15:31:44
Message-Id: 1651159866.7199cc15642df1e20e2d7c44435ec44f09bf1f6b.mattst88@gentoo
1 commit: 7199cc15642df1e20e2d7c44435ec44f09bf1f6b
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 28 15:27:04 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 28 15:31:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7199cc15
7
8 net-libs/libmbim: Version bump to 1.26.4
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 net-libs/libmbim/Manifest | 1 +
13 net-libs/libmbim/libmbim-1.26.4.ebuild | 35 ++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/net-libs/libmbim/Manifest b/net-libs/libmbim/Manifest
17 index 0e85558248d8..cfef3e37f43c 100644
18 --- a/net-libs/libmbim/Manifest
19 +++ b/net-libs/libmbim/Manifest
20 @@ -1 +1,2 @@
21 DIST libmbim-1.26.2.tar.xz 561096 BLAKE2B 11e5339b63dbaca8fb6d31ce2afaf4897774aa4b531cfbb09bb400f64ab975495093b711d0a836feff86e3d9fc72ae2b85ab5cd84fab3d266e0fecf1129125d0 SHA512 7cce1fa6ff5630a1cc565a2198544de9f4a1db20b30304fac96de6c698eaf56b17fe6ccb089151623d4484d88fda6abe980bced19dfbf0d3ef425fc954fb5844
22 +DIST libmbim-1.26.4.tar.xz 566188 BLAKE2B 96fb932e89455364eec39d879256eb10efd4fafc18c0dc69619b3a73cea1e62e3ea50b828c2785082e6422c39d8775c9bc1c084db3aaafdf054b1e7aa7d6929f SHA512 a530a3611aa353d7b7a4a3d845a8a8b08e508004f44e9bc63a4c04729589397e264a5dca499ebb7c57f135e6848909d78124c4799bd932c24271c57824c3b5d8
23
24 diff --git a/net-libs/libmbim/libmbim-1.26.4.ebuild b/net-libs/libmbim/libmbim-1.26.4.ebuild
25 new file mode 100644
26 index 000000000000..81724693c402
27 --- /dev/null
28 +++ b/net-libs/libmbim/libmbim-1.26.4.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit python-any-r1
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 ~riscv ~x86"
45 +
46 +RDEPEND=">=dev-libs/glib-2.56:2"
47 +DEPEND="${RDEPEND}"
48 +BDEPEND="
49 + ${PYTHON_DEPS}
50 + dev-util/glib-utils
51 + virtual/pkgconfig
52 +"
53 +
54 +src_configure() {
55 + econf \
56 + --disable-Werror \
57 + --disable-static \
58 + --disable-gtk-doc
59 +}
60 +
61 +src_install() {
62 + default
63 + find "${ED}" -name '*.la' -delete || die
64 +}