gnome * ver. bump

This commit is contained in:
Rmys
2024-05-31 16:15:00 +03:00
parent 30fcab6e70
commit defa28a420
6 changed files with 41 additions and 23 deletions
+4 -3
View File
@@ -7,16 +7,17 @@
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import get
def setup():
autotools.configure()
mesontools.configure()
def build():
autotools.make()
mesontools.build()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
mesontools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING")
+8 -1
View File
@@ -11,7 +11,7 @@
<License>LGPLv2</License>
<Summary>Extensible screen reader that provides access to the desktop</Summary>
<Description>Extensible screen reader that provides access to the desktop.</Description>
<Archive sha1sum="910785e482be6dd2b596598498a08168ed7f706b" type="tarxz">https://download.gnome.org/sources/orca/45/orca-45.2.tar.xz</Archive>
<Archive sha1sum="5b0bd48ef1d768192344dcc08237de78905adb53" type="tarxz">https://download.gnome.org/sources/orca/46/orca-46.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>itstool</Dependency>
<Dependency>intltool</Dependency>
@@ -69,6 +69,13 @@
</Package>
-->
<History>
<Update release="23">
<Date>2024-04-01</Date>
<Version>46.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2024-01-06</Date>
<Version>45.2</Version>
+1
View File
@@ -26,6 +26,7 @@ def setup():
-Dxml=enabled \
-Dxmp=enabled \
-Dxps=enabled \
-Dlandlock=enabled \
-Dminer_rss=false \
-Dbattery_detection=upower \
-Dcharset_detection=icu \
+10 -2
View File
@@ -11,14 +11,14 @@
<License>LGPLv2.1</License>
<Summary>Tracker Miners contains the indexer daemon (tracker-miner-fs-3) and tools to extract metadata from many different filetypes.</Summary>
<Description>Tracker Miners contains the indexer daemon (tracker-miner-fs-3) and tools to extract metadata from many different filetypes.</Description>
<Archive sha1sum="9c7955f30e865603e55549771a38fdb10428c97f">https://download.gnome.org/sources/tracker-miners/3.6/tracker-miners-3.6.2.tar.xz</Archive>
<Archive sha1sum="03bd6a29e1963d30a5d8706ad61cd530d4b04d8e">https://download.gnome.org/sources/tracker-miners/3.7/tracker-miners-3.7.3.tar.xz</Archive>
<BuildDependencies>
<Dependency>gettext-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>meson</Dependency>
<Dependency>intltool</Dependency>
<Dependency>asciidoc</Dependency>
<Dependency versionFrom="3.6.0">tracker-devel</Dependency>
<Dependency versionFrom="3.7.3">tracker-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>ffmpeg-devel</Dependency>
<Dependency>exempi-devel</Dependency>
@@ -92,10 +92,18 @@
<Path fileType="data">/usr/share/tracker3-miners</Path>
<Path fileType="data">/usr/share/bash-completion</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="data">/usr/share/tracker3</Path>
</Files>
</Package>
<History>
<Update release="13">
<Date>2024-05-02</Date>
<Version>3.7.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2023-10-31</Date>
<Version>3.6.2</Version>
+6 -12
View File
@@ -8,15 +8,12 @@ from pisi.actionsapi import autotools
from pisi.actionsapi import get
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
def setup():
shelltools.copy("po/fur.po", "po/ur.po")
shelltools.system("sed -i 's/fur/ur/' po/LINGUAS")
shelltools.makedirs("build")
shelltools.cd("build")
shelltools.system("meson .. --prefix=/usr \
--sysconfdir=/etc \
-Ddaemon_user=colord \
shelltools.system("""sed -i -e "/find_program('vapigen')/d" meson.build""")
mesontools.configure("-Ddaemon_user=colord \
-Dsystemd=false \
-Ddocs=false \
-Dlibcolordcompat=true \
@@ -24,15 +21,12 @@ def setup():
def build():
shelltools.cd("build")
shelltools.system("ninja")
mesontools.build()
def install():
shelltools.cd("build")
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
mesontools.install()
pisitools.insinto("/etc/dbus-1/system.d/","%s/usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf" % get.installDIR())
pisitools.removeDir("/usr/share/dbus-1/system.d")
shelltools.cd("..")
pisitools.dodoc("AUTHORS", "MAINTAINERS", "COPYING", "RELEASE", "NEWS", "README.md")
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Colord is a system activated daemon that maps devices to color profiles</Summary>
<Description>Colord is a system activated daemon that maps devices to color profiles. It is used by GNOME Color Manager for system integration and use when there are no users logged in.</Description>
<Archive sha1sum="0ed216268b3b259e963ffe71d3ec46d9ed79f217" type="tarxz">https://www.freedesktop.org/software/colord/releases/colord-1.4.6.tar.xz</Archive>
<Archive sha1sum="5f1819ecd0b1b38fa070a3f9419030fb23513033" type="tarxz">https://www.freedesktop.org/software/colord/releases/colord-1.4.7.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>valgrind</Dependency>
@@ -108,6 +108,13 @@
</Package>
<History>
<Update release="11">
<Date>2024-04-01</Date>
<Version>1.4.7</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2023-10-30</Date>
<Version>1.4.6</Version>