Merge branch 'master' of https://github.com/pisilinux/main
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
shelltools.export("LC_ALL", "en_US.UTF-8")
|
||||
shelltools.system("sed -i 's|term.feed_child(cmd, -1);|term.feed_child(cmd.to_utf8());|g' src/Gtk/TermBox.vala")
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "LICENSE*", "COPYING", "README*")
|
||||
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>polo</Name>
|
||||
<Homepage>https://github.com/teejee2008/polo</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>Polo is a modern, light-weight file manager for Linux with support for multiple panes and tabs; support for archives, and much more.</Summary>
|
||||
<Description>Polo is a modern, light-weight file manager for Linux with support for multiple panes and tabs; support for archives, and much more.</Description>
|
||||
<Archive sha1sum="d5465c70c0eaf8af8fdd56c74870fe247a1bafdc" type="targz">https://github.com/teejee2008/polo/archive/v18.8-beta.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>vte-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libgee-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libpcre2-devel</Dependency>
|
||||
<Dependency>json-glib-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>polo</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>vte</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>p7zip</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gnutls</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgee</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libpcre2</Dependency>
|
||||
<Dependency>json-glib</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/var/log/polo</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-01-19</Date>
|
||||
<Version>18.8</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>polo</Name>
|
||||
<Summary xml:lang="tr">Polo birden bölmeler ve sekmeler için destek Linux için modern, hafif dosya yöneticisi; arşiv desteği ve çok daha fazlası.</Summary>
|
||||
<Description xml:lang="tr">Polo birden bölmeler ve sekmeler için destek Linux için modern, hafif dosya yöneticisi; arşiv desteği ve çok daha fazlası.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import qt5
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
qt5.configure()
|
||||
|
||||
def build():
|
||||
qt5.make("QMAKE=/usr/bin/qmake")
|
||||
|
||||
def install():
|
||||
qt5.install()
|
||||
|
||||
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mindforger</Name>
|
||||
<Homepage>https://github.com/dvorka/mindforger</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>MindForger is open, free, well performing Markdown IDE which respects your privacy and enables security.</Summary>
|
||||
<Description>MindForger gizliliğinize saygı duyan ve güvenliği sağlayan açık, ücretsiz ve iyi performans gösteren Markdown IDE'dir.</Description>
|
||||
<Archive sha1sum="2c6a1bd75d8185804c5e8b618ed987336a9002f2" type="targz">https://github.com/dvorka/mindforger/releases/download/1.48.0/mindforger_1.48.2.tgz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>ccache</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-webkit-devel</Dependency>
|
||||
<Dependency>icon-theme-hicolor</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>mindforger</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-webkit</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-01-28</Date>
|
||||
<Version>1.48.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mindforger</Name>
|
||||
<Summary xml:lang="tr">MindForger is open, free, well performing Markdown IDE which respects your privacy and enables security.</Summary>
|
||||
<Description xml:lang="tr">MindForger gizliliğinize saygı duyan ve güvenliği sağlayan açık, ücretsiz ve iyi performans gösteren Markdown IDE'dir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+127
@@ -120,6 +120,59 @@
|
||||
<Package>lxappearence</Package>
|
||||
</Obsoletes>
|
||||
</Distribution>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>mindforger</Name>
|
||||
<Homepage>https://github.com/dvorka/mindforger</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>office</PartOf>
|
||||
<Summary xml:lang="en">MindForger is open, free, well performing Markdown IDE which respects your privacy and enables security.</Summary>
|
||||
<Summary xml:lang="tr">MindForger is open, free, well performing Markdown IDE which respects your privacy and enables security.</Summary>
|
||||
<Description xml:lang="en">MindForger gizliliğinize saygı duyan ve güvenliği sağlayan açık, ücretsiz ve iyi performans gösteren Markdown IDE'dir.</Description>
|
||||
<Description xml:lang="tr">MindForger gizliliğinize saygı duyan ve güvenliği sağlayan açık, ücretsiz ve iyi performans gösteren Markdown IDE'dir.</Description>
|
||||
<Archive type="targz" sha1sum="2c6a1bd75d8185804c5e8b618ed987336a9002f2">https://github.com/dvorka/mindforger/releases/download/1.48.0/mindforger_1.48.2.tgz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>ccache</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-webkit-devel</Dependency>
|
||||
<Dependency>icon-theme-hicolor</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>office/mindforger/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>mindforger</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-webkit</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-01-28</Date>
|
||||
<Version>1.48.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>calligra</Name>
|
||||
@@ -183521,6 +183574,80 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>polo</Name>
|
||||
<Homepage>https://github.com/teejee2008/polo</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>app</IsA>
|
||||
<PartOf>desktop</PartOf>
|
||||
<Summary xml:lang="en">Polo is a modern, light-weight file manager for Linux with support for multiple panes and tabs; support for archives, and much more.</Summary>
|
||||
<Summary xml:lang="tr">Polo birden bölmeler ve sekmeler için destek Linux için modern, hafif dosya yöneticisi; arşiv desteği ve çok daha fazlası.</Summary>
|
||||
<Description xml:lang="en">Polo is a modern, light-weight file manager for Linux with support for multiple panes and tabs; support for archives, and much more.</Description>
|
||||
<Description xml:lang="tr">Polo birden bölmeler ve sekmeler için destek Linux için modern, hafif dosya yöneticisi; arşiv desteği ve çok daha fazlası.</Description>
|
||||
<Archive type="targz" sha1sum="d5465c70c0eaf8af8fdd56c74870fe247a1bafdc">https://github.com/teejee2008/polo/archive/v18.8-beta.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>vte-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libgee-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libpcre2-devel</Dependency>
|
||||
<Dependency>json-glib-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>desktop/polo/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>polo</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>vte</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>p7zip</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gnutls</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgee</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libpcre2</Dependency>
|
||||
<Dependency>json-glib</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/var/log/polo</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-01-19</Date>
|
||||
<Version>18.8</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>gtk-theme-mediterranean</Name>
|
||||
|
||||
@@ -1 +1 @@
|
||||
0231a18a8d3310a3c877edfb3b0270ad9f81415a
|
||||
03d4f459df439f94dd4c293bd055942efae1d685
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
3313f5eb7f76eef37a1254f48b19b81763c8cebb
|
||||
d4042cc3efe7d69d89a9d91ef7bcb67ebeadd6fd
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app</IsA>
|
||||
<Summary>rofi</Summary>
|
||||
<Description>A window switcher, application launcher and dmenu replacement</Description>
|
||||
<Archive sha1sum="35734e81a4d071c4e505773afbc7856bd56ab7e6" type="tarxz">https://github.com/DaveDavenport/rofi/releases/download/1.5.1/rofi-1.5.1.tar.xz</Archive>
|
||||
<Archive sha1sum="ba35d4601201ab81e5b8a709d994d4ab4e580edc" type="tarxz">https://github.com/DaveDavenport/rofi/releases/download/1.5.2/rofi-1.5.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
@@ -62,6 +62,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2019-02-02</Date>
|
||||
<Version>1.5.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2018-10-30</Date>
|
||||
<Version>1.5.1</Version>
|
||||
|
||||
Reference in New Issue
Block a user