Proje Gitea'ya taşındı (Temiz başlangıç)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# Created For PisiLinux
|
||||
|
||||
from pisi.actionsapi import shelltools, get, pisitools
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def install():
|
||||
shelltools.system("rpm2targz fpc-src-3.0.4-1.x86_64.rpm")
|
||||
shelltools.system("tar -zxvf fpc-src-3.0.4-1.x86_64.tar.gz")
|
||||
pisitools.insinto("/usr", "usr/share/")
|
||||
@@ -0,0 +1,37 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fpc-src</Name>
|
||||
<Homepage>https://www.freepascal.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>Fpc-src, pascal için derleyici</Summary>
|
||||
<Description>Fpc-src, pascal için derleyici</Description>
|
||||
<License>GPL</License>
|
||||
<IsA>data</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Archive sha1sum="215aeb42c07eee80a52f8cecd7aa23c11bcc79a1">https://datapacket.dl.sourceforge.net/project/lazarus/Lazarus%20Linux%20x86_64%20RPM/Lazarus%201.8.4/fpc-src-3.0.4-1.x86_64.rpm</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rpm2targz</Dependency>
|
||||
<Dependency>tar</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fpc-src</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/share/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-09-11</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# Created For PisiLinux
|
||||
|
||||
from pisi.actionsapi import shelltools, get, pisitools
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def install():
|
||||
shelltools.system("rpm2targz fpc-3.0.4-1.x86_64.rpm")
|
||||
shelltools.system("tar -zxvf fpc-3.0.4-1.x86_64.tar.gz")
|
||||
pisitools.insinto("/", "usr/")
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fpc</Name>
|
||||
<Homepage>https://www.freepascal.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>Fpc-src, pascal için derleyici</Summary>
|
||||
<Description>Fpc-src, pascal için derleyici</Description>
|
||||
<License>GPL</License>
|
||||
<IsA>data</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Archive sha1sum="e13de5eacd47fa2010ee65ca1ad84a782a942f2d">https://datapacket.dl.sourceforge.net/project/lazarus/Lazarus%20Linux%20x86_64%20RPM/Lazarus%201.8.4/fpc-3.0.4-1.x86_64.rpm</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rpm2targz</Dependency>
|
||||
<Dependency>tar</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fpc</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/bin/</Path>
|
||||
<Path fileType="data">/usr/share/</Path>
|
||||
<Path fileType="data">/usr/lib64/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-09-12</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env 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 shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
Version = get.srcVERSION()
|
||||
WorkDir = "."
|
||||
NoStrip = ["/"]
|
||||
|
||||
def setup():
|
||||
shelltools.system("pwd")
|
||||
#lazarus-project_4.6.0-0_amd64.deb
|
||||
shelltools.system("ar xf lazarus-project_4.6.0-0_amd64.deb")
|
||||
shelltools.system("tar xf data.tar.zst")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/etc", "./etc/*")
|
||||
pisitools.insinto("/usr", "./usr/*")
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lazarus</Name>
|
||||
<Homepage>https://www.lazarus-ide.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv1</License>
|
||||
<Icon>lazarus</Icon>
|
||||
<IsA>app</IsA>
|
||||
<Summary xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır.</Summary>
|
||||
<Description xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır. Pascal ve Object Pascal geliştiricileri için Rapid Application Development Delphi benzeri bir ortam sağlamayı amaçlar.</Description>
|
||||
<Archive sha1sum="093477601298d2f3ba76dbf8864ee5a6d3f44898" type="binary">
|
||||
https://sourceforge.net/projects/lazarus/files/Lazarus%20Linux%20amd64%20DEB/Lazarus%204.6/lazarus-project_4.6.0-0_amd64.deb
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lazarus</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fpc</Dependency>
|
||||
<Dependency>fpc-src</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>rsync</Dependency>
|
||||
</RuntimeDependencies>
|
||||
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
|
||||
<Update release="4">
|
||||
<Date>2026-03-11</Date>
|
||||
<Version>4.6</Version>
|
||||
<Comment>Update to 4.6</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2021-05-13</Date>
|
||||
<Version>2.0.12</Version>
|
||||
<Comment>Update ver and fix</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Update>
|
||||
|
||||
<Update release="2">
|
||||
<Date>2019-06-22</Date>
|
||||
<Version>2.0.2</Version>
|
||||
<Comment>update versiyon</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
|
||||
<Update release="1">
|
||||
<Date>2018-09-112</Date>
|
||||
<Version>1.8.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lazarus</Name>
|
||||
<Summary xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır.</Summary>
|
||||
<Description xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır. Pascal ve Object Pascal geliştiricileri için Rapid Application Development Delphi benzeri bir ortam sağlamayı amaçlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user