docbook2x:bağımlılıkları
This commit is contained in:
@@ -11765,6 +11765,57 @@
|
|||||||
</Update>
|
</Update>
|
||||||
</History>
|
</History>
|
||||||
</SpecFile>
|
</SpecFile>
|
||||||
|
<SpecFile>
|
||||||
|
<Source>
|
||||||
|
<Name>perl-XML-SAX</Name>
|
||||||
|
<Homepage>http://search.cpan.org/dist/XML-SAX/</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>Artistic</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<PartOf>programming.language.perl</PartOf>
|
||||||
|
<Summary xml:lang="en">Perl module for using and building Perl SAX2 XML parsers, filters, and drivers</Summary>
|
||||||
|
<Summary xml:lang="tr">Perl SAX2 XML ayıklacı, süzgeç ve sürücülerini kullanmak ve inşa etmek için gerekli Perl modülü</Summary>
|
||||||
|
<Description xml:lang="en">This module consists of several framework classes for using and building Perl SAX2 XML parsers, filters, and drivers.</Description>
|
||||||
|
<Description xml:lang="es">El módulo consiste de varias clases de framework para usar y construir (build) parsers, filtros y controladores SAX2 XML</Description>
|
||||||
|
<Archive type="targz" sha1sum="9685c417627d75ae18ab0be3b1562608ee093d5c">http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/XML-SAX-0.99.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>perl</Dependency>
|
||||||
|
<Dependency>libxml2-devel</Dependency>
|
||||||
|
<Dependency>Perl-XML-SAX-BASE</Dependency>
|
||||||
|
<Dependency>perl-XML-NamespaceSupport</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<SourceURI>programming/language/perl/perl-XML-SAX/pspec.xml</SourceURI>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>perl-XML-SAX</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>perl</Dependency>
|
||||||
|
<Dependency>libxml2</Dependency>
|
||||||
|
<Dependency>Perl-XML-SAX-BASE</Dependency>
|
||||||
|
<Dependency>perl-XML-NamespaceSupport</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="man">/usr/share/man</Path>
|
||||||
|
</Files>
|
||||||
|
<Provides>
|
||||||
|
<COMAR script="package.py">System.Package</COMAR>
|
||||||
|
</Provides>
|
||||||
|
</Package>
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2017-12-12</Date>
|
||||||
|
<Version>0.99</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</SpecFile>
|
||||||
<SpecFile>
|
<SpecFile>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>perl-Text-ParseWords</Name>
|
<Name>perl-Text-ParseWords</Name>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
7edef90337ee93d536d7a5191b7b24e54279cd12
|
10d5cd43e26a57d280ebdcd3568ef93e4680cc19
|
||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
b8f7dcc53be8f540eb1c6bac839791908c58c823
|
7b4b72bfcf3555034fc3ca18b5ae7d4642690a8a
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
#!/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 shelltools
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
WorkDir = "%s-%s" % (get.srcNAME()[5:], get.srcVERSION())
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
perlmodules.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
perlmodules.make()
|
||||||
|
|
||||||
|
def check():
|
||||||
|
perlmodules.make("test")
|
||||||
|
|
||||||
|
def install():
|
||||||
|
# pure_install avoids touching system's ParserDetails.ini
|
||||||
|
# This ini file gets generated/updated on post/preInstall
|
||||||
|
perlmodules.install("pure_install")
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
# FIXME: Bump this version when needed
|
||||||
|
perlVersion = "5.12.2"
|
||||||
|
vendor_lib_path = "/usr/lib/perl5/vendor_perl/%s" % perlVersion
|
||||||
|
|
||||||
|
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||||
|
# Register XML::SAX::PurePerl
|
||||||
|
os.system("/usr/bin/perl -MXML::SAX -e 'XML::SAX->add_parser(q(XML::SAX::PurePerl))->save_parsers()' 2>/dev/null")
|
||||||
|
|
||||||
|
def preRemove():
|
||||||
|
# Unregister XML::SAX::PurePerl
|
||||||
|
os.system("/usr/bin/perl -MXML::SAX -e 'XML::SAX->remove_parser(q(XML::SAX::PurePerl))->save_parsers()'")
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>perl-XML-SAX</Name>
|
||||||
|
<Homepage>http://search.cpan.org/dist/XML-SAX/</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>Artistic</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Perl module for using and building Perl SAX2 XML parsers, filters, and drivers</Summary>
|
||||||
|
<Description>This module consists of several framework classes for using and building Perl SAX2 XML parsers, filters, and drivers.</Description>
|
||||||
|
<Archive sha1sum="9685c417627d75ae18ab0be3b1562608ee093d5c" type="targz">http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/XML-SAX-0.99.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>perl</Dependency>
|
||||||
|
<Dependency>libxml2-devel</Dependency>
|
||||||
|
<Dependency>Perl-XML-SAX-BASE</Dependency>
|
||||||
|
<Dependency>perl-XML-NamespaceSupport</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>perl-XML-SAX</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>perl</Dependency>
|
||||||
|
<Dependency>libxml2</Dependency>
|
||||||
|
<Dependency>Perl-XML-SAX-BASE</Dependency>
|
||||||
|
<Dependency>perl-XML-NamespaceSupport</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="man">/usr/share/man</Path>
|
||||||
|
</Files>
|
||||||
|
<Provides>
|
||||||
|
<!-- FIXME: Update perl version in package.py when Perl version changes! -->
|
||||||
|
<COMAR script="package.py">System.Package</COMAR>
|
||||||
|
</Provides>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2017-12-12</Date>
|
||||||
|
<Version>0.99</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>perl-XML-SAX</Name>
|
||||||
|
<Summary xml:lang="tr">Perl SAX2 XML ayıklacı, süzgeç ve sürücülerini kullanmak ve inşa etmek için gerekli Perl modülü</Summary>
|
||||||
|
<Description xml:lang="es">El módulo consiste de varias clases de framework para usar y construir (build) parsers, filtros y controladores SAX2 XML</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user