Merge pull request #7769 from Rmys/master

dconf ver. bump
This commit is contained in:
Rmys
2020-01-31 22:48:01 +03:00
committed by GitHub
2 changed files with 17 additions and 21 deletions
+8 -19
View File
@@ -1,33 +1,22 @@
#!/usr/bin/python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
mesontools.configure("-Dgtk_doc=true")
shelltools.system(""" sed -i "s|link_whole: libdconf_common,|link_with: libdconf_common,|g" common/meson.build """)
shelltools.makedirs("build")
shelltools.cd("build")
shelltools.system("meson .. --prefix=/usr --sysconfdir=/etc -Dwith-dbus-service-dir=/usr/share/dbus-1/services \
-Dwith-dbus-system-service-dir=/usr/share/dbus-1/system-services -Dwith-gio-modules-dir=/usr/lib/gio/modules \
-Denable-gtk-doc=false -Denable-man=true")
def build(): def build():
shelltools.cd("build") mesontools.build()
shelltools.system("ninja")
def install(): def install():
shelltools.cd("build") mesontools.install()
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("COPYING", "NEWS", "README") pisitools.dodoc("COPYING", "NEWS", "README")
+9 -2
View File
@@ -12,10 +12,10 @@
<IsA>app:console</IsA> <IsA>app:console</IsA>
<Summary>Simple low-level configuration system</Summary> <Summary>Simple low-level configuration system</Summary>
<Description>dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems.</Description> <Description>dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems.</Description>
<Archive sha1sum="91e15b0cb24b2b9a502e48ec4252bb604232e6fe" type="tarxz">http://ftp.acc.umu.se/pub/gnome/sources/dconf/0.34/dconf-0.34.0.tar.xz</Archive> <Archive sha1sum="009b25dc2ff0c8de6ad814284faee9288682f955" type="tarxz">http://ftp.acc.umu.se/pub/gnome/sources/dconf/0.35/dconf-0.35.1.tar.xz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>meson</Dependency> <Dependency>meson</Dependency>
<Dependency>ninja</Dependency> <Dependency>ninja</Dependency>
<Dependency>vala-devel</Dependency> <Dependency>vala-devel</Dependency>
<Dependency>dbus-devel</Dependency> <Dependency>dbus-devel</Dependency>
<Dependency>glib2-devel</Dependency> <Dependency>glib2-devel</Dependency>
@@ -70,6 +70,13 @@
</Package> </Package>
<History> <History>
<Update release="8">
<Date>2020-01-31</Date>
<Version>0.35.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="7"> <Update release="7">
<Date>2020-01-14</Date> <Date>2020-01-14</Date>
<Version>0.34.0</Version> <Version>0.34.0</Version>