Merge pull request #10333 from 4fury-c3440d8/b1

updates.
This commit is contained in:
Rmys
2022-05-29 11:48:48 +03:00
committed by GitHub
8 changed files with 50 additions and 22 deletions
@@ -70,7 +70,6 @@
<Dependency>libxklavier</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>network-manager-applet</Dependency>
<Dependency>gsettings-desktop-schemas</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
+2 -1
View File
@@ -31,6 +31,7 @@
<RuntimeDependencies>
<Dependency>glib2</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>gsettings-desktop-schemas</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
@@ -59,7 +60,7 @@
<History>
<Update release="2">
<Date>2020-12-24</Date>
<Date>2022-05-28</Date>
<Version>4.16.0</Version>
<Comment>New release.</Comment>
<Name>Ali Cengiz Kurt</Name>
@@ -13,8 +13,8 @@
<PartOf>multimedia.misc</PartOf>
<Summary>Sound input/output selector indicator for Linux.</Summary>
<Description>It shows an icon in the indicator area or the system tray (whatever is available in your desktop environment). The icon's menu allows you to switch the current sound input and output (i.e. source ports and sink ports in PulseAudio's terms, respectively) with just two clicks.</Description>
<Archive sha1sum="b9e271aa7d65a0937df7e9b5bf829397ef42f6ce" type="targz">
https://github.com/yktoo/indicator-sound-switcher/archive/refs/tags/v2.3.6.tar.gz
<Archive sha1sum="83c7cb150b4385df326408c23207b5efa6f8be80" type="targz">
https://github.com/yktoo/indicator-sound-switcher/archive/refs/tags/v2.3.8.tar.gz
</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
@@ -41,6 +41,13 @@
</Package>
<History>
<Update release="2">
<Date>2022-05-28</Date>
<Version>2.3.8</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2021-11-04</Date>
<Version>2.3.6</Version>
+11 -12
View File
@@ -9,22 +9,21 @@ from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
j = "-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
-DZ3_USE_LIB_GMP=True \
-DZ3_LINK_TIME_OPTIMIZATION=True \
-DZ3_BUILD_LIBZ3_SHARED=True \
-DZ3_BUILD_PYTHON_BINDINGS=True \
-DZ3_INSTALL_PYTHON_BINDINGS=True \
"
j = ''.join([
' -DCMAKE_INSTALL_PREFIX=/usr',
' -DCMAKE_INSTALL_LIBDIR=lib',
' -DPYTHON_EXECUTABLE=/usr/bin/python3',
' -DZ3_USE_LIB_GMP=True',
' -DZ3_LINK_TIME_OPTIMIZATION=True',
' -DZ3_BUILD_LIBZ3_SHARED=True',
' -DZ3_BUILD_PYTHON_BINDINGS=True',
' -DZ3_INSTALL_PYTHON_BINDINGS=True '
])
shelltools.export("PYTHON", "/usr/bin/python3")
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("%s -G 'Ninja'" % j, sourceDir = '..')
cmaketools.configure("-Bbuild %s -G 'Ninja'" % j)
def build():
shelltools.system("ninja -C build")
+9 -2
View File
@@ -13,8 +13,8 @@
<PartOf>programming.library</PartOf>
<Summary>The Z3 Theorem Prover.</Summary>
<Description>Z3 is a theorem prover from Microsoft Research.</Description>
<Archive sha1sum="f4443c6beedb46e8a0785529b477b2f811901cc3" type="targz">
https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.8.12.tar.gz
<Archive sha1sum="376d377d1e1c4e0d7be112987a1b65ff6b21563c" type="targz">
https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.8.17.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
@@ -64,6 +64,13 @@
</Package>
<History>
<Update release="5">
<Date>2022-05-28</Date>
<Version>4.8.17</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="4">
<Date>2021-10-11</Date>
<Version>4.8.12</Version>
+1
View File
@@ -11,6 +11,7 @@ from pisi.actionsapi import get
j = ''.join([
' -DUSE_Z3=ON',
' -DUSE_THREADS=ON',
' -DHAVE_RULES=ON',
' -DPYTHON_EXECUTABLE=/usr/bin/python3',
' -DBUILD_GUI=ON',
+9 -2
View File
@@ -16,8 +16,8 @@
<Description>
Cppcheck is a static analysis tool for C/C++ code. It provides unique code analysis to detect bugs and focuses on detecting undefined behaviour and dangerous coding constructs. The goal is to detect only real errors in the code (i.e. have very few false positives).
</Description>
<Archive sha1sum="2a038875ada9879f6b2eb26d65759266b04cb522" type="tarbz2">
mirrors://sourceforge/cppcheck/cppcheck-2.7.tar.bz2
<Archive sha1sum="01848d6170812f3993cb35c015c1146b03e5ede2" type="tarbz2">
mirrors://sourceforge/cppcheck/cppcheck-2.8.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
@@ -68,6 +68,13 @@
</Package>
<History>
<Update release="10">
<Date>2022-05-28</Date>
<Version>2.8</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="9">
<Date>2022-02-05</Date>
<Version>2.7</Version>
+9 -2
View File
@@ -13,8 +13,8 @@
<PartOf>util.misc</PartOf>
<Summary>n³ The unorthodox terminal file manager.</Summary>
<Description>nnn (n³) is a full-featured terminal file manager. It's tiny, nearly 0-config and incredibly fast.</Description>
<Archive sha1sum="56d30e26b6c10c9bd021358bbcd6f0961fdc6191" type="targz">
https://github.com/jarun/nnn/releases/download/v4.1/nnn-v4.1.tar.gz
<Archive sha1sum="5f32dc69571535597db63ed7e094a371866349cc" type="targz">
https://github.com/jarun/nnn/releases/download/v4.5/nnn-v4.5.tar.gz
</Archive>
<BuildDependencies>
<Dependency>gcc</Dependency>
@@ -38,6 +38,13 @@
</Package>
<History>
<Update release="2">
<Date>2022-05-28</Date>
<Version>4.5</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2022-04-14</Date>
<Version>4.1</Version>