Merge pull request #366 from poyraz76/master

bazı paketler
This commit is contained in:
Ertuğrul Erata
2015-09-05 17:40:04 +03:00
11 changed files with 292 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/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
def build():
autotools.make()
def install():
pisitools.dobin("cgdisk")
pisitools.dobin("fixparts")
pisitools.dobin("gdisk")
pisitools.dobin("sgdisk")
pisitools.doman("cgdisk.8")
pisitools.doman("fixparts.8")
pisitools.doman("gdisk.8")
pisitools.doman("sgdisk.8")
pisitools.dodoc("COPYING", "NEWS", "README")
+47
View File
@@ -0,0 +1,47 @@
<PISI>
<Source>
<Name>gptfdisk</Name>
<Homepage>http://www.rodsbooks.com/gdisk/</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<Summary>A text-mode partitioning tool that works on GUID Partition Table (GPT) disks</Summary>
<Description>A text-mode partitioning tool that works on GUID Partition Table (GPT) disks</Description>
<BuildDependencies>
<Dependency>util-linux</Dependency>
</BuildDependencies>
<Archive sha1sum="97f25db2def1c1939ed3954520bfd9948806d95a" type="targz">http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.0/gptfdisk-1.0.0.tar.gz</Archive>
</Source>
<Package>
<Name>gptfdisk</Name>
<RuntimeDependencies>
<Dependency>util-linux</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2015-05-01</Date>
<Version>1.0.0</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2014-03-04</Date>
<Version>0.8.10</Version>
<Comment>First Release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+7
View File
@@ -0,0 +1,7 @@
<PISI>
<Source>
<Name>gptfdisk</Name>
<Summary xml:lang="en">A text-mode partitioning tool that works on GUID Partition Table (GPT) disks</Summary>
<Description xml:lang="en">A text-mode partitioning tool that works on GUID Partition Table (GPT) disks</Description>
</Source>
</PISI>
+18
View File
@@ -0,0 +1,18 @@
#!/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 pisitools
from pisi.actionsapi import cmaketools
def setup():
cmaketools.configure()
def build():
cmaketools.make()
def install():
cmaketools.install()
+40
View File
@@ -0,0 +1,40 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>yaml-cpp</Name>
<Homepage>https://github.com/jbeder/yaml-cpp</Homepage>
<Packager>
<Name>Ergün Salman</Name>
<Email>Poyraz76@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<Icon>yalm-cpp</Icon>
<IsA>Libry</IsA>
<Summary>yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec.</Summary>
<Description>To get a feel for how it can be used, see the Tutorial or How to Emit YAML.</Description>
<Archive sha1sum="61edcbb18b106dfc240f151998e233c03bdbf9f3" type="targz">https://github.com/jbeder/yaml-cpp/archive/release-0.5.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>boost-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>yaml-cpp</Name>
<Files>
<Path fileType="library">/usr/lib/</Path>
<Path fileType="data">/usr/include/yaml-cpp/*</Path>
<Path fileType="data">/usr/lib/pkgconfig/</Path>
<Path fileType="doc">/usr/share/doc/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-09-01</Date>
<Version>0.5.2</Version>
<Comment>First release</Comment>
<Name>Ergün Salman</Name>
<Email>Poyraz76@pisilinux.org</Email>
</Update>
</History>
</PISI>
+25
View File
@@ -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 autotools
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def build():
shelltools.export("CFLAGS", "-Os")
autotools.make("all")
def install():
pisitools.dosed("Makefile","BINDIR := /usr/sbin","BINDIR := %s/usr/sbin" % get.installDIR())
shelltools.makedirs("%s/usr/sbin" % get.installDIR())
shelltools.makedirs("%s/usr/lib" % get.installDIR())
shelltools.makedirs("%s/usr/share/man" % get.installDIR())
shelltools.makedirs("%s/usr/include" % get.installDIR())
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.insinto("/usr/lib", "src/lib/*.o")
pisitools.insinto("/usr/share/man", "src/man/*")
pisitools.insinto("/usr/include", "src/include/*.h")
+48
View File
@@ -0,0 +1,48 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>efibootmgr</Name>
<Homepage>https://github.com/vathpela/efibootmgr</Homepage>
<Packager>
<Name>Aydın Demirel</Name>
<Email>aydin.demirel@pisilinux.org</Email>
</Packager>
<License>GPL2</License>
<IsA>app:console</IsA>
<Summary>Tool to modify UEFI Firmware Boot Manager Variables</Summary>
<Description>a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager.</Description>
<Archive sha1sum="1a4c2792d0f8f4db2b18882803a99132c7a4f3a3" type="targz">http://source.pisilinux.org/1.0/efibootmgr.tar.gz</Archive>
<BuildDependencies>
<Dependency>pciutils</Dependency>
<Dependency>zlib</Dependency>
<Dependency>efivar</Dependency>
<Dependency>efivar-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>efibootmgr</Name>
<Files>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="library">/usr/lib/*</Path>
</Files>
</Package>
<Package>
<Name>efibootmgr-devel</Name>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2014-09-27</Date>
<Version>0.7.0.16</Version>
<Comment>First release</Comment>
<Name>Aydın Demirel</Name>
<Email>aydin.demirel@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>efibootmgr</Name>
<Summary xml:lang="tr">UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç</Summary>
<Description xml:lang="tr">UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç</Description>
</Source>
</PISI>
+18
View File
@@ -0,0 +1,18 @@
#!/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 shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def build():
shelltools.export("CFLAGS", "-Os")
pisitools.dosed("Make.defaults","-O0","-Os")
autotools.make("libdir=/usr/lib bindir=/usr/bin")
def install():
autotools.rawInstall("DESTDIR=%s libdir=/usr/lib/" % get.installDIR())
+50
View File
@@ -0,0 +1,50 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>efivar</Name>
<Homepage>https://github.com/vathpela/efivar</Homepage>
<Packager>
<Name>Aydın Demirel</Name>
<Email>aydin.demirel@pisilinux.org</Email>
</Packager>
<License>LGPL2.1</License>
<IsA>app:console</IsA>
<Summary>Tools and library to manipulate EFI variables</Summary>
<Description>Tools and library to manipulate EFI variables.</Description>
<Archive sha1sum="db9553acd4ac3fc39ed2bb3078da17348646d8ea" type="tarbz2">https://github.com/rhinstaller/efivar/releases/download/0.15/efivar-0.15.tar.bz2</Archive>
</Source>
<Package>
<Name>efivar</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
</Package>
<Package>
<Name>efivar-devel</Name>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2015-02-21</Date>
<Version>0.15</Version>
<Comment>Version Bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2014-09-27</Date>
<Version>0.10.8</Version>
<Comment>First release</Comment>
<Name>Aydın Demirel</Name>
<Email>aydin.demirel@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>efivar</Name>
<Summary xml:lang="tr">EFI değişkenlerini işlemek için araçlar ve kütüphane</Summary>
<Description xml:lang="tr">EFI değişkenlerini işlemek için araçlar ve kütüphane</Description>
</Source>
</PISI>