Merge pull request #6929 from suvari/master

perl-Event, perl-AnyEvent: new packages
This commit is contained in:
Kamil ATLI
2019-06-21 17:29:09 +03:00
committed by GitHub
10 changed files with 244 additions and 2 deletions
+88
View File
@@ -162228,6 +162228,51 @@ complete albums that you have purchased from Amazon.</Description>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>perl-AnyEvent</Name>
<Homepage>https://metacpan.org/release/AnyEvent</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>Artistic</License>
<IsA>library</IsA>
<PartOf>programming.language.perl</PartOf>
<Summary xml:lang="en">AnyEvent - provide framework for multiple event loops</Summary>
<Summary xml:lang="tr">Çoklu olay döngüleri için çatı sağlayan bir Perl modülü</Summary>
<Description xml:lang="en">AnyEvent provides an identical interface to multiple event loops. This allows module authors to utilise an event loop without forcing module users to use the same event loop (as only a single event loop can coexist peacefully at any one time).</Description>
<Description xml:lang="tr">AnyEvent, çoklu olay döngülerine (multiple event loop) özdeş arayüz sağlamaktadır. Modülü kullananların aynı anda tek olay döngüsü çalışıyormuş gibi aynı olay döngüsünü kullanmalarına zorlamadan, bir olay döngüsü kullanılmasına olanak sağlayan bir Perl modülüdür.</Description>
<Archive type="targz" sha1sum="b3e0d76c5c0a29577ab1da35ce2fd62965656e9e">https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-7.15.tar.gz</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
<Dependency>perl-Event</Dependency>
</BuildDependencies>
<SourceURI>programming/language/perl/perl-AnyEvent/pspec.xml</SourceURI>
</Source>
<Package>
<Name>perl-AnyEvent</Name>
<RuntimeDependencies>
<Dependency>perl</Dependency>
<Dependency>perl-Event</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-06-21</Date>
<Version>7.15</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>perl-AppConfig</Name>
@@ -163126,6 +163171,49 @@ complete albums that you have purchased from Amazon.</Description>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>perl-Event</Name>
<Homepage>https://metacpan.org/release/Event</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>Artistic</License>
<IsA>library</IsA>
<PartOf>programming.language.perl</PartOf>
<Summary xml:lang="en">Event loop processing module in Perl</Summary>
<Summary xml:lang="tr">Perl için olay döngüsü işleme modülü</Summary>
<Description xml:lang="en">The Event module provide a central facility to watch for various types of events and invoke a callback when these events occur. The idea is to delay the handling of events so that they may be dispatched in priority order when it is safe for callbacks to execute.</Description>
<Description xml:lang="tr">Event modülü çeşitli türde olayları izlemek için merkezi bir olanak sağlamakta ve bu olaylar meydana geldiğinde sisteme geri çağırım (callback) uyarmaktadır.</Description>
<Archive type="targz" sha1sum="9d646bef8e9a0011665efdbe1424f443626b6098">https://cpan.metacpan.org/authors/id/E/ET/ETJ/Event-1.27.tar.gz</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
</BuildDependencies>
<SourceURI>programming/language/perl/perl-Event/pspec.xml</SourceURI>
</Source>
<Package>
<Name>perl-Event</Name>
<RuntimeDependencies>
<Dependency>perl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/perl-Event</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2012-09-06</Date>
<Version>1.27</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>perl-File-Listing</Name>
+1 -1
View File
@@ -1 +1 @@
4f393c7e67cc97bf1ce68c235b2db63e9377d8a1
c3ac296b438573e6e4bf9158e1c5f706779290a5
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
4c5ee50170a6e8eca738109036243a42d1a61545
880017820bb9837ea430d679a1ff315b532463b0
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import perlmodules
from pisi.actionsapi import get
from pisi.actionsapi import pisitools
WorkDir="AnyEvent-%s" % get.srcVERSION()
def setup():
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
perlmodules.install()
pisitools.dodoc("Changes", "COPYING", "README")
@@ -0,0 +1,45 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>perl-AnyEvent</Name>
<Homepage>https://metacpan.org/release/AnyEvent</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>Artistic</License>
<IsA>library</IsA>
<Summary>AnyEvent - provide framework for multiple event loops</Summary>
<Description>AnyEvent provides an identical interface to multiple event loops. This allows module authors to utilise an event loop without forcing module users to use the same event loop (as only a single event loop can coexist peacefully at any one time).</Description>
<Archive sha1sum="b3e0d76c5c0a29577ab1da35ce2fd62965656e9e" type="targz">https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-7.15.tar.gz</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
<Dependency>perl-Event</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>perl-AnyEvent</Name>
<RuntimeDependencies>
<Dependency>perl</Dependency>
<Dependency>perl-Event</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-06-21</Date>
<Version>7.15</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>perl-AnyEvent</Name>
<Summary xml:lang="tr">Çoklu olay döngüleri için çatı sağlayan bir Perl modülü</Summary>
<Description xml:lang="tr">AnyEvent, çoklu olay döngülerine (multiple event loop) özdeş arayüz sağlamaktadır. Modülü kullananların aynı anda tek olay döngüsü çalışıyormuş gibi aynı olay döngüsünü kullanmalarına zorlamadan, bir olay döngüsü kullanılmasına olanak sağlayan bir Perl modülüdür.</Description>
</Source>
</PISI>
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import perlmodules
from pisi.actionsapi import get
from pisi.actionsapi import pisitools
WorkDir="Event-%s" % get.srcVERSION()
def setup():
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
perlmodules.install()
pisitools.dodoc("ANNOUNCE", "README", "TODO" )
@@ -0,0 +1,43 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>perl-Event</Name>
<Homepage>https://metacpan.org/release/Event</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>Artistic</License>
<IsA>library</IsA>
<Summary>Event loop processing module in Perl</Summary>
<Description>The Event module provide a central facility to watch for various types of events and invoke a callback when these events occur. The idea is to delay the handling of events so that they may be dispatched in priority order when it is safe for callbacks to execute.</Description>
<Archive sha1sum="9d646bef8e9a0011665efdbe1424f443626b6098" type="targz">https://cpan.metacpan.org/authors/id/E/ET/ETJ/Event-1.27.tar.gz</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>perl-Event</Name>
<RuntimeDependencies>
<Dependency>perl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/perl-Event</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2012-09-06</Date>
<Version>1.27</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>perl-Event</Name>
<Summary xml:lang="tr">Perl için olay döngüsü işleme modülü</Summary>
<Description xml:lang="tr">Event modülü çeşitli türde olayları izlemek için merkezi bir olanak sağlamakta ve bu olaylar meydana geldiğinde sisteme geri çağırım (callback) uyarmaktadır.</Description>
</Source>
</PISI>