Merge branch 'master' into flatpak_update
This commit is contained in:
@@ -85,6 +85,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="16">
|
||||
<Date>2018-02-21</Date>
|
||||
<Version>17.12.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2018-02-03</Date>
|
||||
<Version>17.12.1</Version>
|
||||
|
||||
@@ -121,6 +121,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="15">
|
||||
<Date>2018-02-21</Date>
|
||||
<Version>5.42.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2018-02-01</Date>
|
||||
<Version>5.42.0</Version>
|
||||
|
||||
@@ -39,6 +39,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>0.9.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-27</Date>
|
||||
<Version>0.9.1</Version>
|
||||
@@ -61,4 +68,4 @@
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
|
||||
@@ -43,13 +43,13 @@
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/package-manager/data/installed.svg">installed.svg</AdditionalFile>
|
||||
<!--AdditionalFile owner="root" permission="0644" target="/usr/share/package-manager/data/installed.svg">installed.svg</AdditionalFile-->
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2018-02-11</Date>
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>4.1.9</Version>
|
||||
<Comment>fixed icons issue.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
From ce1dce113c5eda42f49ba3278bb21c61872ca37d Mon Sep 17 00:00:00 2001
|
||||
From: Paul Cornett <paulcor@users.noreply.github.com>
|
||||
Date: Mon, 28 Aug 2017 20:31:47 -0700
|
||||
Subject: [PATCH] Avoid delayed destruction if TLW was never created. See
|
||||
#17942
|
||||
|
||||
(cherry picked from commit 4a71ba820f085a3d5a7233e9fd0e23ae4e45af58)
|
||||
---
|
||||
src/common/toplvcmn.cpp | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/common/toplvcmn.cpp b/src/common/toplvcmn.cpp
|
||||
index ef693690c5d..6a722f8be48 100644
|
||||
--- a/src/common/toplvcmn.cpp
|
||||
+++ b/src/common/toplvcmn.cpp
|
||||
@@ -105,10 +105,10 @@ bool wxTopLevelWindowBase::Destroy()
|
||||
// as we will be deleted anyhow during its destruction and the pointer
|
||||
// stored in wxPendingDelete would become invalid, so just delete ourselves
|
||||
// immediately in this case.
|
||||
- if ( wxWindow* parent = GetParent() )
|
||||
+ wxWindow* parent = GetParent();
|
||||
+ if ( (parent && parent->IsBeingDeleted()) || !GetHandle() )
|
||||
{
|
||||
- if ( parent->IsBeingDeleted() )
|
||||
- return wxNonOwnedWindow::Destroy();
|
||||
+ return wxNonOwnedWindow::Destroy();
|
||||
}
|
||||
|
||||
// delayed destruction: the frame will be deleted during the next idle
|
||||
File diff suppressed because it is too large
Load Diff
@@ -15,7 +15,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit</Summary>
|
||||
<Description>wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation.</Description>
|
||||
<Archive sha1sum="6461eab4428c0a8b9e41781b8787510484dea800" type="tarbz2">mirrors://sourceforge/wxwindows/wxWidgets-3.0.2.tar.bz2</Archive>
|
||||
<Archive sha1sum="ea785822d0f1c3290707bda6da570e596b3ec85a" type="tarbz2">https://github.com/wxWidgets/wxWidgets/releases/download/v3.0.3.1/wxWidgets-3.0.3.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
@@ -32,7 +32,8 @@
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">make-abicheck-non-fatal.patch</Patch>
|
||||
<Patch level="1">wxgtk-gcc6.patch</Patch>
|
||||
<Patch level="1">wxGTK3-3.0.3-webkit2.patch</Patch>
|
||||
<Patch level="1">wxGTK3-3.0.3-avoid-tlw-destroy-assert.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -52,11 +53,14 @@
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXxf86vm</Dependency>
|
||||
<Dependency>webkit-gtk2</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>gstreamer-next</Dependency>
|
||||
<Dependency>gst-plugins-base-next</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/</Path>
|
||||
@@ -81,6 +85,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>3.0.3.1</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-04-09</Date>
|
||||
<Version>3.0.2</Version>
|
||||
@@ -103,4 +114,4 @@
|
||||
<Email>ibrahimkaraguzel@windowslive.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
|
||||
@@ -17,4 +17,4 @@ def build():
|
||||
def install():
|
||||
cmaketools.install()
|
||||
|
||||
pisitools.dodoc("AUTHORS", "INSTALL", "CHANGELOG", "COPYING", "README")
|
||||
pisitools.dodoc("AUTHORS", "INSTALL", "CHANGELOG", "COPYING", "README*")
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,3 @@
|
||||
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
@@ -13,7 +12,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game</Summary>
|
||||
<Description>The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen.</Description>
|
||||
<Archive sha1sum="859dcfab8ceb6c27adb73d2627ada17991b400ac" type="targz">https://github.com/juzzlin/DustRacing2D/archive/1.12.0.tar.gz</Archive>
|
||||
<Archive sha1sum="516c7e7e49ae43cc54cbe0e12b46ca4295947460" type="targz">https://github.com/juzzlin/DustRacing2D/archive/2.0.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
@@ -24,6 +23,9 @@
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>editor.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -42,12 +44,20 @@
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/metainfo/dustrac.appdata.xml</Path>
|
||||
<Path fileType="pixmaps">/usr/share/pixmaps</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2018-02-19</Date>
|
||||
<Version>2.0.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2017-04-25</Date>
|
||||
<Version>1.12.0</Version>
|
||||
|
||||
@@ -60,9 +60,9 @@
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2018-02-16</Date>
|
||||
<Date>2018-02-21</Date>
|
||||
<Version>17.05</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
From 4da7a9128f2c5eaf23ae2a5006d300dc4f21fc6a Mon Sep 17 00:00:00 2001
|
||||
From: Craig Drummond <craig.p.drummond@gmail.com>
|
||||
Date: Tue, 28 Nov 2017 22:37:01 +0000
|
||||
Subject: [PATCH] Create QSqlQuery, then call prepare Issue #1130
|
||||
|
||||
---
|
||||
db/librarydb.cpp | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/db/librarydb.cpp b/db/librarydb.cpp
|
||||
index 603d8abc1..4f75dc28f 100644
|
||||
--- a/db/librarydb.cpp
|
||||
+++ b/db/librarydb.cpp
|
||||
@@ -453,7 +453,8 @@ class SqlQuery
|
||||
if (limit>0) {
|
||||
sql+=" LIMIT "+QString::number(limit);
|
||||
}
|
||||
- query=QSqlQuery(sql, db);
|
||||
+ query = QSqlQuery(db);
|
||||
+ query.prepare(sql);
|
||||
|
||||
for (const QVariant &value: boundValues) {
|
||||
query.addBindValue(value);
|
||||
@@ -12,7 +12,7 @@
|
||||
<Icon>cantata</Icon>
|
||||
<Summary>Qt5 client for the music player daemon </Summary>
|
||||
<Description>Cantata is a graphical client for MPD</Description>
|
||||
<Archive sha1sum="90a80b412a21aed72d1b7cc578f0c2ffa62c243c" type="tarbz2">https://github.com/CDrummond/cantata/releases/download/v2.0.1/cantata-2.0.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="e4ebd1777700cb3406725d905073dd6ea1382b4d" type="tarbz2">https://github.com/CDrummond/cantata/releases/download/v2.2.0/cantata-2.2.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
@@ -41,8 +41,12 @@
|
||||
<Dependency>libqjson-devel</Dependency>
|
||||
<Dependency>vlc-devel</Dependency>
|
||||
<Dependency>perl-URI</Dependency>
|
||||
<Dependency>libcdio-paranoia-devel</Dependency>
|
||||
<Dependency>taglib-extras-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>4da7a912.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>cantata</Name>
|
||||
@@ -63,6 +67,7 @@
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>libqjson</Dependency>
|
||||
<Dependency>libcdio-paranoia</Dependency>
|
||||
<Dependency>taglib-extras</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -78,6 +83,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>2.2.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2017-05-02</Date>
|
||||
<Version>2.0.1</Version>
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
From 8a6cc8b5069265e1e92e22def985e22c5955e503 Mon Sep 17 00:00:00 2001
|
||||
From: Morris Hafner <mmha@users.noreply.github.com>
|
||||
Date: Mon, 13 Feb 2017 17:46:46 +0100
|
||||
Subject: [PATCH] Add missing <functional> includes (#5630)
|
||||
|
||||
---
|
||||
src/core/mergedproxymodel.cpp | 1 +
|
||||
src/devices/giolister.cpp | 1 +
|
||||
src/library/groupbydialog.cpp | 2 ++
|
||||
3 files changed, 4 insertions(+)
|
||||
|
||||
diff --git a/src/core/mergedproxymodel.cpp b/src/core/mergedproxymodel.cpp
|
||||
index 56217f6fd..8c210d391 100644
|
||||
--- a/src/core/mergedproxymodel.cpp
|
||||
+++ b/src/core/mergedproxymodel.cpp
|
||||
@@ -23,6 +23,7 @@
|
||||
|
||||
#include <QStringList>
|
||||
|
||||
+#include <functional>
|
||||
#include <limits>
|
||||
|
||||
// boost::multi_index still relies on these being in the global namespace.
|
||||
diff --git a/src/devices/giolister.cpp b/src/devices/giolister.cpp
|
||||
index aa3bddb34..5f63ef248 100644
|
||||
--- a/src/devices/giolister.cpp
|
||||
+++ b/src/devices/giolister.cpp
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
+#include <functional>
|
||||
#include <memory>
|
||||
|
||||
#include <QFile>
|
||||
diff --git a/src/library/groupbydialog.cpp b/src/library/groupbydialog.cpp
|
||||
index 5efdc9f36..e5f711b34 100644
|
||||
--- a/src/library/groupbydialog.cpp
|
||||
+++ b/src/library/groupbydialog.cpp
|
||||
@@ -20,6 +20,8 @@
|
||||
|
||||
#include <QPushButton>
|
||||
|
||||
+#include <functional>
|
||||
+
|
||||
// boost::multi_index still relies on these being in the global namespace.
|
||||
using std::placeholders::_1;
|
||||
using std::placeholders::_2;
|
||||
--
|
||||
2.13.4
|
||||
@@ -0,0 +1,25 @@
|
||||
diff --git a/src/internet/spotify/spotifyblobdownloader.cpp b/src/internet/spotify/spotifyblobdownloader.cpp
|
||||
index e34577f5d..045aeeb8a 100644
|
||||
--- a/src/internet/spotify/spotifyblobdownloader.cpp
|
||||
+++ b/src/internet/spotify/spotifyblobdownloader.cpp
|
||||
@@ -189,7 +189,7 @@ bool SpotifyBlobDownloader::CheckSignature(
|
||||
|
||||
try {
|
||||
CryptoPP::ByteQueue bytes;
|
||||
- bytes.Put(reinterpret_cast<const byte*>(public_key_data.constData()),
|
||||
+ bytes.Put(reinterpret_cast<const CryptoPP::byte*>(public_key_data.constData()),
|
||||
public_key_data.size());
|
||||
bytes.MessageEnd();
|
||||
|
||||
@@ -204,9 +204,9 @@ bool SpotifyBlobDownloader::CheckSignature(
|
||||
actual_filename.remove(kSignatureSuffix);
|
||||
|
||||
const bool result = verifier.VerifyMessage(
|
||||
- reinterpret_cast<const byte*>(file_data[actual_filename].constData()),
|
||||
+ reinterpret_cast<const CryptoPP::byte*>(file_data[actual_filename].constData()),
|
||||
file_data[actual_filename].size(),
|
||||
- reinterpret_cast<const byte*>(
|
||||
+ reinterpret_cast<const CryptoPP::byte*>(
|
||||
file_data[signature_filename].constData()),
|
||||
file_data[signature_filename].size());
|
||||
qLog(Debug) << "Verifying" << actual_filename << "against"
|
||||
@@ -59,6 +59,10 @@
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">tokenizer.diff</Patch>
|
||||
<!-- <Patch level="1">clementine-gcc6.patch</Patch> -->
|
||||
<Patch level="1">add-missing-functional-includes-5630.patch</Patch>
|
||||
<!-- <Patch level="1">clementine-1.3.1-chromaprint-1.4.0.patch</Patch> -->
|
||||
<Patch level="1">clementine-cryptopp6.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -93,6 +97,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2017-03-08</Date>
|
||||
<Version>1.3.1</Version>
|
||||
|
||||
@@ -127,7 +127,14 @@
|
||||
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Update release="7">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>3.3.6</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2018-01-13</Date>
|
||||
<Version>3.3.6</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
|
||||
@@ -115,6 +115,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>1.10.3</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2017-03-05</Date>
|
||||
<Version>1.10.3</Version>
|
||||
|
||||
@@ -59,6 +59,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>1.10.3</Version>
|
||||
<Comment>Rebuild and edit.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2017-03-05</Date>
|
||||
<Version>1.10.3</Version>
|
||||
|
||||
@@ -57,6 +57,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>0.10.19</Version>
|
||||
<Comment>Rebuild and edit.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-17</Date>
|
||||
<Version>0.10.19</Version>
|
||||
|
||||
@@ -82,6 +82,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>2.0.13</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-10-09</Date>
|
||||
<Version>2.0.13</Version>
|
||||
|
||||
@@ -93,6 +93,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-03-02</Date>
|
||||
<Version>1.2.4</Version>
|
||||
|
||||
@@ -17,4 +17,4 @@ def build():
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("CONTRIBUTING", "COPYING", "README")
|
||||
pisitools.dodoc("CONTRIBUTING*", "COPYING*", "README*")
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>OBS-Studio is a rewrite of what was formerly known as Open Broadcaster Software</Summary>
|
||||
<Description>OBS-Studio software was originally designed for recording and streaming live video content, efficiently</Description>
|
||||
<Archive sha1sum="c7d3b4fc48ca4b7ec2c4e5a6918b1eefbd68f63c" type="targz">https://github.com/jp9000/obs-studio/archive/17.0.2.tar.gz</Archive>
|
||||
<Archive sha1sum="0344864b2ba72c26c9e485d54083c5041604866a" type="targz">https://github.com/jp9000/obs-studio/archive/21.0.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
@@ -33,6 +33,7 @@
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>libXfixes-devel</Dependency>
|
||||
<Dependency>speexdsp-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>libXcomposite-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
@@ -55,6 +56,7 @@
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libv4l</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>speexdsp</Dependency>
|
||||
<Dependency>jansson</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
@@ -98,6 +100,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>21.0.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-02-03</Date>
|
||||
<Version>17.0.2</Version>
|
||||
|
||||
@@ -25,6 +25,7 @@ def setup():
|
||||
--with-default-font=/usr/share/fonts/dejavu/DejaVuSans.ttf \
|
||||
--with-default-monospace-font=/usr/share/fonts/dejavu/DejaVuSansMono.ttf \
|
||||
--with-x \
|
||||
BUILDCC=gcc \
|
||||
LUAC=luac LUA_LIBS='`pkg-config --libs lua`' \
|
||||
RCC=/usr/bin/rcc-qt5 \
|
||||
--disable-qt4 \
|
||||
|
||||
@@ -13,16 +13,19 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>VLC media player</Summary>
|
||||
<Description>VLC is a famous video player and streamer.</Description>
|
||||
<Archive sha1sum="b960ec5bdb9a51da285430fc68962927ccc87187" type="tarxz">http://mirrors.netix.net/vlc/vlc/2.2.8/vlc-2.2.8.tar.xz</Archive>
|
||||
<Archive sha1sum="50610841b060321242793cf6ad3d58759dc5973b" type="tarxz">http://mirrors.netix.net/vlc/vlc/3.0.0/vlc-3.0.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
<Dependency>wayland-client</Dependency>
|
||||
<Dependency>libcdio-devel</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
<Dependency>lua-devel</Dependency>
|
||||
<Dependency>lua51-devel</Dependency>
|
||||
<!--Dependency>lua51-devel</Dependency-->
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
<Dependency>xcb-proto</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>zvbi-devel</Dependency>
|
||||
<Dependency>faac-devel</Dependency>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
@@ -42,6 +45,7 @@
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>libarchive-devel</Dependency>
|
||||
<Dependency>libXau-devel</Dependency>
|
||||
<Dependency>libtar-devel</Dependency>
|
||||
<Dependency>libvpx-devel</Dependency>
|
||||
@@ -55,6 +59,7 @@
|
||||
<Dependency>libmad-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>libsdl2-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency>
|
||||
<Dependency>a52dec-devel</Dependency>
|
||||
<Dependency>libebml-devel</Dependency>
|
||||
@@ -119,18 +124,17 @@
|
||||
<Dependency>xcb-util-keysyms-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-next-devel</Dependency>
|
||||
<Dependency>zvbi-devel</Dependency>
|
||||
<Dependency>wayland-protocols-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">ffmpeg3.patch</Patch>
|
||||
<Patch level="1">lua53_compat.patch</Patch>
|
||||
<Patch>qt4-select.patch</Patch>
|
||||
<!-- <Patch level="1">vlc-gcc6-buildfixes.patch</Patch> -->
|
||||
<Patch level="1">vlc-9999-libva-1.2.1-compat.patch</Patch>
|
||||
<!-- <Patch level="1">ffmpeg3.patch</Patch> -->
|
||||
<Patch level="1">lua53_compat.patch</Patch> -->
|
||||
<!-- <Patch level="1">vlc-9999-libva-1.2.1-compat.patch</Patch> -->
|
||||
<Patch level="1">vlc-2.2.4-libav-11.7.patch</Patch>
|
||||
<Patch level="1">vlc-2.2.4-decoder-lock-scope.patch</Patch>
|
||||
<Patch level="1">vlc-2.2.2-qt5widgets.patch</Patch>
|
||||
<Patch level="1">vlc-2.2.4-alsa-large-buffers.patch</Patch>
|
||||
<Patch level="1">vlc-2.2.4-cxx0x.patch</Patch>
|
||||
<!-- <Patch level="1">vlc-2.2.4-decoder-lock-scope.patch</Patch> -->
|
||||
<!-- <Patch level="1">vlc-2.2.2-qt5widgets.patch</Patch> -->
|
||||
<!-- <Patch level="1">vlc-2.2.4-alsa-large-buffers.patch</Patch> -->
|
||||
<!-- <Patch level="1">vlc-2.2.4-cxx0x.patch</Patch> -->
|
||||
<!--Patch level="1">vlc-2.2.4-qt57.patch</Patch-->
|
||||
<!-- <Patch>lc-2.2.0-fix-xcb.patch</Patch> -->
|
||||
<!-- <Patch>vlc-2.2.0-rdp-1.2.0.patch</Patch> -->
|
||||
@@ -144,6 +148,8 @@
|
||||
<Name>vlc</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-svg</Dependency>
|
||||
<Dependency>wayland-client</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>ncurses</Dependency>
|
||||
<Dependency>libtar</Dependency>
|
||||
@@ -169,6 +175,7 @@
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/kde4/apps/solid/actions</Path>
|
||||
<Path fileType="data">/usr/share/metainfo</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
@@ -217,6 +224,7 @@
|
||||
<Dependency>eudev</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>harfbuzz</Dependency>
|
||||
<Dependency>libidn</Dependency>
|
||||
<Dependency>libmad</Dependency>
|
||||
<Dependency>libass</Dependency>
|
||||
@@ -245,6 +253,8 @@
|
||||
<Dependency>libkate</Dependency>
|
||||
<Dependency>libupnp</Dependency>
|
||||
<Dependency>libshout</Dependency>
|
||||
<Dependency>libarchive</Dependency>
|
||||
<Dependency>avahi-libs</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libvdpau</Dependency>
|
||||
<Dependency>libmpeg2</Dependency>
|
||||
@@ -268,6 +278,7 @@
|
||||
<Dependency>libavc1394</Dependency>
|
||||
<Dependency>libmatroska</Dependency>
|
||||
<Dependency>schroedinger</Dependency>
|
||||
<Dependency>wayland-client</Dependency>
|
||||
<Dependency>libvncserver</Dependency>
|
||||
<Dependency>libgpg-error</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
@@ -298,6 +309,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>3.0.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2018-01-13</Date>
|
||||
<Version>2.2.8</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>New desktop recording program</Summary>
|
||||
<Description>Vokoscreen is a new application you to record your desktop. It’s very simple and it uses a minimalistic GUI</Description>
|
||||
<Archive sha1sum="fcc817cd96c2abfbfa548b63deb9cc7fb91e59fe" type="targz">https://github.com/vkohaupt/vokoscreen/archive/2.5.3-beta.tar.gz</Archive>
|
||||
<Archive sha1sum="58ed9a93bb23a3e71ad85e60efc3d53ae7652f19" type="targz">https://github.com/vkohaupt/vokoscreen/archive/2.5.7-beta.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
@@ -54,6 +54,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>2.5.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2017-02-03</Date>
|
||||
<Version>2.5.3</Version>
|
||||
|
||||
@@ -33,6 +33,7 @@ def setup():
|
||||
# Not delete --bit-depth=8 \
|
||||
autotools.rawConfigure("--prefix=/usr \
|
||||
--enable-pic \
|
||||
--disable-asm \
|
||||
--enable-shared \
|
||||
--disable-avs \
|
||||
--disable-ffms \
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<Summary>Open source H264/AVC encoder</Summary>
|
||||
<Description>x264 is a free library for encoding H264/AVC video streams.</Description>
|
||||
<!-- Archives come from http://download.videolan.org/pub/videolan/x264/snapshots/ -->
|
||||
<Archive sha1sum="16d3302148b92a9f0e6254fec554e0c375ccce75" type="tarbz2">https://sourceforge.net/projects/pisilinux/files/source/last_stable_x264.tar.bz2</Archive>
|
||||
<Archive sha1sum="f71562a9b4af70db1840495e21bc6851bf42a2da" type="tarbz2">https://download.videolan.org/pub/videolan/x264/snapshots/last_stable_x264.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>yasm-devel</Dependency>
|
||||
<Dependency>l-smash-devel</Dependency>
|
||||
@@ -45,6 +45,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>2245.17022018</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2017-09-20</Date>
|
||||
<Version>2245.12062016</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Open source H265/EVC encoder</Summary>
|
||||
<Description>x265 is a commercially funded open source implementation of the H.265/High Efficiency Video Coding (HEVC) compression standard.</Description>
|
||||
<Archive sha1sum="709ddcf639b414c65867683419de82bc34b587ca" type="targz">https://bitbucket.org/multicoreware/x265/downloads/x265_2.2.tar.gz</Archive>
|
||||
<Archive sha1sum="d3cb1066830b7fe779b6c9d8d774bbec7f8c1f5a" type="targz">https://bitbucket.org/multicoreware/x265/downloads/x265_2.6.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>yasm-devel</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
@@ -47,6 +47,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>2.6</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-02-11</Date>
|
||||
<Version>2.2</Version>
|
||||
|
||||
@@ -61,5 +61,5 @@ def install():
|
||||
|
||||
pisitools.dodoc("docs/AUTHORS", "docs/README", "docs/TODO")
|
||||
|
||||
pisitools.removeDir("var/run")
|
||||
pisitools.removeDir("/usr/lib/avahi")
|
||||
#pisitools.removeDir("var/run")
|
||||
pisitools.removeDir("/usr/lib/avahi")
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Local network service discovery</Summary>
|
||||
<Description>avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared.</Description>
|
||||
<Archive sha1sum="1c6d234058fd7883b3a4515e99216fdc8f71b223" type="targz">https://github.com/lathiat/avahi/releases/download/v0.6.32/avahi-0.6.32.tar.gz</Archive>
|
||||
<Archive sha1sum="8a062878968c0f8e083046429647ad33b122542f" type="targz">https://github.com/lathiat/avahi/releases/download/v0.7/avahi-0.7.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
@@ -362,6 +362,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-18</Date>
|
||||
<Version>0.7</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-17</Date>
|
||||
<Version>0.6.32</Version>
|
||||
|
||||
@@ -12,13 +12,13 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Portable UPnP library</Summary>
|
||||
<Description>The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux.</Description>
|
||||
<Archive sha1sum="e07cb8f9f7016233f62519f7ea5c481c4a5f10b2" type="tarbz2">http://sourceforge.net/projects/pupnp/files/pupnp/libUPnP%201.6.20/libupnp-1.6.20.tar.bz2</Archive>
|
||||
<Archive sha1sum="6adb96f864bb030263b8b57b2ab4610eeddb37b5" type="tarbz2">https://sourceforge.net/projects/pupnp/files/pupnp/libUPnP%201.6.25/libupnp-1.6.25.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>kernel-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">pthread-flag.patch</Patch> -->
|
||||
<Patch>CVE-2016-6255.patch</Patch>
|
||||
<!-- <Patch>CVE-2016-6255.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -43,6 +43,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2017-03-02</Date>
|
||||
<Version>1.6.25</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-03-02</Date>
|
||||
<Version>1.6.20</Version>
|
||||
|
||||
@@ -16,6 +16,8 @@ def setup():
|
||||
--with-udev-base-dir=/lib/udev \
|
||||
--enable-gtk-doc \
|
||||
--with-polkit=permissive")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>service</IsA>
|
||||
<Summary>A manager framework for mobile broadband modems</Summary>
|
||||
<Description>ModemManager provides a unified high level API for communicating with mobile broadband modems.</Description>
|
||||
<Archive sha1sum="d7b42295cb76eaf603b1ea3e10d3d97def005736" type="tarxz">http://www.freedesktop.org/software/ModemManager/ModemManager-1.6.4.tar.xz</Archive>
|
||||
<Archive sha1sum="d08004666df8e615c3d2a06af3b5dac4ac125a13" type="tarxz">http://www.freedesktop.org/software/ModemManager/ModemManager-1.6.12.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libgudev-devel</Dependency>
|
||||
@@ -26,6 +26,7 @@
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>docbook-xsl</Dependency>
|
||||
<Dependency>python-six</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
@@ -100,6 +101,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-19</Date>
|
||||
<Version>1.6.12</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-02-19</Date>
|
||||
<Version>1.6.4</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>data</IsA>
|
||||
<Summary>Service provider specific settings of mobile broadband providers in different countries</Summary>
|
||||
<Description>The mobile-broadband-provider-info package contains listings of mobile broadband (3G) providers and associated network and plan information.</Description>
|
||||
<Archive sha1sum="4457b1afa262cd707cd601b1f96024999445b450" type="tarxz">ftp://ftp.gnome.org/pub/gnome/sources/mobile-broadband-provider-info/20151214/mobile-broadband-provider-info-20151214.tar.xz</Archive>
|
||||
<Archive sha1sum="09e12b2d858ed10b4ef7b4a145ba99e03632bef0" type="tarxz">ftp://ftp.gnome.org/pub/gnome/sources/mobile-broadband-provider-info/20170310/mobile-broadband-provider-info-20170310.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -23,6 +23,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2017-02-18</Date>
|
||||
<Version>20170310</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-18</Date>
|
||||
<Version>20151214</Version>
|
||||
@@ -45,4 +52,4 @@
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Firewall, NAT and packet mangling tools</Summary>
|
||||
<Description>Contains iptables firewall, NAT and packet mangling tools.</Description>
|
||||
<Archive sha1sum="b2592490ca7a6c2cd0f069e167a4337c86acdf91" type="tarbz2">ftp://ftp.netfilter.org/pub/iptables/iptables-1.6.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="6279effbf8f2c7ff53d19ae13308f8a6e6a60dd9" type="tarbz2">ftp://ftp.netfilter.org/pub/iptables/iptables-1.6.2.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libnfnetlink-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -61,6 +61,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-19</Date>
|
||||
<Version>1.6.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-01-29</Date>
|
||||
<Version>1.6.1</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Simple FTP Client</Summary>
|
||||
<Description>Easy-to-use FTP Client which also supports SFTP.</Description>
|
||||
<Archive sha1sum="c8da156611e7f8017505f425496afe22456f4c9d" type="tarbz2">mirrors://sourceforge/filezilla/FileZilla_Client/3.25.2/FileZilla_3.25.2_src.tar.bz2</Archive>
|
||||
<Archive sha1sum="23a41ebd38f331a946cdb733b012965c68b9782e" type="tarbz2">mirrors://sourceforge/filezilla/FileZilla_Client/3.30.0/FileZilla_3.30.0_src.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libidn-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
@@ -58,6 +58,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>3.30.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-05-25</Date>
|
||||
<Version>3.25.2</Version>
|
||||
@@ -80,4 +87,4 @@
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Command line FTP client</Summary>
|
||||
<Description>LFTP is sophisticated file transfer program with command line interface. It supports FTP, HTTP, FISH, SFTP, HTTPS and FTPS protocols. It has bookmarks, built-in mirror, can transfer several files in parallel. It was designed with reliability in mind.</Description>
|
||||
<Archive sha1sum="8359b623a49847c970a5f957c16552d7c03364b8" type="targz">http://lftp.tech/ftp/lftp-4.7.7.tar.gz</Archive>
|
||||
<Archive sha1sum="aedc5f07f35d30c2aab3589432c724cbfa462ebe" type="targz">http://lftp.tech/ftp/lftp-4.8.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>flex</Dependency>
|
||||
@@ -25,6 +25,7 @@
|
||||
<Dependency>ncurses-devel</Dependency>
|
||||
<Dependency>expat-devel</Dependency>
|
||||
<Dependency>libidn-devel</Dependency>
|
||||
<Dependency>libidn2-devel</Dependency>
|
||||
<Dependency>readline-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
@@ -41,6 +42,7 @@
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>gnutls</Dependency>
|
||||
<Dependency>libidn</Dependency>
|
||||
<Dependency>libidn2</Dependency>
|
||||
<Dependency>ncurses</Dependency>
|
||||
<Dependency>readline</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -49,6 +51,8 @@
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc/lftp</Path>
|
||||
<Path fileType="data">/usr/share/applications/lftp.desktop</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/48x48/apps/lftp-icon.png</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/lftp</Path>
|
||||
@@ -60,6 +64,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>4.8.3</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2017-05-25</Date>
|
||||
<Version>4.7.7</Version>
|
||||
@@ -75,4 +86,4 @@
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<Summary>libfilezilla is a small and modern C++ library.</Summary>
|
||||
<Description>libfilezilla is a free, open source C++ library, offering some basic
|
||||
functionality to build high-performing, platform-independent programs.</Description>
|
||||
<Archive sha1sum="814a507b5548446be4263621f2dd30baa0c75813" type="tarbz2">http://download.filezilla-project.org/libfilezilla/libfilezilla-0.9.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="c356feb2bd71fbfaae2e6e16790e42358eafd864" type="tarbz2">http://download.filezilla-project.org/libfilezilla/libfilezilla-0.12.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -44,6 +44,13 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>0.12.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-05-25</Date>
|
||||
<Version>0.9.1</Version>
|
||||
@@ -52,4 +59,4 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Full featured torrent client library</Summary>
|
||||
<Description>Rasterbar's C++ library that aims to be a good alternative to all the other bittorrent implementations around. It is a library and not a full featured client, although it comes with a working example client.</Description>
|
||||
<Archive sha1sum="366566fd85987dadd8f0218f5d1e6fc041c43e48" type="targz">https://github.com/arvidn/libtorrent/releases/download/libtorrent-1_1_5/libtorrent-rasterbar-1.1.5.tar.gz</Archive>
|
||||
<Archive sha1sum="fe231cf13b45938d28bad6819cc94f0828b53aef" type="targz">https://github.com/arvidn/libtorrent/releases/download/libtorrent-1_1_6/libtorrent-rasterbar-1.1.6.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
@@ -55,6 +55,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>1.1.6</Version>
|
||||
<Comment>Release Bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-12-28</Date>
|
||||
<Version>1.1.5</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Qt4 based BitTorrent client</Summary>
|
||||
<Description>qbittorrent is a BitTorrent client using the libtorrent library.</Description>
|
||||
<Archive sha1sum="c2b6fb28ce08e0f698e27872be308d513ee941a5" type="targz">https://sourceforge.net/projects/qbittorrent/files/qbittorrent/qbittorrent-4.0.3/qbittorrent-4.0.3.tar.gz</Archive>
|
||||
<Archive sha1sum="44f032003d06105799bd81e71dde6716f5687428" type="targz">https://sourceforge.net/projects/qbittorrent/files/qbittorrent/qbittorrent-4.0.4/qbittorrent-4.0.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
@@ -48,6 +48,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>4.3.4</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2017-12-28</Date>
|
||||
<Version>4.3.0</Version>
|
||||
|
||||
@@ -77,6 +77,7 @@
|
||||
<Dependency>libwpg-devel</Dependency>
|
||||
<Dependency>libvisio-devel</Dependency>
|
||||
<Dependency>libwpd-devel</Dependency>
|
||||
<Dependency>poppler-devel</Dependency>
|
||||
<Dependency>poppler-qt5-devel</Dependency>
|
||||
<Dependency>libspnav-devel</Dependency>
|
||||
<Dependency>eigen3</Dependency>
|
||||
@@ -503,6 +504,7 @@
|
||||
<Path fileType="data">/</Path>
|
||||
<Path fileType="config">/etc/xdg/calligra_stencils.knsrc</Path>
|
||||
<Path fileType="library">/usr/lib/libkformula.s*</Path>
|
||||
<Path fileType="library">/usr/lib/libcalligrastageprivate.s*</Path>
|
||||
<Path fileType="library">/usr/lib/qt5/plugins/calligra/colorspaces/kolcmsengine.so</Path>
|
||||
<Path fileType="library">/usr/lib/qt5/plugins/calligra/devices/calligra_device_spacenavigator.so</Path>
|
||||
<Path fileType="library">/usr/lib/qt5/plugins/calligra/dockers/calligra_docker_defaults.so</Path>
|
||||
@@ -755,7 +757,7 @@
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg/calligrastagerc</Path>
|
||||
<Path fileType="executable">/usr/bin/calligrastage</Path>
|
||||
<Path fileType="library">/usr/lib/libcalligrastageprivate.s*</Path>
|
||||
<!-- <Path fileType="library">/usr/lib/libcalligrastageprivate.s*</Path> --> <!--calligra-plugins ile çember yapıyor-->
|
||||
<Path fileType="library">/usr/lib/libkdeinit5_calligrastage.so</Path>
|
||||
<Path fileType="library">/usr/lib/qt5/plugins/calligra/parts/calligrastagepart.so</Path>
|
||||
<Path fileType="library">/usr/lib/qt5/plugins/calligra/presentationeventactions/calligrastageeventactions.so</Path>
|
||||
@@ -841,7 +843,7 @@
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-05</Date>
|
||||
<Date>2018-02-21</Date>
|
||||
<Version>3.1.0</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
|
||||
+634
-227
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
b2333f58ae919de1f4ba7ff3b135b579e072b271
|
||||
38ad1e6e743423b515b6c025795458ff23c4cc23
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
11dccfabd03aa2dea08f2d0526a129d356d22a62
|
||||
26a6e8db17fc0800ee45ab6fb11ae267ab53abc3
|
||||
@@ -15,7 +15,9 @@ def build():
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
pisitools.insinto("/usr/share/vim/vimfiles", "syntax-highlighting/vim/*")
|
||||
pisitools.insinto("/usr/share/vim/vimfiles", "data/syntax-highlighting/vim/*")
|
||||
pisitools.insinto("/usr/share/emacs/site-lisp", "data/syntax-highlighting/emacs/*")
|
||||
pisitools.insinto("/usr/share/zsh/site-functions", "data/shell-completions/zsh/*")
|
||||
pisitools.remove("/usr/share/vim/vimfiles/README")
|
||||
|
||||
pisitools.dodoc("COPYING", "README*")
|
||||
|
||||
@@ -12,13 +12,13 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>High productivity build system</Summary>
|
||||
<Description>Yüksek verimli üretme sistemi</Description>
|
||||
<Archive sha1sum="e11f6d5c84ebec8debe1c8ae15f6e7759db2d962" type="targz">https://github.com/mesonbuild/meson/releases/download/0.43.0/meson-0.43.0.tar.gz</Archive>
|
||||
<Archive sha1sum="12d1d0466955da4f9a7ef158a23d4e37d985d667" type="targz">https://github.com/mesonbuild/meson/releases/download/0.44.1/meson-0.44.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">fix-tests.patch</Patch>
|
||||
<!-- <Patch level="1">fix-tests.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
<Package>
|
||||
@@ -37,6 +37,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>0.44.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-12-07</Date>
|
||||
<Version>0.43.0</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>library that handles input devices for display servers and other applications that need to directly deal with input devices.</Summary>
|
||||
<Description>It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code the user of libinput need to provide the common set of functionality that users expect.</Description>
|
||||
<Archive sha1sum="1325ede21844a49ca2b714edeabbccbccf54899a" type="tarxz">https://www.freedesktop.org/software/libinput/libinput-1.9.4.tar.xz</Archive>
|
||||
<Archive sha1sum="26cbca90655d04bf2161ac58c91e797996cfabb0" type="tarxz">https://www.freedesktop.org/software/libinput/libinput-1.10.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
@@ -60,6 +60,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2017-12-24</Date>
|
||||
<Version>1.9.4</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>New portable threads library</Summary>
|
||||
<Description>is a non-preemptive threads implementation using an API very similar to the one known from GNU Pth. It has been designed as a replacement of GNU Pth for non-ancient operating systems.</Description>
|
||||
<Archive sha1sum="1b21507cfa3f58bdd19ef2f6800ab4cb67729972" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/npth/npth-1.3.tar.bz2</Archive>
|
||||
<Archive sha1sum="93ddf1a3bdbca00fb4cf811498094ca61bbb8ee1" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/npth/npth-1.5.tar.bz2</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -38,6 +38,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-21</Date>
|
||||
<Version>1.5</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Mustafa Cianasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-03-05</Date>
|
||||
<Version>1.3</Version>
|
||||
@@ -60,4 +67,4 @@
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<License>GPLv2</License>
|
||||
<Summary>Fast Version Control System</Summary>
|
||||
<Description>Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals.</Description>
|
||||
<Archive sha1sum="42aafae5c29324b1fee0264a6c804fdffbd1d8d1" type="tarxz">https://www.kernel.org/pub/software/scm/git/git-2.12.0.tar.xz</Archive>
|
||||
<Archive sha1sum="8858cbf822eb3c86df91336fbcbdfe69f9c0abc5" type="tarxz">https://www.kernel.org/pub/software/scm/git/git-2.16.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>tcltk-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
@@ -202,6 +202,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>2.16.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-03-19</Date>
|
||||
<Version>2.12.0</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>A linkable library for Git</Summary>
|
||||
<Description>A plain C library to interface with the git version control system</Description>
|
||||
<Archive sha1sum="c65238d0e0a698b202a3a886d003228cac6dacc3" type="targz">https://github.com/libgit2/libgit2/archive/v0.25.1.tar.gz</Archive>
|
||||
<Archive sha1sum="d4e44fcf3ada97caeaa3ab698105c107600bb3ab" type="targz">https://github.com/libgit2/libgit2/archive/v0.26.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
@@ -42,8 +42,8 @@
|
||||
<Name>libgit2-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libgit2</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
@@ -52,6 +52,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>0.26.0</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-03-02</Date>
|
||||
<Version>0.25.1</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A distributed SCM tool</Summary>
|
||||
<Description>A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects.</Description>
|
||||
<Archive sha1sum="bcfd5c28e873855a87d6ad9ccbde36bd4ecd2c55" type="targz">https://www.mercurial-scm.org/release/mercurial-4.1.1.tar.gz</Archive>
|
||||
<Archive sha1sum="eb50bc81430fb34c11d32a8fbe6860b3d3a87de9" type="targz">https://www.mercurial-scm.org/release/mercurial-4.5.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -33,6 +33,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>4.5</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-03-19</Date>
|
||||
<Version>4.1.1</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>service</IsA>
|
||||
<Summary>A compelling replacement for CVS</Summary>
|
||||
<Description>SVN is a version controlling system to store files and control their change history in a repository.</Description>
|
||||
<Archive sha1sum="8bd6a44a1aed30c4c6b6b068488dafb44eaa6adf" type="tarbz2">http://archive.apache.org/dist/subversion/subversion-1.9.5.tar.bz2</Archive>
|
||||
<Archive sha1sum="874b81749cdc3e88152d103243c3623ac6338388" type="tarbz2">http://archive.apache.org/dist/subversion/subversion-1.9.7.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>apache</Dependency>
|
||||
<Dependency>expat-devel</Dependency>
|
||||
@@ -127,6 +127,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-20</Date>
|
||||
<Version>1.9.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-03-19</Date>
|
||||
<Version>1.9.5</Version>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<License>LGPLv2</License>
|
||||
<Summary>A distribution independent installer framework</Summary>
|
||||
<Description>Calamares is a distribution-independent system installer, with an advanced partitioning feature for both manual and automated partitioning operations.</Description>
|
||||
<Archive sha1sum="a0c1cdca859b565b1feb1b5bf4befa8983d801fd" type="targz">https://github.com/calamares/calamares/releases/download/v3.1.11/calamares-3.1.11.tar.gz</Archive>
|
||||
<Archive sha1sum="4c3fbb60f0844031e6669d0631b624b522f4a4ce" type="targz">https://github.com/calamares/calamares/archive/v3.2-rc3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>yaml-cpp</Dependency>
|
||||
@@ -118,6 +118,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2018-02-21</Date>
|
||||
<Version>3.2.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2017-12-27</Date>
|
||||
<Version>3.1.11</Version>
|
||||
|
||||
@@ -10,19 +10,14 @@ from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DBUILD_SHARED=ON \
|
||||
-DBUILD_STATIC=OFF \
|
||||
-DBUILD_TESTING=OFF \
|
||||
-DCMAKE_INSTALL_LIBDIR=lib")
|
||||
|
||||
pisitools.dosed("cryptopp.pc", "@VERSION@", get.srcVERSION())
|
||||
|
||||
def build():
|
||||
pisitools.dosed("cryptopp.pc", "@VERSION@", get.srcVERSION())
|
||||
|
||||
cmaketools.make()
|
||||
|
||||
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("PREFIX=/usr DESTDIR=%s" % get.installDIR())
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Public domain C++ class library of cryptographic schemes</Summary>
|
||||
<Description>crypto++ is a free C++ class library of cryptographic schemes. One purpose of Crypto++ is to act as a repository of public domain (not copyrighted) source code. Although the library is copyrighted as a compilation, the individual files in it are in the public domain.</Description>
|
||||
<Archive sha1sum="3aa4f2fcfee05ed304c6614325c90eba0dc75f16" type="targz">https://github.com/weidai11/cryptopp/archive/CRYPTOPP_5_6_5.tar.gz</Archive>
|
||||
<Archive sha1sum="1ed9f1ced89ed301a0cf8c7a2b7bf25efb68aac3" type="targz">https://github.com/weidai11/cryptopp/archive/CRYPTOPP_6_0_0.tar.gz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="cryptopp.pc" permission="0644" owner="root">cryptopp.pc</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
@@ -47,6 +47,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>6.0.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-01-04</Date>
|
||||
<Version>5.6.5</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>GNU TLS Library</Summary>
|
||||
<Description>gnutls is a project that aims to develop a library which provides a secure layer, over a reliable transport layer. Currently the GnuTLS library implements the proposed standards by the IETF's TLS working group.</Description>
|
||||
<Archive sha1sum="238d5e62f9bb078101131dd2f4c7f2c1ac13e813" type="tarxz">http://gd.tuwien.ac.at/pub/gnupg/gnutls/v3.5/gnutls-3.5.8.tar.xz</Archive>
|
||||
<Archive sha1sum="24e5a416ce320945a2515619f3c2f0f6f2290ddc" type="tarxz">http://gd.tuwien.ac.at/pub/gnupg/gnutls/v3.6/gnutls-3.6.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gc-devel</Dependency>
|
||||
<Dependency>gmp-devel</Dependency>
|
||||
@@ -98,6 +98,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2018-02-21</Date>
|
||||
<Version>3.6.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Mustafa Cianasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2017-02-18</Date>
|
||||
<Version>3.5.8</Version>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Linux key management utilities</Summary>
|
||||
<Description>keyutils contains utilities to control the kernel key management facility and to provide a mechanism by which the kernel call back to userspace to get a key instantiated.</Description>
|
||||
<Archive sha1sum="cf040adebe25eb466760f34752f4100fd5acb5e7" type="tarbz2">http://people.redhat.com/~dhowells/keyutils/keyutils-1.5.9.tar.bz2</Archive>
|
||||
<Archive sha1sum="c139dc6f86d772dc608e4572d67c6e023a34a783" type="tarbz2">http://people.redhat.com/~dhowells/keyutils/keyutils-1.5.10.tar.bz2</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -33,6 +33,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>1.5.10</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-17</Date>
|
||||
<Version>1.5.9</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>ASN.1 library used in GNUTLS</Summary>
|
||||
<Description>libtasn1 is the ASN.1 library which provides ASN.1 structures parsing capabilities for use with GNUTLS.</Description>
|
||||
<Archive sha1sum="c7b36fa50866bbc889f7503c7fd1e9f9d7c52a64" type="targz">http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.10.tar.gz</Archive>
|
||||
<Archive sha1sum="a84afb4cd8187c1fa5901c6bc1cf1486eea66635" type="targz">http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.13.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -54,6 +54,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>4.13</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-01-25</Date>
|
||||
<Version>4.10</Version>
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
<PartOf>util.crypt</PartOf>
|
||||
<Summary>Library to work with PKCS#11 modules</Summary>
|
||||
<Description>The p11-kit package Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules.</Description>
|
||||
<Archive sha1sum="4da0d7b47935b6cb0f321dd00358b063ae42df71" type="targz">https://p11-glue.freedesktop.org/releases/p11-kit-0.23.2.tar.gz</Archive>
|
||||
<Archive sha1sum="1c67633736301707d7d0b2b0cf35f9240259deb3" type="targz">https://github.com/p11-glue/p11-kit/releases/download/0.23.9/p11-kit-0.23.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="4.10">libtasn1-devel</Dependency>
|
||||
<Dependency versionFrom="4.13">libtasn1-devel</Dependency>
|
||||
<Dependency>libffi-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
@@ -23,11 +23,12 @@
|
||||
<Package>
|
||||
<Name>p11-kit</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency versionFrom="4.10">libtasn1</Dependency>
|
||||
<Dependency versionFrom="4.13">libtasn1</Dependency>
|
||||
<Dependency>libffi</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/gtk-doc</Path>
|
||||
<Path fileType="doc">/usr/share/p11-kit</Path>
|
||||
@@ -69,6 +70,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>0.23.9</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-02-17</Date>
|
||||
<Version>0.23.2</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol</Summary>
|
||||
<Description>Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project.</Description>
|
||||
<Archive sha1sum="85d9ac81ebad3fb082514c505c90c39a0456f1f6" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-1.0.0.tar.bz2</Archive>
|
||||
<Archive sha1sum="693bdf9f48dfb3e040d92f50b1bb464e268b9fb0" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-1.1.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsecret-devel</Dependency>
|
||||
<Dependency>libgpg-error-devel</Dependency>
|
||||
@@ -22,6 +22,8 @@
|
||||
<Dependency>libcap-devel</Dependency>
|
||||
<Dependency>ncurses-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>gcr-devel</Dependency>
|
||||
<Dependency>fltk-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">moreSecureMemoryForPinentry-qt.diff</Patch>-->
|
||||
@@ -36,6 +38,9 @@
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gcr</Dependency>
|
||||
<Dependency>fltk</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libassuan</Dependency>
|
||||
<Dependency>libsecret</Dependency>
|
||||
@@ -81,6 +86,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-17</Date>
|
||||
<Version>1.0.0</Version>
|
||||
@@ -103,4 +115,4 @@
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>X.Org Xcursor library</Summary>
|
||||
<Description>libXcursor is the X Cursor management library. It allows using different mouse skins and modifying of the text cursor.</Description>
|
||||
<Archive sha1sum="89870756758439f9216ddf5f2d3dca56570fc6b7" type="tarbz2">mirrors://xorg/individual/lib/libXcursor-1.1.14.tar.bz2</Archive>
|
||||
<Archive sha1sum="3e19f991f244b7fa31566adce7ead078424296cf" type="tarbz2">mirrors://xorg/individual/lib/libXcursor-1.1.15.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
@@ -75,6 +75,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>1.1.15</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-02</Date>
|
||||
<Version>1.1.14</Version>
|
||||
|
||||
@@ -12,13 +12,14 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>X.Org Xfont library</Summary>
|
||||
<Description>libXfont is the Xorg library that allows using various types of fonts.</Description>
|
||||
<Archive sha1sum="a9470774f271622c1b425826d1c8836ed96e4a96" type="tarbz2">mirrors://xorg/individual/lib/libXfont-1.5.2.tar.bz2</Archive>
|
||||
<Archive sha1sum="9db050f63b9c4cb19e0dbb40575558ccb95719ca" type="tarbz2">mirrors://xorg/individual/lib/libXfont-1.5.4.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libfontenc-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>xorg-proto</Dependency>
|
||||
<Dependency>xtrans</Dependency>
|
||||
<Dependency>xmlto</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
@@ -51,6 +52,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>1.5.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-02</Date>
|
||||
<Version>1.5.2</Version>
|
||||
|
||||
@@ -12,13 +12,14 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>X.Org Xfont library</Summary>
|
||||
<Description>libXfont is the Xorg library that allows using various types of fonts.</Description>
|
||||
<Archive sha1sum="4cf056ab00bf631649e040051cf8e2b096cc245b" type="tarbz2">http://xorg.freedesktop.org/archive/individual/lib/libXfont2-2.0.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="1110f1ad4061d9e8131ecb941757480e3e32bca0" type="tarbz2">http://xorg.freedesktop.org/archive/individual/lib/libXfont2-2.0.3.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libfontenc-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>xorg-proto</Dependency>
|
||||
<Dependency>xtrans</Dependency>
|
||||
<Dependency>xmlto</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
@@ -51,6 +52,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>2.0.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-03-02</Date>
|
||||
<Version>2.0.1</Version>
|
||||
|
||||
@@ -22,6 +22,7 @@ def setup():
|
||||
|
||||
options += "-DVGL_LIBDIR=/usr/lib32 \
|
||||
-DCMAKE_INSTALL_PREFIX=/emul32 \
|
||||
-DCMAKE_INSTALL_LIBDIR=/usr/lib32 \
|
||||
-DVGL_BINDIR=/emul32/bin \
|
||||
-DTJPEG_LIBRARY=/usr/lib32/libturbojpeg.so \
|
||||
-DVGL_FAKELIBDIR=/usr/lib32/fakelib \
|
||||
@@ -29,9 +30,9 @@ def setup():
|
||||
elif get.ARCH() == "x86_64":
|
||||
|
||||
options += "-DVGL_LIBDIR=/usr/lib \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr/share \
|
||||
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DVGL_FAKELIBDIR=/usr/lib/fakelib \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr/share \
|
||||
-DTJPEG_LIBRARY=/usr/lib/libturbojpeg.so \
|
||||
-DVGL_BINDIR=/usr/bin"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A toolkit for displaying OpenGL applications to thin clients</Summary>
|
||||
<Description>Redirects 3D commands from an OpenGL application onto a server-side 3D graphics card.</Description>
|
||||
<Archive sha1sum="20ec8daa09d2bd5bb2437628a2416f9a4ca0fa63" type="targz">https://sourceforge.net/projects/virtualgl/files/2.5.1/VirtualGL-2.5.1.tar.gz</Archive>
|
||||
<Archive sha1sum="c2e08aa0d8991f4b6984f2d0acb9d4170e034ae0" type="targz">https://sourceforge.net/projects/virtualgl/files/2.5.2/VirtualGL-2.5.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>fltk-devel</Dependency>
|
||||
@@ -89,6 +89,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>2.5.2</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-02-16</Date>
|
||||
<Version>2.5.1</Version>
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
From 9a5cecf64ffc427a6a5a7c9a061992c32e5b8a4f Mon Sep 17 00:00:00 2001
|
||||
From: Gunnar Hjalmarsson <gunnarhj@ubuntu.com>
|
||||
Date: Thu, 1 Feb 2018 15:37:46 +0100
|
||||
Subject: [PATCH] Fix typo in Polish symbols file
|
||||
|
||||
https://bugs.freedesktop.org/show_bug.cgi?id=104904
|
||||
---
|
||||
symbols/pl | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
diff --git a/symbols/pl b/symbols/pl
|
||||
index 52e7959..800cb85 100644
|
||||
--- a/symbols/pl
|
||||
+++ b/symbols/pl
|
||||
@@ -497,7 +497,6 @@ partial alphanumeric_keys
|
||||
include "sun_vndr/pl(sun_type6)"
|
||||
};
|
||||
|
||||
-------------------------------
|
||||
//Glagolica
|
||||
partial alphanumeric_keys
|
||||
xkb_symbols "glagolica"
|
||||
--
|
||||
2.16.1
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
@@ -13,7 +12,7 @@
|
||||
<IsA>data</IsA>
|
||||
<Summary>X keyboard configuration database</Summary>
|
||||
<Description>xkeyboard-config aims to provide consistent and well-structured X keyboard configuration data for X Window System implementations.</Description>
|
||||
<Archive sha1sum="fe36dc8259571721776f885ba66060e0b5a0616c" type="tarbz2">mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.20.tar.bz2</Archive>
|
||||
<Archive sha1sum="184c9ce35f4fa44188acbf549f80d36407697ac3" type="tarbz2">mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.23.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>xorg-proto</Dependency>
|
||||
@@ -23,6 +22,7 @@
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">xkeyboard-config-1.4-jp-tilde.patch</Patch>
|
||||
<Patch>fix_typo_in_polish.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -49,6 +49,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>2.23.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-02-16</Date>
|
||||
<Version>2.20</Version>
|
||||
|
||||
Reference in New Issue
Block a user