public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-06-24 15:33 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2022-06-24 15:33 UTC (permalink / raw
  To: gentoo-commits

commit:     01f5b4d1a1402c67ce73fed31e0746f6a0cae992
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 15:04:27 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 15:33:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f5b4d1

net-libs/libqmi: Version bump to 1.30.8

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.30.8.ebuild | 51 ++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index ac92804a733c..711f235e6a0e 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1 +1,2 @@
 DIST libqmi-1.30.6.tar.xz 1242612 BLAKE2B 318af914b595f0442f7929be53c128dcd111e12913814bb52e683fff814b7aa00a32d40f8eae367db469a7adef6c146fb692d5908951cec4337f21e9a266a400 SHA512 6dc9819bb45063ea827b989e99e8e889db0ce6ebec62586003ea385bd54bd76f3e79d63e3f2b57e19da5f42ed87d7aa11aa024a805ec86a6b203981eb7922a76
+DIST libqmi-1.30.8.tar.xz 1244844 BLAKE2B c8d98106783eb22571ee82c0012e1ce7ed79e94818350134b80853e16fa287c77bafb34d2913690ae593d02112dc5d2b0ff77606a24c4ce63733fd64245961a1 SHA512 60567e82eb35ed7ab3d65f1073e19ca8faa68e909f96e498b8f9d8ce2a987156e0a580f9c212416c4e0740d2ad05cb93f4dfeae9b2d048f0eb53ab6a83f6d024

diff --git a/net-libs/libqmi/libqmi-1.30.8.ebuild b/net-libs/libqmi/libqmi-1.30.8.ebuild
new file mode 100644
index 000000000000..56d9060d775c
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.30.8.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
+	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
+
+LICENSE="LGPL-2"
+SLOT="0/5.8"	# soname of libqmi-glib.so
+IUSE="gtk-doc +mbim +qrtr"
+
+RDEPEND=">=dev-libs/glib-2.56
+	>=dev-libs/libgudev-232
+	mbim? ( >=net-libs/libmbim-1.18.0 )
+	qrtr? ( >=net-libs/libqrtr-glib-1.0.0:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	gtk-doc? ( dev-util/gtk-doc )"
+[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ ${PV} == "9999" ]] && eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		--disable-Werror
+		--disable-static
+		$(use_enable qrtr)
+		$(use_enable mbim mbim-qmux)
+		$(use_enable gtk-doc)
+	)
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2024-10-09  8:23 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2024-10-09  8:23 UTC (permalink / raw
  To: gentoo-commits

commit:     7f004736df522df022d1e38800b8f3e22a7909a9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  9 08:18:44 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  9 08:18:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f004736

net-libs/libqmi: make introspection optional again, style tweaks

* Make introspection optional again as unconditionally depending on it
  is problematic for embedded use as it drags in Python as well.

  This was the case before the Meson port in d26c72d36cfa28a035d89a9efdf7182e6351544c.

* Style tweaks (just variable order bits which are IMO unobjectionable).

Bug: https://bugs.gentoo.org/936949
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../{libqmi-9999.ebuild => libqmi-1.32.4-r1.ebuild}      | 16 +++++++---------
 net-libs/libqmi/libqmi-9999.ebuild                       | 16 +++++++---------
 2 files changed, 14 insertions(+), 18 deletions(-)

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-1.32.4-r1.ebuild
similarity index 81%
copy from net-libs/libqmi/libqmi-9999.ebuild
copy to net-libs/libqmi/libqmi-1.32.4-r1.ebuild
index 5336e7de9c06..68b118b34834 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-1.32.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -7,8 +7,8 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
 	SRC_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/${PV}/${P}.tar.bz2"
+	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 inherit bash-completion-r1 meson udev
@@ -17,17 +17,15 @@ DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol
 HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
 
 LICENSE="LGPL-2"
-IUSE="gtk-doc +mbim +qrtr"
-
-SLOT="0/5.9"	# soname of libqmi-glib.so
+SLOT="0/5.9" # soname of libqmi-glib.so
+IUSE="gtk-doc introspection +mbim +qrtr"
 
 RDEPEND="
 	>=dev-libs/glib-2.56
 	>=dev-libs/libgudev-232
+	introspection? ( dev-libs/gobject-introspection:= )
 	mbim? ( >=net-libs/libmbim-1.18.0 )
 	qrtr? ( >=net-libs/libqrtr-glib-1.0.0:= )
-
-	dev-libs/gobject-introspection:=
 "
 DEPEND="${RDEPEND}"
 BDEPEND="
@@ -37,7 +35,6 @@ BDEPEND="
 "
 
 src_configure() {
-	# Let's avoid BuildRequiring bash-completion, install it manually
 	local emesonargs=(
 		$(meson_use mbim mbim_qmux)
 		$(meson_use qrtr)
@@ -46,10 +43,11 @@ src_configure() {
 		-Dudev=true
 		-Dudevdir="$(get_udevdir)"
 
-		-Dintrospection=true
+		$(meson_use introspection)
 		$(meson_use gtk-doc gtk_doc)
 		-Dman=true
 
+		# Let's avoid BuildRequiring bash-completion, install it manually
 		-Dbash_completion=false
 	)
 	meson_src_configure

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 5336e7de9c06..68b118b34834 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -7,8 +7,8 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
 	SRC_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/${PV}/${P}.tar.bz2"
+	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 inherit bash-completion-r1 meson udev
@@ -17,17 +17,15 @@ DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol
 HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
 
 LICENSE="LGPL-2"
-IUSE="gtk-doc +mbim +qrtr"
-
-SLOT="0/5.9"	# soname of libqmi-glib.so
+SLOT="0/5.9" # soname of libqmi-glib.so
+IUSE="gtk-doc introspection +mbim +qrtr"
 
 RDEPEND="
 	>=dev-libs/glib-2.56
 	>=dev-libs/libgudev-232
+	introspection? ( dev-libs/gobject-introspection:= )
 	mbim? ( >=net-libs/libmbim-1.18.0 )
 	qrtr? ( >=net-libs/libqrtr-glib-1.0.0:= )
-
-	dev-libs/gobject-introspection:=
 "
 DEPEND="${RDEPEND}"
 BDEPEND="
@@ -37,7 +35,6 @@ BDEPEND="
 "
 
 src_configure() {
-	# Let's avoid BuildRequiring bash-completion, install it manually
 	local emesonargs=(
 		$(meson_use mbim mbim_qmux)
 		$(meson_use qrtr)
@@ -46,10 +43,11 @@ src_configure() {
 		-Dudev=true
 		-Dudevdir="$(get_udevdir)"
 
-		-Dintrospection=true
+		$(meson_use introspection)
 		$(meson_use gtk-doc gtk_doc)
 		-Dman=true
 
+		# Let's avoid BuildRequiring bash-completion, install it manually
 		-Dbash_completion=false
 	)
 	meson_src_configure


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2024-05-29 11:48 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2024-05-29 11:48 UTC (permalink / raw
  To: gentoo-commits

commit:     591252325b97dd2247d4140d9c56c3769fec2e90
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 11:48:20 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 29 11:48:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59125232

net-libs/libqmi: Stabilize 1.32.4 arm64, #933023

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.32.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.32.4.ebuild b/net-libs/libqmi/libqmi-1.32.4.ebuild
index edf956022511..1814262e90aa 100644
--- a/net-libs/libqmi/libqmi-1.32.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.32.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~loong ~mips ppc ppc64 ~riscv x86"
+	KEYWORDS="amd64 ~arm arm64 ~loong ~mips ppc ppc64 ~riscv x86"
 	SRC_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/${PV}/${P}.tar.bz2"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2024-05-29  6:26 Jakov Smolić
  0 siblings, 0 replies; 74+ messages in thread
From: Jakov Smolić @ 2024-05-29  6:26 UTC (permalink / raw
  To: gentoo-commits

commit:     feb39987c4b8874d543697d9b894e319f6052c0a
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 06:26:00 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed May 29 06:26:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feb39987

net-libs/libqmi: Stabilize 1.32.4 x86, #933023

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.32.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.32.4.ebuild b/net-libs/libqmi/libqmi-1.32.4.ebuild
index 6f4aa3e9572d..edf956022511 100644
--- a/net-libs/libqmi/libqmi-1.32.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.32.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~loong ~mips ppc ppc64 ~riscv ~x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~loong ~mips ppc ppc64 ~riscv x86"
 	SRC_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/${PV}/${P}.tar.bz2"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2024-05-28 22:01 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2024-05-28 22:01 UTC (permalink / raw
  To: gentoo-commits

commit:     2dbae65abf3565308ea219cf9221f4cdb832733e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 22:00:46 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 28 22:00:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dbae65a

net-libs/libqmi: Stabilize 1.32.4 amd64, #933023

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.32.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.32.4.ebuild b/net-libs/libqmi/libqmi-1.32.4.ebuild
index be11effba9f9..6f4aa3e9572d 100644
--- a/net-libs/libqmi/libqmi-1.32.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.32.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ppc ppc64 ~riscv ~x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~loong ~mips ppc ppc64 ~riscv ~x86"
 	SRC_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/${PV}/${P}.tar.bz2"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2023-07-29 11:51 Pacho Ramos
  0 siblings, 0 replies; 74+ messages in thread
From: Pacho Ramos @ 2023-07-29 11:51 UTC (permalink / raw
  To: gentoo-commits

commit:     faf7e94d1b11b602cdb4548a5e97cf440d903985
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 29 11:48:46 2023 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jul 29 11:48:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf7e94d

net-libs/libqmi: Sync live ebuild

Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 net-libs/libqmi/libqmi-9999.ebuild | 54 ++++++++++++++++++++++----------------
 1 file changed, 32 insertions(+), 22 deletions(-)

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 56d9060d775c..5336e7de9c06 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -1,51 +1,61 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
+	inherit git-r3
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
 	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+	SRC_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/${PV}/${P}.tar.bz2"
 fi
 
+inherit bash-completion-r1 meson udev
+
 DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
 HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
 
 LICENSE="LGPL-2"
-SLOT="0/5.8"	# soname of libqmi-glib.so
 IUSE="gtk-doc +mbim +qrtr"
 
-RDEPEND=">=dev-libs/glib-2.56
+SLOT="0/5.9"	# soname of libqmi-glib.so
+
+RDEPEND="
+	>=dev-libs/glib-2.56
 	>=dev-libs/libgudev-232
 	mbim? ( >=net-libs/libmbim-1.18.0 )
 	qrtr? ( >=net-libs/libqrtr-glib-1.0.0:= )
+
+	dev-libs/gobject-introspection:=
 "
 DEPEND="${RDEPEND}"
 BDEPEND="
+	sys-apps/help2man
 	virtual/pkgconfig
-	gtk-doc? ( dev-util/gtk-doc )"
-[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ ${PV} == "9999" ]] && eautoreconf
-}
+	gtk-doc? ( dev-util/gtk-doc )
+"
 
 src_configure() {
-	local myconf=(
-		--disable-Werror
-		--disable-static
-		$(use_enable qrtr)
-		$(use_enable mbim mbim-qmux)
-		$(use_enable gtk-doc)
+	# Let's avoid BuildRequiring bash-completion, install it manually
+	local emesonargs=(
+		$(meson_use mbim mbim_qmux)
+		$(meson_use qrtr)
+		-Drmnet=true
+
+		-Dudev=true
+		-Dudevdir="$(get_udevdir)"
+
+		-Dintrospection=true
+		$(meson_use gtk-doc gtk_doc)
+		-Dman=true
+
+		-Dbash_completion=false
 	)
-	econf "${myconf[@]}"
+	meson_src_configure
 }
 
 src_install() {
-	default
-	find "${ED}" -name '*.la' -delete || die
+	meson_src_install
+	dobashcomp src/qmicli/qmicli
 }


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2023-07-29 11:51 Pacho Ramos
  0 siblings, 0 replies; 74+ messages in thread
From: Pacho Ramos @ 2023-07-29 11:51 UTC (permalink / raw
  To: gentoo-commits

commit:     1f39cf059943f51981d4a61a676457af65023cd2
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 29 11:48:12 2023 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jul 29 11:48:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f39cf05

net-libs/libqmi: add 1.32.4

Thanks-to: Matt Turner
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.32.4.ebuild | 61 ++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 04b9d9b87436..40d11f0b3f56 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1 +1,2 @@
 DIST libqmi-1.30.8.tar.xz 1244844 BLAKE2B c8d98106783eb22571ee82c0012e1ce7ed79e94818350134b80853e16fa287c77bafb34d2913690ae593d02112dc5d2b0ff77606a24c4ce63733fd64245961a1 SHA512 60567e82eb35ed7ab3d65f1073e19ca8faa68e909f96e498b8f9d8ce2a987156e0a580f9c212416c4e0740d2ad05cb93f4dfeae9b2d048f0eb53ab6a83f6d024
+DIST libqmi-1.32.4.tar.bz2 3710575 BLAKE2B 728cc821208432ec69d21d6b1b16e82f982e27ba899e0a2426b6e1ae6ce8cc800f15417e4d5ff6fd9a60ad2a0e7c3f3ddc77caee9115431d174e29bd40a8398b SHA512 6f68e2dd4bf5493de0c9298d88e477f9477b367f887bf5321a1faab7e8217fd10e761748326deb37ca26659bef70d5c8464bcb964d0ed0ba1f44c423785ebb0f

diff --git a/net-libs/libqmi/libqmi-1.32.4.ebuild b/net-libs/libqmi/libqmi-1.32.4.ebuild
new file mode 100644
index 000000000000..5336e7de9c06
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.32.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
+	SRC_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/${PV}/${P}.tar.bz2"
+fi
+
+inherit bash-completion-r1 meson udev
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
+
+LICENSE="LGPL-2"
+IUSE="gtk-doc +mbim +qrtr"
+
+SLOT="0/5.9"	# soname of libqmi-glib.so
+
+RDEPEND="
+	>=dev-libs/glib-2.56
+	>=dev-libs/libgudev-232
+	mbim? ( >=net-libs/libmbim-1.18.0 )
+	qrtr? ( >=net-libs/libqrtr-glib-1.0.0:= )
+
+	dev-libs/gobject-introspection:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	sys-apps/help2man
+	virtual/pkgconfig
+	gtk-doc? ( dev-util/gtk-doc )
+"
+
+src_configure() {
+	# Let's avoid BuildRequiring bash-completion, install it manually
+	local emesonargs=(
+		$(meson_use mbim mbim_qmux)
+		$(meson_use qrtr)
+		-Drmnet=true
+
+		-Dudev=true
+		-Dudevdir="$(get_udevdir)"
+
+		-Dintrospection=true
+		$(meson_use gtk-doc gtk_doc)
+		-Dman=true
+
+		-Dbash_completion=false
+	)
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+	dobashcomp src/qmicli/qmicli
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2023-07-09 12:29 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2023-07-09 12:29 UTC (permalink / raw
  To: gentoo-commits

commit:     35c0abf99355fd9467e4e1d10c6cd56290fc10e6
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  9 12:27:27 2023 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jul  9 12:28:55 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c0abf9

net-libs/libqmi: Reassign to freedesktop-bugs@

Bug: https://bugs.gentoo.org/899226
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-libs/libqmi/metadata.xml b/net-libs/libqmi/metadata.xml
index 315a6cf25473..6ef8fe82d4c9 100644
--- a/net-libs/libqmi/metadata.xml
+++ b/net-libs/libqmi/metadata.xml
@@ -2,8 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
   <maintainer type="project">
-    <email>gnome@gentoo.org</email>
-    <name>Gentoo GNOME Desktop</name>
+    <email>freedesktop-bugs@gentoo.org</email>
   </maintainer>
   <slots>
     <subslots>libqmi-glib.so soname version</subslots>


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-10-31 14:28 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2022-10-31 14:28 UTC (permalink / raw
  To: gentoo-commits

commit:     b6b8d63a0d37dec79412158bdd365ebd27ebde69
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 29 21:20:34 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Oct 31 14:27:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6b8d63a

net-libs/libqmi: Set remote-id

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/metadata.xml | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/net-libs/libqmi/metadata.xml b/net-libs/libqmi/metadata.xml
index 2ac8814ecd1a..315a6cf25473 100644
--- a/net-libs/libqmi/metadata.xml
+++ b/net-libs/libqmi/metadata.xml
@@ -1,15 +1,18 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="project">
-		<email>gnome@gentoo.org</email>
-		<name>Gentoo GNOME Desktop</name>
-	</maintainer>
-	<slots>
-		<subslots>libqmi-glib.so soname version</subslots>
-	</slots>
-	<use>
-		<flag name="mbim">Support QMI over Mobile Broadband Interface Model (MBIM)</flag>
-		<flag name="qrtr">Support QMI over IPC Router bus (QRTR)</flag>
-	</use>
+  <maintainer type="project">
+    <email>gnome@gentoo.org</email>
+    <name>Gentoo GNOME Desktop</name>
+  </maintainer>
+  <slots>
+    <subslots>libqmi-glib.so soname version</subslots>
+  </slots>
+  <use>
+    <flag name="mbim">Support QMI over Mobile Broadband Interface Model (MBIM)</flag>
+    <flag name="qrtr">Support QMI over IPC Router bus (QRTR)</flag>
+  </use>
+  <upstream>
+    <remote-id type="freedesktop-gitlab">mobile-broadband/libqmi</remote-id>
+  </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-08-15 19:13 Arthur Zamarin
  0 siblings, 0 replies; 74+ messages in thread
From: Arthur Zamarin @ 2022-08-15 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     190c02cd67b5b3706b0ca61f847b0b2321f5b835
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 19:12:40 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 19:12:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=190c02cd

net-libs/libqmi: Stabilize 1.30.8 ppc64, #861029

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.8.ebuild b/net-libs/libqmi/libqmi-1.30.8.ebuild
index 958bbd63bc0b..3e6713f5d6a7 100644
--- a/net-libs/libqmi/libqmi-1.30.8.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.8.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ~ppc64 ~riscv x86"
+	KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-08-15 17:43 Arthur Zamarin
  0 siblings, 0 replies; 74+ messages in thread
From: Arthur Zamarin @ 2022-08-15 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     d217f5afca8dd97f84efc1f8097d5a865eb64c09
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 17:43:41 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 17:43:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d217f5af

net-libs/libqmi: Stabilize 1.30.8 arm, #861029

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.8.ebuild b/net-libs/libqmi/libqmi-1.30.8.ebuild
index cce85a4ec5ce..eef6996c580a 100644
--- a/net-libs/libqmi/libqmi-1.30.8.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.8.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv x86"
+	KEYWORDS="amd64 arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-07-29  2:59 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2022-07-29  2:59 UTC (permalink / raw
  To: gentoo-commits

commit:     7c13257f6e090a7a3c270b267e7cfdcb46897d62
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 29 02:58:47 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 29 02:58:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c13257f

net-libs/libqmi: Stabilize 1.30.8 arm64, #861029

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.8.ebuild b/net-libs/libqmi/libqmi-1.30.8.ebuild
index 56d9060d775c..f1cdfb14e1bb 100644
--- a/net-libs/libqmi/libqmi-1.30.8.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.8.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
+	KEYWORDS="~amd64 ~arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-06-24 15:33 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2022-06-24 15:33 UTC (permalink / raw
  To: gentoo-commits

commit:     2d9d5bddf94a9da0c4b832a9f958cdc16a7ca58d
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 15:05:14 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 15:33:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d9d5bdd

net-libs/libqmi: Propagate ~riscv keyword

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/libqmi-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 9be3e4bbf84c..56d9060d775c 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-05-31  9:24 Jakov Smolić
  0 siblings, 0 replies; 74+ messages in thread
From: Jakov Smolić @ 2022-05-31  9:24 UTC (permalink / raw
  To: gentoo-commits

commit:     4ce1fe0b47536327daa7c85663be0c474c5a00d7
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 09:24:09 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue May 31 09:24:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ce1fe0b

net-libs/libqmi: Stabilize 1.30.6 arm, #843794

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.6.ebuild b/net-libs/libqmi/libqmi-1.30.6.ebuild
index b6cd743bf06e..52026ee5e14c 100644
--- a/net-libs/libqmi/libqmi-1.30.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.6.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm arm64 ~loong ~mips ppc ppc64 ~riscv x86"
+	KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-05-28  5:05 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2022-05-28  5:05 UTC (permalink / raw
  To: gentoo-commits

commit:     e46a199ba95fca61c7b22c599031008baf4eb3f1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 28 05:04:25 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 28 05:04:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e46a199b

net-libs/libqmi: Stabilize 1.30.6 ppc64, #843794

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.6.ebuild b/net-libs/libqmi/libqmi-1.30.6.ebuild
index da8b90c379c7..7410504ee000 100644
--- a/net-libs/libqmi/libqmi-1.30.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.6.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~loong ~mips ppc ~ppc64 ~riscv x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~loong ~mips ppc ppc64 ~riscv x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-05-24 11:14 WANG Xuerui
  0 siblings, 0 replies; 74+ messages in thread
From: WANG Xuerui @ 2022-05-24 11:14 UTC (permalink / raw
  To: gentoo-commits

commit:     e06c3acf5ecef1e39031411a8cd1d3d0173d8d5e
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Tue May 24 11:13:38 2022 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Tue May 24 11:14:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e06c3acf

net-libs/libqmi: keyword 1.30.6 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.6.ebuild b/net-libs/libqmi/libqmi-1.30.6.ebuild
index a73bf3b1aab6..b391964108a5 100644
--- a/net-libs/libqmi/libqmi-1.30.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.6.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-05-24 11:14 WANG Xuerui
  0 siblings, 0 replies; 74+ messages in thread
From: WANG Xuerui @ 2022-05-24 11:14 UTC (permalink / raw
  To: gentoo-commits

commit:     6891684eaeb321091af4807bdecbb820f7d1984a
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Tue May 24 11:13:39 2022 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Tue May 24 11:14:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6891684e

net-libs/libqmi: forward ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 net-libs/libqmi/libqmi-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 299b20265bf5..96f87a762e23 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-04-28 15:31 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2022-04-28 15:31 UTC (permalink / raw
  To: gentoo-commits

commit:     f6a3b4edb1bcef02da3edc40c7d4b67ccb03eccd
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 28 15:27:39 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Apr 28 15:31:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6a3b4ed

net-libs/libqmi: Version bump to 1.30.6

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.30.6.ebuild | 49 ++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 30a9a80e7b53..feac217b35ef 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1 +1,2 @@
 DIST libqmi-1.30.4.tar.xz 1241912 BLAKE2B 561a2d4afd1b65955176490337e4f2335b0468010f0af546ea6026441224fa2713c2e7ed6aab958cb2657755247b75529d390155ef0bfc3aabba738755d28f23 SHA512 969c3e3fc8086c38e9192070eca155f5309947cdd1cfc9b883c27d80c6af2d069098a59e193bf1786260ab4fe4d05375555b5081dd173a88b33d84d409fa4a59
+DIST libqmi-1.30.6.tar.xz 1242612 BLAKE2B 318af914b595f0442f7929be53c128dcd111e12913814bb52e683fff814b7aa00a32d40f8eae367db469a7adef6c146fb692d5908951cec4337f21e9a266a400 SHA512 6dc9819bb45063ea827b989e99e8e889db0ce6ebec62586003ea385bd54bd76f3e79d63e3f2b57e19da5f42ed87d7aa11aa024a805ec86a6b203981eb7922a76

diff --git a/net-libs/libqmi/libqmi-1.30.6.ebuild b/net-libs/libqmi/libqmi-1.30.6.ebuild
new file mode 100644
index 000000000000..a73bf3b1aab6
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.30.6.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
+
+LICENSE="LGPL-2"
+SLOT="0/5.8"	# soname of libqmi-glib.so
+IUSE="gtk-doc +mbim"
+
+RDEPEND=">=dev-libs/glib-2.56
+	>=dev-libs/libgudev-232
+	mbim? ( >=net-libs/libmbim-1.18.0 )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	gtk-doc? ( dev-util/gtk-doc )"
+[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ ${PV} == "9999" ]] && eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		--disable-Werror
+		--disable-static
+		--disable-qrtr # libqrtr-glib not packaged
+		$(use_enable mbim mbim-qmux)
+		$(use_enable gtk-doc)
+	)
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-03-09 15:39 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2022-03-09 15:39 UTC (permalink / raw
  To: gentoo-commits

commit:     e6ab05264c534d00bc258590e7c5e55424b756ef
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 15:38:22 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 15:38:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6ab0526

net-libs/libqmi: Stabilize 1.30.4 ppc64, #834426

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.4.ebuild b/net-libs/libqmi/libqmi-1.30.4.ebuild
index be22b62c19b4..26eef8f4e6fb 100644
--- a/net-libs/libqmi/libqmi-1.30.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv x86"
+	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-03-09 12:49 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2022-03-09 12:49 UTC (permalink / raw
  To: gentoo-commits

commit:     a9f43e3bb5ec5e3ade21cf1c818d4a9defe00dd4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 12:48:23 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 12:48:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f43e3b

net-libs/libqmi: Stabilize 1.30.4 ppc, #834426

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.4.ebuild b/net-libs/libqmi/libqmi-1.30.4.ebuild
index d5cee6f42151..be22b62c19b4 100644
--- a/net-libs/libqmi/libqmi-1.30.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv x86"
+	KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-03-08 12:32 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2022-03-08 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     27379279e15eef5af3da2a1ef7b8688b2adbe3cf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  8 12:31:32 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar  8 12:31:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27379279

net-libs/libqmi: Stabilize 1.30.4 arm, #834426

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.4.ebuild b/net-libs/libqmi/libqmi-1.30.4.ebuild
index 9be3d45140d9..d5cee6f42151 100644
--- a/net-libs/libqmi/libqmi-1.30.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm arm64 ~mips ~ppc ~ppc64 ~riscv x86"
+	KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-02-11 20:56 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2022-02-11 20:56 UTC (permalink / raw
  To: gentoo-commits

commit:     2405fe370133748a6d27146708eac268dc5114c5
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 20:47:01 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 20:56:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2405fe37

net-libs/libqmi: Version bump to 1.30.4

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.30.4.ebuild | 49 ++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index d8eddc4898ab..bdb46699b651 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1 +1,2 @@
 DIST libqmi-1.30.2.tar.xz 1239408 BLAKE2B be762988dcb40cdc29a9024989de0da42d3246c970ee63caba4f3a722b52e478879c177097165e880a48a7151d01f8f30e82d5a769258bd7c9cba9a24b0157a2 SHA512 e34e9cb4b49df6eac555e6493cfc89aaf6f9be3fbfb0b19a5fb6b69c81768fda499a6438b1a4f39b84a350899721c6a04c4195985077ac35da0036794bc59367
+DIST libqmi-1.30.4.tar.xz 1241912 BLAKE2B 561a2d4afd1b65955176490337e4f2335b0468010f0af546ea6026441224fa2713c2e7ed6aab958cb2657755247b75529d390155ef0bfc3aabba738755d28f23 SHA512 969c3e3fc8086c38e9192070eca155f5309947cdd1cfc9b883c27d80c6af2d069098a59e193bf1786260ab4fe4d05375555b5081dd173a88b33d84d409fa4a59

diff --git a/net-libs/libqmi/libqmi-1.30.4.ebuild b/net-libs/libqmi/libqmi-1.30.4.ebuild
new file mode 100644
index 000000000000..a73bf3b1aab6
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.30.4.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
+
+LICENSE="LGPL-2"
+SLOT="0/5.8"	# soname of libqmi-glib.so
+IUSE="gtk-doc +mbim"
+
+RDEPEND=">=dev-libs/glib-2.56
+	>=dev-libs/libgudev-232
+	mbim? ( >=net-libs/libmbim-1.18.0 )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	gtk-doc? ( dev-util/gtk-doc )"
+[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ ${PV} == "9999" ]] && eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		--disable-Werror
+		--disable-static
+		--disable-qrtr # libqrtr-glib not packaged
+		$(use_enable mbim mbim-qmux)
+		$(use_enable gtk-doc)
+	)
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2022-01-24 22:43 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2022-01-24 22:43 UTC (permalink / raw
  To: gentoo-commits

commit:     89db7ffea7265f76ce6fcb0977927e1215ea2d72
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 24 21:10:17 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Jan 24 22:42:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89db7ffe

net-libs/libqmi: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  2 --
 net-libs/libqmi/libqmi-1.28.6.ebuild | 49 ------------------------------------
 net-libs/libqmi/libqmi-1.30.0.ebuild | 49 ------------------------------------
 3 files changed, 100 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 3b55b67f92db..d8eddc4898ab 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,3 +1 @@
-DIST libqmi-1.28.6.tar.xz 1192736 BLAKE2B 30330a8d085b26fc461c6fec2cfa58757e91093243aed8a4ac6df53a7656881f295a800979ff8fd42b815f96fafd128848765ecfb163e8101ac9c9a52eaaf507 SHA512 f4f7022e8c9b60618062548ec97450d98a5125dbd0e26df3dfb8bda5ab19a1f4c7864d35f7bd77217a4fe5562ce665fa613902b1d2185680bfa5d0c1e229e6dd
-DIST libqmi-1.30.0.tar.xz 1237944 BLAKE2B 862a7f12d458d7fce53596ec12e6e20d41a8378e6d9fd44535ea54b409f7020d33f5b3bab08ce583452e11abcbf5af48cc3a24a5fd382c7a833c435327c91614 SHA512 e0cf97f1ebc27feb68033d19b8bc146c41d134782c3eeefb1dd3502b08e493d8c484835235a7877854c1a9c2524ed6cc31aa1b897b873d0662f494a771b2c98f
 DIST libqmi-1.30.2.tar.xz 1239408 BLAKE2B be762988dcb40cdc29a9024989de0da42d3246c970ee63caba4f3a722b52e478879c177097165e880a48a7151d01f8f30e82d5a769258bd7c9cba9a24b0157a2 SHA512 e34e9cb4b49df6eac555e6493cfc89aaf6f9be3fbfb0b19a5fb6b69c81768fda499a6438b1a4f39b84a350899721c6a04c4195985077ac35da0036794bc59367

diff --git a/net-libs/libqmi/libqmi-1.28.6.ebuild b/net-libs/libqmi/libqmi-1.28.6.ebuild
deleted file mode 100644
index c62b2a064ccf..000000000000
--- a/net-libs/libqmi/libqmi-1.28.6.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
-else
-	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
-
-LICENSE="LGPL-2"
-SLOT="0/5.7"	# soname of libqmi-glib.so
-IUSE="gtk-doc +mbim"
-
-RDEPEND=">=dev-libs/glib-2.48
-	dev-libs/libgudev
-	mbim? ( >=net-libs/libmbim-1.18.0 )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	gtk-doc? ( dev-util/gtk-doc )"
-[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ ${PV} == "9999" ]] && eautoreconf
-}
-
-src_configure() {
-	local myconf=(
-		--disable-Werror
-		--disable-static
-		--disable-qrtr # libqrtr-glib not packaged
-		$(use_enable mbim mbim-qmux)
-		$(use_enable gtk-doc)
-	)
-	econf "${myconf[@]}"
-}
-
-src_install() {
-	default
-	find "${ED}" -name '*.la' -delete || die
-}

diff --git a/net-libs/libqmi/libqmi-1.30.0.ebuild b/net-libs/libqmi/libqmi-1.30.0.ebuild
deleted file mode 100644
index c48a2bddbb43..000000000000
--- a/net-libs/libqmi/libqmi-1.30.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
-else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
-
-LICENSE="LGPL-2"
-SLOT="0/5.8"	# soname of libqmi-glib.so
-IUSE="gtk-doc +mbim"
-
-RDEPEND=">=dev-libs/glib-2.56
-	>=dev-libs/libgudev-232
-	mbim? ( >=net-libs/libmbim-1.18.0 )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	gtk-doc? ( dev-util/gtk-doc )"
-[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ ${PV} == "9999" ]] && eautoreconf
-}
-
-src_configure() {
-	local myconf=(
-		--disable-Werror
-		--disable-static
-		--disable-qrtr # libqrtr-glib not packaged
-		$(use_enable mbim mbim-qmux)
-		$(use_enable gtk-doc)
-	)
-	econf "${myconf[@]}"
-}
-
-src_install() {
-	default
-	find "${ED}" -name '*.la' -delete || die
-}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-11-06  3:58 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-11-06  3:58 UTC (permalink / raw
  To: gentoo-commits

commit:     b1c0ff7de8750b134bd1866023eb50c62c228fba
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  6 03:58:11 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov  6 03:58:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1c0ff7d

net-libs/libqmi: Stabilize 1.30.2 ppc64, #815013

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.2.ebuild b/net-libs/libqmi/libqmi-1.30.2.ebuild
index 86eed78b659..7327bfd0eea 100644
--- a/net-libs/libqmi/libqmi-1.30.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.2.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm arm64 ~mips ppc ~ppc64 ~riscv ~x86"
+	KEYWORDS="amd64 ~arm arm64 ~mips ppc ppc64 ~riscv ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-10-04  1:24 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-10-04  1:24 UTC (permalink / raw
  To: gentoo-commits

commit:     1a66cbc8ea77c60d9837e7787f24533a0573923e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  4 01:23:23 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct  4 01:23:23 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a66cbc8

net-libs/libqmi: Stabilize 1.30.2 arm64, #815013

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.2.ebuild b/net-libs/libqmi/libqmi-1.30.2.ebuild
index c48a2bddbb4..1c7e08ff2fe 100644
--- a/net-libs/libqmi/libqmi-1.30.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.2.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+	KEYWORDS="~amd64 ~arm arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-09-15 20:27 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-09-15 20:27 UTC (permalink / raw
  To: gentoo-commits

commit:     4e863522232e6f0612c1617914538bceac207651
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 15 20:06:16 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Sep 15 20:27:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e863522

net-libs/libqmi: Version bump to 1.30.2

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.30.2.ebuild | 49 ++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 9cfe6fabd6f..3b55b67f92d 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,2 +1,3 @@
 DIST libqmi-1.28.6.tar.xz 1192736 BLAKE2B 30330a8d085b26fc461c6fec2cfa58757e91093243aed8a4ac6df53a7656881f295a800979ff8fd42b815f96fafd128848765ecfb163e8101ac9c9a52eaaf507 SHA512 f4f7022e8c9b60618062548ec97450d98a5125dbd0e26df3dfb8bda5ab19a1f4c7864d35f7bd77217a4fe5562ce665fa613902b1d2185680bfa5d0c1e229e6dd
 DIST libqmi-1.30.0.tar.xz 1237944 BLAKE2B 862a7f12d458d7fce53596ec12e6e20d41a8378e6d9fd44535ea54b409f7020d33f5b3bab08ce583452e11abcbf5af48cc3a24a5fd382c7a833c435327c91614 SHA512 e0cf97f1ebc27feb68033d19b8bc146c41d134782c3eeefb1dd3502b08e493d8c484835235a7877854c1a9c2524ed6cc31aa1b897b873d0662f494a771b2c98f
+DIST libqmi-1.30.2.tar.xz 1239408 BLAKE2B be762988dcb40cdc29a9024989de0da42d3246c970ee63caba4f3a722b52e478879c177097165e880a48a7151d01f8f30e82d5a769258bd7c9cba9a24b0157a2 SHA512 e34e9cb4b49df6eac555e6493cfc89aaf6f9be3fbfb0b19a5fb6b69c81768fda499a6438b1a4f39b84a350899721c6a04c4195985077ac35da0036794bc59367

diff --git a/net-libs/libqmi/libqmi-1.30.2.ebuild b/net-libs/libqmi/libqmi-1.30.2.ebuild
new file mode 100644
index 00000000000..c48a2bddbb4
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.30.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
+
+LICENSE="LGPL-2"
+SLOT="0/5.8"	# soname of libqmi-glib.so
+IUSE="gtk-doc +mbim"
+
+RDEPEND=">=dev-libs/glib-2.56
+	>=dev-libs/libgudev-232
+	mbim? ( >=net-libs/libmbim-1.18.0 )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	gtk-doc? ( dev-util/gtk-doc )"
+[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ ${PV} == "9999" ]] && eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		--disable-Werror
+		--disable-static
+		--disable-qrtr # libqrtr-glib not packaged
+		$(use_enable mbim mbim-qmux)
+		$(use_enable gtk-doc)
+	)
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-08-08 19:46 Marek Szuba
  0 siblings, 0 replies; 74+ messages in thread
From: Marek Szuba @ 2021-08-08 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     795bc70b50e7852e7ce2629a17f4d96ed2be86a5
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  8 19:39:11 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sun Aug  8 19:46:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795bc70b

net-libs/libqmi: keyword 1.30.0 for ~riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.30.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.30.0.ebuild b/net-libs/libqmi/libqmi-1.30.0.ebuild
index 299b20265bf..c48a2bddbb4 100644
--- a/net-libs/libqmi/libqmi-1.30.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.0.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-08-05 23:09 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-08-05 23:09 UTC (permalink / raw
  To: gentoo-commits

commit:     54a8a373de5ce10d78b5ecd5a8d3a98de48787ac
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  5 22:37:43 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Aug  5 23:08:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a8a373

net-libs/libqmi: Version bump to 1.30.0

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest                                     |  1 +
 net-libs/libqmi/{libqmi-9999.ebuild => libqmi-1.30.0.ebuild} | 12 ++++++------
 net-libs/libqmi/libqmi-9999.ebuild                           | 12 ++++++------
 3 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index f3df0378825..9cfe6fabd6f 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1 +1,2 @@
 DIST libqmi-1.28.6.tar.xz 1192736 BLAKE2B 30330a8d085b26fc461c6fec2cfa58757e91093243aed8a4ac6df53a7656881f295a800979ff8fd42b815f96fafd128848765ecfb163e8101ac9c9a52eaaf507 SHA512 f4f7022e8c9b60618062548ec97450d98a5125dbd0e26df3dfb8bda5ab19a1f4c7864d35f7bd77217a4fe5562ce665fa613902b1d2185680bfa5d0c1e229e6dd
+DIST libqmi-1.30.0.tar.xz 1237944 BLAKE2B 862a7f12d458d7fce53596ec12e6e20d41a8378e6d9fd44535ea54b409f7020d33f5b3bab08ce583452e11abcbf5af48cc3a24a5fd382c7a833c435327c91614 SHA512 e0cf97f1ebc27feb68033d19b8bc146c41d134782c3eeefb1dd3502b08e493d8c484835235a7877854c1a9c2524ed6cc31aa1b897b873d0662f494a771b2c98f

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-1.30.0.ebuild
similarity index 86%
copy from net-libs/libqmi/libqmi-9999.ebuild
copy to net-libs/libqmi/libqmi-1.30.0.ebuild
index 0518bf890c3..299b20265bf 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-1.30.0.ebuild
@@ -15,16 +15,16 @@ DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol
 HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
 
 LICENSE="LGPL-2"
-SLOT="0/5.7"	# soname of libqmi-glib.so
-IUSE="doc +mbim"
+SLOT="0/5.8"	# soname of libqmi-glib.so
+IUSE="gtk-doc +mbim"
 
-RDEPEND=">=dev-libs/glib-2.48
-	dev-libs/libgudev
+RDEPEND=">=dev-libs/glib-2.56
+	>=dev-libs/libgudev-232
 	mbim? ( >=net-libs/libmbim-1.18.0 )"
 DEPEND="${RDEPEND}"
 BDEPEND="
 	virtual/pkgconfig
-	doc? ( dev-util/gtk-doc )"
+	gtk-doc? ( dev-util/gtk-doc )"
 [[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
 
 src_prepare() {
@@ -38,7 +38,7 @@ src_configure() {
 		--disable-static
 		--disable-qrtr # libqrtr-glib not packaged
 		$(use_enable mbim mbim-qmux)
-		$(use_enable {,gtk-}doc)
+		$(use_enable gtk-doc)
 	)
 	econf "${myconf[@]}"
 }

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 0518bf890c3..299b20265bf 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -15,16 +15,16 @@ DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol
 HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
 
 LICENSE="LGPL-2"
-SLOT="0/5.7"	# soname of libqmi-glib.so
-IUSE="doc +mbim"
+SLOT="0/5.8"	# soname of libqmi-glib.so
+IUSE="gtk-doc +mbim"
 
-RDEPEND=">=dev-libs/glib-2.48
-	dev-libs/libgudev
+RDEPEND=">=dev-libs/glib-2.56
+	>=dev-libs/libgudev-232
 	mbim? ( >=net-libs/libmbim-1.18.0 )"
 DEPEND="${RDEPEND}"
 BDEPEND="
 	virtual/pkgconfig
-	doc? ( dev-util/gtk-doc )"
+	gtk-doc? ( dev-util/gtk-doc )"
 [[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
 
 src_prepare() {
@@ -38,7 +38,7 @@ src_configure() {
 		--disable-static
 		--disable-qrtr # libqrtr-glib not packaged
 		$(use_enable mbim mbim-qmux)
-		$(use_enable {,gtk-}doc)
+		$(use_enable gtk-doc)
 	)
 	econf "${myconf[@]}"
 }


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-07-26  7:15 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-07-26  7:15 UTC (permalink / raw
  To: gentoo-commits

commit:     5abfe5798faab49c83091e2eadf8f4919914967e
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 26 06:18:45 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Jul 26 07:15:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5abfe579

net-libs/libqmi: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 -
 net-libs/libqmi/libqmi-1.28.4.ebuild | 49 ------------------------------------
 2 files changed, 50 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 216b6542dcf..f3df0378825 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,2 +1 @@
-DIST libqmi-1.28.4.tar.xz 1168088 BLAKE2B 828a8688a49a08f0848414b8e51c2ece4a0035ecdf449a5dc9e2cf3b6ecaf1525d5a1c29e329a584ec054f66b9a141d0ba3980b8affb34db3088ed2b5591a265 SHA512 dad3cd2740804d2ec6aa04f0f140d385c00d5a3854d75ccdf54ee6fa4f3cdfc02de5da21cd8b43d5a7c6b467b94b5001bc857fbab01aeedbdb51c0e3d9da9690
 DIST libqmi-1.28.6.tar.xz 1192736 BLAKE2B 30330a8d085b26fc461c6fec2cfa58757e91093243aed8a4ac6df53a7656881f295a800979ff8fd42b815f96fafd128848765ecfb163e8101ac9c9a52eaaf507 SHA512 f4f7022e8c9b60618062548ec97450d98a5125dbd0e26df3dfb8bda5ab19a1f4c7864d35f7bd77217a4fe5562ce665fa613902b1d2185680bfa5d0c1e229e6dd

diff --git a/net-libs/libqmi/libqmi-1.28.4.ebuild b/net-libs/libqmi/libqmi-1.28.4.ebuild
deleted file mode 100644
index c62b2a064cc..00000000000
--- a/net-libs/libqmi/libqmi-1.28.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
-else
-	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
-
-LICENSE="LGPL-2"
-SLOT="0/5.7"	# soname of libqmi-glib.so
-IUSE="gtk-doc +mbim"
-
-RDEPEND=">=dev-libs/glib-2.48
-	dev-libs/libgudev
-	mbim? ( >=net-libs/libmbim-1.18.0 )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	gtk-doc? ( dev-util/gtk-doc )"
-[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ ${PV} == "9999" ]] && eautoreconf
-}
-
-src_configure() {
-	local myconf=(
-		--disable-Werror
-		--disable-static
-		--disable-qrtr # libqrtr-glib not packaged
-		$(use_enable mbim mbim-qmux)
-		$(use_enable gtk-doc)
-	)
-	econf "${myconf[@]}"
-}
-
-src_install() {
-	default
-	find "${ED}" -name '*.la' -delete || die
-}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-07-24 17:08 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-07-24 17:08 UTC (permalink / raw
  To: gentoo-commits

commit:     1fffed076993b53e814e9225695bc9c364f8e0de
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 24 17:06:30 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 24 17:06:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fffed07

net-libs/libqmi: Stabilize 1.28.6 ppc64, #800710

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.28.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.28.6.ebuild b/net-libs/libqmi/libqmi-1.28.6.ebuild
index 05900bebb38..c62b2a064cc 100644
--- a/net-libs/libqmi/libqmi-1.28.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.6.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 x86"
+	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-07-11 20:48 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-07-11 20:48 UTC (permalink / raw
  To: gentoo-commits

commit:     e0f65c1dba4885bffadcd1684182bc64115c6d8b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 11 20:48:44 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 11 20:48:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f65c1d

net-libs/libqmi: Stabilize 1.28.6 arm64, #800710

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.28.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.28.6.ebuild b/net-libs/libqmi/libqmi-1.28.6.ebuild
index a976ea1a176..1af34e2bae9 100644
--- a/net-libs/libqmi/libqmi-1.28.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.6.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86"
+	KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-07-11  2:31 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-07-11  2:31 UTC (permalink / raw
  To: gentoo-commits

commit:     b2b4ae5c8c54463d8f23a4a72c690849421047c3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 11 02:30:26 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 11 02:30:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2b4ae5c

net-libs/libqmi: Stabilize 1.28.6 arm, #800710

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.28.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.28.6.ebuild b/net-libs/libqmi/libqmi-1.28.6.ebuild
index 236bf236f01..a976ea1a176 100644
--- a/net-libs/libqmi/libqmi-1.28.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.6.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86"
+	KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-07-10 15:40 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-07-10 15:40 UTC (permalink / raw
  To: gentoo-commits

commit:     66663be68d8b1c7e4bdd9439a8551699abdd05a5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 10 15:40:04 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 10 15:40:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66663be6

net-libs/libqmi: Stabilize 1.28.6 x86, #800710

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.28.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.28.6.ebuild b/net-libs/libqmi/libqmi-1.28.6.ebuild
index a8aa052da72..236bf236f01 100644
--- a/net-libs/libqmi/libqmi-1.28.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.6.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-06-06 21:49 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-06-06 21:49 UTC (permalink / raw
  To: gentoo-commits

commit:     c67e7b7e5efe56eceb15163398587b6127c435a7
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  6 21:32:46 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jun  6 21:49:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c67e7b7e

net-libs/libqmi: Version bump to 1.28.6

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.28.6.ebuild | 49 ++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 95e0379a6d5..216b6542dcf 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1 +1,2 @@
 DIST libqmi-1.28.4.tar.xz 1168088 BLAKE2B 828a8688a49a08f0848414b8e51c2ece4a0035ecdf449a5dc9e2cf3b6ecaf1525d5a1c29e329a584ec054f66b9a141d0ba3980b8affb34db3088ed2b5591a265 SHA512 dad3cd2740804d2ec6aa04f0f140d385c00d5a3854d75ccdf54ee6fa4f3cdfc02de5da21cd8b43d5a7c6b467b94b5001bc857fbab01aeedbdb51c0e3d9da9690
+DIST libqmi-1.28.6.tar.xz 1192736 BLAKE2B 30330a8d085b26fc461c6fec2cfa58757e91093243aed8a4ac6df53a7656881f295a800979ff8fd42b815f96fafd128848765ecfb163e8101ac9c9a52eaaf507 SHA512 f4f7022e8c9b60618062548ec97450d98a5125dbd0e26df3dfb8bda5ab19a1f4c7864d35f7bd77217a4fe5562ce665fa613902b1d2185680bfa5d0c1e229e6dd

diff --git a/net-libs/libqmi/libqmi-1.28.6.ebuild b/net-libs/libqmi/libqmi-1.28.6.ebuild
new file mode 100644
index 00000000000..ae2df1d5549
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.28.6.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
+
+LICENSE="LGPL-2"
+SLOT="0/5.7"	# soname of libqmi-glib.so
+IUSE="gtk-doc +mbim"
+
+RDEPEND=">=dev-libs/glib-2.48
+	dev-libs/libgudev
+	mbim? ( >=net-libs/libmbim-1.18.0 )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	gtk-doc? ( dev-util/gtk-doc )"
+[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ ${PV} == "9999" ]] && eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		--disable-Werror
+		--disable-static
+		--disable-qrtr # libqrtr-glib not packaged
+		$(use_enable mbim mbim-qmux)
+		$(use_enable gtk-doc)
+	)
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-05-29 15:27 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-05-29 15:27 UTC (permalink / raw
  To: gentoo-commits

commit:     fd646d9ff5a0b8de539c5705150a1f1c07c9204a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 29 15:26:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 29 15:26:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd646d9f

net-libs/libqmi: Stabilize 1.28.4 ppc64, #792327

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.28.4.ebuild b/net-libs/libqmi/libqmi-1.28.4.ebuild
index 05900bebb38..c62b2a064cc 100644
--- a/net-libs/libqmi/libqmi-1.28.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 x86"
+	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-05-28 19:20 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-05-28 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     243b324c1c057033965a5693f7dae8f6cb944583
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 28 19:19:38 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 28 19:19:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=243b324c

net-libs/libqmi: Stabilize 1.28.4 ppc, #792327

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.28.4.ebuild b/net-libs/libqmi/libqmi-1.28.4.ebuild
index 60062c803a6..1f5ad85efcb 100644
--- a/net-libs/libqmi/libqmi-1.28.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 arm ~arm64 ~mips ppc ~ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-05-28 19:11 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-05-28 19:11 UTC (permalink / raw
  To: gentoo-commits

commit:     74c09b875227123e8e9dd328eb0ac6ccefb957f7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 28 19:10:14 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 28 19:10:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74c09b87

net-libs/libqmi: Stabilize 1.28.4 arm, #792327

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.28.4.ebuild b/net-libs/libqmi/libqmi-1.28.4.ebuild
index ae2df1d5549..60062c803a6 100644
--- a/net-libs/libqmi/libqmi-1.28.4.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.4.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-05-15 16:54 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-05-15 16:54 UTC (permalink / raw
  To: gentoo-commits

commit:     1255212900cc66d4865ce9a331bdaad96f50393f
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat May 15 16:50:22 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat May 15 16:54:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12552129

net-libs/libqmi: Version bump to 1.28.4

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.28.4.ebuild | 49 ++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index f84cb55048b..e03fe5e8719 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,2 +1,3 @@
 DIST libqmi-1.26.6.tar.xz 1127552 BLAKE2B 1dba56c867c688c991fde7bb019234a05d77092f0725498d677a7ff620c56e58e17c873c773d96ee2131bfeac8cdbec86dadacd8fcc2f751f4e9a8d2c75efe5b SHA512 6c5e05fc158a085e1f652ff31cef65762c026cb09eb630153fddccb15e19187141e74c79818ebe00a058c5624891981cfce4d56545d4150ebb3b6e8d7bddb5ba
 DIST libqmi-1.28.2.tar.xz 1165204 BLAKE2B 17f7462d84b74099a5ef4fa6f28e777a4587be0a7652b38c4ab5c0f50bbbbd0b8b293df22d7a8c470444df23fd405e3b176e8c449019787c5305fef13d0b27b2 SHA512 10d11b780aa381e93669aad2540c609bcd3f789302ed76d80b9845a24f84d8741b8c39287a2007ec80d8e0e517686023d08a7a677426c77f3b12ec172edc05e7
+DIST libqmi-1.28.4.tar.xz 1168088 BLAKE2B 828a8688a49a08f0848414b8e51c2ece4a0035ecdf449a5dc9e2cf3b6ecaf1525d5a1c29e329a584ec054f66b9a141d0ba3980b8affb34db3088ed2b5591a265 SHA512 dad3cd2740804d2ec6aa04f0f140d385c00d5a3854d75ccdf54ee6fa4f3cdfc02de5da21cd8b43d5a7c6b467b94b5001bc857fbab01aeedbdb51c0e3d9da9690

diff --git a/net-libs/libqmi/libqmi-1.28.4.ebuild b/net-libs/libqmi/libqmi-1.28.4.ebuild
new file mode 100644
index 00000000000..ae2df1d5549
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.28.4.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
+
+LICENSE="LGPL-2"
+SLOT="0/5.7"	# soname of libqmi-glib.so
+IUSE="gtk-doc +mbim"
+
+RDEPEND=">=dev-libs/glib-2.48
+	dev-libs/libgudev
+	mbim? ( >=net-libs/libmbim-1.18.0 )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	gtk-doc? ( dev-util/gtk-doc )"
+[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ ${PV} == "9999" ]] && eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		--disable-Werror
+		--disable-static
+		--disable-qrtr # libqrtr-glib not packaged
+		$(use_enable mbim mbim-qmux)
+		$(use_enable gtk-doc)
+	)
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-04-13 16:20 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-04-13 16:20 UTC (permalink / raw
  To: gentoo-commits

commit:     fa7fc90ab7a778cdbd0bf7406f17b2a8a8ae440d
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 13 16:16:29 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Apr 13 16:16:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa7fc90a

net-libs/libqmi: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 -
 net-libs/libqmi/libqmi-1.22.2.ebuild | 46 ------------------------------------
 2 files changed, 47 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index d8c2d75181a..f84cb55048b 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,3 +1,2 @@
-DIST libqmi-1.22.2.tar.xz 947124 BLAKE2B 662cf58cb3fe48b5bbe167ac552b12ecff2944d1098e47b5a8c216a65c42c5e5c462f16625c4572e0e27e69a55cdfad76777468a42f8887f5b3984313c70747b SHA512 5785b56a60db8fb2566b6a712a18ec2ae74ce1da257473ab6b7cdea3163298ebee6c60a3158a7041aa759bd717eee4b16d9eeaa6b15d9b6e911bc8c8c44bd3d8
 DIST libqmi-1.26.6.tar.xz 1127552 BLAKE2B 1dba56c867c688c991fde7bb019234a05d77092f0725498d677a7ff620c56e58e17c873c773d96ee2131bfeac8cdbec86dadacd8fcc2f751f4e9a8d2c75efe5b SHA512 6c5e05fc158a085e1f652ff31cef65762c026cb09eb630153fddccb15e19187141e74c79818ebe00a058c5624891981cfce4d56545d4150ebb3b6e8d7bddb5ba
 DIST libqmi-1.28.2.tar.xz 1165204 BLAKE2B 17f7462d84b74099a5ef4fa6f28e777a4587be0a7652b38c4ab5c0f50bbbbd0b8b293df22d7a8c470444df23fd405e3b176e8c449019787c5305fef13d0b27b2 SHA512 10d11b780aa381e93669aad2540c609bcd3f789302ed76d80b9845a24f84d8741b8c39287a2007ec80d8e0e517686023d08a7a677426c77f3b12ec172edc05e7

diff --git a/net-libs/libqmi/libqmi-1.22.2.ebuild b/net-libs/libqmi/libqmi-1.22.2.ebuild
deleted file mode 100644
index d7fb5078343..00000000000
--- a/net-libs/libqmi/libqmi-1.22.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0/5.4"	# soname of libqmi-glib.so
-IUSE="doc +mbim static-libs"
-
-RDEPEND=">=dev-libs/glib-2.36
-	dev-libs/libgudev
-	mbim? ( >=net-libs/libmbim-1.18.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable mbim mbim-qmux) \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-04-12 22:12 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-04-12 22:12 UTC (permalink / raw
  To: gentoo-commits

commit:     8d560ec150293e116bbca2ed4caafe1f25f0f7c4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 12 22:12:18 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 12 22:12:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d560ec1

net-libs/libqmi: Stabilize 1.26.6 ppc64, #774942

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.26.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.26.6.ebuild b/net-libs/libqmi/libqmi-1.26.6.ebuild
index 27a99fe94da..e6048c185bf 100644
--- a/net-libs/libqmi/libqmi-1.26.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.26.6.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 x86"
+	KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-04-12 22:12 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-04-12 22:12 UTC (permalink / raw
  To: gentoo-commits

commit:     1138b50faf692de849f0a7813d708923faa4a38e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 12 22:10:47 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 12 22:11:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1138b50f

net-libs/libqmi: Stabilize 1.26.6 ppc, #774942

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.26.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.26.6.ebuild b/net-libs/libqmi/libqmi-1.26.6.ebuild
index 9a4f1b1bd6f..27a99fe94da 100644
--- a/net-libs/libqmi/libqmi-1.26.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.26.6.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86"
+	KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-03-30  3:19 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-03-30  3:19 UTC (permalink / raw
  To: gentoo-commits

commit:     6e09a6d241f9a10637563dcc7fc9ac5ddcf4e9a5
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 30 01:10:31 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Mar 30 03:19:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e09a6d2

net-libs/libqmi: Version bump to 1.28.2

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest                                |  1 +
 .../libqmi/{libqmi-9999.ebuild => libqmi-1.28.2.ebuild} | 17 ++++++++++-------
 net-libs/libqmi/libqmi-9999.ebuild                      | 11 +++++++----
 3 files changed, 18 insertions(+), 11 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 71a6d1d0cdc..d8c2d75181a 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,2 +1,3 @@
 DIST libqmi-1.22.2.tar.xz 947124 BLAKE2B 662cf58cb3fe48b5bbe167ac552b12ecff2944d1098e47b5a8c216a65c42c5e5c462f16625c4572e0e27e69a55cdfad76777468a42f8887f5b3984313c70747b SHA512 5785b56a60db8fb2566b6a712a18ec2ae74ce1da257473ab6b7cdea3163298ebee6c60a3158a7041aa759bd717eee4b16d9eeaa6b15d9b6e911bc8c8c44bd3d8
 DIST libqmi-1.26.6.tar.xz 1127552 BLAKE2B 1dba56c867c688c991fde7bb019234a05d77092f0725498d677a7ff620c56e58e17c873c773d96ee2131bfeac8cdbec86dadacd8fcc2f751f4e9a8d2c75efe5b SHA512 6c5e05fc158a085e1f652ff31cef65762c026cb09eb630153fddccb15e19187141e74c79818ebe00a058c5624891981cfce4d56545d4150ebb3b6e8d7bddb5ba
+DIST libqmi-1.28.2.tar.xz 1165204 BLAKE2B 17f7462d84b74099a5ef4fa6f28e777a4587be0a7652b38c4ab5c0f50bbbbd0b8b293df22d7a8c470444df23fd405e3b176e8c449019787c5305fef13d0b27b2 SHA512 10d11b780aa381e93669aad2540c609bcd3f789302ed76d80b9845a24f84d8741b8c39287a2007ec80d8e0e517686023d08a7a677426c77f3b12ec172edc05e7

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-1.28.2.ebuild
similarity index 81%
copy from net-libs/libqmi/libqmi-9999.ebuild
copy to net-libs/libqmi/libqmi-1.28.2.ebuild
index 51ac0339e07..7ee19425814 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freed
 
 LICENSE="LGPL-2"
 SLOT="0/5.7"	# soname of libqmi-glib.so
-IUSE="doc +mbim"
+IUSE="gtk-doc +mbim"
 
 RDEPEND=">=dev-libs/glib-2.48
 	dev-libs/libgudev
@@ -25,7 +25,7 @@ RDEPEND=">=dev-libs/glib-2.48
 DEPEND="${RDEPEND}"
 BDEPEND="
 	virtual/pkgconfig
-	doc? ( dev-util/gtk-doc )"
+	gtk-doc? ( dev-util/gtk-doc )"
 [[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
 
 src_prepare() {
@@ -34,11 +34,14 @@ src_prepare() {
 }
 
 src_configure() {
-	econf \
-		--disable-Werror \
-		--disable-static \
-		$(use_enable mbim mbim-qmux) \
-		$(use_enable {,gtk-}doc)
+	local myconf=(
+		--disable-Werror
+		--disable-static
+		--disable-qrtr # libqrtr-glib not packaged
+		$(use_enable mbim mbim-qmux)
+		$(use_enable gtk-doc)
+	)
+	econf "${myconf[@]}"
 }
 
 src_install() {

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 51ac0339e07..4ee5113fe65 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -34,11 +34,14 @@ src_prepare() {
 }
 
 src_configure() {
-	econf \
-		--disable-Werror \
-		--disable-static \
-		$(use_enable mbim mbim-qmux) \
+	local myconf=(
+		--disable-Werror
+		--disable-static
+		--disable-qrtr # libqrtr-glib not packaged
+		$(use_enable mbim mbim-qmux)
 		$(use_enable {,gtk-}doc)
+	)
+	econf "${myconf[@]}"
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-03-21 14:28 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-03-21 14:28 UTC (permalink / raw
  To: gentoo-commits

commit:     e839de9fd1dd30df806362bcb4de2967a08f169a
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 21 14:26:40 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Mar 21 14:27:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e839de9f

net-libs/libqmi: Move to gnome maintainership

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/libqmi/metadata.xml b/net-libs/libqmi/metadata.xml
index dacd578ab6f..7f11f6a849d 100644
--- a/net-libs/libqmi/metadata.xml
+++ b/net-libs/libqmi/metadata.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>chainsaw@gentoo.org</email>
-		<name>Tony Vroon</name>
+	<maintainer type="project">
+		<email>gnome@gentoo.org</email>
+		<name>Gentoo GNOME Desktop</name>
 	</maintainer>
 	<slots>
 		<subslots>libqmi-glib.so soname version</subslots>


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-03-12 15:28 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-03-12 15:28 UTC (permalink / raw
  To: gentoo-commits

commit:     f295dab6682a22b223e5a6bc334c5e8a0f3c8a91
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 12 15:25:57 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 12 15:27:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f295dab6

net-libs/libqmi: Stabilize 1.26.6 x86, #774942

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.26.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.26.6.ebuild b/net-libs/libqmi/libqmi-1.26.6.ebuild
index deba0c5f479..9a4f1b1bd6f 100644
--- a/net-libs/libqmi/libqmi-1.26.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.26.6.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-03-12  8:04 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2021-03-12  8:04 UTC (permalink / raw
  To: gentoo-commits

commit:     436ee7c5463e80ef301c241e973e773aa8e3dae1
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 12 08:04:06 2021 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Mar 12 08:04:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=436ee7c5

net-libs/libqmi: Stabilize 1.26.6 arm, #774942

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.26.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.26.6.ebuild b/net-libs/libqmi/libqmi-1.26.6.ebuild
index e6de352813f..deba0c5f479 100644
--- a/net-libs/libqmi/libqmi-1.26.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.26.6.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-03-11  2:35 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-03-11  2:35 UTC (permalink / raw
  To: gentoo-commits

commit:     8a6fbfa3922689788bf063940331cb0a409418a4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 11 02:35:36 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 11 02:35:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a6fbfa3

net-libs/libqmi: Stabilize 1.26.6 amd64, #774942

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.26.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.26.6.ebuild b/net-libs/libqmi/libqmi-1.26.6.ebuild
index 51ac0339e07..e6de352813f 100644
--- a/net-libs/libqmi/libqmi-1.26.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.26.6.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-01-08  2:46 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-01-08  2:46 UTC (permalink / raw
  To: gentoo-commits

commit:     75792c5f4717ee81487a12c0db18fbeeea373758
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  8 02:44:07 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jan  8 02:45:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75792c5f

net-libs/libqmi: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  9 -------
 net-libs/libqmi/libqmi-1.12.6.ebuild | 42 --------------------------------
 net-libs/libqmi/libqmi-1.14.0.ebuild | 42 --------------------------------
 net-libs/libqmi/libqmi-1.16.0.ebuild | 45 -----------------------------------
 net-libs/libqmi/libqmi-1.16.2.ebuild | 45 -----------------------------------
 net-libs/libqmi/libqmi-1.16.4.ebuild | 45 -----------------------------------
 net-libs/libqmi/libqmi-1.18.0.ebuild | 46 ------------------------------------
 net-libs/libqmi/libqmi-1.18.2.ebuild | 46 ------------------------------------
 net-libs/libqmi/libqmi-1.20.0.ebuild | 46 ------------------------------------
 net-libs/libqmi/libqmi-1.20.2.ebuild | 46 ------------------------------------
 10 files changed, 412 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 9b7652c8348..71a6d1d0cdc 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,11 +1,2 @@
-DIST libqmi-1.12.6.tar.xz 710564 BLAKE2B b7e16b1f8da62815788355a4ad54bb819e53ad891d82ac3c9eb4c824082732b8ce8357d68a30474ca9bddd605e5d25bc62d5b7c2dad468129dda6d7661f81853 SHA512 7001f61dbe2be431867a504dbfc634ed5e7c3f3b1740aef7833fb8163d1a6bdffb57793f09062f49c0b8eeff5a011a2a057a938d618f3547ff5942021b3e8a9d
-DIST libqmi-1.14.0.tar.xz 759472 BLAKE2B 4826105830037fe9dc6e6b3341060e3821a7b586641156bf2db7d5fbec27ae03a0a354e928a51f087c4b7722400fb5dd3503fdcb97e031d5435eddfe33182f87 SHA512 d5b4affe479e4704a9d94232bbef096533322413de8ea3c27d3ab7d6fd077fbbae779b49633fa22833ab1ce25f76cf341bfb84ec81d75fdc477f2a355ac298bd
-DIST libqmi-1.16.0.tar.xz 734280 BLAKE2B dd8614ef16e8de2bde0babbb487130b3dc13da776238d4e2aae100a150c7f05a20ca24e682f7a160ae56fad3a7ee4e8b8f4ff31971e1ac5e1cb22a9960ecf99b SHA512 e8ac10b72a15ab3d102ab5dd45ed2960f552d37c291b7ef2818f41d5a46121a5c25e60bb549f96d4982468607a11f33866632c13b0454c5cbe0d61aa95992996
-DIST libqmi-1.16.2.tar.xz 735124 BLAKE2B e99aa20e8030610b1958cab3ed7f91a3f4a3cad76fcad3bf25ea6cf82176a8571660e0fb301ed6b7cc27fbb7243d8437f16485275fcb2c42644acadf12ffe791 SHA512 7d0977d1904efb76adcdde0ca52cef864fc66a065e641f1d2b905d74fa5d314e6eae5b6ef58a508725f631823308fc8ddcc67a0547bd0e4c87dc8e3eb39b4cfb
-DIST libqmi-1.16.4.tar.xz 735220 BLAKE2B 52651eb4dc886b3b56ee0e6c47da930be2547c491748664a24dc7f012ad999377800a2d410bf1b605c40784756bfce15231fdc430419993b58e330cc8abbc968 SHA512 1cd3df8602e4ed7a8e0e068146490a0cd2581244ab5d1dd961129c1a58fa384a8d3bb6bbf715f799660f44ab3b1d20ae744c4eee3972b7392e2ac560cee6e75c
-DIST libqmi-1.18.0.tar.xz 873176 BLAKE2B ff60e3616d2ac94576df993f8f03020e19b8745541287ac069a1d15ff166f37a661f4778c1a92921791ab43ccd583a8162564e87507511a5faa85e536493f976 SHA512 3890501fa2299ce5ac8fda732363e39738c95ffb153708d8f727e88c082014018463c569a0d9666385f6394d060ec41052dec400f3f6c733e78748ca7ee56b76
-DIST libqmi-1.18.2.tar.xz 845560 BLAKE2B 732c7385d149073a9cf89a58f0e2977fff593b00ca86f4d1abfbbc1a4521a257f57d56fc73ba5e46bfc902b9aa882eed6e3e63ac00cab2649ab35b8a547c844c SHA512 769e67534e0eeb7454849b69be72674ba07f65ec26adec668c0a0cf91c22c11bb6d91546606a33036d2a05fcd290efe05dcc1d4ab0740d625756628a7a7d3428
-DIST libqmi-1.20.0.tar.xz 859464 BLAKE2B 146b07b47aa5d40d93ce381aca107ec554918a909aef85b28751228fdcb3a518ffa9479a88b1f17a94f9251a1cff1cb606c4cfd4689e8d5e813a6467f078e5cb SHA512 fceec9aff22942fa64f7a568527033354dc379f347b96c9b37844bbdfb7bfa0936f554402b855c4b191fd63ca488776b94ee69e84502a460e941caddbd648b63
-DIST libqmi-1.20.2.tar.xz 860408 BLAKE2B d6f757c7eb7d93101763714f32dee1bfc4de1f4b58fe2b6f457b938e42175da12ba6070395f06542f4edb9c6b3264ad74a718f7fc58ac25de4f4d5f2692ee123 SHA512 2d1ceda25ad995b27dc20d9b5d85ee23a841c43f33aa68b3543df10cc1da72062e648c1136a2706740659ae2cf8c17373d7c6c6f5f8d075864f47e4fb89d7b50
 DIST libqmi-1.22.2.tar.xz 947124 BLAKE2B 662cf58cb3fe48b5bbe167ac552b12ecff2944d1098e47b5a8c216a65c42c5e5c462f16625c4572e0e27e69a55cdfad76777468a42f8887f5b3984313c70747b SHA512 5785b56a60db8fb2566b6a712a18ec2ae74ce1da257473ab6b7cdea3163298ebee6c60a3158a7041aa759bd717eee4b16d9eeaa6b15d9b6e911bc8c8c44bd3d8
 DIST libqmi-1.26.6.tar.xz 1127552 BLAKE2B 1dba56c867c688c991fde7bb019234a05d77092f0725498d677a7ff620c56e58e17c873c773d96ee2131bfeac8cdbec86dadacd8fcc2f751f4e9a8d2c75efe5b SHA512 6c5e05fc158a085e1f652ff31cef65762c026cb09eb630153fddccb15e19187141e74c79818ebe00a058c5624891981cfce4d56545d4150ebb3b6e8d7bddb5ba

diff --git a/net-libs/libqmi/libqmi-1.12.6.ebuild b/net-libs/libqmi/libqmi-1.12.6.ebuild
deleted file mode 100644
index 30560ac73dd..00000000000
--- a/net-libs/libqmi/libqmi-1.12.6.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="amd64 arm ~mips x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="QMI modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="doc static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}

diff --git a/net-libs/libqmi/libqmi-1.14.0.ebuild b/net-libs/libqmi/libqmi-1.14.0.ebuild
deleted file mode 100644
index 3ced59117e8..00000000000
--- a/net-libs/libqmi/libqmi-1.14.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="~amd64 ~arm ~mips ~x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="QMI modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="doc static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}

diff --git a/net-libs/libqmi/libqmi-1.16.0.ebuild b/net-libs/libqmi/libqmi-1.16.0.ebuild
deleted file mode 100644
index 52ae8fd582c..00000000000
--- a/net-libs/libqmi/libqmi-1.16.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="~amd64 ~arm ~mips ~x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="QMI modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0/5.1"
-IUSE="doc +mbim static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32
-	mbim? ( >=net-libs/libmbim-1.14.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	eapply_user
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable mbim mbim-qmux ) \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}

diff --git a/net-libs/libqmi/libqmi-1.16.2.ebuild b/net-libs/libqmi/libqmi-1.16.2.ebuild
deleted file mode 100644
index 9a16e2b7027..00000000000
--- a/net-libs/libqmi/libqmi-1.16.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="amd64 arm ~mips ppc x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0/5.1"	# soname of libqmi-glib.so
-IUSE="doc +mbim static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32
-	mbim? ( >=net-libs/libmbim-1.14.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable mbim mbim-qmux) \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}

diff --git a/net-libs/libqmi/libqmi-1.16.4.ebuild b/net-libs/libqmi/libqmi-1.16.4.ebuild
deleted file mode 100644
index 5a9f25d5a37..00000000000
--- a/net-libs/libqmi/libqmi-1.16.4.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0/5.1"	# soname of libqmi-glib.so
-IUSE="doc +mbim static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32
-	mbim? ( >=net-libs/libmbim-1.14.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable mbim mbim-qmux) \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.18.0.ebuild
deleted file mode 100644
index e8219b0697e..00000000000
--- a/net-libs/libqmi/libqmi-1.18.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0/5.1"	# soname of libqmi-glib.so
-IUSE="doc +mbim static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32
-	dev-libs/libgudev
-	mbim? ( >=net-libs/libmbim-1.14.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable mbim mbim-qmux) \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}

diff --git a/net-libs/libqmi/libqmi-1.18.2.ebuild b/net-libs/libqmi/libqmi-1.18.2.ebuild
deleted file mode 100644
index e8219b0697e..00000000000
--- a/net-libs/libqmi/libqmi-1.18.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0/5.1"	# soname of libqmi-glib.so
-IUSE="doc +mbim static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32
-	dev-libs/libgudev
-	mbim? ( >=net-libs/libmbim-1.14.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable mbim mbim-qmux) \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}

diff --git a/net-libs/libqmi/libqmi-1.20.0.ebuild b/net-libs/libqmi/libqmi-1.20.0.ebuild
deleted file mode 100644
index e8219b0697e..00000000000
--- a/net-libs/libqmi/libqmi-1.20.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0/5.1"	# soname of libqmi-glib.so
-IUSE="doc +mbim static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32
-	dev-libs/libgudev
-	mbim? ( >=net-libs/libmbim-1.14.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable mbim mbim-qmux) \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}

diff --git a/net-libs/libqmi/libqmi-1.20.2.ebuild b/net-libs/libqmi/libqmi-1.20.2.ebuild
deleted file mode 100644
index 3f2f0561c2f..00000000000
--- a/net-libs/libqmi/libqmi-1.20.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit multilib
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
-else
-	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
-	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
-fi
-
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
-
-LICENSE="LGPL-2"
-SLOT="0/5.1"	# soname of libqmi-glib.so
-IUSE="doc +mbim static-libs"
-
-RDEPEND=">=dev-libs/glib-2.32
-	dev-libs/libgudev
-	mbim? ( >=net-libs/libmbim-1.14.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
-
-src_prepare() {
-	default
-	[[ -e configure ]] || eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-more-warnings \
-		$(use_enable mbim mbim-qmux) \
-		$(use_enable static{-libs,}) \
-		$(use_enable {,gtk-}doc)
-}
-
-src_install() {
-	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
-}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2021-01-08  2:34 Matt Turner
  0 siblings, 0 replies; 74+ messages in thread
From: Matt Turner @ 2021-01-08  2:34 UTC (permalink / raw
  To: gentoo-commits

commit:     65f3ccbd519bdf422e621daea9425fd309a09a7c
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  7 17:36:42 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jan  8 02:33:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f3ccbd

net-libs/libqmi: 1.26.6 version bump

Closes: https://bugs.gentoo.org/710788
Closes: https://bugs.gentoo.org/762032
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.26.6.ebuild | 47 ++++++++++++++++++++++++++++++++++++
 net-libs/libqmi/libqmi-9999.ebuild   | 37 ++++++++++++++--------------
 3 files changed, 67 insertions(+), 18 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 073fbca7bb3..9b7652c8348 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -8,3 +8,4 @@ DIST libqmi-1.18.2.tar.xz 845560 BLAKE2B 732c7385d149073a9cf89a58f0e2977fff593b0
 DIST libqmi-1.20.0.tar.xz 859464 BLAKE2B 146b07b47aa5d40d93ce381aca107ec554918a909aef85b28751228fdcb3a518ffa9479a88b1f17a94f9251a1cff1cb606c4cfd4689e8d5e813a6467f078e5cb SHA512 fceec9aff22942fa64f7a568527033354dc379f347b96c9b37844bbdfb7bfa0936f554402b855c4b191fd63ca488776b94ee69e84502a460e941caddbd648b63
 DIST libqmi-1.20.2.tar.xz 860408 BLAKE2B d6f757c7eb7d93101763714f32dee1bfc4de1f4b58fe2b6f457b938e42175da12ba6070395f06542f4edb9c6b3264ad74a718f7fc58ac25de4f4d5f2692ee123 SHA512 2d1ceda25ad995b27dc20d9b5d85ee23a841c43f33aa68b3543df10cc1da72062e648c1136a2706740659ae2cf8c17373d7c6c6f5f8d075864f47e4fb89d7b50
 DIST libqmi-1.22.2.tar.xz 947124 BLAKE2B 662cf58cb3fe48b5bbe167ac552b12ecff2944d1098e47b5a8c216a65c42c5e5c462f16625c4572e0e27e69a55cdfad76777468a42f8887f5b3984313c70747b SHA512 5785b56a60db8fb2566b6a712a18ec2ae74ce1da257473ab6b7cdea3163298ebee6c60a3158a7041aa759bd717eee4b16d9eeaa6b15d9b6e911bc8c8c44bd3d8
+DIST libqmi-1.26.6.tar.xz 1127552 BLAKE2B 1dba56c867c688c991fde7bb019234a05d77092f0725498d677a7ff620c56e58e17c873c773d96ee2131bfeac8cdbec86dadacd8fcc2f751f4e9a8d2c75efe5b SHA512 6c5e05fc158a085e1f652ff31cef65762c026cb09eb630153fddccb15e19187141e74c79818ebe00a058c5624891981cfce4d56545d4150ebb3b6e8d7bddb5ba

diff --git a/net-libs/libqmi/libqmi-1.26.6.ebuild b/net-libs/libqmi/libqmi-1.26.6.ebuild
new file mode 100644
index 00000000000..51ac0339e07
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.26.6.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
+
+LICENSE="LGPL-2"
+SLOT="0/5.7"	# soname of libqmi-glib.so
+IUSE="doc +mbim"
+
+RDEPEND=">=dev-libs/glib-2.48
+	dev-libs/libgudev
+	mbim? ( >=net-libs/libmbim-1.18.0 )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( dev-util/gtk-doc )"
+[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ ${PV} == "9999" ]] && eautoreconf
+}
+
+src_configure() {
+	econf \
+		--disable-Werror \
+		--disable-static \
+		$(use_enable mbim mbim-qmux) \
+		$(use_enable {,gtk-}doc)
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 9ae85656240..51ac0339e07 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -1,46 +1,47 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI=7
 
 inherit multilib
 if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
-	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 
-DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
-HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
 
 LICENSE="LGPL-2"
-SLOT="0/5.1"	# soname of libqmi-glib.so
-IUSE="doc +mbim static-libs"
+SLOT="0/5.7"	# soname of libqmi-glib.so
+IUSE="doc +mbim"
 
-RDEPEND=">=dev-libs/glib-2.36
+RDEPEND=">=dev-libs/glib-2.48
 	dev-libs/libgudev
-	mbim? ( >=net-libs/libmbim-1.14.0 )"
-DEPEND="${RDEPEND}
-	doc? ( dev-util/gtk-doc )
-	virtual/pkgconfig"
-[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
+	mbim? ( >=net-libs/libmbim-1.18.0 )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( dev-util/gtk-doc )"
+[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
 
 src_prepare() {
 	default
-	[[ -e configure ]] || eautoreconf
+	[[ ${PV} == "9999" ]] && eautoreconf
 }
 
 src_configure() {
 	econf \
-		--disable-more-warnings \
+		--disable-Werror \
+		--disable-static \
 		$(use_enable mbim mbim-qmux) \
-		$(use_enable static{-libs,}) \
 		$(use_enable {,gtk-}doc)
 }
 
 src_install() {
 	default
-	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
+	find "${ED}" -name '*.la' -delete || die
 }


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2019-12-24 14:55 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2019-12-24 14:55 UTC (permalink / raw
  To: gentoo-commits

commit:     aecefcda0db2f9e915fee982e0627c481a1aa587
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 24 14:54:47 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Tue Dec 24 14:54:47 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aecefcda

net-libs/libqmi: arm stable wrt bug #700652

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.22.2.ebuild b/net-libs/libqmi/libqmi-1.22.2.ebuild
index fb1341514c9..d7fb5078343 100644
--- a/net-libs/libqmi/libqmi-1.22.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.22.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm arm64 ~mips ppc ppc64 x86"
+	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2019-12-16  0:57 Aaron Bauman
  0 siblings, 0 replies; 74+ messages in thread
From: Aaron Bauman @ 2019-12-16  0:57 UTC (permalink / raw
  To: gentoo-commits

commit:     765ce9e80d49faf6ae3d0ce035614d897172292e
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 16 00:55:09 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Dec 16 00:55:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765ce9e8

net-libs/libqmi: arm64 stable (bug #700652)

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.82, Repoman-2.3.20

 net-libs/libqmi/libqmi-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.22.2.ebuild b/net-libs/libqmi/libqmi-1.22.2.ebuild
index baa6bed183f..fb1341514c9 100644
--- a/net-libs/libqmi/libqmi-1.22.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.22.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 x86"
+	KEYWORDS="amd64 ~arm arm64 ~mips ppc ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2019-12-15 14:46 Agostino Sarubbo
  0 siblings, 0 replies; 74+ messages in thread
From: Agostino Sarubbo @ 2019-12-15 14:46 UTC (permalink / raw
  To: gentoo-commits

commit:     ce9835c3b09a42772a7b7e3abbc9519fd082900f
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 14:45:46 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 14:45:46 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce9835c3

net-libs/libqmi: x86 stable wrt bug #700652

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.22.2.ebuild b/net-libs/libqmi/libqmi-1.22.2.ebuild
index 85358c5dfce..baa6bed183f 100644
--- a/net-libs/libqmi/libqmi-1.22.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.22.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2019-12-15 12:44 Agostino Sarubbo
  0 siblings, 0 replies; 74+ messages in thread
From: Agostino Sarubbo @ 2019-12-15 12:44 UTC (permalink / raw
  To: gentoo-commits

commit:     7fec3a18a3db9605ba1821876aa9dcc6a142aa9a
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 12:41:02 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 12:41:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fec3a18

net-libs/libqmi: amd64 stable wrt bug #700652

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.22.2.ebuild b/net-libs/libqmi/libqmi-1.22.2.ebuild
index 74d2f34285e..85358c5dfce 100644
--- a/net-libs/libqmi/libqmi-1.22.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.22.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ppc64 ~x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2019-12-01 14:01 Sergei Trofimovich
  0 siblings, 0 replies; 74+ messages in thread
From: Sergei Trofimovich @ 2019-12-01 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     98a159c0242d4ccbbee622858520c990f499bd7a
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  1 14:01:04 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Dec  1 14:01:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98a159c0

net-libs/libqmi: stable 1.22.2 for ppc64, bug #700652

Package-Manager: Portage-2.3.80, Repoman-2.3.19
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.22.2.ebuild b/net-libs/libqmi/libqmi-1.22.2.ebuild
index 29cb52f5418..74d2f34285e 100644
--- a/net-libs/libqmi/libqmi-1.22.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.22.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2019-12-01 13:56 Sergei Trofimovich
  0 siblings, 0 replies; 74+ messages in thread
From: Sergei Trofimovich @ 2019-12-01 13:56 UTC (permalink / raw
  To: gentoo-commits

commit:     a1e6b1f5cbcf6b11bb836946154ec94f01141d03
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  1 13:56:25 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Dec  1 13:56:25 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1e6b1f5

net-libs/libqmi: stable 1.22.2 for ppc, bug #700652

Package-Manager: Portage-2.3.80, Repoman-2.3.19
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.22.2.ebuild b/net-libs/libqmi/libqmi-1.22.2.ebuild
index 80fd734cd9b..29cb52f5418 100644
--- a/net-libs/libqmi/libqmi-1.22.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.22.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2019-05-21  3:17 Aaron Bauman
  0 siblings, 0 replies; 74+ messages in thread
From: Aaron Bauman @ 2019-05-21  3:17 UTC (permalink / raw
  To: gentoo-commits

commit:     0091d5fd68434cdf4c9bff648c090d312eec7443
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue May 21 03:14:45 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue May 21 03:14:45 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0091d5fd

net-libs/libqmi: arm64 stable

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --include-arches="arm64"

 net-libs/libqmi/libqmi-1.20.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libqmi/libqmi-1.20.2.ebuild b/net-libs/libqmi/libqmi-1.20.2.ebuild
index 4d318a2b5e6..f233d8e52a5 100644
--- a/net-libs/libqmi/libqmi-1.20.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.20.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 x86"
+	KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2019-04-01 12:18 Tony Vroon
  0 siblings, 0 replies; 74+ messages in thread
From: Tony Vroon @ 2019-04-01 12:18 UTC (permalink / raw
  To: gentoo-commits

commit:     c25f7daba26c3a776b776ddfd9c365fe81cd876d
Author:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  1 12:18:11 2019 +0000
Commit:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Mon Apr  1 12:18:11 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c25f7dab

net-libs/libqmi: Version bump to 1.22.2

EAPI bump 6->7.
GLIB minimum version 2.36 as per upstream autoconf.
MBIM minimum version 1.18 as per upstream autoconf.
Updated SLOT based on current SONAME.
Test-suite passes.

Closes: https://bugs.gentoo.org/681450
Suggested-By: Mart Raudsepp <leio <AT> gentoo.org>
Signed-Off-By: Tony Vroon <chainsaw <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.22.2.ebuild | 46 ++++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 853bf9d6bff..073fbca7bb3 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -7,3 +7,4 @@ DIST libqmi-1.18.0.tar.xz 873176 BLAKE2B ff60e3616d2ac94576df993f8f03020e19b8745
 DIST libqmi-1.18.2.tar.xz 845560 BLAKE2B 732c7385d149073a9cf89a58f0e2977fff593b00ca86f4d1abfbbc1a4521a257f57d56fc73ba5e46bfc902b9aa882eed6e3e63ac00cab2649ab35b8a547c844c SHA512 769e67534e0eeb7454849b69be72674ba07f65ec26adec668c0a0cf91c22c11bb6d91546606a33036d2a05fcd290efe05dcc1d4ab0740d625756628a7a7d3428
 DIST libqmi-1.20.0.tar.xz 859464 BLAKE2B 146b07b47aa5d40d93ce381aca107ec554918a909aef85b28751228fdcb3a518ffa9479a88b1f17a94f9251a1cff1cb606c4cfd4689e8d5e813a6467f078e5cb SHA512 fceec9aff22942fa64f7a568527033354dc379f347b96c9b37844bbdfb7bfa0936f554402b855c4b191fd63ca488776b94ee69e84502a460e941caddbd648b63
 DIST libqmi-1.20.2.tar.xz 860408 BLAKE2B d6f757c7eb7d93101763714f32dee1bfc4de1f4b58fe2b6f457b938e42175da12ba6070395f06542f4edb9c6b3264ad74a718f7fc58ac25de4f4d5f2692ee123 SHA512 2d1ceda25ad995b27dc20d9b5d85ee23a841c43f33aa68b3543df10cc1da72062e648c1136a2706740659ae2cf8c17373d7c6c6f5f8d075864f47e4fb89d7b50
+DIST libqmi-1.22.2.tar.xz 947124 BLAKE2B 662cf58cb3fe48b5bbe167ac552b12ecff2944d1098e47b5a8c216a65c42c5e5c462f16625c4572e0e27e69a55cdfad76777468a42f8887f5b3984313c70747b SHA512 5785b56a60db8fb2566b6a712a18ec2ae74ce1da257473ab6b7cdea3163298ebee6c60a3158a7041aa759bd717eee4b16d9eeaa6b15d9b6e911bc8c8c44bd3d8

diff --git a/net-libs/libqmi/libqmi-1.22.2.ebuild b/net-libs/libqmi/libqmi-1.22.2.ebuild
new file mode 100644
index 00000000000..84afb73ad2d
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.22.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit multilib
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
+else
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
+HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
+
+LICENSE="LGPL-2"
+SLOT="0/5.4"	# soname of libqmi-glib.so
+IUSE="doc +mbim static-libs"
+
+RDEPEND=">=dev-libs/glib-2.36
+	virtual/libgudev
+	mbim? ( >=net-libs/libmbim-1.18.0 )"
+DEPEND="${RDEPEND}
+	doc? ( dev-util/gtk-doc )
+	virtual/pkgconfig"
+[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ -e configure ]] || eautoreconf
+}
+
+src_configure() {
+	econf \
+		--disable-more-warnings \
+		$(use_enable mbim mbim-qmux) \
+		$(use_enable static{-libs,}) \
+		$(use_enable {,gtk-}doc)
+}
+
+src_install() {
+	default
+	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2018-12-05  7:34 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-12-05  7:34 UTC (permalink / raw
  To: gentoo-commits

commit:     d4eff453aab33c52516d054c0f1b96464ec6951f
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  5 07:20:51 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Dec  5 07:33:41 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4eff453

net-libs/libqmi: ppc stable wrt bug #670024

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-libs/libqmi/libqmi-1.20.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.20.2.ebuild b/net-libs/libqmi/libqmi-1.20.2.ebuild
index ba89516b218..4d318a2b5e6 100644
--- a/net-libs/libqmi/libqmi-1.20.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.20.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="amd64 arm ~arm64 ~mips ppc64 x86"
+	KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2018-12-04 16:27 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-12-04 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     4f8556bce31438dabe25e95f71ddc2b53e781aaf
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  4 16:22:19 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Tue Dec  4 16:22:19 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8556bc

net-libs/libqmi: arm stable wrt bug #670024

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-libs/libqmi/libqmi-1.20.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.20.2.ebuild b/net-libs/libqmi/libqmi-1.20.2.ebuild
index 9f03c3eb611..5daa0847f61 100644
--- a/net-libs/libqmi/libqmi-1.20.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.20.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
+	KEYWORDS="amd64 arm ~arm64 ~mips x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2018-11-06  7:41 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-11-06  7:41 UTC (permalink / raw
  To: gentoo-commits

commit:     08a6c2f51585a19e5924d403bcb5c4d6d67cf97e
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  6 07:40:37 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Tue Nov  6 07:40:37 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08a6c2f5

net-libs/libqmi: amd64 stable wrt bug #670090

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-libs/libqmi/libqmi-1.20.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.20.2.ebuild b/net-libs/libqmi/libqmi-1.20.2.ebuild
index 5e19053cea5..9f03c3eb611 100644
--- a/net-libs/libqmi/libqmi-1.20.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.20.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2018-11-04 19:14 Thomas Deutschmann
  0 siblings, 0 replies; 74+ messages in thread
From: Thomas Deutschmann @ 2018-11-04 19:14 UTC (permalink / raw
  To: gentoo-commits

commit:     ebe92d57efac019278b0b855ecb2c6df7e0d26ce
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  4 19:00:45 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Nov  4 19:13:28 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebe92d57

net-libs/libqmi: x86 stable (bug #670090)

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 net-libs/libqmi/libqmi-1.20.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libqmi/libqmi-1.20.2.ebuild b/net-libs/libqmi/libqmi-1.20.2.ebuild
index 3c9b3648c60..5e19053cea5 100644
--- a/net-libs/libqmi/libqmi-1.20.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.20.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2018-08-22 14:56 Tony Vroon
  0 siblings, 0 replies; 74+ messages in thread
From: Tony Vroon @ 2018-08-22 14:56 UTC (permalink / raw
  To: gentoo-commits

commit:     bf8f33b5866eb0297b25c47afa2696e6344f2fd6
Author:     Anthony Delannoy <anthony <AT> spnngl <DOT> com>
AuthorDate: Mon Aug 20 19:36:39 2018 +0000
Commit:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Wed Aug 22 14:56:52 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf8f33b5

net-libs/libqmi: version bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9646
Closes: https://bugs.gentoo.org/664176

 net-libs/libqmi/Manifest                                       | 4 ++++
 net-libs/libqmi/{libqmi-1.18.0.ebuild => libqmi-1.16.4.ebuild} | 5 ++---
 net-libs/libqmi/libqmi-1.18.0.ebuild                           | 2 +-
 net-libs/libqmi/{libqmi-1.18.0.ebuild => libqmi-1.18.2.ebuild} | 2 +-
 net-libs/libqmi/{libqmi-1.18.0.ebuild => libqmi-1.20.0.ebuild} | 2 +-
 net-libs/libqmi/{libqmi-1.18.0.ebuild => libqmi-1.20.2.ebuild} | 2 +-
 6 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 91d9cbb7389..853bf9d6bff 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -2,4 +2,8 @@ DIST libqmi-1.12.6.tar.xz 710564 BLAKE2B b7e16b1f8da62815788355a4ad54bb819e53ad8
 DIST libqmi-1.14.0.tar.xz 759472 BLAKE2B 4826105830037fe9dc6e6b3341060e3821a7b586641156bf2db7d5fbec27ae03a0a354e928a51f087c4b7722400fb5dd3503fdcb97e031d5435eddfe33182f87 SHA512 d5b4affe479e4704a9d94232bbef096533322413de8ea3c27d3ab7d6fd077fbbae779b49633fa22833ab1ce25f76cf341bfb84ec81d75fdc477f2a355ac298bd
 DIST libqmi-1.16.0.tar.xz 734280 BLAKE2B dd8614ef16e8de2bde0babbb487130b3dc13da776238d4e2aae100a150c7f05a20ca24e682f7a160ae56fad3a7ee4e8b8f4ff31971e1ac5e1cb22a9960ecf99b SHA512 e8ac10b72a15ab3d102ab5dd45ed2960f552d37c291b7ef2818f41d5a46121a5c25e60bb549f96d4982468607a11f33866632c13b0454c5cbe0d61aa95992996
 DIST libqmi-1.16.2.tar.xz 735124 BLAKE2B e99aa20e8030610b1958cab3ed7f91a3f4a3cad76fcad3bf25ea6cf82176a8571660e0fb301ed6b7cc27fbb7243d8437f16485275fcb2c42644acadf12ffe791 SHA512 7d0977d1904efb76adcdde0ca52cef864fc66a065e641f1d2b905d74fa5d314e6eae5b6ef58a508725f631823308fc8ddcc67a0547bd0e4c87dc8e3eb39b4cfb
+DIST libqmi-1.16.4.tar.xz 735220 BLAKE2B 52651eb4dc886b3b56ee0e6c47da930be2547c491748664a24dc7f012ad999377800a2d410bf1b605c40784756bfce15231fdc430419993b58e330cc8abbc968 SHA512 1cd3df8602e4ed7a8e0e068146490a0cd2581244ab5d1dd961129c1a58fa384a8d3bb6bbf715f799660f44ab3b1d20ae744c4eee3972b7392e2ac560cee6e75c
 DIST libqmi-1.18.0.tar.xz 873176 BLAKE2B ff60e3616d2ac94576df993f8f03020e19b8745541287ac069a1d15ff166f37a661f4778c1a92921791ab43ccd583a8162564e87507511a5faa85e536493f976 SHA512 3890501fa2299ce5ac8fda732363e39738c95ffb153708d8f727e88c082014018463c569a0d9666385f6394d060ec41052dec400f3f6c733e78748ca7ee56b76
+DIST libqmi-1.18.2.tar.xz 845560 BLAKE2B 732c7385d149073a9cf89a58f0e2977fff593b00ca86f4d1abfbbc1a4521a257f57d56fc73ba5e46bfc902b9aa882eed6e3e63ac00cab2649ab35b8a547c844c SHA512 769e67534e0eeb7454849b69be72674ba07f65ec26adec668c0a0cf91c22c11bb6d91546606a33036d2a05fcd290efe05dcc1d4ab0740d625756628a7a7d3428
+DIST libqmi-1.20.0.tar.xz 859464 BLAKE2B 146b07b47aa5d40d93ce381aca107ec554918a909aef85b28751228fdcb3a518ffa9479a88b1f17a94f9251a1cff1cb606c4cfd4689e8d5e813a6467f078e5cb SHA512 fceec9aff22942fa64f7a568527033354dc379f347b96c9b37844bbdfb7bfa0936f554402b855c4b191fd63ca488776b94ee69e84502a460e941caddbd648b63
+DIST libqmi-1.20.2.tar.xz 860408 BLAKE2B d6f757c7eb7d93101763714f32dee1bfc4de1f4b58fe2b6f457b938e42175da12ba6070395f06542f4edb9c6b3264ad74a718f7fc58ac25de4f4d5f2692ee123 SHA512 2d1ceda25ad995b27dc20d9b5d85ee23a841c43f33aa68b3543df10cc1da72062e648c1136a2706740659ae2cf8c17373d7c6c6f5f8d075864f47e4fb89d7b50

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.16.4.ebuild
similarity index 91%
copy from net-libs/libqmi/libqmi-1.18.0.ebuild
copy to net-libs/libqmi/libqmi-1.16.4.ebuild
index b779f7ac0ba..5a9f25d5a37 100644
--- a/net-libs/libqmi/libqmi-1.18.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.16.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libqmi.git"
 else
-	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+	KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
 	SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
 fi
 
@@ -20,7 +20,6 @@ SLOT="0/5.1"	# soname of libqmi-glib.so
 IUSE="doc +mbim static-libs"
 
 RDEPEND=">=dev-libs/glib-2.32
-	virtual/libgudev
 	mbim? ( >=net-libs/libmbim-1.14.0 )"
 DEPEND="${RDEPEND}
 	doc? ( dev-util/gtk-doc )

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.18.0.ebuild
index b779f7ac0ba..3c9b3648c60 100644
--- a/net-libs/libqmi/libqmi-1.18.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.18.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.18.2.ebuild
similarity index 96%
copy from net-libs/libqmi/libqmi-1.18.0.ebuild
copy to net-libs/libqmi/libqmi-1.18.2.ebuild
index b779f7ac0ba..3c9b3648c60 100644
--- a/net-libs/libqmi/libqmi-1.18.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.18.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.20.0.ebuild
similarity index 96%
copy from net-libs/libqmi/libqmi-1.18.0.ebuild
copy to net-libs/libqmi/libqmi-1.20.0.ebuild
index b779f7ac0ba..3c9b3648c60 100644
--- a/net-libs/libqmi/libqmi-1.18.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.20.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.20.2.ebuild
similarity index 96%
copy from net-libs/libqmi/libqmi-1.18.0.ebuild
copy to net-libs/libqmi/libqmi-1.20.2.ebuild
index b779f7ac0ba..3c9b3648c60 100644
--- a/net-libs/libqmi/libqmi-1.18.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.20.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2017-10-29 16:24 Andreas Hüttel
  0 siblings, 0 replies; 74+ messages in thread
From: Andreas Hüttel @ 2017-10-29 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     e989358351b4fdc71287238bfa26b66d143517d1
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 29 16:24:02 2017 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Oct 29 16:24:26 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9893583

net-libs/libqmi: Add missing dependency on virtual/libgudev, bug 628276

Closes: https://bugs.gentoo.org/628276
Package-Manager: Portage-2.3.13, Repoman-2.3.4

 net-libs/libqmi/libqmi-1.18.0.ebuild | 1 +
 net-libs/libqmi/libqmi-9999.ebuild   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.18.0.ebuild
index 50335f2fc35..b779f7ac0ba 100644
--- a/net-libs/libqmi/libqmi-1.18.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.18.0.ebuild
@@ -20,6 +20,7 @@ SLOT="0/5.1"	# soname of libqmi-glib.so
 IUSE="doc +mbim static-libs"
 
 RDEPEND=">=dev-libs/glib-2.32
+	virtual/libgudev
 	mbim? ( >=net-libs/libmbim-1.14.0 )"
 DEPEND="${RDEPEND}
 	doc? ( dev-util/gtk-doc )

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 1508e965a7e..37e9191d90c 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -20,6 +20,7 @@ SLOT="0/5.1"	# soname of libqmi-glib.so
 IUSE="doc +mbim static-libs"
 
 RDEPEND=">=dev-libs/glib-2.36
+	virtual/libgudev
 	mbim? ( >=net-libs/libmbim-1.14.0 )"
 DEPEND="${RDEPEND}
 	doc? ( dev-util/gtk-doc )


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2017-06-26  7:56 Alexis Ballier
  0 siblings, 0 replies; 74+ messages in thread
From: Alexis Ballier @ 2017-06-26  7:56 UTC (permalink / raw
  To: gentoo-commits

commit:     1d4ac31f8435dbdbca342a8228f6c40d3faba794
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 26 07:56:09 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jun 26 07:56:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d4ac31f

net-libs/libqmi: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-libs/libqmi/libqmi-1.18.0.ebuild | 2 +-
 net-libs/libqmi/libqmi-9999.ebuild   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.18.0.ebuild
index 48772670168..5ac223257c1 100644
--- a/net-libs/libqmi/libqmi-1.18.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.18.0.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-	KEYWORDS="~amd64 ~arm ~mips ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
 fi
 

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index d3513c1a0b1..883e1fdee70 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-	KEYWORDS="~amd64 ~arm ~mips ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2017-03-31 13:31 Michael Weber
  0 siblings, 0 replies; 74+ messages in thread
From: Michael Weber @ 2017-03-31 13:31 UTC (permalink / raw
  To: gentoo-commits

commit:     993f1416e20a337e14d6a7f73acad485ede6ba84
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 31 13:21:42 2017 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Fri Mar 31 13:21:42 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=993f1416

net-libs/libqmi: ppc stable.

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

 net-libs/libqmi/libqmi-1.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.16.2.ebuild b/net-libs/libqmi/libqmi-1.16.2.ebuild
index 5cc19374efb..c95a95f6ae5 100644
--- a/net-libs/libqmi/libqmi-1.16.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.16.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-	KEYWORDS="amd64 arm ~mips x86"
+	KEYWORDS="amd64 arm ~mips ppc x86"
 	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2017-03-27 16:39 Jason Donenfeld
  0 siblings, 0 replies; 74+ messages in thread
From: Jason Donenfeld @ 2017-03-27 16:39 UTC (permalink / raw
  To: gentoo-commits

commit:     f53dcc11786ef7b8bfaf2b4d81c2c2fcbf898fb4
Author:     Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 27 16:38:58 2017 +0000
Commit:     Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Mon Mar 27 16:39:27 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f53dcc11

net-libs/libqmi: bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.18.0.ebuild | 45 ++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 83dbd5ca687..732208600d5 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -2,3 +2,4 @@ DIST libqmi-1.12.6.tar.xz 710564 SHA256 0857bffece4e8ddfa7f721dd9ca63b4c78de345a
 DIST libqmi-1.14.0.tar.xz 759472 SHA256 6618fb92ffe6d017d7fd18082b5c13da954c3c9060f7cc4f8807ba7b2bea349d SHA512 d5b4affe479e4704a9d94232bbef096533322413de8ea3c27d3ab7d6fd077fbbae779b49633fa22833ab1ce25f76cf341bfb84ec81d75fdc477f2a355ac298bd WHIRLPOOL d3054a0bcafd38e7a488d7b4df93b38a84844f30e5157688c638816d491800471fc7e48f2e4e54e053fc14d7f16dd65eb899a74db125ac1399cc964b66caad56
 DIST libqmi-1.16.0.tar.xz 734280 SHA256 7ab6bb47fd23bf4d3fa17424e40ea5552d08b19e5ee4f125f21f316c8086ba2a SHA512 e8ac10b72a15ab3d102ab5dd45ed2960f552d37c291b7ef2818f41d5a46121a5c25e60bb549f96d4982468607a11f33866632c13b0454c5cbe0d61aa95992996 WHIRLPOOL 5168a137fd205c357ff61aa733907d1e8e71832937c0d01ce2ecb55c5e2271bcfd5387c76cbb022df2915adb666bfe8cf763a129f74c3218c53b4dfdc95bd44d
 DIST libqmi-1.16.2.tar.xz 735124 SHA256 290bb367b12de1a24c3d2dee83886ca9669e281505ac3ee0bfdbe6bd84c44b81 SHA512 7d0977d1904efb76adcdde0ca52cef864fc66a065e641f1d2b905d74fa5d314e6eae5b6ef58a508725f631823308fc8ddcc67a0547bd0e4c87dc8e3eb39b4cfb WHIRLPOOL 7a195b47e37abff7a8c4d6552b89856006e14b2acb4c958552f465ac359b6c7ae760e6ffa7b74cfdb2d851aa1a9a212c9ef5541824b5b64cb3b8126b136acf5e
+DIST libqmi-1.18.0.tar.xz 873176 SHA256 a0a42c55935e75a630208e2f70840bd4407f56fe1c5258f5b0f6c0aaedf88cec SHA512 3890501fa2299ce5ac8fda732363e39738c95ffb153708d8f727e88c082014018463c569a0d9666385f6394d060ec41052dec400f3f6c733e78748ca7ee56b76 WHIRLPOOL 337f68dde312ea3771340ce0b8b5d5d36019ad14d79cff176822e38560afccbf7fd6c1c8ab5630962887d8604b88152057ef2c838bb5819f8e07da039f91ebed

diff --git a/net-libs/libqmi/libqmi-1.18.0.ebuild b/net-libs/libqmi/libqmi-1.18.0.ebuild
new file mode 100644
index 00000000000..48772670168
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.18.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit multilib
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
+else
+	KEYWORDS="~amd64 ~arm ~mips ~x86"
+	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
+fi
+
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
+HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
+
+LICENSE="LGPL-2"
+SLOT="0/5.1"	# soname of libqmi-glib.so
+IUSE="doc +mbim static-libs"
+
+RDEPEND=">=dev-libs/glib-2.32
+	mbim? ( >=net-libs/libmbim-1.14.0 )"
+DEPEND="${RDEPEND}
+	doc? ( dev-util/gtk-doc )
+	virtual/pkgconfig"
+[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	default
+	[[ -e configure ]] || eautoreconf
+}
+
+src_configure() {
+	econf \
+		--disable-more-warnings \
+		$(use_enable mbim mbim-qmux) \
+		$(use_enable static{-libs,}) \
+		$(use_enable {,gtk-}doc)
+}
+
+src_install() {
+	default
+	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
+}


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2017-02-17  5:58 Markus Meier
  0 siblings, 0 replies; 74+ messages in thread
From: Markus Meier @ 2017-02-17  5:58 UTC (permalink / raw
  To: gentoo-commits

commit:     e18f458d5c857f8416e33352e512eb72b469c2fb
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 17 05:58:33 2017 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Fri Feb 17 05:58:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e18f458d

net-libs/libqmi: arm stable, bug #601666

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 net-libs/libqmi/libqmi-1.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.16.2.ebuild b/net-libs/libqmi/libqmi-1.16.2.ebuild
index 5f179021f8..7789860a26 100644
--- a/net-libs/libqmi/libqmi-1.16.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.16.2.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-	KEYWORDS="amd64 ~arm ~mips x86"
+	KEYWORDS="amd64 arm ~mips x86"
 	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2016-12-29 18:53 Andreas Sturmlechner
  0 siblings, 0 replies; 74+ messages in thread
From: Andreas Sturmlechner @ 2016-12-29 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     b8afacd7a13706ce8e436ded1c33d637be9efc52
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 18:52:18 2016 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 18:52:48 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8afacd7

net-libs/libqmi: Raise glib dep

Package-Manager: portage-2.3.0

 net-libs/libqmi/libqmi-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 66a50a5..4ef2b16 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -20,7 +20,7 @@ LICENSE="LGPL-2"
 SLOT="0/5.1"	# soname of libqmi-glib.so
 IUSE="doc +mbim static-libs"
 
-RDEPEND=">=dev-libs/glib-2.32
+RDEPEND=">=dev-libs/glib-2.36
 	mbim? ( >=net-libs/libmbim-1.14.0 )"
 DEPEND="${RDEPEND}
 	doc? ( dev-util/gtk-doc )


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2016-12-29 18:53 Andreas Sturmlechner
  0 siblings, 0 replies; 74+ messages in thread
From: Andreas Sturmlechner @ 2016-12-29 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     5a970ec098d1fe7630a9c5612083d1c13927cec9
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 18:51:57 2016 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 18:52:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a970ec0

net-libs/libqmi: Add subslot, fix header

metadata: Indentation

Package-Manager: portage-2.3.0

 net-libs/libqmi/libqmi-1.16.0.ebuild |  2 +-
 net-libs/libqmi/libqmi-1.16.2.ebuild |  3 ++-
 net-libs/libqmi/libqmi-9999.ebuild   |  3 ++-
 net-libs/libqmi/metadata.xml         | 25 ++++++++++++++-----------
 4 files changed, 19 insertions(+), 14 deletions(-)

diff --git a/net-libs/libqmi/libqmi-1.16.0.ebuild b/net-libs/libqmi/libqmi-1.16.0.ebuild
index 3f2b2c6..e43a4f2 100644
--- a/net-libs/libqmi/libqmi-1.16.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.16.0.ebuild
@@ -17,7 +17,7 @@ DESCRIPTION="QMI modem protocol helper library"
 HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
 
 LICENSE="LGPL-2"
-SLOT="0"
+SLOT="0/5.1"
 IUSE="doc +mbim static-libs"
 
 RDEPEND=">=dev-libs/glib-2.32

diff --git a/net-libs/libqmi/libqmi-1.16.2.ebuild b/net-libs/libqmi/libqmi-1.16.2.ebuild
index a0465a6..ca4cd53 100644
--- a/net-libs/libqmi/libqmi-1.16.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.16.2.ebuild
@@ -1,5 +1,6 @@
 # Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
+# $Id$
 
 EAPI="6"
 
@@ -16,7 +17,7 @@ DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol
 HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
 
 LICENSE="LGPL-2"
-SLOT="0"
+SLOT="0/5.1"	# soname of libqmi-glib.so
 IUSE="doc +mbim static-libs"
 
 RDEPEND=">=dev-libs/glib-2.32

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 5ed20e5..66a50a5 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -1,5 +1,6 @@
 # Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
+# $Id$
 
 EAPI="6"
 
@@ -16,7 +17,7 @@ DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol
 HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
 
 LICENSE="LGPL-2"
-SLOT="0"
+SLOT="0/5.1"	# soname of libqmi-glib.so
 IUSE="doc +mbim static-libs"
 
 RDEPEND=">=dev-libs/glib-2.32

diff --git a/net-libs/libqmi/metadata.xml b/net-libs/libqmi/metadata.xml
index cd1a66b..bca6a9f 100644
--- a/net-libs/libqmi/metadata.xml
+++ b/net-libs/libqmi/metadata.xml
@@ -1,15 +1,18 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="person">
-	<email>vapier@gentoo.org</email>
-	<description>feel free to update</description>
-</maintainer>
-<maintainer type="person">
-	<email>chainsaw@gentoo.org</email>
-	<name>Tony Vroon</name>
-</maintainer>
-<use>
-	<flag name="mbim">Support QMI over Mobile Broadband Interface Model (MBIM)</flag>
-</use>
+	<maintainer type="person">
+		<email>vapier@gentoo.org</email>
+		<description>feel free to update</description>
+	</maintainer>
+	<maintainer type="person">
+		<email>chainsaw@gentoo.org</email>
+		<name>Tony Vroon</name>
+	</maintainer>
+	<slots>
+		<subslots>libqmi-glib.so soname version</subslots>
+	</slots>
+	<use>
+		<flag name="mbim">Support QMI over Mobile Broadband Interface Model (MBIM)</flag>
+	</use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2016-12-21 18:56 Tobias Klausmann
  0 siblings, 0 replies; 74+ messages in thread
From: Tobias Klausmann @ 2016-12-21 18:56 UTC (permalink / raw
  To: gentoo-commits

commit:     7daaebb591d7e8e197f6e5306073ae61e3cb740c
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 21 18:56:13 2016 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Wed Dec 21 18:56:13 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7daaebb5

net-libs/libqmi-1.16.2-r0: stable on amd64

Gentoo-Bug: 601666

 net-libs/libqmi/libqmi-1.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqmi/libqmi-1.16.2.ebuild b/net-libs/libqmi/libqmi-1.16.2.ebuild
index 5ed20e5..a0465a6 100644
--- a/net-libs/libqmi/libqmi-1.16.2.ebuild
+++ b/net-libs/libqmi/libqmi-1.16.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-	KEYWORDS="~amd64 ~arm ~mips ~x86"
+	KEYWORDS="amd64 ~arm ~mips ~x86"
 	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
 fi
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2016-11-15 18:24 Mike Frysinger
  0 siblings, 0 replies; 74+ messages in thread
From: Mike Frysinger @ 2016-11-15 18:24 UTC (permalink / raw
  To: gentoo-commits

commit:     14b469ba48c07b88464169d7dbf0fec9502ab5e2
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 15 18:24:18 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Tue Nov 15 18:24:38 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14b469ba

net-libs/libqmi: version bump to 1.16.2

 net-libs/libqmi/Manifest                                 |  1 +
 .../libqmi/{libqmi-9999.ebuild => libqmi-1.16.2.ebuild}  | 16 +++++++++-------
 net-libs/libqmi/libqmi-9999.ebuild                       | 16 +++++++++-------
 net-libs/libqmi/metadata.xml                             |  6 +++---
 4 files changed, 22 insertions(+), 17 deletions(-)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 19a7525..83dbd5c 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,3 +1,4 @@
 DIST libqmi-1.12.6.tar.xz 710564 SHA256 0857bffece4e8ddfa7f721dd9ca63b4c78de345ac9ae2faebf04062cacba3780 SHA512 7001f61dbe2be431867a504dbfc634ed5e7c3f3b1740aef7833fb8163d1a6bdffb57793f09062f49c0b8eeff5a011a2a057a938d618f3547ff5942021b3e8a9d WHIRLPOOL 23e4b2d6349f7b6d6c88716787cc06fba5f5eaa426fb6af5d09662fe7e59251a63dd5bace691dcb1e5f76a1457caa382ab7a5e7bf7f123d276965aee79878200
 DIST libqmi-1.14.0.tar.xz 759472 SHA256 6618fb92ffe6d017d7fd18082b5c13da954c3c9060f7cc4f8807ba7b2bea349d SHA512 d5b4affe479e4704a9d94232bbef096533322413de8ea3c27d3ab7d6fd077fbbae779b49633fa22833ab1ce25f76cf341bfb84ec81d75fdc477f2a355ac298bd WHIRLPOOL d3054a0bcafd38e7a488d7b4df93b38a84844f30e5157688c638816d491800471fc7e48f2e4e54e053fc14d7f16dd65eb899a74db125ac1399cc964b66caad56
 DIST libqmi-1.16.0.tar.xz 734280 SHA256 7ab6bb47fd23bf4d3fa17424e40ea5552d08b19e5ee4f125f21f316c8086ba2a SHA512 e8ac10b72a15ab3d102ab5dd45ed2960f552d37c291b7ef2818f41d5a46121a5c25e60bb549f96d4982468607a11f33866632c13b0454c5cbe0d61aa95992996 WHIRLPOOL 5168a137fd205c357ff61aa733907d1e8e71832937c0d01ce2ecb55c5e2271bcfd5387c76cbb022df2915adb666bfe8cf763a129f74c3218c53b4dfdc95bd44d
+DIST libqmi-1.16.2.tar.xz 735124 SHA256 290bb367b12de1a24c3d2dee83886ca9669e281505ac3ee0bfdbe6bd84c44b81 SHA512 7d0977d1904efb76adcdde0ca52cef864fc66a065e641f1d2b905d74fa5d314e6eae5b6ef58a508725f631823308fc8ddcc67a0547bd0e4c87dc8e3eb39b4cfb WHIRLPOOL 7a195b47e37abff7a8c4d6552b89856006e14b2acb4c958552f465ac359b6c7ae760e6ffa7b74cfdb2d851aa1a9a212c9ef5541824b5b64cb3b8126b136acf5e

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-1.16.2.ebuild
similarity index 69%
copy from net-libs/libqmi/libqmi-9999.ebuild
copy to net-libs/libqmi/libqmi-1.16.2.ebuild
index 5dec37a..5ed20e5 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-1.16.2.ebuild
@@ -1,38 +1,40 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
-EAPI="5"
+EAPI="6"
 
 inherit multilib
 if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-	KEYWORDS="~amd64 ~arm ~x86"
+	KEYWORDS="~amd64 ~arm ~mips ~x86"
 	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
 fi
 
-DESCRIPTION="QMI modem protocol helper library"
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
 HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
 
 LICENSE="LGPL-2"
 SLOT="0"
-IUSE="doc static-libs"
+IUSE="doc +mbim static-libs"
 
-RDEPEND=">=dev-libs/glib-2.32"
+RDEPEND=">=dev-libs/glib-2.32
+	mbim? ( >=net-libs/libmbim-1.14.0 )"
 DEPEND="${RDEPEND}
 	doc? ( dev-util/gtk-doc )
 	virtual/pkgconfig"
 [[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
 
 src_prepare() {
+	default
 	[[ -e configure ]] || eautoreconf
 }
 
 src_configure() {
 	econf \
 		--disable-more-warnings \
+		$(use_enable mbim mbim-qmux) \
 		$(use_enable static{-libs,}) \
 		$(use_enable {,gtk-}doc)
 }

diff --git a/net-libs/libqmi/libqmi-9999.ebuild b/net-libs/libqmi/libqmi-9999.ebuild
index 5dec37a..5ed20e5 100644
--- a/net-libs/libqmi/libqmi-9999.ebuild
+++ b/net-libs/libqmi/libqmi-9999.ebuild
@@ -1,38 +1,40 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
-EAPI="5"
+EAPI="6"
 
 inherit multilib
 if [[ ${PV} == "9999" ]] ; then
 	inherit git-r3 autotools
 	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-	KEYWORDS="~amd64 ~arm ~x86"
+	KEYWORDS="~amd64 ~arm ~mips ~x86"
 	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
 fi
 
-DESCRIPTION="QMI modem protocol helper library"
+DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol helper library"
 HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
 
 LICENSE="LGPL-2"
 SLOT="0"
-IUSE="doc static-libs"
+IUSE="doc +mbim static-libs"
 
-RDEPEND=">=dev-libs/glib-2.32"
+RDEPEND=">=dev-libs/glib-2.32
+	mbim? ( >=net-libs/libmbim-1.14.0 )"
 DEPEND="${RDEPEND}
 	doc? ( dev-util/gtk-doc )
 	virtual/pkgconfig"
 [[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
 
 src_prepare() {
+	default
 	[[ -e configure ]] || eautoreconf
 }
 
 src_configure() {
 	econf \
 		--disable-more-warnings \
+		$(use_enable mbim mbim-qmux) \
 		$(use_enable static{-libs,}) \
 		$(use_enable {,gtk-}doc)
 }

diff --git a/net-libs/libqmi/metadata.xml b/net-libs/libqmi/metadata.xml
index ce7bf54..cd1a66b 100644
--- a/net-libs/libqmi/metadata.xml
+++ b/net-libs/libqmi/metadata.xml
@@ -2,14 +2,14 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 <maintainer type="person">
- <email>vapier@gentoo.org</email>
- <description>feel free to update</description>
+	<email>vapier@gentoo.org</email>
+	<description>feel free to update</description>
 </maintainer>
 <maintainer type="person">
 	<email>chainsaw@gentoo.org</email>
 	<name>Tony Vroon</name>
 </maintainer>
 <use>
-  <flag name="mbim">Support QMI over MBIM</flag>
+	<flag name="mbim">Support QMI over Mobile Broadband Interface Model (MBIM)</flag>
 </use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2016-11-15 18:24 Mike Frysinger
  0 siblings, 0 replies; 74+ messages in thread
From: Mike Frysinger @ 2016-11-15 18:24 UTC (permalink / raw
  To: gentoo-commits

commit:     00dbca8a75d731055b3fdba85c633df14d0e48da
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 15 18:17:06 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Tue Nov 15 18:24:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00dbca8a

net-libs/libqmi: add libmbim to RDEPEND too #599250

 net-libs/libqmi/libqmi-1.16.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libqmi/libqmi-1.16.0.ebuild b/net-libs/libqmi/libqmi-1.16.0.ebuild
index f3f2154..3f2b2c6 100644
--- a/net-libs/libqmi/libqmi-1.16.0.ebuild
+++ b/net-libs/libqmi/libqmi-1.16.0.ebuild
@@ -20,10 +20,10 @@ LICENSE="LGPL-2"
 SLOT="0"
 IUSE="doc +mbim static-libs"
 
-RDEPEND=">=dev-libs/glib-2.32"
+RDEPEND=">=dev-libs/glib-2.32
+	mbim? ( >=net-libs/libmbim-1.14.0 )"
 DEPEND="${RDEPEND}
 	doc? ( dev-util/gtk-doc )
-	mbim? ( >=net-libs/libmbim-1.14.0 )
 	virtual/pkgconfig"
 [[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
 


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2016-09-17 14:19 Tony Vroon
  0 siblings, 0 replies; 74+ messages in thread
From: Tony Vroon @ 2016-09-17 14:19 UTC (permalink / raw
  To: gentoo-commits

commit:     f719fc763e8427b04135914d5e1903d997afa1b8
Author:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 17 14:18:35 2016 +0000
Commit:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Sat Sep 17 14:19:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f719fc76

net-libs/libqmi: Version bump to 1.16.0, now with MBIM over QMI proxy support.

Package-Manager: portage-2.2.28

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.16.0.ebuild | 46 ++++++++++++++++++++++++++++++++++++
 net-libs/libqmi/metadata.xml         |  3 +++
 3 files changed, 50 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 5261973..5d387c6 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -2,5 +2,6 @@ DIST libqmi-1.0.0.tar.gz 2398450 SHA256 aea6b4c027bc24bdf5a624b50be8413c796c266c
 DIST libqmi-1.10.2.tar.xz 643256 SHA256 0d70b10810e45aebb4af902db59972d756441ca1e301240c5c529ef0f08bf80f SHA512 01f82d674ee1554473660b046fa3cc75f0d4f628d866fc1c111080c06cdb941d6d69950f2efce0f5839c461b459d51f14bf840e4f410a4beb0fad6e4c7dea2e9 WHIRLPOOL a7615cbbb195c94eb493edad0282f4bdf0ca695c3964331e00aa403e2dd83062eda1fd04cfdc77b84f9d9aebf213bc64726c0cc715d4f9ad6368f36cbffb6542
 DIST libqmi-1.12.6.tar.xz 710564 SHA256 0857bffece4e8ddfa7f721dd9ca63b4c78de345ac9ae2faebf04062cacba3780 SHA512 7001f61dbe2be431867a504dbfc634ed5e7c3f3b1740aef7833fb8163d1a6bdffb57793f09062f49c0b8eeff5a011a2a057a938d618f3547ff5942021b3e8a9d WHIRLPOOL 23e4b2d6349f7b6d6c88716787cc06fba5f5eaa426fb6af5d09662fe7e59251a63dd5bace691dcb1e5f76a1457caa382ab7a5e7bf7f123d276965aee79878200
 DIST libqmi-1.14.0.tar.xz 759472 SHA256 6618fb92ffe6d017d7fd18082b5c13da954c3c9060f7cc4f8807ba7b2bea349d SHA512 d5b4affe479e4704a9d94232bbef096533322413de8ea3c27d3ab7d6fd077fbbae779b49633fa22833ab1ce25f76cf341bfb84ec81d75fdc477f2a355ac298bd WHIRLPOOL d3054a0bcafd38e7a488d7b4df93b38a84844f30e5157688c638816d491800471fc7e48f2e4e54e053fc14d7f16dd65eb899a74db125ac1399cc964b66caad56
+DIST libqmi-1.16.0.tar.xz 734280 SHA256 7ab6bb47fd23bf4d3fa17424e40ea5552d08b19e5ee4f125f21f316c8086ba2a SHA512 e8ac10b72a15ab3d102ab5dd45ed2960f552d37c291b7ef2818f41d5a46121a5c25e60bb549f96d4982468607a11f33866632c13b0454c5cbe0d61aa95992996 WHIRLPOOL 5168a137fd205c357ff61aa733907d1e8e71832937c0d01ce2ecb55c5e2271bcfd5387c76cbb022df2915adb666bfe8cf763a129f74c3218c53b4dfdc95bd44d
 DIST libqmi-1.4.0.tar.xz 592684 SHA256 812515c36fd77c5f7eb9d52804e9666c4341e8c7dd3d932ca1e607b467831af3 SHA512 ca20352ba0eb4e03946b366ddcfec2892fda1e5dc8351816ee2314bc3d4235637eb143066f0f96bd9a9b5b5b3198265432beb8a984617e6618ddbd5c937e2b93 WHIRLPOOL 99418e9c91f89058279f9353b8b2b277f12fdda85f3114b005be59db9432fed91148bd6bcb3519bc4267cd2d1479c818cd8816d9c6d38a7721ad18f6b2fdd80e
 DIST libqmi-1.8.0.tar.xz 659720 SHA256 fadd8070dd6f95eb00d04058c616ade57966d8e54d894da8ddbf31e98310ee0d SHA512 016fdcdb8e66452be5c82107f00189292822afe97ec3e3a458b5a6bce2174a428035d76efd5f57497a07bfd62991e4330ebe150e91dd178c4f698be8e537d372 WHIRLPOOL 67f9addbb70203dfdb3bf379a1599ce9df197a1cc8e619795c08e28f3247c730f3f106fd02368834815cf1b55b64d22dc23a5108a42e8c509cd9ac4cc1593a93

diff --git a/net-libs/libqmi/libqmi-1.16.0.ebuild b/net-libs/libqmi/libqmi-1.16.0.ebuild
new file mode 100644
index 00000000..f3f2154
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.16.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit multilib
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
+else
+	KEYWORDS="~amd64 ~arm ~mips ~x86"
+	SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
+fi
+
+DESCRIPTION="QMI modem protocol helper library"
+HOMEPAGE="https://cgit.freedesktop.org/libqmi/"
+
+LICENSE="LGPL-2"
+SLOT="0"
+IUSE="doc +mbim static-libs"
+
+RDEPEND=">=dev-libs/glib-2.32"
+DEPEND="${RDEPEND}
+	doc? ( dev-util/gtk-doc )
+	mbim? ( >=net-libs/libmbim-1.14.0 )
+	virtual/pkgconfig"
+[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	eapply_user
+	[[ -e configure ]] || eautoreconf
+}
+
+src_configure() {
+	econf \
+		--disable-more-warnings \
+		$(use_enable mbim mbim-qmux ) \
+		$(use_enable static{-libs,}) \
+		$(use_enable {,gtk-}doc)
+}
+
+src_install() {
+	default
+	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
+}

diff --git a/net-libs/libqmi/metadata.xml b/net-libs/libqmi/metadata.xml
index 8acbd75..ce7bf54 100644
--- a/net-libs/libqmi/metadata.xml
+++ b/net-libs/libqmi/metadata.xml
@@ -9,4 +9,7 @@
 	<email>chainsaw@gentoo.org</email>
 	<name>Tony Vroon</name>
 </maintainer>
+<use>
+  <flag name="mbim">Support QMI over MBIM</flag>
+</use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2016-03-31 13:24 Tony Vroon
  0 siblings, 0 replies; 74+ messages in thread
From: Tony Vroon @ 2016-03-31 13:24 UTC (permalink / raw
  To: gentoo-commits

commit:     966f04322e83242d75a47f77980096be61515d70
Author:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 31 13:24:24 2016 +0000
Commit:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Thu Mar 31 13:24:24 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=966f0432

net-libs/libqmi: Taking maintainership from Alexey Shvetsov.

Package-Manager: portage-2.2.28

 net-libs/libqmi/Manifest             |  1 +
 net-libs/libqmi/libqmi-1.14.0.ebuild | 43 ++++++++++++++++++++++++++++++++++++
 net-libs/libqmi/metadata.xml         |  4 ++++
 3 files changed, 48 insertions(+)

diff --git a/net-libs/libqmi/Manifest b/net-libs/libqmi/Manifest
index 0d71545..5261973 100644
--- a/net-libs/libqmi/Manifest
+++ b/net-libs/libqmi/Manifest
@@ -1,5 +1,6 @@
 DIST libqmi-1.0.0.tar.gz 2398450 SHA256 aea6b4c027bc24bdf5a624b50be8413c796c266c1e134425a8e783fb7b5ff419 SHA512 7d1a057fadd65e16e623670cc1a6292c9dc2e22630d329e820320c70acbabba519280bd76a954a5308d395cae23893ba5700b213e397457a8b7410ec6b8fc157 WHIRLPOOL 95a3341068d852f3754ba8c8bfa139a03de38e9a0ad861c84124e3cf55740576a66f8c9a1b33dac8d7c8b3f4924ac3be5a26ccf95d876c79c431949dcb19e2c3
 DIST libqmi-1.10.2.tar.xz 643256 SHA256 0d70b10810e45aebb4af902db59972d756441ca1e301240c5c529ef0f08bf80f SHA512 01f82d674ee1554473660b046fa3cc75f0d4f628d866fc1c111080c06cdb941d6d69950f2efce0f5839c461b459d51f14bf840e4f410a4beb0fad6e4c7dea2e9 WHIRLPOOL a7615cbbb195c94eb493edad0282f4bdf0ca695c3964331e00aa403e2dd83062eda1fd04cfdc77b84f9d9aebf213bc64726c0cc715d4f9ad6368f36cbffb6542
 DIST libqmi-1.12.6.tar.xz 710564 SHA256 0857bffece4e8ddfa7f721dd9ca63b4c78de345ac9ae2faebf04062cacba3780 SHA512 7001f61dbe2be431867a504dbfc634ed5e7c3f3b1740aef7833fb8163d1a6bdffb57793f09062f49c0b8eeff5a011a2a057a938d618f3547ff5942021b3e8a9d WHIRLPOOL 23e4b2d6349f7b6d6c88716787cc06fba5f5eaa426fb6af5d09662fe7e59251a63dd5bace691dcb1e5f76a1457caa382ab7a5e7bf7f123d276965aee79878200
+DIST libqmi-1.14.0.tar.xz 759472 SHA256 6618fb92ffe6d017d7fd18082b5c13da954c3c9060f7cc4f8807ba7b2bea349d SHA512 d5b4affe479e4704a9d94232bbef096533322413de8ea3c27d3ab7d6fd077fbbae779b49633fa22833ab1ce25f76cf341bfb84ec81d75fdc477f2a355ac298bd WHIRLPOOL d3054a0bcafd38e7a488d7b4df93b38a84844f30e5157688c638816d491800471fc7e48f2e4e54e053fc14d7f16dd65eb899a74db125ac1399cc964b66caad56
 DIST libqmi-1.4.0.tar.xz 592684 SHA256 812515c36fd77c5f7eb9d52804e9666c4341e8c7dd3d932ca1e607b467831af3 SHA512 ca20352ba0eb4e03946b366ddcfec2892fda1e5dc8351816ee2314bc3d4235637eb143066f0f96bd9a9b5b5b3198265432beb8a984617e6618ddbd5c937e2b93 WHIRLPOOL 99418e9c91f89058279f9353b8b2b277f12fdda85f3114b005be59db9432fed91148bd6bcb3519bc4267cd2d1479c818cd8816d9c6d38a7721ad18f6b2fdd80e
 DIST libqmi-1.8.0.tar.xz 659720 SHA256 fadd8070dd6f95eb00d04058c616ade57966d8e54d894da8ddbf31e98310ee0d SHA512 016fdcdb8e66452be5c82107f00189292822afe97ec3e3a458b5a6bce2174a428035d76efd5f57497a07bfd62991e4330ebe150e91dd178c4f698be8e537d372 WHIRLPOOL 67f9addbb70203dfdb3bf379a1599ce9df197a1cc8e619795c08e28f3247c730f3f106fd02368834815cf1b55b64d22dc23a5108a42e8c509cd9ac4cc1593a93

diff --git a/net-libs/libqmi/libqmi-1.14.0.ebuild b/net-libs/libqmi/libqmi-1.14.0.ebuild
new file mode 100644
index 0000000..fec0631
--- /dev/null
+++ b/net-libs/libqmi/libqmi-1.14.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit multilib
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3 autotools
+	EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
+else
+	KEYWORDS="~amd64 ~arm ~mips ~x86"
+	SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz"
+fi
+
+DESCRIPTION="QMI modem protocol helper library"
+HOMEPAGE="http://cgit.freedesktop.org/libqmi/"
+
+LICENSE="LGPL-2"
+SLOT="0"
+IUSE="doc static-libs"
+
+RDEPEND=">=dev-libs/glib-2.32"
+DEPEND="${RDEPEND}
+	doc? ( dev-util/gtk-doc )
+	virtual/pkgconfig"
+[[ ${PV} == "9999" ]] && DEPEND+=" dev-util/gtk-doc" #469214
+
+src_prepare() {
+	[[ -e configure ]] || eautoreconf
+}
+
+src_configure() {
+	econf \
+		--disable-more-warnings \
+		$(use_enable static{-libs,}) \
+		$(use_enable {,gtk-}doc)
+}
+
+src_install() {
+	default
+	use static-libs || rm -f "${ED}/usr/$(get_libdir)/${PN}-glib.la"
+}

diff --git a/net-libs/libqmi/metadata.xml b/net-libs/libqmi/metadata.xml
index c282ace..8acbd75 100644
--- a/net-libs/libqmi/metadata.xml
+++ b/net-libs/libqmi/metadata.xml
@@ -5,4 +5,8 @@
  <email>vapier@gentoo.org</email>
  <description>feel free to update</description>
 </maintainer>
+<maintainer type="person">
+	<email>chainsaw@gentoo.org</email>
+	<name>Tony Vroon</name>
+</maintainer>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 74+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/
@ 2016-03-31 11:27 Alexey Shvetsov
  0 siblings, 0 replies; 74+ messages in thread
From: Alexey Shvetsov @ 2016-03-31 11:27 UTC (permalink / raw
  To: gentoo-commits

commit:     74e55e8c0b1dd4c73e0058703ef5f53e35598422
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 31 11:25:19 2016 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Thu Mar 31 11:25:19 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74e55e8c

net-libs/libqmi: drop myself from metadata.xml

Package-Manager: portage-2.2.28

 net-libs/libqmi/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/net-libs/libqmi/metadata.xml b/net-libs/libqmi/metadata.xml
index 923effe..c282ace 100644
--- a/net-libs/libqmi/metadata.xml
+++ b/net-libs/libqmi/metadata.xml
@@ -5,8 +5,4 @@
  <email>vapier@gentoo.org</email>
  <description>feel free to update</description>
 </maintainer>
-<maintainer type="person">
-	<email>alexxy@gentoo.org</email>
-	<name>Alexey Shvetsov</name>
-</maintainer>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 74+ messages in thread

end of thread, other threads:[~2024-10-09  8:23 UTC | newest]

Thread overview: 74+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-24 15:33 [gentoo-commits] repo/gentoo:master commit in: net-libs/libqmi/ Matt Turner
  -- strict thread matches above, loose matches on Subject: below --
2024-10-09  8:23 Sam James
2024-05-29 11:48 Sam James
2024-05-29  6:26 Jakov Smolić
2024-05-28 22:01 Sam James
2023-07-29 11:51 Pacho Ramos
2023-07-29 11:51 Pacho Ramos
2023-07-09 12:29 Matt Turner
2022-10-31 14:28 Matt Turner
2022-08-15 19:13 Arthur Zamarin
2022-08-15 17:43 Arthur Zamarin
2022-07-29  2:59 Sam James
2022-06-24 15:33 Matt Turner
2022-05-31  9:24 Jakov Smolić
2022-05-28  5:05 Sam James
2022-05-24 11:14 WANG Xuerui
2022-05-24 11:14 WANG Xuerui
2022-04-28 15:31 Matt Turner
2022-03-09 15:39 Sam James
2022-03-09 12:49 Sam James
2022-03-08 12:32 Sam James
2022-02-11 20:56 Matt Turner
2022-01-24 22:43 Matt Turner
2021-11-06  3:58 Sam James
2021-10-04  1:24 Sam James
2021-09-15 20:27 Matt Turner
2021-08-08 19:46 Marek Szuba
2021-08-05 23:09 Matt Turner
2021-07-26  7:15 Matt Turner
2021-07-24 17:08 Sam James
2021-07-11 20:48 Sam James
2021-07-11  2:31 Sam James
2021-07-10 15:40 Sam James
2021-06-06 21:49 Matt Turner
2021-05-29 15:27 Sam James
2021-05-28 19:20 Sam James
2021-05-28 19:11 Sam James
2021-05-15 16:54 Matt Turner
2021-04-13 16:20 Matt Turner
2021-04-12 22:12 Sam James
2021-04-12 22:12 Sam James
2021-03-30  3:19 Matt Turner
2021-03-21 14:28 Matt Turner
2021-03-12 15:28 Sam James
2021-03-12  8:04 Mikle Kolyada
2021-03-11  2:35 Sam James
2021-01-08  2:46 Matt Turner
2021-01-08  2:34 Matt Turner
2019-12-24 14:55 Mikle Kolyada
2019-12-16  0:57 Aaron Bauman
2019-12-15 14:46 Agostino Sarubbo
2019-12-15 12:44 Agostino Sarubbo
2019-12-01 14:01 Sergei Trofimovich
2019-12-01 13:56 Sergei Trofimovich
2019-05-21  3:17 Aaron Bauman
2019-04-01 12:18 Tony Vroon
2018-12-05  7:34 Mikle Kolyada
2018-12-04 16:27 Mikle Kolyada
2018-11-06  7:41 Mikle Kolyada
2018-11-04 19:14 Thomas Deutschmann
2018-08-22 14:56 Tony Vroon
2017-10-29 16:24 Andreas Hüttel
2017-06-26  7:56 Alexis Ballier
2017-03-31 13:31 Michael Weber
2017-03-27 16:39 Jason Donenfeld
2017-02-17  5:58 Markus Meier
2016-12-29 18:53 Andreas Sturmlechner
2016-12-29 18:53 Andreas Sturmlechner
2016-12-21 18:56 Tobias Klausmann
2016-11-15 18:24 Mike Frysinger
2016-11-15 18:24 Mike Frysinger
2016-09-17 14:19 Tony Vroon
2016-03-31 13:24 Tony Vroon
2016-03-31 11:27 Alexey Shvetsov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox