cauchy: new package for calligra, calligra: rebuild
This commit is contained in:
@@ -12,14 +12,14 @@
|
||||
<License>LGPL</License>
|
||||
<License>FDL1.2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>An integrated office suite for KDE</Summary>
|
||||
<Summary>Office and graphic art suite by KDE</Summary>
|
||||
<Description>Calligra is a free, integrated office suite for KDE. The application suite consists of a word-processor, a spreadsheet application, a presentation creator and viewer application, an organizer and more.</Description>
|
||||
<Archive sha1sum="8d724a5548dce2ec6cb0c152a464c7472a9451de" type="tarxz">https://download.kde.org/stable/calligra/3.2.1/calligra-3.2.1.tar.xz</Archive>
|
||||
<Archive sha1sum="ba2e1abbf238fdcd09ffd361db6e917b833b0bee" type="targz">https://invent.kde.org/office/calligra/-/archive/master/calligra-master.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-declarative-devel</Dependency>
|
||||
<Dependency>qt5-svg</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-quickcontrols2-devel</Dependency>
|
||||
<Dependency>qt5-sql-mysql</Dependency>
|
||||
<Dependency>qt5-sql-odbc</Dependency>
|
||||
@@ -94,6 +94,12 @@
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libgit2-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>imath-devel</Dependency>
|
||||
<Dependency>djvu-devel</Dependency>
|
||||
<Dependency>cauchy-devel</Dependency>
|
||||
<Dependency>libzip-devel</Dependency>
|
||||
<Dependency>libspectre-devel</Dependency>
|
||||
<Dependency>ebook-tools-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -103,7 +109,7 @@
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>gsl</Dependency>
|
||||
<Dependency>ilmbase</Dependency>
|
||||
<Dependency>imath</Dependency>
|
||||
<Dependency>kactivities</Dependency>
|
||||
<Dependency>karchive</Dependency>
|
||||
<Dependency>kcmutils</Dependency>
|
||||
@@ -157,6 +163,11 @@
|
||||
<Dependency>libwpd</Dependency>
|
||||
<Dependency>libwps</Dependency>
|
||||
<Dependency>libgit2</Dependency>
|
||||
<Dependency>djvu</Dependency>
|
||||
<Dependency>cauchy</Dependency>
|
||||
<Dependency>libzip</Dependency>
|
||||
<Dependency>libspectre</Dependency>
|
||||
<Dependency>ebook-tools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg/braindump</Path>
|
||||
@@ -340,6 +351,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2021-11-30</Date>
|
||||
<Version>3.2.1</Version>
|
||||
<Comment>Fix build</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-03-05</Date>
|
||||
<Version>3.2.1</Version>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>calligra</Name>
|
||||
<Summary xml:lang="en">An integrated office suite for KDE</Summary>
|
||||
<Description xml:lang="en">calligra is a free, integrated office suite for KDE. The application suite consists of a word-processor, a spreadsheet application, a presentation creator and viewer application, an organizer and more.</Description>
|
||||
<Summary xml:lang="tr">KDE'den ofis ve grafik sanatı paketi</Summary>
|
||||
<Description xml:lang="tr">Calligra, KDE için ücretsiz, entegre bir ofis paketidir. Uygulama paketi, bir kelime işlemci, bir elektronik tablo uygulaması, bir sunum oluşturucu ve görüntüleyici uygulaması, bir düzenleyici ve daha fazlasını içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
|
||||
|
||||
def build():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.rawInstall('DESTDIR="%s"' % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
|
||||
pisitools.dodoc("COPYING")
|
||||
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cauchy</Name>
|
||||
<Homepage>https://bitbucket.org/cyrille/cauchy</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab</Summary>
|
||||
<Description>A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab</Description>
|
||||
<Archive sha1sum="d26f5d72a8c26cbc6b3fcd7cda4d5ef1a2f3f793" type="tarbz2">https://sourceforge.net/projects/pisilinux/files/source/cauchy-0.9.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>eigen3</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cauchy</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libCauchy.so*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/libm2mml.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libCauchyXUnit.so*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>cauchy-devel</Name>
|
||||
<Summary>Development files for cauchy</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">cauchy</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<!-- <Path fileType="data">/usr/lib/pkgconfig</Path> -->
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-11-30</Date>
|
||||
<Version>0.9.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cauchy</Name>
|
||||
<Summary xml:lang="tr">Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık</Summary>
|
||||
<Description xml:lang="tr">Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cauchy-devel</Name>
|
||||
<Summary xml:lang="tr">cauchy için geliştirme başlıkları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+168
-23
@@ -141088,6 +141088,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Dependency>xmlto</Dependency>
|
||||
<Dependency>meson</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">shared-mime-info-2.1-itstool.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>desktop/misc/shared-mime-info/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
@@ -141119,6 +141122,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2021-11-28</Date>
|
||||
<Version>2.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2021-04-19</Date>
|
||||
<Version>2.1</Version>
|
||||
@@ -142334,9 +142344,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-11-27</Date>
|
||||
<Date>2021-11-28</Date>
|
||||
<Version>3.1.2</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
@@ -170805,7 +170815,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Summary xml:lang="tr">Gerçek kipte ekran BIOS değiştirme aracı (örn. ekran kartını yeniden başlatmak için)</Summary>
|
||||
<Description xml:lang="en">vbetools is a real-mode video BIOS code to alter hardware state. Vbetool uses lrmi in order to run code from the video BIOS. It is able to alter DPMS states, save/restore video card state and attempt to initialize the video card from scratch.</Description>
|
||||
<Description xml:lang="tr">Donanım durumunu değiştiren gerçek kipli video BIOS kodudur. Video BIOS'undan gelen kodları çalıştırmak için lrmi kullanır. Video kartının DPMS ve kaydet/tekrar inşaa et durumunun değiştirilmesini sağlar ve video kartının hatalı durumdan başlatılmasına çalışır.</Description>
|
||||
<Archive type="targz" sha1sum="c7ba7c0635160c47fb1b94fd7c7cbe39cb717d22" name="vbetool-1.1.tar.gz">http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.1.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="c7ba7c0635160c47fb1b94fd7c7cbe39cb717d22" name="vbetool-1.1.tar.gz">http://ftp.iij.ad.jp/pub/linux/gentoo/distfiles/32/vbetool-1.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libx86-devel</Dependency>
|
||||
<Dependency>pciutils-devel</Dependency>
|
||||
@@ -170829,6 +170839,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-11-29</Date>
|
||||
<Version>1.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-02-02</Date>
|
||||
<Version>1.1</Version>
|
||||
@@ -175204,6 +175221,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-11-28</Date>
|
||||
<Version>2.14</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2021-07-28</Date>
|
||||
<Version>2.14</Version>
|
||||
@@ -175297,6 +175321,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2021-11-29</Date>
|
||||
<Version>1.0_p20200924</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-02-19</Date>
|
||||
<Version>1.0_p20200924</Version>
|
||||
@@ -220789,22 +220820,22 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
<Description xml:lang="tr">NetworkManager için OpenVPN desteği</Description>
|
||||
<Archive type="targz" sha1sum="4487847c9694f0a9957ce819b5cc298fae1b03c8" name="NetworkManager-openvpn-1.8.16.tar.gz">https://gitlab.gnome.org/GNOME/NetworkManager-openvpn/-/archive/1.8.16/NetworkManager-openvpn-1.8.16.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>harfbuzz-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>m4</Dependency>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>poxml</Dependency>
|
||||
<Dependency>gettext</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>openvpn</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>libnma-devel</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>harfbuzz-devel</Dependency>
|
||||
<Dependency>libsecret-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>NetworkManager-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>network/connection/networkmanager-openvpn/pspec.xml</SourceURI>
|
||||
@@ -227222,7 +227253,7 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Summary xml:lang="tr">net-snmp için geliştirme dosyaları</Summary>
|
||||
<Summary xml:lang="pl">Pliki naglowkowe do net-snmp</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="6">net-snmp</Dependency>
|
||||
<Dependency release="7">net-snmp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -227231,6 +227262,13 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-11-29</Date>
|
||||
<Version>5.9</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2021-03-27</Date>
|
||||
<Version>5.9</Version>
|
||||
@@ -230750,14 +230788,16 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<License>FDL1.2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>office.calligra</PartOf>
|
||||
<Summary xml:lang="en">An integrated office suite for KDE</Summary>
|
||||
<Description xml:lang="en">calligra is a free, integrated office suite for KDE. The application suite consists of a word-processor, a spreadsheet application, a presentation creator and viewer application, an organizer and more.</Description>
|
||||
<Archive type="tarxz" sha1sum="8d724a5548dce2ec6cb0c152a464c7472a9451de" name="calligra-3.2.1.tar.xz">https://download.kde.org/stable/calligra/3.2.1/calligra-3.2.1.tar.xz</Archive>
|
||||
<Summary xml:lang="en">Office and graphic art suite by KDE</Summary>
|
||||
<Summary xml:lang="tr">KDE'den ofis ve grafik sanatı paketi</Summary>
|
||||
<Description xml:lang="en">Calligra is a free, integrated office suite for KDE. The application suite consists of a word-processor, a spreadsheet application, a presentation creator and viewer application, an organizer and more.</Description>
|
||||
<Description xml:lang="tr">Calligra, KDE için ücretsiz, entegre bir ofis paketidir. Uygulama paketi, bir kelime işlemci, bir elektronik tablo uygulaması, bir sunum oluşturucu ve görüntüleyici uygulaması, bir düzenleyici ve daha fazlasını içerir.</Description>
|
||||
<Archive type="targz" sha1sum="ba2e1abbf238fdcd09ffd361db6e917b833b0bee" name="calligra-master.tar.gz">https://invent.kde.org/office/calligra/-/archive/master/calligra-master.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-declarative-devel</Dependency>
|
||||
<Dependency>qt5-svg</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-quickcontrols2-devel</Dependency>
|
||||
<Dependency>qt5-sql-mysql</Dependency>
|
||||
<Dependency>qt5-sql-odbc</Dependency>
|
||||
@@ -230832,6 +230872,12 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libgit2-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>imath-devel</Dependency>
|
||||
<Dependency>djvu-devel</Dependency>
|
||||
<Dependency>cauchy-devel</Dependency>
|
||||
<Dependency>libzip-devel</Dependency>
|
||||
<Dependency>libspectre-devel</Dependency>
|
||||
<Dependency>ebook-tools-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>office/calligra/calligra/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -230841,7 +230887,7 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>gsl</Dependency>
|
||||
<Dependency>ilmbase</Dependency>
|
||||
<Dependency>imath</Dependency>
|
||||
<Dependency>kactivities</Dependency>
|
||||
<Dependency>karchive</Dependency>
|
||||
<Dependency>kcmutils</Dependency>
|
||||
@@ -230895,6 +230941,11 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Dependency>libwpd</Dependency>
|
||||
<Dependency>libwps</Dependency>
|
||||
<Dependency>libgit2</Dependency>
|
||||
<Dependency>djvu</Dependency>
|
||||
<Dependency>cauchy</Dependency>
|
||||
<Dependency>libzip</Dependency>
|
||||
<Dependency>libspectre</Dependency>
|
||||
<Dependency>ebook-tools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg/braindump</Path>
|
||||
@@ -231077,6 +231128,13 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2021-11-30</Date>
|
||||
<Version>3.2.1</Version>
|
||||
<Comment>Fix build</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-03-05</Date>
|
||||
<Version>3.2.1</Version>
|
||||
@@ -236839,6 +236897,63 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>cauchy</Name>
|
||||
<Homepage>https://bitbucket.org/cyrille/cauchy</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>office.misc</PartOf>
|
||||
<Summary xml:lang="en">A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab</Summary>
|
||||
<Summary xml:lang="tr">Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık</Summary>
|
||||
<Description xml:lang="en">A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab</Description>
|
||||
<Description xml:lang="tr">Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık</Description>
|
||||
<Archive type="tarbz2" sha1sum="d26f5d72a8c26cbc6b3fcd7cda4d5ef1a2f3f793" name="cauchy-0.9.0.tar.bz2">https://sourceforge.net/projects/pisilinux/files/source/cauchy-0.9.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>eigen3</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>office/misc/cauchy/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>cauchy</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libCauchy.so*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/libm2mml.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libCauchyXUnit.so*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>cauchy-devel</Name>
|
||||
<Summary xml:lang="en">Development files for cauchy</Summary>
|
||||
<Summary xml:lang="tr">cauchy için geliştirme başlıkları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">cauchy</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-11-30</Date>
|
||||
<Version>0.9.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>chmlib</Name>
|
||||
@@ -243039,7 +243154,7 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Description xml:lang="en">GDB, the GNU Project debugger, allows you to see what is going on 'inside' another program while it executes -- or what another program was doing at the moment it crashed.</Description>
|
||||
<Description xml:lang="tr">GDB, GNU Proje hata ayıklama aracı, çalışır durumdaki başka bir programın `içinde' olan biteni görmenizi, veya başka bir programın çöktüğü anda ne yapıyor olduğunu bilmenizi sağlar.</Description>
|
||||
<Description xml:lang="es">GDB, el depurador del proyecto GNU permite ver lo que está pasando 'en el interior de' otro programa mientras ejecuta -- o lo que estaba haciendo cuando quedó colgado.</Description>
|
||||
<Archive type="tarxz" sha1sum="1056e2743a825ecce46ec9eec37f0b357831012b" name="gdb-10.2.tar.xz">https://ftp.gnu.org/gnu/gdb/gdb-10.2.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="6cb3361c7f2b22d6d2c25ab4992264aa41bc2471" name="gdb-11.1.tar.xz">https://ftp.gnu.org/gnu/gdb/gdb-11.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>texinfo</Dependency>
|
||||
<Dependency>xz-devel</Dependency>
|
||||
@@ -243052,6 +243167,9 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Dependency>readline-devel</Dependency>
|
||||
<Dependency>source-highlight-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">0001-AArch64-Make-gdbserver-register-set-selection-dynami.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>programming/debug/gdb/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
@@ -243084,13 +243202,20 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Summary xml:lang="tr">gdb için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">gdb-devel, provides development files for gdb.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="9">gdb</Dependency>
|
||||
<Dependency release="10">gdb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2021-11-30</Date>
|
||||
<Version>11.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2021-09-15</Date>
|
||||
<Version>10.2</Version>
|
||||
@@ -244106,7 +244231,6 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Dependency>libXcomposite-devel</Dependency>
|
||||
<Dependency>chrpath</Dependency>
|
||||
<Dependency>jre8-openjdk-headless</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>zip</Dependency>
|
||||
<Dependency>cpio</Dependency>
|
||||
<Dependency>unzip</Dependency>
|
||||
@@ -277063,7 +277187,7 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Description xml:lang="en">Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C.</Description>
|
||||
<Description xml:lang="tr">Vala, ek bir çalışma zamanı bağımlılığı olmayan ve C kitaplıklarının olduğu gibi kullanılabilmesini sağlayan modern bir programlama dilidir.</Description>
|
||||
<Description xml:lang="pl">Vala to nowy język programowania, którego celem jest udostępnienie cech nowoczesnych języków programowania programistom GNOME bez wymuszania dodatkowych wymagań co do środowiska uruchomieniowego i używania API innego niż w aplikacjach i bibliotekach napisanych w C.</Description>
|
||||
<Archive type="tarxz" sha1sum="6867e9ca8bb36330a1663b8c4c432c54bea352b5" name="vala-0.54.3.tar.xz">mirrors://gnome/vala/0.54/vala-0.54.3.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="e63d7fa13802ecafa5bfb07c67c0aa8c4fde526f" name="vala-0.54.4.tar.xz">mirrors://gnome/vala/0.54/vala-0.54.4.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>help2man</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
@@ -277111,7 +277235,7 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<Summary xml:lang="tr">vala için geliştirme dosyaları</Summary>
|
||||
<Summary xml:lang="pl">Pliki nagłówkowe dla kompilatora vala</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="16">vala</Dependency>
|
||||
<Dependency release="17">vala</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -277124,6 +277248,13 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="17">
|
||||
<Date>2021-11-29</Date>
|
||||
<Version>0.54.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="16">
|
||||
<Date>2021-10-30</Date>
|
||||
<Version>0.54.3</Version>
|
||||
@@ -283210,7 +283341,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<Summary xml:lang="tr">Aşırı hızlı çırpı yordamları algoritması</Summary>
|
||||
<Description xml:lang="en">xxHash is an Extremely fast Hash algorithm, running at RAM speed limits. It successfully completes the SMHasher test suite which evaluates collision, dispersion and randomness qualities of hash functions. Code is highly portable, and hashes are identical on all platforms (little / big endian).</Description>
|
||||
<Description xml:lang="tr">xxHash RAM hız sınırlarında aşırı hızlı çırpı yordamları koşabilen bir kitaplıktır.</Description>
|
||||
<Archive type="targz" sha1sum="edd0ad280e3d294d06b278c3c9ae03b2b7d6686a" name="v0.8.0.tar.gz">https://github.com/Cyan4973/xxHash/archive/v0.8.0.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="a92c9a9cfbef23e52f2d1b581cb9926c680d261d" name="v0.8.1.tar.gz">https://github.com/Cyan4973/xxHash/archive/v0.8.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>make</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -283232,7 +283363,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<Summary xml:lang="tr">xxhash için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">xxhash-devel, xxhash için geliştirme dosyalarını içerir.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="2">xxhash</Dependency>
|
||||
<Dependency release="3">xxhash</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -283240,6 +283371,13 @@ to create header files and sources from protocol files.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2021-11-30</Date>
|
||||
<Version>0.8.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2020-09-07</Date>
|
||||
<Version>0.8.0</Version>
|
||||
@@ -301387,13 +301525,20 @@ contacts, tasks, and calendar information.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>popt-devel</Dependency>
|
||||
<Dependency>efivar-devel</Dependency>
|
||||
<Dependency release="14">efibootmgr</Dependency>
|
||||
<Dependency release="15">efibootmgr</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="15">
|
||||
<Date>2021-11-29</Date>
|
||||
<Version>17</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2021-08-22</Date>
|
||||
<Version>17</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
de8dfd90c382f08fc9319b6f08dc032343c9857b
|
||||
5f1cae29b748bf953556b21172093f2d9df9a04d
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
890bc1b3f95e02b635eef918fe143b4fc13a41f5
|
||||
75e5c3e7efb3963161a90662928291543d5bc8a1
|
||||
Reference in New Issue
Block a user