Merge pull request #11061 from Rmys/master

libupnp,ModemManager,libqmi ver. bump
This commit is contained in:
Rmys
2022-11-24 12:40:29 +03:00
committed by GitHub
6 changed files with 49 additions and 19 deletions
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Portable UPnP library.</Summary> <Summary>Portable UPnP library.</Summary>
<Description>The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux.</Description> <Description>The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux.</Description>
<Archive sha1sum="0c51aad290506989335b619ea3181c7ccf146fe9" type="tarbz2">mirrors://sourceforge/pupnp/libupnp-1.14.12.tar.bz2</Archive> <Archive sha1sum="6deedeb028948e53bba3e49cde65d912a63753b7" type="tarbz2">mirrors://sourceforge/pupnp/libupnp-1.14.15.tar.bz2</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>kernel-headers</Dependency> <Dependency>kernel-headers</Dependency>
</BuildDependencies> </BuildDependencies>
@@ -42,6 +42,13 @@
</Package> </Package>
<History> <History>
<Update release="8">
<Date>2022-11-24</Date>
<Version>1.14.15</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="7"> <Update release="7">
<Date>2022-04-16</Date> <Date>2022-04-16</Date>
<Version>1.14.12</Version> <Version>1.14.12</Version>
+10 -3
View File
@@ -13,7 +13,7 @@
<IsA>service</IsA> <IsA>service</IsA>
<Summary>A manager framework for mobile broadband modems</Summary> <Summary>A manager framework for mobile broadband modems</Summary>
<Description>ModemManager provides a unified high level API for communicating with mobile broadband modems.</Description> <Description>ModemManager provides a unified high level API for communicating with mobile broadband modems.</Description>
<Archive sha1sum="ad5dc34b6825453b61c72edc2a4119c92f1f55d5" type="tarbz2">https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/archive/1.18.12/ModemManager-1.18.12.tar.bz2</Archive> <Archive sha1sum="a07ff3f71000b16e1a4f4ab4870f742520bd750c" type="tarbz2">https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/archive/1.20.2/ModemManager-1.20.2.tar.bz2</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>meson</Dependency> <Dependency>meson</Dependency>
<Dependency>dbus-devel</Dependency> <Dependency>dbus-devel</Dependency>
@@ -23,8 +23,8 @@
<Dependency>gobject-introspection-devel</Dependency> <Dependency>gobject-introspection-devel</Dependency>
<Dependency>polkit-devel</Dependency> <Dependency>polkit-devel</Dependency>
<Dependency>ppp-devel</Dependency> <Dependency>ppp-devel</Dependency>
<Dependency versionFrom="1.30.8">libqmi-devel</Dependency> <Dependency versionFrom="1.32.2">libqmi-devel</Dependency>
<Dependency versionFrom="1.26.4">libmbim-devel</Dependency> <Dependency versionFrom="1.28.2">libmbim-devel</Dependency>
<Dependency>intltool</Dependency> <Dependency>intltool</Dependency>
<Dependency>gtk-doc</Dependency> <Dependency>gtk-doc</Dependency>
<Dependency>docbook-xsl</Dependency> <Dependency>docbook-xsl</Dependency>
@@ -132,6 +132,13 @@
</Package> </Package>
<History> <History>
<Update release="21">
<Date>2022-11-24</Date>
<Version>1.20.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20"> <Update release="20">
<Date>2022-09-21</Date> <Date>2022-09-21</Date>
<Version>1.18.12</Version> <Version>1.18.12</Version>
+5 -4
View File
@@ -6,18 +6,19 @@
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
shelltools.export("PYTHON","/usr/bin/python3") shelltools.export("PYTHON","/usr/bin/python3")
autotools.configure("--disable-static") mesontools.configure()
def build(): def build():
autotools.make() mesontools.build()
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) mesontools.install()
pisitools.dodoc("COPYING", "README") pisitools.dodoc("AUTHORS", "README*")
+9 -1
View File
@@ -12,8 +12,9 @@
<IsA>library</IsA> <IsA>library</IsA>
<Summary>MBIM modem protocol helper library.</Summary> <Summary>MBIM modem protocol helper library.</Summary>
<Description>libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol.</Description> <Description>libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol.</Description>
<Archive sha1sum="db8a10a8923304e0ede2d3aa5cf45451d826d71a" type="tarxz">http://www.freedesktop.org/software/libmbim/libmbim-1.26.4.tar.xz</Archive> <Archive sha1sum="4c42f460a36b2520fabe3d7ae5d6c88b4862a1b7" type="targz">https://github.com/freedesktop/libmbim/archive/refs/tags/1.28.2.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>gtk-doc</Dependency> <Dependency>gtk-doc</Dependency>
<Dependency>help2man</Dependency> <Dependency>help2man</Dependency>
<Dependency>glib2-devel</Dependency> <Dependency>glib2-devel</Dependency>
@@ -58,6 +59,13 @@
</Package> </Package>
<History> <History>
<Update release="13">
<Date>2022-11-24</Date>
<Version>1.28.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12"> <Update release="12">
<Date>2022-06-26</Date> <Date>2022-06-26</Date>
<Version>1.26.4</Version> <Version>1.26.4</Version>
+6 -8
View File
@@ -7,20 +7,18 @@
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
shelltools.export("PYTHON","/usr/bin/python3") shelltools.export("PYTHON","/usr/bin/python3")
autotools.configure("--prefix=/usr \ mesontools.configure()
--disable-static \
--with-tests \
--libexecdir=/usr/lib/libqmi")
def build(): def build():
autotools.make() mesontools.build()
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) mesontools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO") pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README*", "TODO")
+11 -2
View File
@@ -12,8 +12,9 @@
<IsA>app:gui</IsA> <IsA>app:gui</IsA>
<Summary>QMI modem protocol helper library</Summary> <Summary>QMI modem protocol helper library</Summary>
<Description>libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol.</Description> <Description>libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol.</Description>
<Archive sha1sum="3b53818bc9cd9fffd529b272ad30937c5bf63962" type="tarxz">https://www.freedesktop.org/software/libqmi/libqmi-1.30.8.tar.xz</Archive> <Archive sha1sum="4c1c40e9e11d99820db5b5adde335d304125b419" type="targz">https://github.com/freedesktop/libqmi/archive/refs/tags/1.32.2.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>help2man</Dependency> <Dependency>help2man</Dependency>
<Dependency>glib2-devel</Dependency> <Dependency>glib2-devel</Dependency>
<Dependency>python3-devel</Dependency> <Dependency>python3-devel</Dependency>
@@ -21,7 +22,7 @@
<Dependency>autoconf-archive</Dependency> <Dependency>autoconf-archive</Dependency>
<Dependency>libqrtr-glib-devel</Dependency> <Dependency>libqrtr-glib-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency> <Dependency>gobject-introspection-devel</Dependency>
<Dependency versionFrom="1.26.4">libmbim-devel</Dependency> <Dependency versionFrom="1.28.2">libmbim-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -38,6 +39,7 @@
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path> <Path fileType="man">/usr/share/man</Path>
<Path fileType="executable">/usr/bin</Path> <Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path> <Path fileType="doc">/usr/share/gtk-doc</Path>
<Path fileType="doc">/usr/share/doc/libqmi/</Path> <Path fileType="doc">/usr/share/doc/libqmi/</Path>
<Path fileType="data">/usr/share/gir-1.0/Qmi-1.0.gir</Path> <Path fileType="data">/usr/share/gir-1.0/Qmi-1.0.gir</Path>
@@ -60,6 +62,13 @@
</Package> </Package>
<History> <History>
<Update release="16">
<Date>2022-11-24</Date>
<Version>1.32.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15"> <Update release="15">
<Date>2022-09-21</Date> <Date>2022-09-21</Date>
<Version>1.30.8</Version> <Version>1.30.8</Version>