From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D66D7139360 for ; Wed, 4 Aug 2021 21:57:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9A83E0953; Wed, 4 Aug 2021 21:57:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B497E0953 for ; Wed, 4 Aug 2021 21:57:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FD75340931 for ; Wed, 4 Aug 2021 21:57:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A9AC7BD for ; Wed, 4 Aug 2021 21:57:11 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1628114225.bbe02103aff1b90bb70fdadc7327de54b2fb6972.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmbim/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmbim/Manifest net-libs/libmbim/libmbim-1.26.0.ebuild X-VCS-Directories: net-libs/libmbim/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: bbe02103aff1b90bb70fdadc7327de54b2fb6972 X-VCS-Branch: master Date: Wed, 4 Aug 2021 21:57:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 853cc7a7-04e0-48ae-a702-ebaf35658fbd X-Archives-Hash: bd034f8e81077248cef63c71d51730e6 commit: bbe02103aff1b90bb70fdadc7327de54b2fb6972 Author: Matt Turner gentoo org> AuthorDate: Wed Aug 4 21:54:24 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Aug 4 21:57:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbe02103 net-libs/libmbim: Version bump to 1.26.0 Signed-off-by: Matt Turner gentoo.org> net-libs/libmbim/Manifest | 1 + net-libs/libmbim/libmbim-1.26.0.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/net-libs/libmbim/Manifest b/net-libs/libmbim/Manifest index 3dad220347f..9fca404f8e1 100644 --- a/net-libs/libmbim/Manifest +++ b/net-libs/libmbim/Manifest @@ -1 +1,2 @@ DIST libmbim-1.24.8.tar.xz 517872 BLAKE2B ba4d44ea18ecb412d046b1c1cbd1167bd1cf0a1430486dbf760731950b088e66b25c5c870f2e1a49ea78e43bc15fdbac9efed56afa35127d33f6377325677386 SHA512 32a1ed379fb2799c8490058a16f819620290c2a08d0dacacdc7db4a31fb66a4d9c449b4b2d8fd6de898da28815a6c32e3d97a802970115ac2869e7fec0d841af +DIST libmbim-1.26.0.tar.xz 554672 BLAKE2B b020ea81d6f06bad4c655b285423075873ea01ad253c8eb79fe6e0ce8511d6a8c684c4d8541a64dcc23b46211de117f867d5b405f08942e904156304ce746779 SHA512 b987b3271166eabda7d6767b4b3cd8f34b07ea6a43d5ed1d7cf083561b0e57affeec175a155e5bf8b998dd60f49a303cf54ad6eda146df7483cabe099c401c27 diff --git a/net-libs/libmbim/libmbim-1.26.0.ebuild b/net-libs/libmbim/libmbim-1.26.0.ebuild new file mode 100644 index 00000000000..a4e84e6f1bb --- /dev/null +++ b/net-libs/libmbim/libmbim-1.26.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Mobile Broadband Interface Model (MBIM) modem protocol helper library" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/libmbim/ https://gitlab.freedesktop.org/mobile-broadband/libmbim" +SRC_URI="https://www.freedesktop.org/software/libmbim/${P}.tar.xz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86" + +RDEPEND=">=dev-libs/glib-2.56:2" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + virtual/pkgconfig +" + +src_configure() { + econf \ + --disable-Werror \ + --disable-static \ + --disable-gtk-doc +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +}