Merge branch 'master' of github.com:pisilinux/main
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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user