@@ -14,8 +14,8 @@
|
||||
<PartOf>desktop.lookandfeel</PartOf>
|
||||
<Summary>A style to bend Qt applications to look like they belong into GNOME Shell.</Summary>
|
||||
<Description>A native style to bend Qt4 and Qt5 applications to look like they belong into GNOME Shell.</Description>
|
||||
<Archive sha1sum="3159ee793100e537fd38417666dadc8ecf0bedc1" type="targz">
|
||||
https://github.com/FedoraQt/adwaita-qt/archive/refs/tags/1.4.0.tar.gz
|
||||
<Archive sha1sum="92ea0d6256109715cc46aa7640ebeb08b5f7bd23" type="targz">
|
||||
https://github.com/FedoraQt/adwaita-qt/archive/refs/tags/1.4.1.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
@@ -27,6 +27,7 @@
|
||||
<Package>
|
||||
<Name>adwaita-qt</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
@@ -51,6 +52,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>1.4.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2021-09-27</Date>
|
||||
<Version>1.4.0</Version>
|
||||
|
||||
@@ -4,22 +4,21 @@
|
||||
# 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 autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--libexecdir=/usr/lib")
|
||||
|
||||
# for fix unused dependency
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
cmaketools.configure("-B_build -DCMAKE_BUILD_TYPE=Release -L")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
shelltools.cd("_build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
shelltools.cd("_build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "COPYING", "README")
|
||||
pisitools.dodoc("../AUTHORS", "../ChangeLog", "../NEWS")
|
||||
|
||||
|
||||
@@ -13,10 +13,11 @@
|
||||
<PartOf>desktop.misc</PartOf>
|
||||
<Summary>Ayatana Indicator Display Objects.</Summary>
|
||||
<Description>The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop.</Description>
|
||||
<Archive sha1sum="abf475dfa97b67fa152815b6658c7de5c202f016" type="targz">
|
||||
https://github.com/AyatanaIndicators/ayatana-ido/archive/refs/tags/0.8.2.tar.gz
|
||||
<Archive sha1sum="7dcac6878e1a07ee7fb97e871734622c9beed7de" type="targz">
|
||||
https://github.com/AyatanaIndicators/ayatana-ido/archive/refs/tags/0.9.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
@@ -56,6 +57,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>0.9.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-10-13</Date>
|
||||
<Version>0.8.2</Version>
|
||||
|
||||
@@ -4,20 +4,23 @@
|
||||
# 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, autotools, pisitools, get
|
||||
from pisi.actionsapi import shelltools, cmaketools, pisitools, get
|
||||
|
||||
j = ''.join([
|
||||
' -B_build',
|
||||
' -DCMAKE_BUILD_TYPE=Release',
|
||||
' -DENABLE_BINDINGS_MONO=OFF -L '
|
||||
])
|
||||
|
||||
def setup():
|
||||
shelltools.system("gtkdocize")
|
||||
autotools.autoreconf("-fiv")
|
||||
autotools.configure("--enable-gtk-doc --with-gtk=3 --disable-static")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
|
||||
cmaketools.configure(j)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
shelltools.cd("_build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog")
|
||||
shelltools.cd("_build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("../AUTHORS", "../NEWS")
|
||||
|
||||
@@ -13,10 +13,11 @@
|
||||
<PartOf>desktop.misc</PartOf>
|
||||
<Summary>A library to allow applications to export a menu into the Unity Menu bar.</Summary>
|
||||
<Description>A library to allow applications to export a menu into the Unity Menu bar.</Description>
|
||||
<Archive sha1sum="5e7aa282893a4dc11bfa838c6b2a6155b397d4e2" type="targz">
|
||||
https://github.com/AyatanaIndicators/libayatana-appindicator/archive/refs/tags/0.5.5.tar.gz
|
||||
<Archive sha1sum="dbd3d5d37f3cc2d8cf85f19b182e6b47f60cb2a0" type="targz">
|
||||
https://github.com/AyatanaIndicators/libayatana-appindicator/archive/refs/tags/0.5.90.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
@@ -68,17 +69,14 @@
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ayatana-libappindicator-docs</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">ayatana-libappindicator</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>0.5.90</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-10-13</Date>
|
||||
<Version>0.5.5</Version>
|
||||
|
||||
@@ -4,22 +4,21 @@
|
||||
# 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 autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--libexecdir=/usr/lib --with-gtk=3 --disable-static")
|
||||
|
||||
# for fix unused dependency
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
cmaketools.configure("-B_build -DCMAKE_BUILD_TYPE=Release -L")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
shelltools.cd("_build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
shelltools.cd("_build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "COPYING", "README")
|
||||
pisitools.dodoc("../AUTHORS", "../NEWS")
|
||||
|
||||
|
||||
@@ -13,10 +13,11 @@
|
||||
<PartOf>desktop.misc</PartOf>
|
||||
<Summary>Ayatana Indicators Shared Library.</Summary>
|
||||
<Description>The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop.</Description>
|
||||
<Archive sha1sum="1cb437642066430a09ce640ab496bef67f3da28d" type="targz">
|
||||
https://github.com/AyatanaIndicators/libayatana-indicator/archive/refs/tags/0.8.4.tar.gz
|
||||
<Archive sha1sum="1353db4a690ce4350a06dd258b56e15cf672a7a9" type="targz">
|
||||
https://github.com/AyatanaIndicators/libayatana-indicator/archive/refs/tags/0.9.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
@@ -37,6 +38,7 @@
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
@@ -57,6 +59,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>0.9.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-10-13</Date>
|
||||
<Version>0.8.4</Version>
|
||||
|
||||
@@ -2,12 +2,11 @@
|
||||
# -*- 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 get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.dosed("configure.ac", "AM_CONFIG_HEADER", "AC_CONFIG_HEADERS")
|
||||
@@ -25,4 +24,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("-j1 DESTDIR=%s" % (get.installDIR()))
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS", "README*", "THANKS")
|
||||
pisitools.dodoc("AUTHORS", "NEWS.md", "THANKS")
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?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>libcdio-paranoia</Name>
|
||||
@@ -14,12 +14,12 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>CD paranoia libraries from libcdio</Summary>
|
||||
<Description>An advanced CDDA reader with error correction.</Description>
|
||||
<Archive sha1sum="6e289aa9a6bbccf3aa55e2cde9c5bfc0ac8ff058" type="tarbz2">mirrors://gnu/libcdio/libcdio-paranoia-10.2+2.0.0.tar.bz2</Archive>
|
||||
<Archive sha1sum="de30d968b6b16cefa43e9b071ede4bccb837644a" type="tarbz2">mirrors://gnu/libcdio/libcdio-paranoia-10.2+2.0.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libcdio-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch>libcdio-paranoia-0.90-mkdir_p.patch</Patch> -->
|
||||
<!-- <Patch>libcdio-paranoia-0.90-mkdir_p.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -51,7 +51,14 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Update release="6">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>10.2_2.0.1</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>10.2_2.0.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
|
||||
@@ -15,12 +15,13 @@
|
||||
<Description>
|
||||
A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska.
|
||||
</Description>
|
||||
<Archive sha1sum="7e3a6a36057e23bcf2343db23f0e5ac44cf355fb" type="targz">
|
||||
https://github.com/Martchus/tageditor/archive/refs/tags/v3.5.0.tar.gz
|
||||
<Archive sha1sum="db1cd91d37020de2a8e823573f52c355a91248b7" type="targz">
|
||||
https://github.com/Martchus/tageditor/archive/refs/tags/v3.6.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>cppunit-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>tagparser-devel</Dependency>
|
||||
<Dependency>qtutilities-devel</Dependency>
|
||||
@@ -47,6 +48,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>3.6.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-11-04</Date>
|
||||
<Version>3.5.0</Version>
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
# 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
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
@@ -23,6 +22,9 @@ def setup():
|
||||
# Fix instalation step
|
||||
pisitools.dosed("Makefile.am", "\ ChangeLog\ ", " ")
|
||||
pisitools.dosed("Makefile.am", "\ ChangeLog.html$", "")
|
||||
# Fix version
|
||||
pisitools.dosed("configure.ac", "\+git", "1.7.1")
|
||||
|
||||
|
||||
autotools.autoreconf("-vif")
|
||||
autotools.configure(j)
|
||||
@@ -33,5 +35,5 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README*")
|
||||
|
||||
pisitools.removeDir("/usr/share/doc/")
|
||||
pisitools.dodoc("AUTHORS", "NEWS")
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
<Description>
|
||||
Geeqie can be used as a simple, fast, database-free image viewer, but equally it can be used to manage large collections of images.
|
||||
</Description>
|
||||
<Archive sha1sum="ffe8faaaa665e585bd5428f5ee4ab27fbbaf51da" type="targz">
|
||||
https://github.com/BestImageViewer/geeqie/archive/refs/tags/v1.7.tar.gz
|
||||
<Archive sha1sum="bbbadf0148d5684b9f4a4fbe82982ffcfac993b0" type="targz">
|
||||
https://github.com/BestImageViewer/geeqie/archive/refs/tags/v1.7.1.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>doxygen</Dependency>
|
||||
@@ -77,9 +77,9 @@
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-01-17</Date>
|
||||
<Version>1.7</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>1.7.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
|
||||
@@ -10,23 +10,22 @@ from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
j = ''.join([
|
||||
'--disable-r ',
|
||||
'--disable-io ',
|
||||
'--disable-lua ',
|
||||
'--disable-php ',
|
||||
'--disable-rpath ',
|
||||
'--disable-sharp ',
|
||||
'--disable-ocaml ',
|
||||
'--disable-static ',
|
||||
'--disable-dependency-tracking ',
|
||||
'--with-libgd ',
|
||||
'--with-fontconfig ',
|
||||
'--with-pangocairo ',
|
||||
'--without-devil ',
|
||||
' --enable-lefty',
|
||||
' --disable-r',
|
||||
' --disable-lua',
|
||||
' --disable-php',
|
||||
' --disable-rpath',
|
||||
' --disable-static',
|
||||
' --disable-dependency-tracking',
|
||||
' --with-libgd',
|
||||
' --with-fontconfig',
|
||||
' --with-pangocairo',
|
||||
' --without-webp',
|
||||
' --without-devil '
|
||||
])
|
||||
|
||||
def setup():
|
||||
shelltools.system("""sed -i '/LIBPOSTFIX="64"/s/64//' configure.ac""")
|
||||
shelltools.export("LIBPOSTFIX", "/")
|
||||
shelltools.export("CONFIG_SHELL", "/bin/bash")
|
||||
shelltools.system("NOCONFIGURE=1 ./autogen.sh")
|
||||
autotools.configure(j)
|
||||
@@ -38,9 +37,3 @@ def build():
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dohtml(".")
|
||||
pisitools.dodoc("AUTHORS", "CHANGELOG.md", "DEVELOPERS.md", "INSTALL", "LICENSE", "README.md")
|
||||
|
||||
pisitools.removeDir("/usr/share/graphviz/doc")
|
||||
|
||||
|
||||
@@ -8,78 +8,100 @@
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Packager>
|
||||
<License>CPL-1.0</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>app:gui</IsA>
|
||||
<License>EPL</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>Open source graph drawing software.</Summary>
|
||||
<Description>Graphviz is open source graph visualization software which has web and interactive graphical interfaces, and auxiliary tools and libraries. Graphviz has many useful features for diagrams, such as options for colors, fonts, tabular node layouts, line styles, and custom shapes.</Description>
|
||||
<BuildDependencies>
|
||||
<Dependency>freeglut-devel</Dependency>
|
||||
<Dependency>gd-devel</Dependency>
|
||||
<Dependency>ghostscript-devel</Dependency>
|
||||
<Dependency>libXaw-devel</Dependency>
|
||||
<Dependency>librsvg-devel</Dependency>
|
||||
<Dependency>libtool</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>perl</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>tcl-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Archive sha1sum="7aee89ec5c28e180a698df07ff4c939b1c400b8f" type="targz">
|
||||
https://gitlab.com/graphviz/graphviz/-/archive/2.47.2/graphviz-2.47.2.tar.gz
|
||||
<Archive sha1sum="c1171b79b2977a56131d7f3e787b8d50e93f946e" type="tarbz2">
|
||||
https://gitlab.com/graphviz/graphviz/-/archive/2.50.0/graphviz-2.50.0.tar.bz2
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>perl</Dependency>
|
||||
<Dependency>swig</Dependency>
|
||||
<Dependency>libtool</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>gd-devel</Dependency>
|
||||
<Dependency>tcl-devel</Dependency>
|
||||
<Dependency>guile-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libXaw-devel</Dependency>
|
||||
<Dependency>libXmu-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>librsvg-devel</Dependency>
|
||||
<Dependency>freeglut-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>ghostscript-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>graphviz</Name>
|
||||
<Summary>Development files for graphviz</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gd</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>perl</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>guile</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>gd</Dependency>
|
||||
<Dependency>ghostscript</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libXaw</Dependency>
|
||||
<Dependency>libXmu</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>librsvg</Dependency>
|
||||
<Dependency>libtool-ltdl</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>librsvg</Dependency>
|
||||
<Dependency>ghostscript</Dependency>
|
||||
<Dependency>libtool-ltdl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="library">/usr/lib64</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/graphviz</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>graphviz-docs</Name>
|
||||
<Summary>Development files for graphviz</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/graphviz/html</Path>
|
||||
<Path fileType="doc">/usr/share/graphviz/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>graphviz-demo</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">graphviz</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/graphviz/demo</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>graphviz-devel</Name>
|
||||
<Summary>Development files for graphviz</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">graphviz</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>2.50.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2021-06-10</Date>
|
||||
<Version>2.47.2</Version>
|
||||
|
||||
@@ -2,16 +2,14 @@
|
||||
# -*- 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 get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static \
|
||||
--enable-iostream \
|
||||
--enable-string")
|
||||
autotools.configure("--enable-string --enable-iostream --disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
@@ -19,4 +17,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("ChangeLog", "COPYING", "AUTHORS", "NEWS", "README", "TODO")
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "README")
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libbinio</Name>
|
||||
<Homepage>http://libbinio.sourceforge.net</Homepage>
|
||||
<Homepage>https://github.com/adplug/libbinio</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -10,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Binary I/O stream class library</Summary>
|
||||
<Description>libbinio is a binary I/O stream class library.</Description>
|
||||
<Archive type="tarbz2" sha1sum="47db5f7448245f38b9d26c8b11f53a07b6f6da73">mirrors://sourceforge/libbinio/libbinio-1.4.tar.bz2</Archive>
|
||||
<Archive sha1sum="12702dcdee853482a47c69868d67909448a76a09" type="tarbz2">https://github.com/adplug/libbinio/releases/download/libbinio-1.5/libbinio-1.5.tar.bz2</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">gcc44.patch</Patch>
|
||||
<Patch level="1">string-conversion.patch</Patch>
|
||||
@@ -19,6 +21,9 @@
|
||||
|
||||
<Package>
|
||||
<Name>libbinio</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
@@ -40,6 +45,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>1.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2020-03-06</Date>
|
||||
<Version>1.4</Version>
|
||||
|
||||
@@ -1,69 +1,80 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>tagparser</Name>
|
||||
<Homepage>https://github.com/Martchus/tagparser</Homepage>
|
||||
<Packager>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.misc</PartOf>
|
||||
<Summary>C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags.</Summary>
|
||||
<Description>C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags.</Description>
|
||||
<Archive sha1sum="e50713f6eb044fde0199a6623f17799007abef6a" type="targz">https://github.com/Martchus/tagparser/archive/refs/tags/v10.3.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>iso-codes</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>cpp-utilities-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>tagparser</Name>
|
||||
<Homepage>https://github.com/Martchus/tagparser</Homepage>
|
||||
<Packager>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.misc</PartOf>
|
||||
<Summary>C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags.</Summary>
|
||||
<Description>C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags.</Description>
|
||||
<Archive sha1sum="d86a29eedd459590ebbd494e9c97b11799a362ff" type="targz">
|
||||
https://github.com/Martchus/tagparser/archive/refs/tags/v10.4.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>iso-codes</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>cppunit-devel</Dependency>
|
||||
<Dependency>cpp-utilities-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>tagparser</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>cpp-utilities</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>tagparser</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>cpp-utilities</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>tagparser-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">tagparser</Dependency>
|
||||
<Dependency>cpp-utilities-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share/tagparser</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>tagparser-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">tagparser</Dependency>
|
||||
<Dependency>cpp-utilities-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share/tagparser</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2021-11-04</Date>
|
||||
<Version>10.3.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-10-13</Date>
|
||||
<Version>10.2.0</Version>
|
||||
<Comment>First build</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>10.4.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2021-11-04</Date>
|
||||
<Version>10.3.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-10-13</Date>
|
||||
<Version>10.2.0</Version>
|
||||
<Comment>First build</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
@@ -1,20 +1,17 @@
|
||||
#!/usr/bin/env python
|
||||
#-*- coding:utf-8 -*-
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import mesontools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
# if pisi can't find source directory, see /var/pisi/__package_name__/work/ and:
|
||||
# WorkDir="__package_name__-"+ get.srcVERSION() +"/sub_project_dir/"
|
||||
|
||||
def setup():
|
||||
autotools.rawConfigure("--prefix=/usr")
|
||||
mesontools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
mesontools.build()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s"%get.installDIR())
|
||||
|
||||
mesontools.install()
|
||||
|
||||
@@ -1,39 +1,49 @@
|
||||
<?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>audacious-plugins</Name>
|
||||
<Homepage>https://audacious-media-player.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>GPL-2</License>
|
||||
<IsA>data</IsA>
|
||||
<Summary>plugins for audacious</Summary>
|
||||
<Description>plugins for audacious</Description>
|
||||
<Archive sha1sum="d2e549a402baa59b0181aabad6d7481369e8930e" type="tarbz2">http://distfiles.audacious-media-player.org/audacious-plugins-3.10.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="81a73a4297349b4ab67d9b053eb66f5b51e09c15" type="tarbz2">
|
||||
https://distfiles.audacious-media-player.org/audacious-plugins-4.1.tar.bz2
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>lame-devel</Dependency>
|
||||
<Dependency>neon-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>faac-devel</Dependency>
|
||||
<Dependency>lirc-devel</Dependency>
|
||||
<Dependency>faad2-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libcue-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>libmms-devel</Dependency>
|
||||
<Dependency>mpg123-devel</Dependency>
|
||||
<Dependency>libmtp-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libsdl2-devel</Dependency>
|
||||
<Dependency>libbs2b-devel</Dependency>
|
||||
<Dependency>libsoxr-devel</Dependency>
|
||||
<Dependency>libcddb-devel</Dependency>
|
||||
<Dependency>wavpack-devel</Dependency>
|
||||
<Dependency>libbinio-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libnotify-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
@@ -41,16 +51,16 @@
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libXrender-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libbs2b-devel</Dependency>
|
||||
<Dependency>libmodplug-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>libXcomposite-devel</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>qt5-multimedia-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>libcdio-paranoia-devel</Dependency>
|
||||
<Dependency>jack-audio-connection-kit-devel</Dependency>
|
||||
<Dependency versionFrom="3.10">audacious-devel</Dependency>
|
||||
<Dependency versionFrom="2.0">libcdio-devel</Dependency>
|
||||
<Dependency versionFrom="3.10">audacious-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -60,6 +70,7 @@
|
||||
<Dependency>neon</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>faac</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>flac</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>lame</Dependency>
|
||||
@@ -76,15 +87,18 @@
|
||||
<Dependency>libmtp</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libogg</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libsoxr</Dependency>
|
||||
<Dependency>libbs2b</Dependency>
|
||||
<Dependency>wavpack</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libcddb</Dependency>
|
||||
<Dependency>libglvnd</Dependency>
|
||||
<Dependency>libsdl2</Dependency>
|
||||
<Dependency>audacious</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libglvnd</Dependency>
|
||||
<Dependency>libbinio</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>audacious</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
<Dependency>libnotify</Dependency>
|
||||
<Dependency>fluidsynth</Dependency>
|
||||
@@ -92,8 +106,10 @@
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libmodplug</Dependency>
|
||||
<Dependency>libsndfile</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>qt5-multimedia</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<Dependency>libcdio-paranoia</Dependency>
|
||||
<Dependency>jack-audio-connection-kit</Dependency>
|
||||
@@ -106,8 +122,15 @@
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>4.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2020-03-07</Date>
|
||||
<Version>3.10.1</Version>
|
||||
|
||||
@@ -1,20 +1,19 @@
|
||||
#!/usr/bin/env python
|
||||
#-*- coding:utf-8 -*-
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import mesontools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
# if pisi can't find source directory, see /var/pisi/__package_name__/work/ and:
|
||||
# WorkDir="__package_name__-"+ get.srcVERSION() +"/sub_project_dir/"
|
||||
|
||||
def setup():
|
||||
autotools.rawConfigure("--prefix=/usr --enable-dbus --enable-nls --enable-sm --disable-rpath")
|
||||
mesontools.configure("-Dlibarchive=true")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
mesontools.build()
|
||||
|
||||
def install():
|
||||
pisitools.dodoc("AUTHORS","COPYING","INSTALL")
|
||||
autotools.rawInstall("DESTDIR=%s"%get.installDIR())
|
||||
mesontools.install()
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "INSTALL")
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?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>audacious</Name>
|
||||
@@ -8,17 +8,24 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-v3</License>
|
||||
<License>GPL-3</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>an advanced audio player</Summary>
|
||||
<Description>Audacious is an open source audio player. A descendant of XMMS, Audacious plays your music how you want it, without stealing away your computer’s resources from other tasks. Drag and drop folders and individual song files, search for artists and albums in your entire music library, or create and edit your own custom playlists.Listen to CD’s or stream music from the Internet. Tweak the sound with the graphical equalizer or experiment with LADSPA effects. Enjoy the modern GTK-themed interface or change things up with Winamp classic skins. Use the plugins included with Audacious to fetch lyrics for your music, to set an alarm in the morning, and more.</Description>
|
||||
<Archive sha1sum="451e5122f2042cc08798fb75a3ac14b1a155d21e" type="tarbz2">http://distfiles.audacious-media-player.org/audacious-3.10.tar.bz2</Archive>
|
||||
<Archive sha1sum="4d0f25fcb820c258d4da2d473b8c6b7e9d95195f" type="tarbz2">
|
||||
https://distfiles.audacious-media-player.org/audacious-4.1.tar.bz2
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libarchive-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -26,24 +33,23 @@
|
||||
<Name>audacious</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libarchive</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="manfile">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="library">/usr/lib/libaud*</Path>
|
||||
<Path fileType="locale">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/audacious</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>audacious-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
@@ -51,13 +57,18 @@
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="header">/usr/include/libaudgui</Path>
|
||||
<Path fileType="header">/usr/include/audacious</Path>
|
||||
<Path fileType="header">/usr/include/libaudcore</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>4.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2020-03-07</Date>
|
||||
<Version>3.10</Version>
|
||||
@@ -65,7 +76,7 @@
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Update release="1">
|
||||
<Date>2018-12-06</Date>
|
||||
<Version>3.10</Version>
|
||||
<Comment>First release</Comment>
|
||||
@@ -74,4 +85,3 @@
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
@@ -2,21 +2,24 @@
|
||||
# -*- 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 libtools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
j = ''.join([
|
||||
' --enable-shared',
|
||||
' --enable-sndfile',
|
||||
' --disable-fftw',
|
||||
' --disable-static',
|
||||
' --disable-dependency-tracking',
|
||||
' --with-pic '
|
||||
])
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-fiv")
|
||||
autotools.configure("--with-pic \
|
||||
--enable-sndfile \
|
||||
--disable-static \
|
||||
--enable-shared \
|
||||
--disable-fftw \
|
||||
--disable-dependency-tracking")
|
||||
autotools.configure(j)
|
||||
|
||||
# Remove RPATH
|
||||
pisitools.dosed("libtool", "^hardcode_libdir_flag_spec=.*", "hardcode_libdir_flag_spec=\"\"")
|
||||
@@ -28,4 +31,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
pisitools.dodoc("AUTHORS", "NEWS")
|
||||
|
||||
@@ -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>libsamplerate</Name>
|
||||
<Homepage>http://www.mega-nerd.com/SRC/</Homepage>
|
||||
<Homepage>https://github.com/libsndfile/libsamplerate</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -12,12 +12,12 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio</Summary>
|
||||
<Description>Secret Rabbit Code is a sample rate converter for audio. It is capable of arbitrary and time varying conversions. It can downsample by a factor of 12 and upsample by the same factor. The ratio of input and output sample rates can be a real number. The conversion ratio can also vary with time for speeding up and slowing down effects.</Description>
|
||||
<Archive sha1sum="ed60f957a4ff87aa15cbb1f3dbd886fa7e5e9566" type="targz">http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz</Archive>
|
||||
<Archive sha1sum="93eacb671d2d09e317f5ccd49967cf747cb4d937" type="tarxz">https://github.com/libsndfile/libsamplerate/releases/download/0.2.2/libsamplerate-0.2.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">dontbuild-tests-examples.patch</Patch>
|
||||
<!-- <Patch level="1">dontbuild-tests-examples.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -46,6 +46,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>0.2.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>0.1.9</Version>
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<Summary>ISO 8601 date/time parser.</Summary>
|
||||
<Description>This module implements ISO 8601 date, time and duration parsing. The implementation follows ISO8601:2004 standard, and implements only date/time representations mentioned in the standard. If something is not mentioned there, then it is treated as non existent, and not as an allowed option.</Description>
|
||||
<Archive sha1sum="6b6fd5db5abce3d3f15a7b53bc78b003528ac059" type="targz">
|
||||
https://github.com/gweis/isodate/archive/refs/tags/0.6.0.tar.gz
|
||||
<Archive sha1sum="182443610d476e1fe7bc0a35899e7132cd7398d9" type="targz">
|
||||
https://github.com/gweis/isodate/archive/refs/tags/0.6.1.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
@@ -34,6 +34,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>0.6.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2021-10-28</Date>
|
||||
<Version>0.6.0</Version>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?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>python3-rdflib</Name>
|
||||
@@ -12,17 +12,14 @@
|
||||
<IsA>app</IsA>
|
||||
<Summary>A Python library for working with RDF, a simple yet powerful language for representing information</Summary>
|
||||
<Description>A Python library for working with RDF, a simple yet powerful language for representing information</Description>
|
||||
<Archive sha1sum="3302d2958a974f44bd32c67431083bf14f48f8c7" type="targz">https://files.pythonhosted.org/packages/9a/43/0a5bcaeb7cac3db3cf02ce3a2030cdbdd3d9000402cc859753951ca2596f/rdflib-6.0.1.tar.gz</Archive>
|
||||
<Archive sha1sum="db0fd893da30af58db1d529745b2b94c666d9583" type="targz">https://files.pythonhosted.org/packages/source/r/rdflib/rdflib-6.1.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>python3-rdflib.patch</Patch>
|
||||
<Patch level="1">python3-rdflib.patch</Patch>
|
||||
<!-- <Patch level="1">python3-rdflib.patch</Patch> -->
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -39,6 +36,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2021-01-18</Date>
|
||||
<Version>6.1.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisilinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2021-10-14</Date>
|
||||
<Version>6.0.1</Version>
|
||||
|
||||
@@ -13,12 +13,14 @@
|
||||
<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="ce730606a9812ae0b47027ed6cad448b13e18bee" type="targz">
|
||||
https://github.com/Martchus/cpp-utilities/archive/refs/tags/v5.11.1.tar.gz
|
||||
<Archive sha1sum="18779b3009c55d47d1d40d09f91e6fa8dbec1baf" type="targz">
|
||||
https://github.com/Martchus/cpp-utilities/archive/refs/tags/v5.12.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>cppunit-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -48,6 +50,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>5.12.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-11-04</Date>
|
||||
<Version>5.11.1</Version>
|
||||
|
||||
@@ -13,11 +13,12 @@
|
||||
<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="1bfa7f1d38fb10f6d55c8db9f8a72bf500ef3256" type="targz">
|
||||
https://github.com/Martchus/qtutilities/archive/refs/tags/v6.5.0.tar.gz
|
||||
<Archive sha1sum="7b1e28e49adb54deb6454f6768aa4e48a20ce241" type="targz">
|
||||
https://github.com/Martchus/qtutilities/archive/refs/tags/v6.5.3.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>cpp-utilities-devel</Dependency>
|
||||
@@ -52,6 +53,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>6.5.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-11-04</Date>
|
||||
<Version>6.5.0</Version>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# 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, autotools, get
|
||||
from pisi.actionsapi import shelltools, autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
shelltools.system("NOCONFIGURE=1 ./autogen.sh")
|
||||
@@ -16,4 +16,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# pisitools.dodoc("AUTHORS", "NEWS")
|
||||
pisitools.removeDir("/usr/lib/systemd")
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
<PartOf>util.admin</PartOf>
|
||||
<Summary>Activity logging framework.</Summary>
|
||||
<Description>Zeitgeist is a service which logs the users's activities and events (files opened, websites visites, conversations held with other people, etc.) and makes relevant information available to other applications.</Description>
|
||||
<Archive sha1sum="c54ca4b03f69426ffca7ffde73a571b261c403de" type="tarbz2">
|
||||
https://gitlab.freedesktop.org/zeitgeist/zeitgeist/-/archive/v1.0.3/zeitgeist-v1.0.3.tar.bz2
|
||||
<Archive sha1sum="15def247e8aa94d5259ed4dacd596e3645be225b" type="tarbz2">
|
||||
https://gitlab.freedesktop.org/zeitgeist/zeitgeist/-/archive/v1.0.4/zeitgeist-v1.0.4.tar.bz2
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
@@ -32,7 +32,7 @@
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level='1'>Use_GenericArray_API_only.patch</Patch>
|
||||
<!-- <Patch level='1'>Use_GenericArray_API_only.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -69,6 +69,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2022-01-18</Date>
|
||||
<Version>1.0.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-10-13</Date>
|
||||
<Version>1.0.3</Version>
|
||||
|
||||
Reference in New Issue
Block a user