moved into main repo for pisi 2.0
This commit is contained in:
@@ -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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
#WorkDir="ruby-%s" % get.srcVERSION().replace("_","-")
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-shared \
|
||||
--enable-pthread \
|
||||
--disable-rpath \
|
||||
--with-sitedir=/usr/lib/ruby/site_ruby")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s install-doc" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING*", "ChangeLog", "README*")
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>programming.language.ruby</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ruby</Name>
|
||||
<Homepage>http://www.ruby-lang.org/en/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Ruby</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>An object-oriented scripting language</Summary>
|
||||
<Description>Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.</Description>
|
||||
<Archive sha1sum="de97ec6132ac76bb7c0f92b5ca4682138093af1b" type="tarbz2">ftp://ftp.ruby-lang.org/pub/ruby/2.2/ruby-2.2.2.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>tcltk-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ruby</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>db</Dependency>
|
||||
<Dependency>gmp</Dependency>
|
||||
<Dependency>tcl</Dependency>
|
||||
<Dependency>gdbm</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>tcltk</Dependency>
|
||||
<Dependency>libffi</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>readline</Dependency>
|
||||
<Dependency>libyaml</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/ruby/2.2.0/</Path>
|
||||
<Path fileType="library">/usr/lib/ruby/site_ruby/</Path>
|
||||
<Path fileType="library">/usr/lib/ruby/vendor_ruby/</Path>
|
||||
<Path fileType="library">/usr/lib/ruby/libruby-static.a</Path>
|
||||
<Path fileType="library">/usr/lib/libruby.so.2.2</Path>
|
||||
<Path fileType="library">/usr/lib/libruby.so.2.2.0</Path>
|
||||
<Path fileType="library">/usr/lib/libruby-static.a</Path>
|
||||
<Path fileType="library">/usr/lib/libruby.so</Path>
|
||||
<Path fileType="doc">/usr/share/ri</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>rubygems</Name>
|
||||
<Summary>rubygems, The Ruby standard for packaging ruby libraries</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>ruby</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/gem</Path>
|
||||
<Path fileType="library">/usr/lib/ruby/gems</Path>
|
||||
<Path fileType="data">/usr/share/ri/2.2.0/system/Gem</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ruby-devel</Name>
|
||||
<Summary>ruby için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">ruby</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="header">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2015-04-18</Date>
|
||||
<Version>2.2.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2015-04-09</Date>
|
||||
<Version>2.2.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-24</Date>
|
||||
<Version>2.1.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-03-04</Date>
|
||||
<Version>2.0.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2" type="security">
|
||||
<Date>2013-05-28</Date>
|
||||
<Version>2.0.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1" type="security">
|
||||
<Date>2012-10-07</Date>
|
||||
<Version>1.9.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ruby</Name>
|
||||
<Summary xml:lang="tr">Nesneye dayalı bir dil</Summary>
|
||||
<Description xml:lang="tr">Ruby, basitlik ve üretkenliğe odaklanan açık kaynaklı, dinamik bir betik dilidir. Okuması ve yazması kolay, şık bir sözdizime sahiptir.</Description>
|
||||
<Description xml:lang="fr">Ruby est un langage de programmation dynamique, open source mettant l'accent sur la simplicité et la productivité. Il a une syntaxe élégante qui est naturelle à lire et facile à écrire.</Description>
|
||||
<Description xml:lang="es">Ruby es un lenguaje dinámico, de código abierto, y con enfoque en simplicidad y productividad. Tiene una sintaxis elegante que permite leer naturalmente y escribirlo de manera fácil.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ruby-devel</Name>
|
||||
<Summary xml:lang="tr">ruby için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user