index and uget, aria add

This commit is contained in:
Erkan IŞIK
2020-04-11 20:53:42 +03:00
parent c3e67ce820
commit 81d3af32bb
10 changed files with 548 additions and 2 deletions
+44
View File
@@ -0,0 +1,44 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--enable-bittorrent \
--enable-libaria2 \
--enable-metalink \
--enable-epoll \
--enable-nls \
\
--disable-rpath \
--disable-static \
\
--with-libz \
--with-gnutls \
--with-sqlite3 \
--with-libxml2 \
--with-libssh2 \
--with-libcares \
--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \
--with-bashcompletiondir=/usr/share/bash-completion/completions")
def build():
autotools.make("-C po update-gmo")
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", \
"COPYING", \
"INSTALL", \
"LICENSE.OpenSSL", \
"NEWS", \
"README*")
+141
View File
@@ -0,0 +1,141 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>aria2</Name>
<Homepage>https://aria2.github.io/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<PartOf>network.download</PartOf>
<Summary>A download utility with resuming and segmented downloading.</Summary>
<Description>
aria2 is a download utility with resuming and segmented downloading. Supported protocols are HTTP, HTTPS, FTP and BitTorrent. It also supports Metalink version 3.0.
</Description>
<Archive sha1sum="1e4f8dba13e6eb5860b90c567a9c03d2c4be8f18" type="tarxz">
https://github.com/tatsuhiro-t/aria2/releases/download/release-1.35.0/aria2-1.35.0.tar.xz
</Archive>
<BuildDependencies>
<Dependency>gmp-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>c-ares-devel</Dependency>
<Dependency>gnutls-devel</Dependency>
<Dependency>nettle-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>libssh2-devel</Dependency>
<Dependency>openssl-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>aria2</Name>
<RuntimeDependencies>
<Dependency>gmp</Dependency>
<Dependency>zlib</Dependency>
<Dependency>c-ares</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>gnutls</Dependency>
<Dependency>nettle</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libssh2</Dependency>
<Dependency>openssl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/bash-completion</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>aria2-devel</Name>
<RuntimeDependencies>
<Dependency release="current">aria2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="10">
<Date>2019-10-15</Date>
<Version>1.35.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-04</Date>
<Version>1.34.0</Version>
<Comment>Rebuild.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2019-04-18</Date>
<Version>1.34.0</Version>
<Comment>Version bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="7">
<Date>2016-03-22</Date>
<Version>1.21.0</Version>
<Comment>Version bump, rebuilt with docker</Comment>
<Name>İbrahim KARAGÜZEL</Name>
<Email>karaguzelibrahim@gmail.com</Email>
</Update>
<Update release="6">
<Date>2015-02-15</Date>
<Version>1.18.9</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2013-11-22</Date>
<Version>1.18.1</Version>
<Comment>Version bump</Comment>
<Name>Richard de Bruin</Name>
<Email>richdb@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-01</Date>
<Version>1.18.0</Version>
<Comment>Version bump</Comment>
<Name>Richard de Bruin</Name>
<Email>richdb@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-06-15</Date>
<Version>1.17.1</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-04-23</Date>
<Version>1.16.0</Version>
<Comment>Dep fixed</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-14</Date>
<Version>1.16.0</Version>
<Comment>First release</Comment>
<Name>M. Tayyip Yel</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>aria2</Name>
<Summary xml:lang="tr">Parçalı ve yarım kalan dosyaları indirme özelliğine sahip bir indirme aracı</Summary>
<Description xml:lang="tr">Aria2 parçalı indirme ve yarım kalan indirmeleri devam ettirme özelliklerine sahip olan bir indirme aracıdır.</Description>
</Source>
</PISI>
+22
View File
@@ -0,0 +1,22 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--localstatedir=/var \
--disable-appindicator")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s install" % get.installDIR())
#autotools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
+95
View File
@@ -0,0 +1,95 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>uget</Name>
<Homepage>http://ugetdm.com/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<Icon>uget</Icon>
<PartOf>network.download</PartOf>
<IsA>app:gui</IsA>
<Summary>uget - Download manager using GTK+ and libcurl</Summary>
<Description>uGet is an Open Source download manager application for GNU/Linux developed with GTK+.</Description>
<Archive sha1sum="e0f2718fdf36d6db42f8f596ea15a5a987a2b2ab" type="targz">https://sourceforge.net/projects/urlget/files/uget%20%28stable%29/2.2.3/uget-2.2.3-1.tar.gz</Archive>
<!--Archive sha1sum="8e740b383d05b59a7004a7dc2cc13543dbb93188" type="tarxz">http://sourceforge.net/projects/urlget/files/aria2-plugin/1.18.x/aria2-1.18.3.tar.xz</Archive-->
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>curl-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>openssl-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>uget</Name>
<RuntimeDependencies>
<Dependency>curl</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>openssl</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>aria2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/sounds</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2020-04-11</Date>
<Version>2.2.3.1</Version>
<Comment>Version bump</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2016-03-22</Date>
<Version>2.0.5</Version>
<Comment>Version bump, rebuilt with docker.</Comment>
<Name>İbrahim KARAGÜZEL</Name>
<Email>karaguzelibrahim@gmail.com</Email>
</Update>
<Update release="3">
<Date>2014-07-09</Date>
<Version>1.10.4</Version>
<Comment>Version Bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-02-17</Date>
<Version>1.10.3</Version>
<Comment>Rebuild.</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-02-08</Date>
<Version>1.10.3</Version>
<Comment>First release</Comment>
<Name>Idris Kalp</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>uget</Name>
<Summary xml:lang="tr">Bir indirme aracı.</Summary>
<Description xml:lang="tr">Uget, Linux için yazılmış, GTK tabanlı bir indirme yöneticisidir.</Description>
</Source>
</PISI>
+228
View File
@@ -168110,6 +168110,141 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>aria2</Name>
<Homepage>https://aria2.github.io/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<PartOf>network.download</PartOf>
<Summary xml:lang="en">A download utility with resuming and segmented downloading.</Summary>
<Summary xml:lang="tr">Parçalı ve yarım kalan dosyaları indirme özelliğine sahip bir indirme aracı</Summary>
<Description xml:lang="en">aria2 is a download utility with resuming and segmented downloading. Supported protocols are HTTP, HTTPS, FTP and BitTorrent. It also supports Metalink version 3.0.</Description>
<Description xml:lang="tr">Aria2 parçalı indirme ve yarım kalan indirmeleri devam ettirme özelliklerine sahip olan bir indirme aracıdır.</Description>
<Archive type="tarxz" sha1sum="1e4f8dba13e6eb5860b90c567a9c03d2c4be8f18" name="aria2-1.35.0.tar.xz">https://github.com/tatsuhiro-t/aria2/releases/download/release-1.35.0/aria2-1.35.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>gmp-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>c-ares-devel</Dependency>
<Dependency>gnutls-devel</Dependency>
<Dependency>nettle-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>libssh2-devel</Dependency>
<Dependency>openssl-devel</Dependency>
</BuildDependencies>
<SourceURI>network/download/aria2/pspec.xml</SourceURI>
</Source>
<Package>
<Name>aria2</Name>
<RuntimeDependencies>
<Dependency>gmp</Dependency>
<Dependency>zlib</Dependency>
<Dependency>c-ares</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>gnutls</Dependency>
<Dependency>nettle</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libssh2</Dependency>
<Dependency>openssl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/bash-completion</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>aria2-devel</Name>
<RuntimeDependencies>
<Dependency release="10">aria2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="10">
<Date>2019-10-15</Date>
<Version>1.35.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-04</Date>
<Version>1.34.0</Version>
<Comment>Rebuild.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2019-04-18</Date>
<Version>1.34.0</Version>
<Comment>Version bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="7">
<Date>2016-03-22</Date>
<Version>1.21.0</Version>
<Comment>Version bump, rebuilt with docker</Comment>
<Name>İbrahim KARAGÜZEL</Name>
<Email>karaguzelibrahim@gmail.com</Email>
</Update>
<Update release="6">
<Date>2015-02-15</Date>
<Version>1.18.9</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2013-11-22</Date>
<Version>1.18.1</Version>
<Comment>Version bump</Comment>
<Name>Richard de Bruin</Name>
<Email>richdb@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-01</Date>
<Version>1.18.0</Version>
<Comment>Version bump</Comment>
<Name>Richard de Bruin</Name>
<Email>richdb@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-06-15</Date>
<Version>1.17.1</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-04-23</Date>
<Version>1.16.0</Version>
<Comment>Dep fixed</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-14</Date>
<Version>1.16.0</Version>
<Comment>First release</Comment>
<Name>M. Tayyip Yel</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>axel</Name>
@@ -168191,6 +168326,99 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>uget</Name>
<Homepage>http://ugetdm.com/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<PartOf>network.download</PartOf>
<Summary xml:lang="en">uget - Download manager using GTK+ and libcurl</Summary>
<Summary xml:lang="tr">Bir indirme aracı.</Summary>
<Description xml:lang="en">uGet is an Open Source download manager application for GNU/Linux developed with GTK+.</Description>
<Description xml:lang="tr">Uget, Linux için yazılmış, GTK tabanlı bir indirme yöneticisidir.</Description>
<Icon>uget</Icon>
<Archive type="targz" sha1sum="e0f2718fdf36d6db42f8f596ea15a5a987a2b2ab" name="uget-2.2.3-1.tar.gz">https://sourceforge.net/projects/urlget/files/uget%20%28stable%29/2.2.3/uget-2.2.3-1.tar.gz</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>curl-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>openssl-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
</BuildDependencies>
<SourceURI>network/download/uget/pspec.xml</SourceURI>
</Source>
<Package>
<Name>uget</Name>
<RuntimeDependencies>
<Dependency>curl</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>openssl</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>aria2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/sounds</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2020-04-11</Date>
<Version>2.2.3.1</Version>
<Comment>Version bump</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2016-03-22</Date>
<Version>2.0.5</Version>
<Comment>Version bump, rebuilt with docker.</Comment>
<Name>İbrahim KARAGÜZEL</Name>
<Email>karaguzelibrahim@gmail.com</Email>
</Update>
<Update release="3">
<Date>2014-07-09</Date>
<Version>1.10.4</Version>
<Comment>Version Bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-02-17</Date>
<Version>1.10.3</Version>
<Comment>Rebuild.</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-02-08</Date>
<Version>1.10.3</Version>
<Comment>First release</Comment>
<Name>Idris Kalp</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>wget</Name>
+1 -1
View File
@@ -1 +1 @@
e2562a5668a8357ee9c58f784a7cb048f82fffeb
0864ce445140f1d28c59b405ffa2aed21c1e0c05
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
cb76843cf651c1069be0016f42a6b7aabb3e31a7
765b2e7e07a7c4f471fb03558bf4dc0ff1955032