diff --git a/desktop/misc/ayatana-ido/actions.py b/desktop/misc/ayatana-ido/actions.py new file mode 100644 index 0000000000..b2e57ae997 --- /dev/null +++ b/desktop/misc/ayatana-ido/actions.py @@ -0,0 +1,25 @@ +#!/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.autoreconf("-fi") + autotools.configure("--libexecdir=/usr/lib") + + # for fix unused dependency + pisitools.dosed("libtool"," -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "COPYING", "README") + diff --git a/desktop/misc/ayatana-ido/pspec.xml b/desktop/misc/ayatana-ido/pspec.xml new file mode 100644 index 0000000000..173da39bbb --- /dev/null +++ b/desktop/misc/ayatana-ido/pspec.xml @@ -0,0 +1,68 @@ + + + + + ayatana-ido + https://github.com/AyatanaIndicators/ayatana-ido + + fury + uglyside@yandex.ru + + LGPL-3 + library + desktop.misc + Ayatana Indicator Display Objects. + The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop. + + https://github.com/AyatanaIndicators/ayatana-ido/archive/refs/tags/0.8.2.tar.gz + + + gtk-doc + gtk3-devel + vala-devel + gobject-introspection-devel + + + + + + + + ayatana-ido + + gtk3 + glib2 + cairo + pango + gdk-pixbuf + + + /usr/lib + /usr/share + + + + + ayatana-ido-devel + + glib2-devel + gtk3-devel + ayatana-ido + + + /usr/include/ + /usr/lib/pkgconfig + + + + + + 2021-10-13 + 0.8.2 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/desktop/misc/ayatana-libappindicator/actions.py b/desktop/misc/ayatana-libappindicator/actions.py new file mode 100644 index 0000000000..8476cf4f02 --- /dev/null +++ b/desktop/misc/ayatana-libappindicator/actions.py @@ -0,0 +1,23 @@ +#!/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 shelltools, autotools, pisitools, get + +def setup(): + shelltools.system("gtkdocize") + autotools.autoreconf("-fiv") + autotools.configure("--enable-gtk-doc --with-gtk=3 --disable-static") + + pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog") + diff --git a/desktop/misc/ayatana-libappindicator/pspec.xml b/desktop/misc/ayatana-libappindicator/pspec.xml new file mode 100644 index 0000000000..0474f3901c --- /dev/null +++ b/desktop/misc/ayatana-libappindicator/pspec.xml @@ -0,0 +1,90 @@ + + + + + ayatana-libappindicator + https://github.com/AyatanaIndicators/libayatana-appindicator + + fury + uglyside@yandex.ru + + LGPL-3 + library + desktop.misc + A library to allow applications to export a menu into the Unity Menu bar. + A library to allow applications to export a menu into the Unity Menu bar. + + https://github.com/AyatanaIndicators/libayatana-appindicator/archive/refs/tags/0.5.5.tar.gz + + + gtk-doc + gtk3-devel + python3-devel + libdbusmenu-gtk3 + libdbusmenu-devel + python3-pygobject3-devel + ayatana-libindicator-devel + gobject-introspection-devel + + + + + + + + ayatana-libappindicator + + atk + gtk3 + glib2 + cairo + pango + gdk-pixbuf + libdbusmenu-gtk3 + libdbusmenu-glib + ayatana-libindicator + + + /usr/lib + /usr/share + /usr/share/doc + + + + + ayatana-libappindicator-devel + + ayatana-libappindicator + gtk3-devel + libdbusmenu-gtk + libdbusmenu-glib + libdbusmenu-devel + ayatana-libindicator-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + ayatana-libappindicator-docs + + ayatana-libappindicator + + + /usr/share/gtk-doc + + + + + + 2021-10-13 + 0.5.5 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/desktop/misc/ayatana-libindicator/actions.py b/desktop/misc/ayatana-libindicator/actions.py new file mode 100644 index 0000000000..2257137995 --- /dev/null +++ b/desktop/misc/ayatana-libindicator/actions.py @@ -0,0 +1,25 @@ +#!/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.autoreconf("-fi") + autotools.configure("--libexecdir=/usr/lib --with-gtk=3 --disable-static") + + # for fix unused dependency + pisitools.dosed("libtool"," -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "COPYING", "README") + diff --git a/desktop/misc/ayatana-libindicator/pspec.xml b/desktop/misc/ayatana-libindicator/pspec.xml new file mode 100644 index 0000000000..c05e993595 --- /dev/null +++ b/desktop/misc/ayatana-libindicator/pspec.xml @@ -0,0 +1,68 @@ + + + + + ayatana-libindicator + https://github.com/AyatanaIndicators/libayatana-indicator + + fury + uglyside@yandex.ru + + GPL-3 + library + desktop.misc + Ayatana Indicators Shared Library. + The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop. + + https://github.com/AyatanaIndicators/libayatana-indicator/archive/refs/tags/0.8.4.tar.gz + + + gtk3-devel + python3-devel + ayatana-ido-devel + + + + + + + + ayatana-libindicator + + gtk3 + glib2 + gdk-pixbuf + ayatana-ido + + + /usr/lib + /usr/share/doc + /usr/share + + + + + ayatana-libindicator-devel + + gtk3-devel + glib2-devel + ayatana-ido-devel + ayatana-libindicator + + + /usr/include/ + /usr/lib/pkgconfig + + + + + + 2021-10-13 + 0.8.4 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/multimedia/graphics/optipng/actions.py b/multimedia/graphics/optipng/actions.py new file mode 100644 index 0000000000..a1f1318d50 --- /dev/null +++ b/multimedia/graphics/optipng/actions.py @@ -0,0 +1,29 @@ +#!/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 + +t = ''.join([ + ' -prefix=/usr', + ' -mandir=/usr/share/man', + ' -with-system-zlib', + ' -with-system-libpng ' + ]) + +def setup(): + autotools.rawConfigure(t) + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dohtml("doc/*.html") + pisitools.dodoc("*.txt", "doc/history.txt", "doc/todo.txt") + diff --git a/multimedia/graphics/optipng/pspec.xml b/multimedia/graphics/optipng/pspec.xml new file mode 100644 index 0000000000..29ae5f0af8 --- /dev/null +++ b/multimedia/graphics/optipng/pspec.xml @@ -0,0 +1,49 @@ + + + + + optipng + http://optipng.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + zlib + app:console + PNG Optimizer + + OptiPNG is a PNG optimizer that recompresses image files to a smaller size, without losing any information. This program also converts external formats (BMP, GIF, PNM and TIFF) to optimized PNG, and performs PNG integrity checks and corrections. + + + mirrors://sourceforge/optipng/optipng-0.7.7.tar.gz + + + zlib-devel + libpng-devel + + + + + optipng + + zlib + libpng + + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + + 2021-10-14 + 0.7.7 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/multimedia/graphics/optipng/translations.xml b/multimedia/graphics/optipng/translations.xml new file mode 100644 index 0000000000..74b727b195 --- /dev/null +++ b/multimedia/graphics/optipng/translations.xml @@ -0,0 +1,8 @@ + + + + optipng + PNG İyileştirici + OptiPNG, herhangi bir veri kaybı olmadan resim dosyalarını tekrar sıkıştıran bir PNG iyileştiricisidir. Bu program aynı zamanda, diğer biçimleri (BMP, GIF, PNM, TIFF) iyileştirilmiş PNG biçimine çevirebilir ve PNG bütünlük kontrolü ve düzeltmeleri yapabilir. + + diff --git a/network/library/libetpan/actions.py b/network/library/libetpan/actions.py new file mode 100644 index 0000000000..aa4fd2d6f7 --- /dev/null +++ b/network/library/libetpan/actions.py @@ -0,0 +1,32 @@ +#!/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 shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +i = "-Wno-unused-function \ + -Wno-unused-parameter \ + -Wno-unused-result \ + -Wno-cast-function-type \ + " + +def setup(): + pisitools.cflags.add(i) + shelltools.system("NOCONFIGURE=1 ./autogen.sh") + autotools.configure("--disable-static") + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + +# pisitools.dodoc("AUTHORS") + diff --git a/network/library/libetpan/files/Detect_extra_data_after_STARTTLS_response_and_exit.patch b/network/library/libetpan/files/Detect_extra_data_after_STARTTLS_response_and_exit.patch new file mode 100644 index 0000000000..1130e3a513 --- /dev/null +++ b/network/library/libetpan/files/Detect_extra_data_after_STARTTLS_response_and_exit.patch @@ -0,0 +1,27 @@ +From 8ceb0cf0191f8b374a7f05974b29c6242ce8f752 Mon Sep 17 00:00:00 2001 +From: Damian Poddebniak +Date: Thu, 23 Jul 2020 19:24:45 +0200 +Subject: [PATCH] Detect extra data after STARTTLS response and exit + +--- + src/low-level/imap/mailimap.c | 7 +++++++ + 1 file changed, 7 insertions(+) + +diff --git a/src/low-level/imap/mailimap.c b/src/low-level/imap/mailimap.c +index bb17119d..4ffcf55d 100644 +--- a/src/low-level/imap/mailimap.c ++++ b/src/low-level/imap/mailimap.c +@@ -2428,6 +2428,13 @@ int mailimap_starttls(mailimap * session) + + mailimap_response_free(response); + ++ // Detect if the server send extra data after the STARTTLS response. ++ // This *may* be a "response injection attack". ++ if (session->imap_stream->read_buffer_len != 0) { ++ // Since it is also an IMAP protocol violation, exit. ++ return MAILIMAP_ERROR_STARTTLS; ++ } ++ + switch (error_code) { + case MAILIMAP_RESP_COND_STATE_OK: + return MAILIMAP_NO_ERROR; diff --git a/network/library/libetpan/pspec.xml b/network/library/libetpan/pspec.xml new file mode 100644 index 0000000000..6fd11384db --- /dev/null +++ b/network/library/libetpan/pspec.xml @@ -0,0 +1,69 @@ + + + + + libetpan + https://www.etpan.org/libetpan.html + + fury + uglyside@yandex.ru + + custom + library + network.library + A portable middleware for email access. + The purpose of this mail library is to provide a portable, efficient framework for different kinds of mail access: IMAP, SMTP, POP and NNTP. + + https://github.com/dinhvh/libetpan/archive/1.9.4.tar.gz + + + db-devel + curl-devel + expat-devel + gnutls-devel + openssl-devel + cyrus-sasl-devel + + + Detect_extra_data_after_STARTTLS_response_and_exit.patch + + + + + libetpan + + db + openssl + cyrus-sasl + + + /usr/lib + + + + + libetpan-devel + + libetpan + db-devel + gnutls-devel + openssl-devel + cyrus-sasl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2021-10-13 + 1.9.4 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/network/mail/razor/actions.py b/network/mail/razor/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/network/mail/razor/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/network/mail/razor/files/makefile_quoting_fix.patch b/network/mail/razor/files/makefile_quoting_fix.patch new file mode 100644 index 0000000000..677d5c7010 --- /dev/null +++ b/network/mail/razor/files/makefile_quoting_fix.patch @@ -0,0 +1,15 @@ +diff -uprw razor-agents-2.85.orig/Makefile.PL razor-agents-2.85/Makefile.PL +--- razor-agents-2.85.orig/Makefile.PL 2007-05-09 01:47:53.000000000 +0300 ++++ razor-agents-2.85/Makefile.PL 2015-06-14 20:36:23.677213987 +0300 +@@ -140,9 +140,9 @@ sub MY::install { + my $inherited = $self->SUPER::install(@_); + + my $man5 = q{ \\ +- $(INST_MAN5DIR) $(INSTALLMAN5DIR)}; ++ "$(INST_MAN5DIR)" "$(INSTALLMAN5DIR)"}; + +- $inherited =~ s/(\$\((?:DEST)?INSTALL\w*MAN1DIR\))/$1$man5/gm; ++ $inherited =~ s/("?\$\((?:DEST)?INSTALL\w*MAN1DIR\)"?)/$1$man5/gm; + + return $inherited; + } diff --git a/network/mail/razor/files/version_fix.patch b/network/mail/razor/files/version_fix.patch new file mode 100644 index 0000000000..c391d48fbc --- /dev/null +++ b/network/mail/razor/files/version_fix.patch @@ -0,0 +1,22 @@ +--- a/lib/Razor2/Client/Version.pm 2007-05-10 22:32:10.000000000 +0200 ++++ b/lib/Razor2/Client/Version.pm 2010-03-25 11:11:36.911409707 +0100 +@@ -14,7 +14,7 @@ + + $PROTOCOL = 3; + +-$VERSION = '2.84'; ++$VERSION = '2.85'; + + 1; + +--- a/META.yml 2007-05-23 20:29:34.000000000 +0200 ++++ b/META.yml 2010-03-25 11:11:43.691408628 +0100 +@@ -1,7 +1,7 @@ + # http://module-build.sourceforge.net/META-spec.html + #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# + name: razor-agents +-version: 2.84 ++version: 2.85 + version_from: lib/Razor2/Client/Version.pm + installdirs: site + requires: diff --git a/network/mail/razor/pspec.xml b/network/mail/razor/pspec.xml new file mode 100644 index 0000000000..e5695a60e8 --- /dev/null +++ b/network/mail/razor/pspec.xml @@ -0,0 +1,54 @@ + + + + + razor + http://razor.sourceforge.net/ + + fury + uglyside@yandex.ru + + PerlArtistic + app + network.mail + Razor is a distributed, collaborative, spam detection and filtering network. + Vipul's Razor is a distributed, collaborative, spam detection and filtering network. Through user contribution, Razor establishes a distributed and constantly updating catalogue of spam in propagation that is consulted by email clients to filter out known spam. Detection is done with statistical and randomized signatures that efficiently spot mutating spam content. User input is validated through reputation assignments based on consensus on report and revoke assertions which in turn is used for computing confidence values associated with individual signatures. + + mirrors://sourceforge/project/razor/razor-agents/2.85/razor-agents-2.85.tar.bz2 + + + perl + + + makefile_quoting_fix.patch + version_fix.patch + + + + + razor + + perl + perl-URI + perl-Net-DNS + perl-Digest-SHA1 + perl-Digest-Nilsimsa + + + /usr/bin + /usr/lib/perl5 + /usr/share/man + + + + + + 2021-09-18 + 2.85 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-B-COW/actions.py b/programming/language/perl/perl-B-COW/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-B-COW/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-B-COW/pspec.xml b/programming/language/perl/perl-B-COW/pspec.xml new file mode 100644 index 0000000000..7f051dc13a --- /dev/null +++ b/programming/language/perl/perl-B-COW/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-B-COW + https://metacpan.org/pod/B::COW + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + B::COW additional B helpers to check COW status. + B::COW provides some naive additional B helpers to check the COW status of one SvPV. + + https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/B-COW-0.004.tar.gz + + + perl + + + + + perl-B-COW + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.004 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Clone/actions.py b/programming/language/perl/perl-Clone/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Clone/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Clone/pspec.xml b/programming/language/perl/perl-Clone/pspec.xml new file mode 100644 index 0000000000..2ce9252538 --- /dev/null +++ b/programming/language/perl/perl-Clone/pspec.xml @@ -0,0 +1,46 @@ + + + + + perl-Clone + https://metacpan.org/pod/Clone + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Clone - recursively copy Perl datatypes. + This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. + + https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/Clone-0.45.tar.gz + + + perl + perl-B-COW + + + + + perl-Clone + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.45 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Crypt-OpenSSL-Guess/actions.py b/programming/language/perl/perl-Crypt-OpenSSL-Guess/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Crypt-OpenSSL-Guess/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Crypt-OpenSSL-Guess/pspec.xml b/programming/language/perl/perl-Crypt-OpenSSL-Guess/pspec.xml new file mode 100644 index 0000000000..c0ae5d3d2c --- /dev/null +++ b/programming/language/perl/perl-Crypt-OpenSSL-Guess/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-Crypt-OpenSSL-Guess + https://metacpan.org/pod/Crypt::OpenSSL::Guess + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Guess OpenSSL include path. + Crypt::OpenSSL::Guess provides helpers to guess OpenSSL include path on any platforms. + + https://cpan.metacpan.org/authors/id/A/AK/AKIYM/Crypt-OpenSSL-Guess-0.13.tar.gz + + + perl-ExtUtils-MakeMaker + + + + + perl-Crypt-OpenSSL-Guess + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.13 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Crypt-OpenSSL-RSA/actions.py b/programming/language/perl/perl-Crypt-OpenSSL-RSA/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Crypt-OpenSSL-RSA/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml b/programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml new file mode 100644 index 0000000000..c66347335a --- /dev/null +++ b/programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml @@ -0,0 +1,49 @@ + + + + + perl-Crypt-OpenSSL-RSA + https://metacpan.org/pod/Crypt::OpenSSL::RSA + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + RSA encoding and decoding, using the openSSL libraries. + Crypt::OpenSSL::RSA provides the ability to RSA encrypt strings which are somewhat shorter than the block size of a key. + + https://cpan.metacpan.org/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-0.32.tar.gz + + + openssl-devel + perl-Crypt-OpenSSL-Guess + perl-Crypt-OpenSSL-Random + + + + + perl-Crypt-OpenSSL-RSA + + openssl + perl-Crypt-OpenSSL-Guess + perl-Crypt-OpenSSL-Random + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.32 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Crypt-OpenSSL-Random/actions.py b/programming/language/perl/perl-Crypt-OpenSSL-Random/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Crypt-OpenSSL-Random/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Crypt-OpenSSL-Random/pspec.xml b/programming/language/perl/perl-Crypt-OpenSSL-Random/pspec.xml new file mode 100644 index 0000000000..d765c19248 --- /dev/null +++ b/programming/language/perl/perl-Crypt-OpenSSL-Random/pspec.xml @@ -0,0 +1,47 @@ + + + + + perl-Crypt-OpenSSL-Random + https://metacpan.org/pod/Crypt::OpenSSL::Random + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + OpenSSL/LibreSSL pseudo-random number generator access. + Crypt::OpenSSL::Random provides the ability to seed and query the OpenSSL and LibreSSL library's pseudo-random number generators. + + https://cpan.metacpan.org/authors/id/R/RU/RURBAN/Crypt-OpenSSL-Random-0.15.tar.gz + + + openssl-devel + perl-Crypt-OpenSSL-Guess + + + + + perl-Crypt-OpenSSL-Random + + openssl + perl-Crypt-OpenSSL-Guess + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.15 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Crypt-Random-Seed/actions.py b/programming/language/perl/perl-Crypt-Random-Seed/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Crypt-Random-Seed/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Crypt-Random-Seed/pspec.xml b/programming/language/perl/perl-Crypt-Random-Seed/pspec.xml new file mode 100644 index 0000000000..b95743f4e9 --- /dev/null +++ b/programming/language/perl/perl-Crypt-Random-Seed/pspec.xml @@ -0,0 +1,46 @@ + + + + + perl-Crypt-Random-Seed + https://metacpan.org/pod/Crypt::Random::Seed + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Simple method to get strong randomness. + Crypt::Random::Seed provides a simple interface to get the strongest source of randomness on the current platform, typically for use in seeding a CSPRNG such as Math::Random::ISAAC. + + https://cpan.metacpan.org/authors/id/D/DA/DANAJ/Crypt-Random-Seed-0.03.tar.gz + + + perl + + + + + perl-Crypt-Random-Seed + + perl + perl-Crypt-Random-TESHA2 + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.03 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Crypt-Random-TESHA2/actions.py b/programming/language/perl/perl-Crypt-Random-TESHA2/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Crypt-Random-TESHA2/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Crypt-Random-TESHA2/pspec.xml b/programming/language/perl/perl-Crypt-Random-TESHA2/pspec.xml new file mode 100644 index 0000000000..286b9df952 --- /dev/null +++ b/programming/language/perl/perl-Crypt-Random-TESHA2/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-Crypt-Random-TESHA2 + https://metacpan.org/pod/Crypt::Random::TESHA2 + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Random numbers using timer/schedule entropy. + Crypt::Random::TESHA2 produces "userspace voodoo entropy" for people that do not have or don't want to use O/S supplied sources. + + https://cpan.metacpan.org/authors/id/D/DA/DANAJ/Crypt-Random-TESHA2-0.01.tar.gz + + + perl + + + + + perl-Crypt-Random-TESHA2 + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.01 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Crypt-SSLeay/actions.py b/programming/language/perl/perl-Crypt-SSLeay/actions.py new file mode 100644 index 0000000000..9cf3e83d36 --- /dev/null +++ b/programming/language/perl/perl-Crypt-SSLeay/actions.py @@ -0,0 +1,23 @@ +#!/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 perlmodules, shelltools + +shelltools.export("PERL_USE_UNSAFE_INC", "1") + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + pass +# perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Crypt-SSLeay/pspec.xml b/programming/language/perl/perl-Crypt-SSLeay/pspec.xml new file mode 100644 index 0000000000..8d388cc60a --- /dev/null +++ b/programming/language/perl/perl-Crypt-SSLeay/pspec.xml @@ -0,0 +1,55 @@ + + + + + perl-Crypt-SSLeay + https://metacpan.org/pod/Crypt::SSLeay + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Crypt::SSLeay - OpenSSL support for LWP. + Crypt::SSLeay - OpenSSL support for LWP. + + https://github.com/nanis/Crypt-SSLeay/archive/refs/tags/0.73_04.tar.gz + + + perl + openssl-devel + perl-Try-Tiny + perl-Path-Class + perl-LWP-Protocol-https + perl-Bytes-Random-Secure + + + + + perl-Crypt-SSLeay + + perl + openssl + perl-Try-Tiny + perl-Path-Class + perl-LWP-Protocol-https + perl-Bytes-Random-Secure + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.73_04 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Digest-Nilsimsa/actions.py b/programming/language/perl/perl-Digest-Nilsimsa/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Digest-Nilsimsa/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Digest-Nilsimsa/pspec.xml b/programming/language/perl/perl-Digest-Nilsimsa/pspec.xml new file mode 100644 index 0000000000..d54bb35169 --- /dev/null +++ b/programming/language/perl/perl-Digest-Nilsimsa/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-Digest-Nilsimsa + https://metacpan.org/pod/Digest::Nilsimsa + + fury + uglyside@yandex.ru + + LGPL-2 + library + programming.language.perl + Perl version of Nilsimsa code. + A nilsimsa signature is a statistic of n-gram occurance in a piece of text. It is a 256 bit value usually represented in hex. This module is a wrapper around nilsimsa implementation in C by cmeclax. + + https://cpan.metacpan.org/authors/id/V/VI/VIPUL/Digest-Nilsimsa-0.06.tar.gz + + + perl + + + + + perl-Digest-Nilsimsa + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.06 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Mail-AuthenticationResults/actions.py b/programming/language/perl/perl-Mail-AuthenticationResults/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Mail-AuthenticationResults/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Mail-AuthenticationResults/pspec.xml b/programming/language/perl/perl-Mail-AuthenticationResults/pspec.xml new file mode 100644 index 0000000000..649755c4c8 --- /dev/null +++ b/programming/language/perl/perl-Mail-AuthenticationResults/pspec.xml @@ -0,0 +1,48 @@ + + + + + perl-Mail-AuthenticationResults + https://metacpan.org/pod/Mail::AuthenticationResults + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Object Oriented Authentication-Results Headers. + This parser copes with most styles of Authentication-Results header seen in the wild, but is not yet fully RFC7601 compliant. + + https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-AuthenticationResults-2.20210915.tar.gz + + + perl + perl-JSON + perl-Clone + perl-Test-Exception + + + + + perl-Mail-AuthenticationResults + + perl-JSON + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 2.20210915 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Mail-DKIM/actions.py b/programming/language/perl/perl-Mail-DKIM/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Mail-DKIM/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Mail-DKIM/pspec.xml b/programming/language/perl/perl-Mail-DKIM/pspec.xml new file mode 100644 index 0000000000..8fce694480 --- /dev/null +++ b/programming/language/perl/perl-Mail-DKIM/pspec.xml @@ -0,0 +1,56 @@ + + + + + perl-Mail-DKIM + https://metacpan.org/pod/Mail::DKIM + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Signs/verifies Internet mail with DKIM/DomainKey signatures. + This module implements the various components of the DKIM and DomainKeys message-signing and verifying standards for Internet mail. + + https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-1.20200907.tar.gz + + + perl + perl-Clone + perl-Net-DNS + perl-mailtools + perl-YAML-LibYAML + perl-Crypt-OpenSSL-RSA + perl-Test-RequiresInternet + perl-Net-DNS-Resolver-Mock + perl-Mail-AuthenticationResults + + + + + perl-Mail-DKIM + + perl-Net-DNS + perl-mailtools + perl-Crypt-OpenSSL-RSA + perl-Mail-AuthenticationResults + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 1.20200907 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Math-Random-ISAAC/actions.py b/programming/language/perl/perl-Math-Random-ISAAC/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Math-Random-ISAAC/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Math-Random-ISAAC/pspec.xml b/programming/language/perl/perl-Math-Random-ISAAC/pspec.xml new file mode 100644 index 0000000000..cd068b080b --- /dev/null +++ b/programming/language/perl/perl-Math-Random-ISAAC/pspec.xml @@ -0,0 +1,46 @@ + + + + + perl-Math-Random-ISAAC + https://metacpan.org/pod/Math::Random::ISAAC + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Perl interface to the ISAAC PRNG algorithm. + Perl interface to the ISAAC PRNG algorithm. + + https://cpan.metacpan.org/authors/id/J/JA/JAWNSY/Math-Random-ISAAC-1.004.tar.gz + + + perl + perl-Test-NoWarnings + + + + + perl-Math-Random-ISAAC + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 1.004 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Net-DNS-Resolver-Programmable/actions.py b/programming/language/perl/perl-Net-DNS-Resolver-Programmable/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Net-DNS-Resolver-Programmable/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Net-DNS-Resolver-Programmable/pspec.xml b/programming/language/perl/perl-Net-DNS-Resolver-Programmable/pspec.xml new file mode 100644 index 0000000000..5ee735a9e1 --- /dev/null +++ b/programming/language/perl/perl-Net-DNS-Resolver-Programmable/pspec.xml @@ -0,0 +1,48 @@ + + + + + perl-Net-DNS-Resolver-Programmable + https://metacpan.org/pod/Net::DNS::Resolver::Programmable + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + programmable DNS resolver class for offline emulation of DNS. + Net::DNS::Resolver::Programmable is a Net::DNS::Resolver descendant class that allows a virtual DNS to be emulated instead of querying the real DNS. + + https://cpan.metacpan.org/authors/id/B/BI/BIGPRESH/Net-DNS-Resolver-Programmable-0.009.tar.gz + + + perl + perl-Net-DNS + perl-Module-Build + + + + + perl-Net-DNS-Resolver-Programmable + + perl + perl-Net-DNS + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.009 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-NetAddr-IP/actions.py b/programming/language/perl/perl-NetAddr-IP/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-NetAddr-IP/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-NetAddr-IP/pspec.xml b/programming/language/perl/perl-NetAddr-IP/pspec.xml new file mode 100644 index 0000000000..7dbda62cdf --- /dev/null +++ b/programming/language/perl/perl-NetAddr-IP/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-NetAddr-IP + https://metacpan.org/pod/NetAddr::IP + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Manages IPv4 and IPv6 addresses and subnets. + This module provides an object-oriented abstraction on top of IP addresses or IP subnets that allows for easy manipulations. + + https://cpan.metacpan.org/authors/id/M/MI/MIKER/NetAddr-IP-4.079.tar.gz + + + perl + + + + + perl-NetAddr-IP + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 4.079 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Path-Class/actions.py b/programming/language/perl/perl-Path-Class/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Path-Class/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Path-Class/pspec.xml b/programming/language/perl/perl-Path-Class/pspec.xml new file mode 100644 index 0000000000..1c4a201daa --- /dev/null +++ b/programming/language/perl/perl-Path-Class/pspec.xml @@ -0,0 +1,46 @@ + + + + + perl-Path-Class + https://metacpan.org/pod/Path::Class + + fury + uglyside@yandex.ru + + GPL-1 + library + programming.language.perl + Cross-platform path specification manipulation for Perl. + Cross-platform path specification manipulation for Perl. + + https://cpan.metacpan.org/authors/id/K/KW/KWILLIAMS/Path-Class-0.37.tar.gz + + + perl + perl-Module-Build + + + + + perl-Path-Class + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.37 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-Test-NoWarnings/actions.py b/programming/language/perl/perl-Test-NoWarnings/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-Test-NoWarnings/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-Test-NoWarnings/pspec.xml b/programming/language/perl/perl-Test-NoWarnings/pspec.xml new file mode 100644 index 0000000000..2cc98334cd --- /dev/null +++ b/programming/language/perl/perl-Test-NoWarnings/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-Test-NoWarnings + https://metacpan.org/pod/Test::NoWarnings + + fury + uglyside@yandex.ru + + LGPL-2.1 + library + programming.language.perl + Make sure you didn't emit any warnings while testing. + Make sure you didn't emit any warnings while testing. + + https://cpan.metacpan.org/authors/id/H/HA/HAARG/Test-NoWarnings-1.06.tar.gz + + + perl + + + + + perl-Test-NoWarnings + + perl-test-simple + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 1.06 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-YAML-LibYAML/actions.py b/programming/language/perl/perl-YAML-LibYAML/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-YAML-LibYAML/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-YAML-LibYAML/pspec.xml b/programming/language/perl/perl-YAML-LibYAML/pspec.xml new file mode 100644 index 0000000000..0e53b0610e --- /dev/null +++ b/programming/language/perl/perl-YAML-LibYAML/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-YAML-LibYAML + https://metacpan.org/pod/YAML::LibYAML + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Perl Binding to libyaml. + Perl YAML Serialization using XS and libyaml. + + https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-LibYAML-0.83.tar.gz + + + perl + + + + + perl-YAML-LibYAML + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 0.83 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-mailtools/actions.py b/programming/language/perl/perl-mailtools/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-mailtools/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-mailtools/pspec.xml b/programming/language/perl/perl-mailtools/pspec.xml new file mode 100644 index 0000000000..f961212c54 --- /dev/null +++ b/programming/language/perl/perl-mailtools/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-mailtools + https://metacpan.org/pod/MailTools + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + MailTools - bundle of ancient email modules. + MailTools is a bundle: an ancient form of combining packages into one distribution. + + https://cpan.metacpan.org/authors/id/M/MA/MARKOV/MailTools-2.21.tar.gz + + + perl-timedate + + + + + perl-mailtools + + perl-timedate + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 2.21 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/perl/perl-timedate/actions.py b/programming/language/perl/perl-timedate/actions.py new file mode 100644 index 0000000000..a8540a73c1 --- /dev/null +++ b/programming/language/perl/perl-timedate/actions.py @@ -0,0 +1,20 @@ +#!/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 perlmodules + +def setup(): + perlmodules.configure() + +def build(): + perlmodules.make() + +def check(): + perlmodules.make("test") + +def install(): + perlmodules.install() + diff --git a/programming/language/perl/perl-timedate/pspec.xml b/programming/language/perl/perl-timedate/pspec.xml new file mode 100644 index 0000000000..eab1fc822c --- /dev/null +++ b/programming/language/perl/perl-timedate/pspec.xml @@ -0,0 +1,45 @@ + + + + + perl-timedate + https://metacpan.org/dist/TimeDate + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + time and date parsing and formatting perl library. + This is the perl5 TimeDate distribution. + + https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/TimeDate-2.33.tar.gz + + + perl + + + + + perl-timedate + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + + 2021-09-18 + 2.33 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/python3/python3-configobj/actions.py b/programming/language/python3/python3-configobj/actions.py new file mode 100644 index 0000000000..846c779e1f --- /dev/null +++ b/programming/language/python3/python3-configobj/actions.py @@ -0,0 +1,15 @@ +#!/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 pythonmodules +from pisi.actionsapi import pisitools + +def build(): + pythonmodules.compile(pyVer = '3') + +def install(): + pythonmodules.install(pyVer = '3') + diff --git a/programming/language/python3/python3-configobj/pspec.xml b/programming/language/python3/python3-configobj/pspec.xml new file mode 100644 index 0000000000..8551b77cee --- /dev/null +++ b/programming/language/python3/python3-configobj/pspec.xml @@ -0,0 +1,46 @@ + + + + + python3-configobj + https://github.com/DiffSK/configobj + + fury + uglyside@yandex.ru + + BSD + library + programming.language.python3 + An ini file round tripper. + ConfigObj is a simple but powerful config file reader and writer. + + https://files.pythonhosted.org/packages/source/c/configobj/configobj-5.0.6.tar.gz + + + python3-devel + python3-setuptools + + + + + python3-configobj + + python3 + + + /usr/lib + /usr/share/doc + + + + + + 2020-11-19 + 5.0.6 + First build. + fury + uglyside@yandex.ru + + + + diff --git a/programming/language/python3/python3-configobj/translations.xml b/programming/language/python3/python3-configobj/translations.xml new file mode 100644 index 0000000000..93e34fa28b --- /dev/null +++ b/programming/language/python3/python3-configobj/translations.xml @@ -0,0 +1,8 @@ + + + + python3-configobj + Ayar(ini) dosyalarını okuyup yazabilen python modülü + python3-configobj, basit ama güçlü bir ayar dosyaları okuyup yazabilen bir python modülüdür. + +