@@ -14,8 +14,8 @@
|
||||
<PartOf>desktop.misc</PartOf>
|
||||
<Summary>A compositor for X11.</Summary>
|
||||
<Description>This is forked from the original Compton because it seems to have become unmaintained.</Description>
|
||||
<Archive sha1sum="346cdba428f8329a56c5b43b1800772e89d58f09" type="targz">
|
||||
https://github.com/yshui/picom/archive/refs/tags/v10.tar.gz
|
||||
<Archive sha1sum="de28b009c33c42f0455dd6c545c351495a0cab4e" type="targz">
|
||||
https://github.com/yshui/picom/archive/refs/tags/v10.1.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<!-- <Dependency>git</Dependency> -->
|
||||
@@ -74,6 +74,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>10.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2022-11-14</Date>
|
||||
<Version>10</Version>
|
||||
|
||||
+16
-15
@@ -13,7 +13,7 @@
|
||||
<PartOf>editor</PartOf>
|
||||
<Summary>A cross-platform translation editor.</Summary>
|
||||
<Description>This program is a simple translation editor for PO and XLIFF files. It also serves as a GUI frontend to more GNU gettext utilities and catalogs editor/source code parser. It helps with translating applications into another language.</Description>
|
||||
<Archive sha1sum="fb170f16583db5046e4abef9d8ab1844ecd278a3" type="targz">
|
||||
<Archive sha1sum="9890031a08ac7581bab58e51a8bee01635cf1e28" type="targz">
|
||||
https://github.com/vslavik/poedit/releases/download/v3.2.1-oss/poedit-3.2.1.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
@@ -59,20 +59,21 @@
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-10-29</Date>
|
||||
<Version>3.2.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ümit Solmaz</Name>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-07-27</Date>
|
||||
<Version>3.1.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>3.2.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-07-27</Date>
|
||||
<Version>3.1.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2021-12-20</Date>
|
||||
<Version>3.0.1</Version>
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
<PartOf>editor</PartOf>
|
||||
<Summary>SCIntilla based Text Editor.</Summary>
|
||||
<Description>Scintilla is a free source code editing component which includes useful features such as syntax styling, error indicators, folding, code completion and call tips.</Description>
|
||||
<Archive sha1sum="5a533b78b0194a48f218c063e97e22f1317aff46" type="targz">
|
||||
mirrors://sourceforge/project/scintilla/SciTE/5.3.0/scite530.tgz
|
||||
<Archive sha1sum="ee9dc78d4ac04b5e0f4fad65325f73dbbfbfa64a" type="targz">
|
||||
mirrors://sourceforge/project/scintilla/SciTE/5.3.1/scite531.tgz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>lua-devel</Dependency>
|
||||
@@ -43,6 +43,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>5.3.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2022-09-05</Date>
|
||||
<Version>5.3.0</Version>
|
||||
|
||||
@@ -2,27 +2,15 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import mesontools, pisitools
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
shelltools.system("meson .. --prefix=/usr")
|
||||
|
||||
mesontools.configure()
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
shelltools.system("ninja")
|
||||
mesontools.build()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("LICENSE", "HACKING.md", "README.md", "CONTRIBUTING.md")
|
||||
mesontools.install()
|
||||
|
||||
@@ -3,33 +3,30 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libavtp</Name>
|
||||
<Homepage>http://www.github.com/Avnu/libavtp/</Homepage>
|
||||
<Homepage>https://github.com/Avnu/libavtp</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary xml:lang="tr">Open source implementation of Audio Video Transport Protocol</Summary>
|
||||
<Description xml:lang="tr">Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec</Description>
|
||||
<Archive sha1sum="a0846e706edb014554031b1546d3b850ec4a7512">https://github.com/Avnu/libavtp/archive/refs/tags/v0.1.0.tar.gz</Archive>
|
||||
<Summary>Audio Video Transport Protocol (AVTP) Plugin.</Summary>
|
||||
<Description>Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec.</Description>
|
||||
<Archive sha1sum="34327062b5e00cc8bc8b1589075300fcf126b901" type="targz">https://github.com/Avnu/libavtp/archive/refs/tags/v0.2.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>cmocka-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libavtp</Name>
|
||||
<RuntimeDependencies>
|
||||
<!-- <Dependency>glibc</Dependency> -->
|
||||
<!-- <Dependency>glibc</Dependency> -->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
@@ -41,11 +38,19 @@
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Update release="2">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>0.2.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2022-01-25</Date>
|
||||
<Version>0.1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
|
||||
@@ -2,30 +2,32 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
i = ''.join([
|
||||
' -Wno-deprecated-declarations',
|
||||
' -Wno-restrict',
|
||||
' -Wno-stringop-truncation',
|
||||
' -Wno-unused-result '
|
||||
])
|
||||
|
||||
t = "99-pulseaudio-default.conf"
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--enable-maemo-plugin")
|
||||
pisitools.cflags.add(i)
|
||||
autotools.configure("--enable-maemo-plugin --disable-static --with-speex=lib")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.remove("/etc/alsa/conf.d/98-maemo.conf")
|
||||
pisitools.domove("/etc/alsa/conf.d/99-pulseaudio-default.conf.example", "/usr/share/alsa/alsa.conf.d", "99-pulseaudio-default.conf")
|
||||
pisitools.dosym("/usr/share/alsa/alsa.conf.d/99-pulseaudio-default.conf", "/etc/alsa/conf.d/99-pulseaudio-default.conf")
|
||||
|
||||
#shelltools.system("rm -v %s/etc/alsa/conf.d/98-maemo.conf" % get.installDIR())
|
||||
#shelltools.cd("%s" % get.installDIR())
|
||||
#shelltools.system("cp -r /etc/alsa/conf.d/99-pulseaudio-default.conf.example %s/usr/share/alsa/alsa.conf.d/99-pulseaudio-default.conf" % get.installDIR())
|
||||
#shelltools.system("ln -st %s/etc/alsa/conf.d/ /usr/share/alsa/alsa.conf.d/99-pulseaudio-default.conf" % get.installDIR())
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.insinto("/usr/share/alsa/alsa.conf.d", "pulse/%s.example" % t, "%s" % t)
|
||||
pisitools.dosym("/usr/share/alsa/alsa.conf.d/%s" % t, "/etc/alsa/conf.d/%s" % t)
|
||||
pisitools.remove("/etc/alsa/conf.d/98-maemo.conf")
|
||||
pisitools.dosym("/usr/share/alsa/alsa.conf.d/98-maemo.conf", "/etc/alsa/conf.d/98-maemo.conf")
|
||||
|
||||
pisitools.dodoc("COPYING", "COPYING.GPL", "doc/*.txt", "doc/README*")
|
||||
|
||||
|
||||
@@ -1,71 +1,83 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Homepage>http://www.alsa-project.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Additional library plugins Eg.jack, pulse, maemo ...</Summary>
|
||||
<Description>alsa-plugins contains ALSA (Advanced Linux Sound Architecture) </Description>
|
||||
<Archive sha1sum="4958b886ed9b4e1d2596a3e45faaf24590335326" type="tarbz2">https://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.6.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>libavtp-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>speexdsp-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>jack-audio-connection-kit-devel</Dependency>
|
||||
<Dependency versionFrom="1.2.7">alsa-lib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- Patch level="1">usx2yloader_udev.patch</Patch -->
|
||||
</Patches>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Homepage>https://www.alsa-project.org/wiki/Main_Page</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.plugin</PartOf>
|
||||
<Summary>The Advanced Linux Sound Architecture (ALSA) plugins.</Summary>
|
||||
<Description>alsa-plugins provides plugins like JACK, PulseAudio, etc. for ALSA.</Description>
|
||||
<Archive sha1sum="9dfcc70fb226820a2109cbf6a833ae24acac440c" type="tarbz2">
|
||||
http://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.7.1.tar.bz2
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>libavtp-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>speexdsp-devel</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>jack-audio-connection-kit-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">Arch/pulse_default_conf.patch</Patch> -->
|
||||
</Patches>
|
||||
<AdditionalFiles>
|
||||
<!-- <AdditionalFile target="">missing</AdditionalFile> -->
|
||||
</AdditionalFiles>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Summary>ALSA console plugins</Summary>
|
||||
<Description>alsa-plugins contains ALSA (Advanced Linux Sound Architecture)</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>libavtp</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
<Dependency>speexdsp</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>jack-audio-connection-kit</Dependency>
|
||||
<Dependency versionFrom="1.2.7">alsa-lib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/alsa/conf.d</Path>
|
||||
<Path fileType="library">/usr/lib/alsa-lib</Path>
|
||||
<Path fileType="data">/usr/share/alsa</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<!-- AdditionalFile target="/lib/udev/rules.d/90-alsa-tools-firmware.rules" permission="0644">90-alsa-tools-firmware.rules</AdditionalFile -->
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>alsa-plugins</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>libavtp</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>speexdsp</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<Dependency>jack-audio-connection-kit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/alsa/conf.d</Path>
|
||||
<Path fileType="library">/usr/lib/alsa-lib</Path>
|
||||
<Path fileType="data">/usr/share/alsa/alsa.conf.d</Path>
|
||||
<Path fileType="doc">/usr/share/doc/alsa-plugins</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<!-- <AdditionalFile owner="root" permission="0644" target="">missing</AdditionalFile> -->
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-06-03</Date>
|
||||
<Version>1.2.5</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2022-01-25</Date>
|
||||
<Version>1.2.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>1.2.7.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2022-06-03</Date>
|
||||
<Version>1.2.6</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2022-01-25</Date>
|
||||
<Version>1.2.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Summary>Additional library plugins Eg.jack, pulse, maemo ...</Summary>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Summary>Additional library plugins Eg.jack, pulse, maemo ...</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>alsa-plugins-devel</Name>
|
||||
<Summary>Development files for alsa-plugins</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
<Package>
|
||||
<Name>alsa-plugins-devel</Name>
|
||||
<Summary>Development files for alsa-plugins</Summary>
|
||||
</Package>
|
||||
|
||||
@@ -48,6 +48,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>3.7.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-09-09</Date>
|
||||
<Version>3.7.5</Version>
|
||||
|
||||
@@ -2,12 +2,11 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-dependency-tracking \
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lcms2</Name>
|
||||
<Homepage>http://www.littlecms.com</Homepage>
|
||||
<Homepage>https://www.littlecms.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>A color management library.</Summary>
|
||||
<Description>Little cms is a color management library. Implements fast transforms between ICC profiles. It is focused on speed, and is portable across several platforms.</Description>
|
||||
<Archive sha1sum="3d0c0276fcd3930b80c424512ec0b1ed54ec1497" type="targz">https://sourceforge.net/projects/lcms/files/lcms/2.12/lcms2-2.12.tar.gz</Archive>
|
||||
<Archive sha1sum="94350a2638fe58da736e8726048c859b46a69e6f" type="targz">mirrors://sourceforge/project/lcms/lcms/2.14/lcms2-2.14.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
@@ -65,6 +65,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>2.14</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2021-03-10</Date>
|
||||
<Version>2.12</Version>
|
||||
|
||||
@@ -9,7 +9,7 @@ from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.dosed("gnome/libopenraw-gnome-0.3.pc.in", "1", "3")
|
||||
# pisitools.dosed("gnome/libopenraw-gnome-0.3.pc.in", "1", "3")
|
||||
autotools.configure("--enable-gnome --disable-static")
|
||||
|
||||
def build():
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
<Description>
|
||||
libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding. One of the main reason is that dcraw is not suited for easy integration into applications, and there is a need for an easy to use API to build free software digital image processing application.
|
||||
</Description>
|
||||
<Archive sha1sum="18b29c079fab00801316279933c0e782974fe336" type="tarxz">
|
||||
https://libopenraw.freedesktop.org/download/libopenraw-0.3.0.tar.xz
|
||||
<Archive sha1sum="92ef8c5487816994cfcc430ae8fd59c3f862abb1" type="tarxz">
|
||||
https://libopenraw.freedesktop.org/download/libopenraw-0.3.2.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rust</Dependency>
|
||||
@@ -54,6 +54,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>0.3.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2021-12-14</Date>
|
||||
<Version>0.3.0</Version>
|
||||
|
||||
@@ -8,10 +8,13 @@ from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
i = ''.join([
|
||||
' -DBUILD_SHARED_LIBS=ON',
|
||||
' -DWITH_ZLIB=ON -L '
|
||||
])
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DBUILD_SHARED_LIBS=ON \
|
||||
-DWITH_MP4=ON \
|
||||
-DWITH_ASF=ON")
|
||||
cmaketools.configure(i)
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
@@ -19,4 +22,4 @@ def build():
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING*")
|
||||
pisitools.dodoc("AUTHORS", "NEWS")
|
||||
|
||||
@@ -8,20 +8,19 @@
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<License>MPL-1.1</License>
|
||||
<License>LGPL-2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A library for reading and editing audio meta data.</Summary>
|
||||
<Description>TagLib is a library for reading and editing the meta data of several popular audio formats.</Description>
|
||||
<Archive sha1sum="c06c44223f64ef61d29372659059d6b9e27c2efd" type="targz">https://taglib.org/releases/taglib-1.12.tar.gz</Archive>
|
||||
<Archive sha1sum="e68319d1ac8fcf7fd68697c6d08427d847b5ebb3" type="targz">https://taglib.org/releases/taglib-1.13.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">CVE-2017-12678.patch</Patch>
|
||||
<Patch level="1">CVE-2018-11439.patch</Patch>
|
||||
<Patch level="1">fix_ogg_corruption.patch</Patch> -->
|
||||
<!-- <Patch level="1">missing.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -51,6 +50,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>1.13</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2021-10-23</Date>
|
||||
<Version>1.12</Version>
|
||||
|
||||
@@ -55,6 +55,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>11.5.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-09-09</Date>
|
||||
<Version>11.5.0</Version>
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
<PartOf>programming.library</PartOf>
|
||||
<Summary>Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities.</Summary>
|
||||
<Description>Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities.</Description>
|
||||
<Archive sha1sum="75e5d5be591ae34bc6ef15effef81bf290a08901" type="targz">
|
||||
https://github.com/Martchus/cpp-utilities/archive/refs/tags/v5.19.0.tar.gz
|
||||
<Archive sha1sum="d05f4324913726326d56a1724472f3d34d0e9908" type="targz">
|
||||
https://github.com/Martchus/cpp-utilities/archive/refs/tags/v5.20.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
@@ -50,6 +50,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>5.20.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-09-09</Date>
|
||||
<Version>5.19.0</Version>
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2022-11-15</Date>
|
||||
<Date>2022-11-25</Date>
|
||||
<Version>5.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
<PartOf>programming.library</PartOf>
|
||||
<Summary> Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models.</Summary>
|
||||
<Description> Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models.</Description>
|
||||
<Archive sha1sum="87e7a4842ad435569cc2c95201d7202d0ff78a06" type="targz">
|
||||
https://github.com/Martchus/qtutilities/archive/refs/tags/v6.8.0.tar.gz
|
||||
<Archive sha1sum="b12a5787de3d7abc595e332de731f44ccbc37041" type="targz">
|
||||
https://github.com/Martchus/qtutilities/archive/refs/tags/v6.10.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
@@ -53,6 +53,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>6.10.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-09-09</Date>
|
||||
<Version>6.8.0</Version>
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import shelltools, pisitools, get
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def install():
|
||||
for t in shelltools.ls("*.cvd"):
|
||||
pisitools.insinto("/var/lib/clamav", t)
|
||||
shelltools.chown("%s/var/lib/clamav/%s" % (get.installDIR(), t), uid = "clamav", gid = "clamav")
|
||||
@@ -1,48 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>clamav-database</Name>
|
||||
<Homepage>https://www.clamav.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>data</IsA>
|
||||
<PartOf>util.antivirus</PartOf>
|
||||
<Summary>Virus database for clamav.</Summary>
|
||||
<Description>Virus database for clamav.</Description>
|
||||
<Archive sha1sum="a89e024f0dbc6c6584d0c7577af83c031c6265ac" type="binary">https://db.local.clamav.net/bytecode.cvd</Archive>
|
||||
<Archive sha1sum="abdc6e37e893debeea80e0cbbbf021c89513790f" type="binary">https://db.local.clamav.net/safebrowsing.cvd</Archive>
|
||||
<Archive sha1sum="029931779fb5d13625464995549421c108ae5518" type="binary">https://db.local.clamav.net/main.cvd</Archive>
|
||||
<BuildDependencies>
|
||||
<!-- <Dependency></Dependency> -->
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level='1'></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>clamav-database</Name>
|
||||
<RuntimeDependencies>
|
||||
<!-- <Dependency></Dependency> -->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/var/lib/clamav/main.cvd</Path>
|
||||
<Path fileType="data">/var/lib/clamav/bytecode.cvd</Path>
|
||||
<Path fileType="data">/var/lib/clamav/safebrowsing.cvd</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-11-15</Date>
|
||||
<Version>0.0.20221115</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -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="5f32dc69571535597db63ed7e094a371866349cc" type="targz">
|
||||
https://github.com/jarun/nnn/releases/download/v4.5/nnn-v4.5.tar.gz
|
||||
<Archive sha1sum="3ccb8aee1d48d0140e828cf0e850533664948e88" type="targz">
|
||||
https://github.com/jarun/nnn/releases/download/v4.7/nnn-v4.7.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gcc</Dependency>
|
||||
@@ -38,6 +38,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>4.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2022-05-28</Date>
|
||||
<Version>4.5</Version>
|
||||
|
||||
Reference in New Issue
Block a user