Proje Gitea'ya taşındı (Temiz başlangıç)
@@ -0,0 +1,2 @@
|
||||
.directory
|
||||
github-desktop/.fuse_hidden000002b300000005
|
||||
@@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
def install():
|
||||
pisitools.insinto("/usr", "./*")
|
||||
@@ -0,0 +1,14 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=Bitcoin
|
||||
GenericName=Bitcoin
|
||||
GenericName[tr]=Bitcoin
|
||||
Comment=Bitcoin E-Cüzdan
|
||||
Comment[tr]=Bitcoin E-Cüzdan
|
||||
Icon=bitcoin
|
||||
Exec=bitcoin-qt
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Network;
|
||||
|
After Width: | Height: | Size: 67 KiB |
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>bitcoin</Name>
|
||||
<Homepage>https://bitcoin.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami Babat</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<PartOf>network</PartOf>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Bitcoin, yaratıcı bir ödeme ağı ve yeni bir para birimidir.</Summary>
|
||||
<Description>Bitcoin eşler arası teknolojiyi kullanarak merkez otorite veya banka olmadan çalışır. İşlemlerin yönetimi ve bitcoinlerin dağıtımı toplu olarak ağ tarafından idare edilir. Bitcoin açık kaynaklıdır; tasarımı halka açıktır, kimse Bitcoin'e sahip değildir ve onu kontrol edemez, herkes katılabilir. Bitcoin kendine has birçok özelliği sayesinde diğer ödeme yollarıyla yapılamayacak çok farklı ödemelerin üstesinden gelebilir.</Description>
|
||||
<Icon>bitcoin</Icon>
|
||||
<Archive sha1sum="82245008a243950dd2cb87afb798264d9830fcc3" type="targz">https://bitcoin.org/bin/bitcoin-core-25.0/bitcoin-25.0-x86_64-linux-gnu.tar.gz</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>bitcoin</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/</Path>
|
||||
<Path fileType="icon">/usr/share/pixmaps</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/bitcoin.desktop" group="root" owner="root" permission="0744">bitcoin.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/pixmaps/bitcoin.ico" group="root" owner="root" permission="0744">bitcoin.ico</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Summary>Bitcoin, yaratıcı bir ödeme ağı ve yeni bir para birimidir.</Summary>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2024-01-30</Date>
|
||||
<Version>25.0</Version>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-07-18</Date>
|
||||
<Version>0.12.1</Version>
|
||||
<Comment>Bitcoin, yaratıcı bir ödeme ağı ve yeni bir para birimidir.</Comment>
|
||||
<Name>Sami Babat</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>bitcoin</Name>
|
||||
<Summary xml:lang="tr">Bitcoin, yaratıcı bir ödeme ağı ve yeni bir para birimidir.</Summary>
|
||||
<Description xml:lang="tr">Bitcoin eşler arası teknolojiyi kullanarak merkez otorite veya banka olmadan çalışır. İşlemlerin yönetimi ve bitcoinlerin dağıtımı toplu olarak ağ tarafından idare edilir. Bitcoin açık kaynaklıdır; tasarımı halka açıktır, kimse Bitcoin'e sahip değildir ve onu kontrol edemez, herkes katılabilir. Bitcoin kendine has birçok özelliği sayesinde diğer ödeme yollarıyla yapılamayacak çok farklı ödemelerin üstesinden gelebilir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,5 @@
|
||||
For the Atom Package you need as Dependency:
|
||||
|
||||
gconf and google-chrome
|
||||
|
||||
you found gconf package at the main Repo you can and here in pisilife-2 google-chrome package
|
||||
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from pisi.actionsapi import get, pisitools, shelltools
|
||||
|
||||
NoStrip = ["/usr"]
|
||||
IgnoreAutodep = True
|
||||
|
||||
def setup():
|
||||
shelltools.system("pwd")
|
||||
shelltools.system("ar xf atom-amd64.deb")
|
||||
shelltools.system("tar xf data.tar.xz")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/", "usr")
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Name=Atom
|
||||
Comment=A hackable text editor for the 21st Century.
|
||||
GenericName=Text Editor
|
||||
Exec=/opt/atom/atom %U
|
||||
Icon=atom
|
||||
Type=Application
|
||||
StartupNotify=true
|
||||
Categories=TextEditor;Development;
|
||||
MimeType=text/plain;
|
||||
|
After Width: | Height: | Size: 629 KiB |
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>atom</Name>
|
||||
<Homepage>https://atom.io/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>applications.development</PartOf>
|
||||
<Summary>A hackable text editor.</Summary>
|
||||
<Description>Atom is a text editor that's modern, approachable, yet hackable to the core—a tool you can customize to do anything but also use productively without ever touching a config file.</Description>
|
||||
<Archive sha1sum="5c79f3615a9cab68b232618a5ed753c9efbe5426" type="binary">https://github.com/atom/atom/releases/download/v1.60.0/atom-amd64.deb</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>atom</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
<Dependency>gtk4</Dependency>
|
||||
<Dependency>libnotify</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>kde-cli-tools</Dependency>
|
||||
<Dependency>xdg-utils</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>libXScrnSaver</Dependency>
|
||||
<Dependency>libXtst</Dependency>
|
||||
<Dependency>libxkbfile</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="all">/usr</Path>
|
||||
</Files>
|
||||
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2024-01-16</Date>
|
||||
<Version>1.60.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2021-07-16</Date>
|
||||
<Version>1.57.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2021-04-01</Date>
|
||||
<Version>1.55.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2019-07-12</Date>
|
||||
<Version>1.38.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2018-02-19</Date>
|
||||
<Version>1.24.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2017-02-20</Date>
|
||||
<Version>1.14.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-05-06</Date>
|
||||
<Version>1.8.0_beta3</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/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 pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.dodoc("COPYING.txt", "NEWS", "README")
|
||||
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>bzr</Name>
|
||||
<Homepage>http://bazaar.canonical.com/en/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami Babat</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Bazaar is a version control system that helps you track project history over time and to collaborate easily with others</Summary>
|
||||
<Description>Whether you're a single developer, a co-located team or a community of developers scattered across the world, Bazaar scales and adapts to meet your needs.</Description>
|
||||
<Archive sha1sum="872f6088f8b07558519dbbc88fffa05e37602f52" type="targz">https://launchpad.net/bzr/2.7/2.7.0/+download/bzr-2.7.0.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>bzr</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-08-03</Date>
|
||||
<Version>2.7.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Sami Babat</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>bzr</Name>
|
||||
<Summary xml:lang="tr">Dağıtık ve İstemci-sunucu revizyon kontrol sistemi</Summary>
|
||||
<Description xml:lang="tr">Dağıtık ve İstemci-sunucu revizyon kontrol sistemi Projelerinizi yönetebileceğiniz bir havuz sistemi.</Description>
|
||||
<Summary xml:lang="en">Distributed and Client–server revision control system</Summary>
|
||||
<Description xml:lang="en">Bazaar can be used by a single developer working on multiple branches of local content, or by teams collaborating across a network</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
pisitools.flags.add("-fPIC")
|
||||
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
||||
-DBUILD_EXTRAS=ON")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>bullet</Name>
|
||||
<Homepage>http://bulletphysics.org/wordpress/</Homepage>
|
||||
<Packager>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Zlib</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Professional 3D collision detection library</Summary>
|
||||
<Description>Bullet is a professional open source multi-threaded 3D Collision Detection and Rigid Body Dynamics Library for games and animation.</Description>
|
||||
<Archive sha1sum="c69710a1f756b9c5bc3f0580e6e67ab0313d6c03" type="targz">https://github.com/bulletphysics/bullet3/archive/3.08.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>ninja</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>python-numpy</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>dejavu-fonts</Dependency>
|
||||
<Dependency>freeglut-devel</Dependency>
|
||||
<!-- Dependency>graphviz-devel</Dependency -->
|
||||
<Dependency>perl-template-toolkit</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>bullet</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>bullet-devel</Name>
|
||||
<Summary>Development files for bullet</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">bullet</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/bullet.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2020-01-08</Date>
|
||||
<Version>3.08</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2018-12-31</Date>
|
||||
<Version>2.82_2704</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>bullet</Name>
|
||||
<Summary xml:lang="tr">Profesyonel 3D çarpma tespiti kütüphane</Summary>
|
||||
<Description xml:lang="tr">Bullet, oyun ve animasyon için profesyonel bir açık kaynak kodlu çoklu iş parçacıklı 3D çarpma tespiti ve Katı Cisim Dinamiği Kütüphanesidir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/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 pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
shelltools.export("XDG_DATA_HOME", get.workDIR())
|
||||
shelltools.export("XDG_CONFIG_HOME", get.workDIR())
|
||||
shelltools.export("XDG_DATA_DIRS", get.workDIR())
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
[Desktop Entry]
|
||||
Name=CherryTree
|
||||
Comment=Hierarchical Note Taking
|
||||
Comment[cs]=Hierarchická tvorba poznámek
|
||||
Comment[de]=Hierarchische Notizfunktion
|
||||
Comment[es]=Gestor de notas jerárquico
|
||||
Comment[fr]=Prise de Notes Hiérarchisées
|
||||
Comment[gl]=Xestor de notas xerárquico
|
||||
Comment[it]=Gestore di Appunti Gerarchico
|
||||
Comment[pl]=Strukturalny Notes
|
||||
Comment[ru]=Записная книжка с иерархической структурой
|
||||
Comment[uk]=Записник з ієрархічною структурою
|
||||
Comment[zh_CN]=分层笔记
|
||||
Exec=cherrytree %f
|
||||
Icon=cherrytree
|
||||
MimeType=application/cherrytree-ctd;application/cherrytree-ctz;application/cherrytree-ctb;application/cherrytree-ctx;
|
||||
Terminal=false
|
||||
Type=Application
|
||||
StartupNotify=true
|
||||
Categories=GNOME;GTK;Utility;
|
||||
Keywords=editor;notes;note-taking;
|
||||
|
After Width: | Height: | Size: 9.2 KiB |
@@ -0,0 +1,95 @@
|
||||
diff -r 7c0c3c912f80 modules/pgsc_spellcheck.py
|
||||
--- a/modules/pgsc_spellcheck.py Mon May 26 23:18:46 2014 +0200
|
||||
+++ b/modules/pgsc_spellcheck.py Tue May 27 12:03:10 2014 -0400
|
||||
@@ -42,6 +42,40 @@
|
||||
# public objects
|
||||
__all__ = ['SpellChecker', 'NoDictionariesFound', 'NoGtkBindingFound']
|
||||
|
||||
+# apostrophe workaround from gtkspell3
|
||||
+def gtk_spell_forward_word_end(i):
|
||||
+
|
||||
+ # heuristic:
|
||||
+ # if we're on an singlequote/apostrophe and
|
||||
+ # if the next letter is alphanumeric,
|
||||
+ # this is an apostrophe (either single quote, or U+2019 = 8217.
|
||||
+
|
||||
+ if not i.forward_word_end():
|
||||
+ return False
|
||||
+
|
||||
+ if i.get_char() != '\'' and \
|
||||
+ i.get_char() != 8217:
|
||||
+ return True
|
||||
+
|
||||
+ it = i.copy()
|
||||
+ if it.forward_char() and \
|
||||
+ it.get_char().isalpha():
|
||||
+ return i.forward_word_end()
|
||||
+
|
||||
+ return True
|
||||
+
|
||||
+def gtk_spell_backward_word_start(i):
|
||||
+ if not i.backward_word_start():
|
||||
+ return False
|
||||
+
|
||||
+ it = i.copy()
|
||||
+ if it.get_char().isalpha() and \
|
||||
+ it.backward_char() and \
|
||||
+ (it.get_char() == '\'' or \
|
||||
+ it.get_char() == 8217):
|
||||
+ return i.backward_word_start()
|
||||
+
|
||||
+ return True
|
||||
|
||||
class NoDictionariesFound(Exception):
|
||||
"""
|
||||
@@ -132,10 +166,10 @@
|
||||
def word(self):
|
||||
start = self.iter
|
||||
if not start.starts_word():
|
||||
- start.backward_word_start()
|
||||
+ gtk_spell_backward_word_start(start)
|
||||
end = self.iter
|
||||
if end.inside_word():
|
||||
- end.forward_word_end()
|
||||
+ gtk_spell_forward_word_end(end)
|
||||
return start, end
|
||||
|
||||
def move(self, location):
|
||||
@@ -361,21 +395,21 @@
|
||||
return
|
||||
if start.equal(end):
|
||||
return
|
||||
- if end.inside_word(): end.forward_word_end()
|
||||
+ if end.inside_word(): gtk_spell_forward_word_end(end)
|
||||
if not start.starts_word() and (start.inside_word() or start.ends_word()):
|
||||
- start.backward_word_start()
|
||||
+ gtk_spell_backward_word_start(start)
|
||||
self._buffer.remove_tag(self._misspelled, start, end)
|
||||
cursor = self._buffer.get_iter_at_mark(self._buffer.get_insert())
|
||||
precursor = cursor.copy()
|
||||
precursor.backward_char()
|
||||
highlight = (cursor.has_tag(self._misspelled) or precursor.has_tag(self._misspelled))
|
||||
if not start.get_offset():
|
||||
- start.forward_word_end()
|
||||
- start.backward_word_start()
|
||||
+ gtk_spell_forward_word_end(start)
|
||||
+ gtk_spell_backward_word_start(start)
|
||||
word_start = start.copy()
|
||||
while word_start.compare(end) < 0:
|
||||
word_end = word_start.copy()
|
||||
- word_end.forward_word_end()
|
||||
+ gtk_spell_forward_word_end(word_end)
|
||||
in_word = ((word_start.compare(cursor) < 0) and
|
||||
(cursor.compare(word_end) <= 0))
|
||||
if in_word and not force_all:
|
||||
@@ -386,8 +420,8 @@
|
||||
else:
|
||||
self._check_word(word_start, word_end)
|
||||
self._deferred_check = False
|
||||
- word_end.forward_word_end()
|
||||
- word_end.backward_word_start()
|
||||
+ gtk_spell_forward_word_end(word_end)
|
||||
+ gtk_spell_backward_word_start(word_end)
|
||||
if word_start.equal(word_end):
|
||||
break
|
||||
word_start = word_end.copy()
|
||||
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cherrytree</Name>
|
||||
<Homepage>https://www.giuspen.com/cherrytree/</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3+</License>
|
||||
<PartOf>office</PartOf>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Cherrytree A hierarchical note taking application</Summary>
|
||||
<Description>A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file.</Description>
|
||||
<Archive sha1sum="bc81ae2f6c6566639c5906b3754bf97c6c16b4d4" type="tarxz">http://www.giuspen.com/software/cherrytree-0.38.4.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>desktop-file-utils</Dependency>
|
||||
</BuildDependencies>
|
||||
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>cherrytree</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>desktop-file-utils</Dependency>
|
||||
<Dependency>p7zip</Dependency>
|
||||
<Dependency>python-enchant</Dependency>
|
||||
<Dependency>python-gtk</Dependency>
|
||||
<Dependency>python-gtksourceview</Dependency>
|
||||
<Dependency>python-pygobject</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/python2.7</Path>
|
||||
<Path fileType="data">/usr/share/cherrytree</Path>
|
||||
<Path fileType="data">/usr/share/mime</Path>
|
||||
<Path fileType="data">/usr/share/mime-info</Path>
|
||||
<Path fileType="data">/usr/share/appdata</Path>
|
||||
<Path fileType="data">/usr/share/application-registry</Path>
|
||||
<Path fileType="icons">/usr/share/icons/hicolor/scalable/apps</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/cherrytree/cherrytree.desktop" permission="0644" group="root" owner="root">cherrytree.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/cherrytree/cherrytree.sclipgrab.provg" permission="0644" group="root" owner="root">cherrytree.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2018-02-21</Date>
|
||||
<Version>0.38.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-06-11</Date>
|
||||
<Version>0.37.6</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,33 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cherrytree</Name>
|
||||
<Summary xml:lang="tr">Uygulama alarak hiyerarşik not</Summary>
|
||||
<Description xml:lang="tr">Özellikler :
|
||||
|
||||
- Zengin metin ( ön plan rengi , arka plan rengi , kalın , italik , üstü çizili , altı çizili , küçük , h1 , h2 , h3, simge , üst simge , monospace )
|
||||
- Sözdizimi (zengin metingeçerli düğüm devre dışı olduğunda ) vurgulama
|
||||
- Taşıma görüntüler : eklememetin , edit ( döndürmek / yeniden boyutlandırma ) , png dosyayı kaydedin
|
||||
- Taşıma listeleri ( madde işaretli , numaralı , yapılacaklar aralarında ve anahtarı , vardiya ile çok satırlı + enter )
|
||||
- (Düz metin olan hücreler ) işleme basit tablolar , kes / kopyala / yapıştır sıra , ithalat / ihracat csv dosyası olarak
|
||||
- Taşıma codeboxes : otomatik kutuları normal bir zengin metin metin vurgulanır
|
||||
- Metin, resim , tablo ve codeboxes hizalama ( sol / merkez / sağ)
|
||||
- Köprüler ( web sayfalarına bağlantılar , bağlantılar düğümler / düğümleri + çapalar , dosyalara bağlantılar , klasörlere bağlantılar )
|
||||
- Yazım denetimi ( pygtkspellcheck ve pyenchant kullanarak)
|
||||
- Içi uygulama copy / paste : Tek görüntü , tek codeboxes , tek tablolar ve zengin metin , görüntü , codeboxes ve tablolar bir bileşik seçim desteklenen
|
||||
- Çapraz başvuru copy / paste ( OpenOffice ve gmail ile test ) : Tek görüntü, tek codeboxes , tek tablolar ve zengin metin , görüntü , codeboxes ve tablolar bir bileşik seçim desteklenen
|
||||
-Dosya yöneticisi ve cherrytree yapıştırarak dosyaların bir listesini kopyalama dosyaların bağlantıları bir liste oluşturmak , görüntülerimetin tanınan ve eklenen
|
||||
- Seçim / düğüm / düğüm ve alt düğümler pdf dosyası olarak baskı ve kaydetmek /tüm ağaç
|
||||
- Seçim / düğüm / düğüm ve alt düğümler html ihracat /tüm ağaç
|
||||
- Seçim / düğüm / düğüm ve alt düğümler düz metin ihracat /tüm ağaç
|
||||
- Başlıkları H1, H2 ve H3 dayalı bir düğüm / düğüm ve alt düğümler / bütün ağaç için TOC üretimi
|
||||
- Tüm düğümler bulmak , geçerli düğüm bulmak , bir düğümü bulmak
|
||||
- , Düğüm adları yerine geçerli düğüm yerine , tüm düğümleri değiştirin
|
||||
- En sonen son bulmak , yineleme yineleme , yerineson uygulamalı metin biçimlendirme yineleme
|
||||
- Sepet ithalat , Cherrytree , gnote , KeepNote , açış , biliyordun , MemPad , notecase , fatma treepad lite , TuxCards , Zim
|
||||
- Seçim / düğüm / düğüm ve alt düğümler /bütün ağacın dosyayı Cherrytree ihracat
|
||||
- ( Http://www.7-zip.org/ kullanarak) şifre koruması
|
||||
- Ağaç düğümleri sürükle ve bırak</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
|
||||
<!-- By PiSiDo 2.0.0 -->
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env 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 get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
NoStrip = ["/usr"]
|
||||
IgnoreAutodep = True
|
||||
|
||||
Version = get.srcVERSION()
|
||||
|
||||
def setup():
|
||||
shelltools.system("pwd")
|
||||
shelltools.system("ar xf discount_2.2.3b8-2_amd64.deb")
|
||||
shelltools.system("tar -xf data.tar.xz")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/", "usr")
|
||||
pisitools.remove("/usr/share/doc/discount/changelog.Debian.gz")
|
||||
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>discount</Name>
|
||||
<Homepage>https://github.com/Orc/discount</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A Markdown implementation written in C</Summary>
|
||||
<Description>implementation of the Markdown markup language in C</Description>
|
||||
<Archive sha1sum="3b32a196e7f192955715865be4e998b195a9092d" type="binary">https://launchpad.net/ubuntu/+archive/primary/+files/discount_2.2.3b8-2_amd64.deb</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>discount</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2018-03-12</Date>
|
||||
<Version>2.2.3</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-07-19</Date>
|
||||
<Version>2.1.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>discount</Name>
|
||||
<Summary xml:lang="tr">A Markdown implementation written in C</Summary>
|
||||
<Description xml:lang="tr">implementation of the Markdown markup language in C</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/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 get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def setup():
|
||||
shelltools.system("rpm2targz -v %s/download-linux-fedora" %get.workDIR())
|
||||
shelltools.system("tar xfvz %s/download-linux-fedora.tar.gz" %get.workDIR())
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/", "./opt/*")
|
||||
pisitools.insinto("/var/", "./var/*")
|
||||
|
||||
pisitools.dohtml("%s/opt/dassault-systemes/DraftSight/Eula/english/*.htm" %get.workDIR())
|
||||
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd /opt/dassault-systemes/DraftSight/Linux/
|
||||
|
||||
./DraftSight &
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=DraftSight
|
||||
Comment=Editing CAD images
|
||||
Comment[tr]=CAD dosyaları düzenleyicisi
|
||||
GenericName=DraftSight
|
||||
Exec=draftsight
|
||||
Type=Application
|
||||
Terminal=false
|
||||
Icon=draftsight.png
|
||||
StartupNotify=false
|
||||
|
||||
MimeType=image/vnd.dwg;application/vnd.dassault-systemes.draftsight-dwg;image/vnd.dxf;application/vnd.dassault-systemes.draftsight-dxf;image/vnd.dwt;application/vnd.dassault-systemes.draftsight-dwt;
|
||||
Categories=Application;Graphics;2DGraphics;RasterGraphics;
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,107 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>draftsight</Name>
|
||||
<Homepage>http://www.3ds.com/products-services/draftsight</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>AS IS</License>
|
||||
<License>EULA</License>
|
||||
<Icon>draftsight</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>DraftSight® - Free CAD software for your DWG files</Summary>
|
||||
<Description>DraftSight lets professional CAD users, students and educators create, edit and view DWG files.</Description>
|
||||
<Archive sha1sum="fda51c49fccad809a2407e8e376d814444e2be62" type="binary">http://www.draftsight.com/download-linux-fedora</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rpm2targz</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>draftsight</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>orc</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>libmng</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libXt-32bit</Dependency>
|
||||
<Dependency>cups</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libSM</Dependency>
|
||||
<Dependency>libXi</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>jasper</Dependency>
|
||||
<Dependency>libICE</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>calibre</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
<Dependency>mariadb-lib</Dependency>
|
||||
<Dependency>libXau-32bit</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libutil-linux</Dependency>
|
||||
<Dependency>postgresql-lib</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
</RuntimeDependencies>
|
||||
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/draftsight.bin</Path>
|
||||
<Path fileType="executable">/usr/bin/draftsight</Path>
|
||||
<Path fileType="doc">/usr/share/doc/</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps/</Path>
|
||||
<Path fileType="data">/usr/share/applications/</Path>
|
||||
<Path fileType="data">/opt/dassault-systemes/</Path>
|
||||
<Path fileType="data">/var/opt/dassault-systemes/</Path>
|
||||
</Files>
|
||||
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/draftsight.desktop">draftsight.desktop</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0755" target="/usr/bin/draftsight">draftsight</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/opt/dassault-systemes/DraftSight/Libraries/libaudio.so.2">libaudio.so.2</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/draftsight.png">draftsight.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2016-12-13</Date>
|
||||
<Version>7.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2016-03-31</Date>
|
||||
<Version>6.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-10-17</Date>
|
||||
<Version>6.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-04-01</Date>
|
||||
<Version>5.1</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>draftsight</Name>
|
||||
<Summary xml:lang="tr">DraftSight ® - DWG dosyaları için CAD yazılımı.</Summary>
|
||||
<Description xml:lang="tr">DraftSight profesyonel CAD kullanıcılarının, öğrencilerin ve eğitimcilerin DWG dosyalarını oluşturmasını, düzenlemesini ve görüntülemesini sağlar.</Description>
|
||||
<Summary xml:lang="es">DraftSight®: Programa CAD gratuito* de nivel profesional.</Summary>
|
||||
<Description xml:lang="es">Con DraftSight, los usuarios CAD profesionales, estudiantes y educadores pueden crear, editar y visualizar ficheros DWG.</Description>
|
||||
<Summary xml:lang="de">DraftSight®: Kostenlose Profi-CAD-Software.</Summary>
|
||||
<Description xml:lang="de">Mit DraftSight können professionelle CAD-Anwender, Studenten und Ausbilder DWG-Dateien erstellen, bearbeiten und ansehen.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -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 pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import qt5
|
||||
|
||||
WorkDir = "EasyPaint-0.1.1/sources"
|
||||
|
||||
def setup():
|
||||
#shelltools.cd("EasyPaint-0.1.1/sources")
|
||||
#shelltools.system("lupdate easypaint.pro")
|
||||
#shelltools.system("lrelease easypaint.pro")
|
||||
qt5.configure("easypaint.pro")
|
||||
|
||||
def build():
|
||||
qt5.make()
|
||||
|
||||
def install():
|
||||
qt5.install()
|
||||
|
||||
#pisitools.dodoc("AUTHORS", "THANKS", "COPYING", "README.md")
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>easypaint</Name>
|
||||
<Homepage>http://qt-apps.org/content/show.php/EasyPaint?content=140877</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>EasyPaint is a simple graphics painting program</Summary>
|
||||
<Description>EasyPaint is a part of Razor-qt</Description>
|
||||
<Archive sha1sum="e59aeaf3c9776071c0750b130eafe196d2bee555" type="targz">https://github.com/Gr1N/EasyPaint/archive/v0.1.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>easypaint</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-04-01</Date>
|
||||
<Version>0.1.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>easypaint</Name>
|
||||
<Summary xml:lang="tr">EasyPaint is a simple graphics painting program</Summary>
|
||||
<Description xml:lang="tr">EasyPaint is a part of Razor-qt</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -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 get, pisitools, shelltools
|
||||
|
||||
NoStrip = ["/usr"]
|
||||
|
||||
|
||||
def setup():
|
||||
shelltools.system("ar xf skypeforlinux_%s_amd64.deb" % get.srcVERSION())
|
||||
shelltools.system("tar xf data.tar.gz")
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/", "usr")
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
https://search.apps.ubuntu.com/api/v1/package/skype ile gelen xml içinden linki alıp unsquefs ile açıp ayıklamak gerek
|
||||
|
||||
@@ -0,0 +1,221 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>skypeforlinux</Name>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary>Skype keeps the world talking, for free.</Summary>
|
||||
<Description>Skype keeps you together. Call, message and share with others.</Description>
|
||||
<License>Copyright (c) 2016 Skype and/or Microsoft</License>
|
||||
<Archive sha1sum="7c9eb254fe30ba627cb7f8e57667b5d31c740c9b" type="binary">https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_8.110.76.107_amd64.deb</Archive>
|
||||
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>skypeforlinux</Name>
|
||||
<Icon>skypeforlinux</Icon>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gconf</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>cups</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libXi</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXtst</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXcursor</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libXScrnSaver</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libgnome-keyring</Dependency>
|
||||
<Dependency>libxkbfile</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>libsecret</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/share/skypeforlinux</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="20">
|
||||
<Date>2023-12-15</Date>
|
||||
<Version>8.110.76.107</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan Işık</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="19">
|
||||
<Date>2022-12-12</Date>
|
||||
<Version>8.92.76.301</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan Işık</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="18">
|
||||
<Date>2021-08-28</Date>
|
||||
<Version>8.76.76.70</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan Işık</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="17">
|
||||
<Date>2020-09-07</Date>
|
||||
<Version>8.64.76.47</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safaariman@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="16">
|
||||
<Date>2020-07-06</Date>
|
||||
<Version>8.62.76.62</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safaariman@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2020-04-10</Date>
|
||||
<Version>8.59.76.47</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safa@ariman.gen.tr</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2020-01-23</Date>
|
||||
<Version>8.56.76.101</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safa@ariman.gen.tr</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2019-12-31</Date>
|
||||
<Version>8.56.76.35</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safa@ariman.gen.tr</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2019-10-14</Date>
|
||||
<Version>8.53.76.83</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safa@ariman.gen.tr</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2019-09-29</Date>
|
||||
<Version>8.53.76.74</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2018-12-03</Date>
|
||||
<Version>8.34.0.78</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ali Cengiz Kurt(alick01)</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2018-08-02</Date>
|
||||
<Version>8.33.76.26</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2018-08-02</Date>
|
||||
<Version>8.27.76</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2018-05-22</Date>
|
||||
<Version>8.22.0.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2018-02-15</Date>
|
||||
<Version>8.16.76</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2018-01-06</Date>
|
||||
<Version>8.13.76.8</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ali Cengiz Kurt(alick01)</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2017-07-25</Date>
|
||||
<Version>5.4.0.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-01-17</Date>
|
||||
<Version>1.16.0.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-01-15</Date>
|
||||
<Version>1.15.0.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-12-13</Date>
|
||||
<Version>1.13.0.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-11-10</Date>
|
||||
<Version>1.12.0.4</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-09-11</Date>
|
||||
<Version>1.6.0.3</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/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 get, pisitools, shelltools
|
||||
|
||||
NoStrip = ["/usr", ]
|
||||
|
||||
|
||||
def setup():
|
||||
shelltools.system("ar xf slack-desktop-%s-amd64.deb" % get.srcVERSION())
|
||||
shelltools.system("tar xf data.tar.xz")
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/", "usr")
|
||||
pisitools.removeDir("/usr/share/lintian")
|
||||
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>slack-desktop</Name>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary>Slack Desktop</Summary>
|
||||
<Description>Slack Client for Linux</Description>
|
||||
<License>Proprietary</License>
|
||||
<Archive sha1sum="633a1fbe9b0a8bcfb675c59f06751a57fa85b037" type="binary">https://downloads.slack-edge.com/releases/linux/4.36.140/prod/x64/slack-desktop-4.36.140-amd64.deb</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>tar</Dependency>
|
||||
<Dependency>binutils</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>slack-desktop</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>cups</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>gconf</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libXi</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXtst</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>libsecret</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXcursor</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libxkbfile</Dependency>
|
||||
<Dependency>libXScrnSaver</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="11">
|
||||
<Date>2024-02-08</Date>
|
||||
<Version>4.36.140</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2023-12-15</Date>
|
||||
<Version>4.35.131</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2022-12-12</Date>
|
||||
<Version>4.29.149</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2021-09-23</Date>
|
||||
<Version>4.19.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-05-09</Date>
|
||||
<Version>4.15.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safaariman@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-09-07</Date>
|
||||
<Version>4.8.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safaariman@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-07-06</Date>
|
||||
<Version>4.7.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safaariman@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2020-04-10</Date>
|
||||
<Version>4.4.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safa@ariman.gen.tr</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2019-12-31</Date>
|
||||
<Version>4.2.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safa@ariman.gen.tr</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2019-10-14</Date>
|
||||
<Version>4.1.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safa@ariman.gen.tr</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2018-05-24</Date>
|
||||
<Version>3.0.5</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env 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 get, pisitools, shelltools
|
||||
|
||||
NoStrip = '/'
|
||||
|
||||
|
||||
def setup():
|
||||
shelltools.system("ar xf teams_%s_amd64.deb" % get.srcVERSION())
|
||||
shelltools.system("tar xf data.tar.xz")
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/", "usr")
|
||||
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>Microsoft Teams</Name>
|
||||
<Homepage>https://teams.microsoft.com</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Microsoft Teams for Linux is your chat-centered workspace in Office 365</Summary>
|
||||
<Description>Microsoft Teams for Linux is your chat-centered workspace in Office 365</Description>
|
||||
<Archive sha1sum="59a144d8ffab0badc79f8b82d3544a2c9fd900d1" type="binary">https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_1.5.00.23861_amd64.deb</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>Microsoft Teams</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>libsecret</Dependency>
|
||||
<Dependency>libXScrnSaver</Dependency>
|
||||
<Dependency>libXtst</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/share/teams</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2022-12-12</Date>
|
||||
<Version>1.5.00.23861</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2021-09-23</Date>
|
||||
<Version>1.4.00.7556</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2021-08-28</Date>
|
||||
<Version>1.4.00.13653</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2021-05-09</Date>
|
||||
<Version>1.4.00.7556</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-10-08</Date>
|
||||
<Version>1.3.00.25560</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -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/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def install():
|
||||
shelltools.cd("..")
|
||||
shelltools.move("projectlibre-%s" % get.srcVERSION(),"projectlibre")
|
||||
pisitools.dodir("/opt")
|
||||
pisitools.insinto("/opt","projectlibre")
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
@@ -0,0 +1,13 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.5.7
|
||||
Name=ProjectLibre
|
||||
GenericName=ProjectLibre
|
||||
Comment=Open Source replacement of Microsoft Project
|
||||
Icon=/usr/share/pixmaps/Libre.png
|
||||
Exec=sh /opt/projectlibre/projectlibre.sh
|
||||
Categories=Development;
|
||||
Type=Application
|
||||
Terminal=false
|
||||
X-KDE-StartupNotify=true
|
||||
MultipleArgs=false
|
||||
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ProjectLibre</Name>
|
||||
<Homepage>http://www.projectlibre.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>CPL-1.0</License>
|
||||
<PartOf>office</PartOf>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Open source Project Management Tool</Summary>
|
||||
<Description>- Microsoft Project replacement,Gantt Chart,Earned Value Costing,PERT Charts,Project Management software
|
||||
RBS Chart, New version of OpenProj</Description>
|
||||
<Archive sha1sum="bbd8d827e04c334a9b3f140b338b86a6cdad1b50" type="targz">https://sourceforge.net/projects/projectlibre/files/ProjectLibre/1.9.1/projectlibre-1.9.1.tar.gz</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>ProjectLibre</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>jre7-openjdk</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/opt</Path>
|
||||
<Path fileType="data">/usr</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/ProjectLibre.desktop" permission="0644" group="root" owner="root">ProjectLibre.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/pixmaps/Libre.png" permission="0644" group="root" owner="root">Libre.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2020-01-29</Date>
|
||||
<Version>1.9.1</Version>
|
||||
<Comment>version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-06-24</Date>
|
||||
<Version>1.6.2</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ProjectLibre</Name>
|
||||
<Summary xml:lang="tr">Açık kaynak Proje Yönetimi Aracı</Summary>
|
||||
<Description xml:lang="tr">- Microsoft Project yedek
|
||||
- Gantt Chart
|
||||
- Güncellemeleri / hata düzeltmeleri yüzlerce OpenProj yeni ve güncellenmiş versiyonu
|
||||
- Maliyet Kazanılan Değer
|
||||
- PERT Grafikler
|
||||
- Proje Yönetimi yazılımı
|
||||
- RBS Grafik
|
||||
- OpenProj yeni versiyonu</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
|
||||
<!-- By PiSiDo 2.0.0 -->
|
||||
@@ -0,0 +1,23 @@
|
||||
# contrib
|
||||
This is the third-party Repository for Pisi Linux 2.x
|
||||
|
||||
You can add this Repository to your Pisi Linux 2.x system, type:
|
||||
|
||||
```sudo pisi ar contrib_github https://github.com/pisilinux/contrib/raw/master/pisi-index.xml.xz```
|
||||
|
||||
after then
|
||||
Type:
|
||||
|
||||
```sudo pisi ur```
|
||||
|
||||
and you can install packages with
|
||||
|
||||
```sudo pisi em example``` (Type a package name instead example)
|
||||
|
||||
```sudo pisi emup``` if packages installed from the repository have an update, it compiles and installs the new version.
|
||||
|
||||
This Repository is specially for the Pisi Linux 2.0
|
||||
|
||||
Any packages you're looking for can be found as Pisi Linux packages from here:
|
||||
|
||||
[Pisi Linux Contrib ](https://contrib.pisilinux.org/)
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr/bin", "XnView/xnview.sh")
|
||||
pisitools.insinto("/opt", "XnView")
|
||||
pisitools.insinto("/usr/share/applications", "XnView/XnView.desktop")
|
||||
pisitools.insinto("/usr/share/doc", "XnView/license.txt")
|
||||
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>XnViewMP</Name>
|
||||
<Homepage>http://www.xnview.com/en/xnviewmp/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>An efficient multimedia viewer, browser and converter.</Summary>
|
||||
<Description>An efficient multimedia viewer, browser and converter.</Description>
|
||||
<Archive sha1sum="606ec028afb6b5df5528a792ea2520a28bd0510e" type="targz">https://download.xnview.com/XnViewMP-linux-x64.tgz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>XnViewMP</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>cups</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libXi</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libdrm</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>qt5-svg</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>qt5-webkit</Dependency>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>qt5-multimedia</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>zlib-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="all">/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2021-05-10</Date>
|
||||
<Version>0.98.3</Version>
|
||||
<Comment>verion Bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2018-06-10</Date>
|
||||
<Version>0.90</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>XnViewMP</Name>
|
||||
<Summary xml:lang="tr">Verimli bir multimedya görüntüleyici, tarayıcı ve dönüştürücü.</Summary>
|
||||
<Description xml:lang="tr">Verimli bir multimedya görüntüleyici, tarayıcı ve dönüştürücü.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -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 get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
|
||||
def setup():
|
||||
shelltools.system("pwd")
|
||||
shelltools.system('unzip ACS-Unified-PKG-Lnx-118-P.zip')
|
||||
shelltools.system("ar xf ACS-Unified-PKG-Lnx-118-P/debian/buster/libacsccid1_1.1.8-1~bpo10+1_amd64.deb")
|
||||
shelltools.system("tar xvf data.tar.xz")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/", "usr")
|
||||
pisitools.insinto("/", "lib")
|
||||
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>acs-unified-driver</Name>
|
||||
<Homepage>https://www.acs.com.hk/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPL2.1</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>driver</PartOf>
|
||||
<Summary>PC/SC driver that supports ACS CCID smart card readers.</Summary>
|
||||
<Description>PC/SC driver that supports ACS CCID smart card readers.</Description>
|
||||
<Archive sha1sum="998addb29e45622e7d1144bd771e66bba5be98e5" type="binary">https://source.pisilinux.org/1.0/ACS-Unified-PKG-Lnx-118-P.zip</Archive>
|
||||
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>acs-unified-driver</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>pcsc-lite</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr</Path>
|
||||
<Path fileType="data">/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-05-04</Date>
|
||||
<Version>1.1.8</Version>
|
||||
<Comment>First Beta build.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
# WorkDir = ""
|
||||
# NoStrip = "/"
|
||||
|
||||
def setup():
|
||||
shelltools.system("unzip Akia_linux_6_7_6.deb_.zip")
|
||||
shelltools.system("ar xf Akia_linux_6_7_6.deb")
|
||||
shelltools.system("tar xvf %s/data.tar.gz --exclude=usr/share/gnome-control-center --exclude=usr/bin " %get.workDIR())
|
||||
|
||||
def build():
|
||||
pass
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr/share/akia", "opt/Akia/akia-6.7.6.jar")
|
||||
pisitools.insinto("/usr/lib", "opt/Akia/libakisp11.so")
|
||||
@@ -0,0 +1,7 @@
|
||||
import os
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
os.system("update-desktop-database")
|
||||
|
||||
def postRemove():
|
||||
os.system("update-desktop-database")
|
||||
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Akia
|
||||
Exec=/bin/sh "/usr/bin/akia" %U
|
||||
StartupWMClass=install4j-controller-Main
|
||||
Icon=/usr/share/icons/Akia.png
|
||||
Categories=Utility;
|
||||
|
After Width: | Height: | Size: 9.4 KiB |
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
/usr/lib/jvm/java-8-openjdk/jre/bin/java -jar /usr/share/akia/akia-6.7.6.jar
|
||||
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>akiskart</Name>
|
||||
<Homepage>https://akiskart.bilgem.tubitak.gov.tr</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<Summary>View and modify files,folders and objects in an AKIS smartcard</Summary>
|
||||
<Description>View and modify files,folders and objects in an AKIS smartcard</Description>
|
||||
<Archive sha1sum="d9c3a55ad4c841cd10874707e2b43ca10910d26e" type="binary">https://akiskart.bilgem.tubitak.gov.tr/wp-content/uploads/sites/33/2025/01/Akia_linux_6_7_6.deb_.zip</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>akiskart</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>ccid</Dependency>
|
||||
<Dependency>pcsc-lite</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>jre8-openjdk-headless</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0755" target="/usr/bin/akia">akia</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0755" target="/usr/share/icons/Akia.png">Akia.png</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0755" target="/usr/share/applications/Akia.desktop">Akia.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2025-02-06</Date>
|
||||
<Version>6.7.6</Version>
|
||||
<Comment>Fixup for the previous release.</Comment>
|
||||
<Name>Bedirhan KURT</Name>
|
||||
<Email>bedirhan.kurt@outlook.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2025-02-05</Date>
|
||||
<Version>6.7.6</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Bedirhan KURT</Name>
|
||||
<Email>bedirhan.kurt@outlook.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2023-05-06</Date>
|
||||
<Version>6.5.2</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2022-12-13</Date>
|
||||
<Version>6.4.1</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2019-05-20</Date>
|
||||
<Version>1.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,31 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
#WorkDir = "apfs-fuse-master"
|
||||
|
||||
def setup():
|
||||
shelltools.system("mv ../lzfse-lzfse-1.0 lzfse")
|
||||
shelltools.system("mv lzfse ./3rdparty/")
|
||||
shelltools.system("mkdir build")
|
||||
shelltools.cd("build")
|
||||
shelltools.system("cmake .. -DBUILDCMAKE_SHARED_LIBS:BOOL=OFF -DCMAKE_BUILD_TYPE=Release")
|
||||
|
||||
def build():
|
||||
shelltools.cd('build')
|
||||
cmaketools.make()
|
||||
|
||||
|
||||
def install():
|
||||
shelltools.cd('build')
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
#pisitools.dodoc("LICENSE", "README.md")
|
||||
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>apfs-fuse</Name>
|
||||
<Homepage>https://github.com/sgan81/apfs-fuse</Homepage>
|
||||
<Packager>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv2+</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A read-only FUSE driver for Apple's APFS</Summary>
|
||||
<Description>apfs-fuse is a read-only driver for the new Apple File System, APFS also supports software encrypted volumes and fusion drives. Firmlinks are not supported yet.</Description>
|
||||
<Archive sha1sum="7072df718a24ad34ad1853158f26b9f517677dc4" type="zip">https://github.com/sgan81/apfs-fuse/archive/refs/heads/master.zip</Archive>
|
||||
<Archive sha1sum="40f156053e34e8725f052d2d1590b6abd318f899" type="targz">https://github.com/lzfse/lzfse/archive/lzfse-1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>fuse3-devel</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>icu4c-devel</Dependency>
|
||||
<Dependency>attr-devel</Dependency>
|
||||
<Dependency>gcc</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>apfs-fuse</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glibc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/local/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-02-08</Date>
|
||||
<Version>0.1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>apfs-fuse</Name>
|
||||
<Summary>A read-only FUSE driver for Apple's APFS</Summary>
|
||||
<Description>apfs-fuse is a read-only driver for the new Apple File System, APFS also supports software encrypted volumes and fusion drives. Firmlinks are not supported yet.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env 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 pisitools, shelltools, get
|
||||
|
||||
WorkDir="."
|
||||
|
||||
def setup():
|
||||
shelltools.system("unzip uyap-pardus-5-4-16-amd6429-12-20252-41-pm.zip")
|
||||
shelltools.system("ar xvf uyap_pardus_5_4_16_amd64/uyapeditor_5.4.16_amd64.deb")
|
||||
shelltools.system("tar xvf data.tar.xz")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr", "%s/usr/*" % get.workDIR())
|
||||
|
||||
#fixed the authentication problem.
|
||||
shelltools.system("chmod -R 0755 %s/usr/share/UYAPEditor/*" % get.installDIR())
|
||||
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
libs=["libpcsclite.so","libpcsclite.so.1", "libpcsclite.so.1.0.0"]
|
||||
os.system("mkdir -p /usr/lib64/")
|
||||
for i in libs:
|
||||
os.system("ln -s /usr/lib/%s /usr/lib64/" % i)
|
||||
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
os.system("mkdir -p /usr/lib64/")
|
||||
os.system("ln -s /usr/lib/x86_64-linux-gnu/libpcsclite.so /usr/lib64/")
|
||||
os.system("ln -s /usr/lib/x86_64-linux-gnu/libpcsclite.so.1 /usr/lib64/")
|
||||
os.system("ln -s /usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0 /usr/lib64/")
|
||||
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Comment[tr]=
|
||||
Comment=
|
||||
Exec=/usr/share/UYAPEditor/dokuman.sh
|
||||
Icon=uyap-editor
|
||||
GenericName[tr]=UYAP DOKUMAN EDITOR
|
||||
GenericName=UYAP DOKUMAN EDITOR
|
||||
Name[tr]=UYAP Dokuman Editor
|
||||
Name=UYAP Dokuman Editor
|
||||
MimeType=application/udf;
|
||||
Categories=UYAP;Office;Application;Utility;
|
||||
Type=Application
|
||||
Terminal=false
|
||||
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Comment[tr]=
|
||||
Comment=
|
||||
Exec=/usr/share/UYAPEditor/sablon.sh
|
||||
Icon=uyap-editor
|
||||
GenericName[tr]=UYAP SABLON EDITOR
|
||||
GenericName=UYAP SABLON EDITOR
|
||||
Name[tr]=UYAP Sablon Editor
|
||||
Name=UYAP Sablon Editor
|
||||
MimeType=application/usf;
|
||||
Categories=UYAP;Office;Application;Utility;
|
||||
Type=Application
|
||||
Terminal=false
|
||||
@@ -0,0 +1,165 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>uyap</Name>
|
||||
<Homepage>https://www.uyap.gov.tr/Uyap-Editor</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisilinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>IBC</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Udf dosya uzantısı açmaya yarayan program.</Summary>
|
||||
<Description>Udf dosya uzantısı açmaya yarayan program.Erkan IŞIK</Description>
|
||||
<Archive sha1sum="b284281aa03327f098fd1feda55e4a4a63207cce" type="binary">
|
||||
https://rayp.adalet.gov.tr/resimler/2/dosya/uyap-pardus-5-4-16-amd6429-12-20252-41-pm.zip
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>uyap</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>jre8-openjdk</Dependency>
|
||||
<Dependency>jre8-openjdk-headless</Dependency>
|
||||
<Dependency>pcsc-lite</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/UYAPEditor</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/mime</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
</Provides>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/dokuman.desktop">dokuman.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/sablon.desktop">sablon.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="17">
|
||||
<Date>2026-01-12</Date>
|
||||
<Version>5.4.16</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="16">
|
||||
<Date>2025-10-01</Date>
|
||||
<Version>5.4.14</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2025-06-01</Date>
|
||||
<Version>5.4.12</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2024-01-29</Date>
|
||||
<Version>5.4.11</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2023-10-17</Date>
|
||||
<Version>5.4.7</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>5.4.6</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2022-10-11</Date>
|
||||
<Version>5.4.5</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2022-02-08</Date>
|
||||
<Version>5.4.0</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2021-10-08</Date>
|
||||
<Version>5.3.0</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2021-06-27</Date>
|
||||
<Version>5.1.0</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-01-15</Date>
|
||||
<Version>5.0.2</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-12-22</Date>
|
||||
<Version>5.0.1</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-09-24</Date>
|
||||
<Version>4.2.9</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2020-05-07</Date>
|
||||
<Version>4.2.8</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2019-05-22</Date>
|
||||
<Version>4.2.0</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2019-05-02</Date>
|
||||
<Version>4.1.12</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-04-06</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
# WorkDir = ""
|
||||
# NoStrip = "/"
|
||||
|
||||
def setup():
|
||||
shelltools.system("ar xf arksigner-pub-%s.deb" % get.srcVERSION())
|
||||
shelltools.system("tar xvf %s/data.tar.xz --exclude=./usr/bin/arksigner/libs/libQt5*" % get.workDIR())
|
||||
|
||||
def build():
|
||||
pass
|
||||
|
||||
def install():
|
||||
pisitools.dodir("/etc/init.d")
|
||||
pisitools.insinto("/etc/init.d/", "etc/init.d/arksignerd")
|
||||
pisitools.dodir("/usr/bin/arksigner")
|
||||
pisitools.insinto("/usr/bin/arksigner", "usr/bin/arksigner/*")
|
||||
@@ -0,0 +1,7 @@
|
||||
import os
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
os.system("update-desktop-database")
|
||||
|
||||
def postRemove():
|
||||
os.system("update-desktop-database")
|
||||
@@ -0,0 +1,34 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from comar.service import *
|
||||
import os
|
||||
|
||||
serviceType = "local"
|
||||
serviceDesc = _({"en": "Arksigner Daemon",
|
||||
"tr": "Arksigner Daemon"})
|
||||
serviceDefault = "on"
|
||||
|
||||
PIDFILE="/run/arksignerd.pid"
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
# path to executable
|
||||
# creates a pid file, sets the working directory and calls the jar file
|
||||
startService(command="/etc/init.d/arksignerd",
|
||||
args="start",
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(pidfile=PIDFILE,
|
||||
donotify=True)
|
||||
|
||||
try:
|
||||
os.unlink(PIDFILE)
|
||||
except:
|
||||
pass
|
||||
|
||||
def ready():
|
||||
start()
|
||||
|
||||
def status():
|
||||
return isServiceRunning(pidfile=PIDFILE)
|
||||
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>arksigner</Name>
|
||||
<Homepage>https://www.arksigner.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>Bedirhan KURT</Name>
|
||||
<Email>bedirhan.kurt@outlook.com</Email>
|
||||
</Packager>
|
||||
<Summary>ArkSigner e-signature application</Summary>
|
||||
<Description>E-signature app that's digital and practical with everything it has</Description>
|
||||
<License>EULA</License>
|
||||
<Archive type="binary" sha1sum="375606cbfcd108eaf3adba977d8edf797148af65">
|
||||
https://downloads.arksigner.com/files/arksigner-pub-2.3.13.deb
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>arksigner</Name>
|
||||
<Dependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>ccid</Dependency>
|
||||
<Dependency>libusb-compat</Dependency>
|
||||
<Dependency>pcsc-lite</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-connectivity</Dependency>
|
||||
<Dependency>qt5-websockets</Dependency>
|
||||
</Dependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/etc/init.d/arksignerd</Path>
|
||||
<Path fileType="data">/usr/bin/arksigner</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2026-01-29</Date>
|
||||
<Version>2.3.13</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2025-11-06</Date>
|
||||
<Version>2.3.12</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2025-05-13</Date>
|
||||
<Version>2.3.11</Version>
|
||||
<Comment>Update package meta</Comment>
|
||||
<Name>Bedirhan KURT</Name>
|
||||
<Email>bedirhan.kurt@outlook.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2025-02-05</Date>
|
||||
<Version>2.3.11</Version>
|
||||
<Comment>Initial Packaging for PISI</Comment>
|
||||
<Name>Bedirhan KURT</Name>
|
||||
<Email>bedirhan.kurt@outlook.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>arksigner</Name>
|
||||
<Summary>ArkSigner e-imza uygulaması</Summary>
|
||||
<Description>Her şeyiyle dijital, her şeyiyle pratik e-imza uygulaması</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env 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 get
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr/share/ca-certificates/", "./bin/turksat.crt")
|
||||
pisitools.insinto("/usr/share/signNativeOsService/", "./*")
|
||||
@@ -0,0 +1,34 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from comar.service import *
|
||||
import os
|
||||
|
||||
serviceType = "local"
|
||||
serviceDesc = _({"en": "TurksatImza Service",
|
||||
"tr": "TurksatImza Servisi"})
|
||||
serviceDefault = "off"
|
||||
|
||||
PIDFILE="/run/belgenet/belgenet.pid"
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
# path to executable
|
||||
# creates a pid file, sets the working directory and calls the jar file
|
||||
startService(command="/usr/share/signNativeOsService/bin/systemctl/start_comar.sh",
|
||||
args="",
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(pidfile=PIDFILE,
|
||||
donotify=True)
|
||||
|
||||
try:
|
||||
os.unlink(PIDFILE)
|
||||
except:
|
||||
pass
|
||||
|
||||
def ready():
|
||||
start()
|
||||
|
||||
def status():
|
||||
return isServiceRunning(pidfile=PIDFILE)
|
||||
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
mkdir /run/belgenet
|
||||
cd /usr/share/signNativeOsService
|
||||
su -c "/usr/bin/java -jar /usr/share/signNativeOsService/signNativeOsService.jar > /dev/null 2>&1" &
|
||||
echo $! > /run/belgenet/belgenet.pid
|
||||
@@ -0,0 +1,60 @@
|
||||
?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>belgenet</Name>
|
||||
<Homepage>https://www.belgenet.com.tr/</Homepage>
|
||||
<Packager>
|
||||
<Name>Bedirhan KURT</Name>
|
||||
<Email>bedirhan.kurt@outlook.com</Email>
|
||||
</Packager>
|
||||
<Summary>Proprietary signature service for digital signatures by Turksat Belgenet.</Summary>
|
||||
<Description>Belgenet is a certified Electronic Document Management Service product developed by Turksat that serves more than 400k users in government organizations, complies to the TSE 13298 standards, and manages every kind of document from creation to final touches by protecting such documents' contents, formatting and relational properties.</Description>
|
||||
<License>EULA</License>
|
||||
<Archive type="zip" sha1sum="5367a4a22a736e78b3d5c693473faf782cf026e3">https://github.com/kurtbahartr/belgenet-pisi/releases/download/v1.0.58/signNativeOsService_Linux_1.0.58.zip</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>binutils</Dependency>
|
||||
<Dependency>gconf</Dependency>
|
||||
<Dependency>sed</Dependency>
|
||||
<Dependency>wget</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>belgenet</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>akiskart</Dependency>
|
||||
<Dependency>jdk8-openjdk</Dependency>
|
||||
</RuntimeDependencies>
|
||||
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/ca-certificates/turksat.crt</Path>
|
||||
<Path fileType="data">/usr/share/signNativeOsService</Path>
|
||||
<Path fileType="executable">/usr/share/signNativeOsService/bin/systemctl/</Path>
|
||||
</Files>
|
||||
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" target="/usr/share/signNativeOsService/bin/systemctl/start_comar.sh" group="root" permission="0755">start_comar.sh</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2025-02-05</Date>
|
||||
<Version>1.0.58</Version>
|
||||
<Comment>Rebuild for added dependency</Comment>
|
||||
<Name>Bedirhan KURT</Name>
|
||||
<Email>bedirhan.kurt@outlook.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2025-02-05</Date>
|
||||
<Version>1.0.58</Version>
|
||||
<Comment>Initial Packaging for PISI</Comment>
|
||||
<Name>Bedirhan KURT</Name>
|
||||
<Email>bedirhan.kurt@outlook.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/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 get, pisitools, shelltools
|
||||
|
||||
NoStrip = ["/usr"]
|
||||
IgnoreAutodep = True
|
||||
|
||||
Version = get.srcVERSION()
|
||||
|
||||
def setup():
|
||||
shelltools.system("pwd")
|
||||
shelltools.system("ar xf binance-amd64-linux.deb")
|
||||
shelltools.system("tar xf data.tar.xz")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/", "usr")
|
||||
pisitools.insinto("/", "opt")
|
||||
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>binance</Name>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary>Binance kripto alım satım Masaüstü uygulaması</Summary>
|
||||
<Description>Binance kripto alım satım Masaüstü uygulaması</Description>
|
||||
<License>custom</License>
|
||||
<Archive sha1sum="b285667d20181cbbed7d1fa3ec53812256a1715c" type="binary">
|
||||
https://ftp.binance.com/electron-desktop/linux/production/binance-amd64-linux.deb</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>coreutils</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Name>binance</Name>
|
||||
<Icon>binance</Icon>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/opt</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2024-01-30</Date>
|
||||
<Version>1.47.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-05-18</Date>
|
||||
<Version>1.16.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
#!/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 get, pisitools, shelltools
|
||||
|
||||
NoStrip = ["/opt", "/usr"]
|
||||
IgnoreAutodep = True
|
||||
|
||||
def setup():
|
||||
shelltools.system("pwd")
|
||||
shelltools.system("tar -xvf ChatGPT_1.1.0_linux_x86_64.AppImage.tar.gz")
|
||||
|
||||
def install():
|
||||
pisitools.dodir ("/opt/chat-gpt")
|
||||
pisitools.doexe("chat-gpt_1.1.0_amd64.AppImage", "/opt/chat-gpt")
|
||||
pisitools.dosym("/opt/chat-gpt/chat-gpt_1.1.0_amd64.AppImage", "/usr/bin/chat-gpt")
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Categories=Development;
|
||||
Comment=ChatGPT
|
||||
Exec=chat-gpt
|
||||
Icon=chat-gpt
|
||||
Name=ChatGPT
|
||||
Terminal=false
|
||||
Type=Application
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>chat-gpt</Name>
|
||||
<Homepage>https://github.com/lencx/ChatGPT</Homepage>
|
||||
<Packager>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>ChatGpt</Summary>
|
||||
<Description>ChatGPT Desktop Application (Mac, Windows and Linux)</Description>
|
||||
<License>gpl2</License>
|
||||
<PartOf>Game</PartOf>
|
||||
<Archive sha1sum="e56b93e95023d30d5a89bf2e2c0c57281097ece0" type="binary">
|
||||
https://github.com/lencx/ChatGPT/releases/download/v1.1.0/ChatGPT_1.1.0_linux_x86_64.AppImage.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libthai-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>chat-gpt</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libthai</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/opt</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/chat-gpt.desktop">chat-gpt.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/icons/cht-gpt.png">chat-gpt.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-08-17</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicerkanisik@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,10 @@
|
||||
name: New MCP server
|
||||
version: 0.0.1
|
||||
schema: v1
|
||||
mcpServers:
|
||||
- name: New MCP server
|
||||
command: npx
|
||||
args:
|
||||
- -y
|
||||
- <your-mcp-server>
|
||||
env: {}
|
||||
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env 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 get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
WorkDir="."
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/VSCodium/", "*")
|
||||
pisitools.dosym("/opt/VSCodium/bin/codium", "/usr/bin/codium")
|
||||
@@ -0,0 +1,23 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=vscodium
|
||||
GenericName=vscodium
|
||||
GenericName[tr]=vscodium
|
||||
Comment=vscodium
|
||||
Comment[tr]=vscodium
|
||||
Icon=vscodium
|
||||
Exec=/opt/VSCodium/codium --no-sandbox %U
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Development;
|
||||
MimeType=text/plain;inode/directory;application/x-visual-studio-code-workspace;
|
||||
Actions=new-empty-window;
|
||||
Keywords=vscodium;
|
||||
|
||||
|
||||
[Desktop Action new-empty-window]
|
||||
Name=New Empty Window
|
||||
Exec=/opt/VSCodium/codium --no-sandbox --new-window %F
|
||||
Icon=vscodium
|
||||
|
After Width: | Height: | Size: 418 KiB |
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>VSCodium</Name>
|
||||
<Homepage>https://vscodium.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<PartOf>Development</PartOf>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary xml:lang="en">Free/Libre Open Source Software Binaries of VS Code</Summary>
|
||||
<Summary xml:lang="tr">VS Code'un Özgür Açık Kaynaklı Sürümü</Summary>
|
||||
<Description xml:lang="en">VSCodium is a community-driven, freely-licensed binary distribution of Microsoft’s editor VS Code.</Description>
|
||||
<Description xml:lang="tr">VSCodium, Microsoft'un VS Code düzenleyicisinin topluluk tarafından yönetilen, özgür lisanslı bir ikili dağıtımıdır.</Description>
|
||||
<Icon>vscodium</Icon>
|
||||
<Archive sha1sum="15d736216c6a59684d8f2a52185b614552283bdf" type="targz">
|
||||
https://github.com/VSCodium/vscodium/releases/download/1.112.01907/VSCodium-linux-x64-1.112.01907.tar.gz
|
||||
</Archive>
|
||||
<!-- https://github.com/VSCodium/vscodium/releases/ -->
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>VSCodium</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/opt</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="icon">/usr/share/pixmaps</Path>
|
||||
<Path fileType="icon">/usr/share/icons</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/vscodium.desktop">vscodium.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/pixmaps/vscodium.png">vscodium.png</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/icons/vscodium.png">vscodium.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
|
||||
<Update release="3">
|
||||
<Date>2026-04-05</Date>
|
||||
<Version>1.112.01907</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2026-02-08</Date>
|
||||
<Version>1.108.20787</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2026-01-13</Date>
|
||||
<Version>1.107.18627</Version>
|
||||
<Comment>Initial Release</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>VSCode</Name>
|
||||
<Summary xml:lang="tr">Visual Studio Code</Summary>
|
||||
<Description xml:lang="tr">Visual Studio Code</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env 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 get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/VSCode-linux-x64", "./*")
|
||||
pisitools.dosym("/opt/VSCode-linux-x64/bin/code", "/usr/bin/code")
|
||||
@@ -0,0 +1,23 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=Visual Studio Code
|
||||
GenericName=Visual Studio Code
|
||||
GenericName[tr]=Visual Studio Code
|
||||
Comment=Visual Studio Code
|
||||
Comment[tr]=Visual Studio Code
|
||||
Icon=code
|
||||
Exec=/opt/VSCode-linux-x64/code --no-sandbox %U
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Development;
|
||||
MimeType=text/plain;inode/directory;application/x-visual-studio-code-workspace;
|
||||
Actions=new-empty-window;
|
||||
Keywords=vscode;
|
||||
|
||||
|
||||
[Desktop Action new-empty-window]
|
||||
Name=New Empty Window
|
||||
Exec=/opt/VSCode-linux-x64/code --no-sandbox --new-window %F
|
||||
Icon=code
|
||||
|
After Width: | Height: | Size: 68 KiB |
@@ -0,0 +1,114 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>VSCode</Name>
|
||||
<Homepage>https://code.visualstudio.com</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami Babat</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<PartOf>Development</PartOf>
|
||||
<IsA>app:gui</IsA>
|
||||
|
||||
<Summary xml:lang="en">The open source AI code editor</Summary>
|
||||
<Summary xml:lang="tr">Açık kaynaklı yapay zeka kod editörü</Summary>
|
||||
<Description xml:lang="en">Code editing. Redefined. Visual Studio Code is a new choice of tool that combines the simplicity of a code editor with what developers need for the core edit-build-debug cycle.</Description>
|
||||
<Description xml:lang="tr">Kod düzenleme. Yeniden tanımlandı. Visual Studio Code, kod düzenleyicisinin basitliğini ve geliştiricilerin temel düzenleme-derleme-hata ayıklama döngüsü için ihtiyaç duyduğu özellikleri birleştiren yeni bir araç seçimidir.</Description>
|
||||
<Icon>code</Icon>
|
||||
<Archive type="targz" sha1sum="099f70e8a73babdd4005e5c5af80a8faab877aec">
|
||||
https://vscode.download.prss.microsoft.com/dbazure/download/stable/0958016b2af9f09bb4257e0df4a95e2f90590f9f/code-stable-x64-1778618960.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>VSCode</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/opt/</Path>
|
||||
<Path fileType="data">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="icon">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/Visual-Studio-Code.desktop">Visual-Studio-Code.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/pixmaps/code.png">code.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Summary>Visual Studio Code</Summary>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="46">
|
||||
<Date>2026-05-18</Date>
|
||||
<Version>1.120</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="45">
|
||||
<Date>2026-04-18</Date>
|
||||
<Version>1.116.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
|
||||
<Update release="44">
|
||||
<Date>2026-04-05</Date>
|
||||
<Version>1.114.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="43">
|
||||
<Date>2026-02-08</Date>
|
||||
<Version>1.109</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="42">
|
||||
<Date>2025-11-06</Date>
|
||||
<Version>1.105.1</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="41">
|
||||
<Date>2025-09-30</Date>
|
||||
<Version>1.104.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="40">
|
||||
<Date>2025-09-02</Date>
|
||||
<Version>1.103.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="39">
|
||||
<Date>2025-08-21</Date>
|
||||
<Version>1.103.1</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="38">
|
||||
<Date>2025-08-07</Date>
|
||||
<Version>1.102.3</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="37">
|
||||
<Date>2025-06-30</Date>
|
||||
<Version>1.101.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
|
||||
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>VSCode</Name>
|
||||
<Summary xml:lang="tr">Visual Studio Code</Summary>
|
||||
<Description xml:lang="tr">Visual Studio Code</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
WorkDir = "."
|
||||
NoStrip = ["/"]
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/android-studio", "android-studio/*")
|
||||
pisitools.dosym("/opt/android-studio/bin/studio.sh", "/usr/bin/android-studio")
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Android Studio
|
||||
Icon=/opt/android-studio/bin/studio.png
|
||||
Exec=android-studio %f
|
||||
Comment=IDE for Android Development
|
||||
Categories=Development;IDE;
|
||||
Terminal=false
|
||||
StartupWMClass=jetbrains-android-studio
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>android-studio</Name>
|
||||
<Homepage>https://developer.android.com/studio</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache-2.0</License>
|
||||
<Summary xml:lang="en">Android development environment based on IntelliJ IDEA.</Summary>
|
||||
<Description xml:lang="en">Android development environment based on IntelliJ IDEA.</Description>
|
||||
<Archive sha1sum="92597d7c1f705a6c7ed7ff121dc89f138d0053bf" type="targz">
|
||||
https://r2---sn-u0g3oxu-pnue.gvt1.com/edgedl/android/studio/ide-zips/2025.1.2.11/android-studio-2025.1.2.11-linux.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>android-studio</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libXtst</Dependency>
|
||||
<Dependency>which</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/opt/android-studio</Path>
|
||||
<Path fileType="data">/usr/bin/android-studio</Path>
|
||||
<Path fileType="data">/usr/share/applications/android-studio.desktop</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/android-studio.desktop">android-studio.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2025-08-07</Date>
|
||||
<Version>2025.1.2.11</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2024-01-31</Date>
|
||||
<Version>2023.1.1.28</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>android-studio</Name>
|
||||
<Summary xml:lang="tr">The official Android IDE (Stable branch)</Summary>
|
||||
<Description xml:lang="tr">The official Android IDE (Stable branch)</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env 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 pisitools, shelltools, get
|
||||
|
||||
WorkDir = "."
|
||||
NoStrip = ["/"]
|
||||
|
||||
|
||||
|
||||
def install():
|
||||
# Antigravity IDE dosyalarını /opt altına kopyala
|
||||
pisitools.insinto("/opt/Antigravity-ide", "Antigravity IDE/*")
|
||||
|
||||
# completions dizinini kaldır (pspec.xml'deki AdditionalFiles ile yönetiliyor)
|
||||
#pisitools.removeDir("/opt/Antigravity-ide/resources/completions")
|
||||
|
||||
# Çalıştırılabilir dosya için symlink oluştur
|
||||
#pisitools.dosym("/opt/Antigravity-ide/antigravity-ide", "/usr/bin/antigravity-ide")
|
||||
|
||||
# Lisans dosyaları için symlink oluştur
|
||||
pisitools.dodir("/usr/share/licenses/Antigravity-ide")
|
||||
pisitools.dosym("/opt/Antigravity-ide/resources/app/LICENSE.txt", "/usr/share/licenses/Antigravity-ide/LICENSE.txt")
|
||||
pisitools.dosym("/opt/Antigravity-ide/LICENSES.chromium.html", "/usr/share/licenses/Antigravity-ide/LICENSES.chromium.html")
|
||||