Proje Gitea'ya taşındı (Temiz başlangıç)
@@ -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")
|
||||
@@ -0,0 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Name=Antigravity IDE - URL Handler
|
||||
Comment=Experience liftoff
|
||||
GenericName=Text Editor
|
||||
Exec=/usr/bin/antigravity-ide --open-url %U
|
||||
Icon=antigravity-ide
|
||||
Type=Application
|
||||
NoDisplay=true
|
||||
StartupNotify=true
|
||||
Categories=Utility;TextEditor;Development;IDE;
|
||||
MimeType=x-scheme-handler/antigravity-ide;
|
||||
Keywords=vscode;
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
||||
<mime-type type="application/x-antigravity-ide-workspace">
|
||||
<comment>Antigravity IDE Workspace</comment>
|
||||
<glob pattern="*.code-workspace"/>
|
||||
</mime-type>
|
||||
</mime-info>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component type="desktop">
|
||||
<id>antigravity-ide.desktop</id>
|
||||
<metadata_license>MIT</metadata_license>
|
||||
<project_license>MIT</project_license>
|
||||
<name>Antigravity IDE</name>
|
||||
<url type="homepage">https://antigravity.google</url>
|
||||
<summary>Experience liftoff</summary>
|
||||
<description>
|
||||
<p>Google Antigravity IDE - Experience liftoff</p>
|
||||
</description>
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image>https://code.visualstudio.com/home/home-screenshot-linux-lg.png</image>
|
||||
<caption>Editing TypeScript and searching for extensions</caption>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
</component>
|
||||
@@ -0,0 +1,31 @@
|
||||
[Desktop Entry]
|
||||
Name=Antigravity IDE
|
||||
Comment=Experience liftoff
|
||||
GenericName=Text Editor
|
||||
Exec=/usr/bin/antigravity-ide %F
|
||||
Icon=antigravity-ide
|
||||
Type=Application
|
||||
StartupNotify=false
|
||||
StartupWMClass=antigravity-ide
|
||||
Categories=TextEditor;Development;IDE;
|
||||
MimeType=application/x-antigravity-ide-workspace;
|
||||
Actions=new-empty-window;
|
||||
Keywords=vscode;
|
||||
|
||||
[Desktop Action new-empty-window]
|
||||
Name=New Empty Window
|
||||
Name[cs]=Nové prázdné okno
|
||||
Name[de]=Neues leeres Fenster
|
||||
Name[es]=Nueva ventana vacía
|
||||
Name[fr]=Nouvelle fenêtre vide
|
||||
Name[it]=Nuova finestra vuota
|
||||
Name[ja]=新しい空のウィンドウ
|
||||
Name[ko]=새 빈 창
|
||||
Name[tr]=Boş bir pencere aç
|
||||
Name[ru]=Новое пустое окно
|
||||
Name[zh_CN]=新建空窗口
|
||||
Name[ru]=Новое пустое окно
|
||||
Name[zh_CN]=新建空窗口
|
||||
Name[zh_TW]=開新空視窗
|
||||
Exec=/usr/bin/antigravity-ide --new-window %F
|
||||
Icon=antigravity-ide
|
||||
|
After Width: | Height: | Size: 172 KiB |
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}
|
||||
|
||||
# Allow users to override command-line options
|
||||
if [[ -f $XDG_CONFIG_HOME/antigravity-ide-flags.conf ]]; then
|
||||
ANTIGRAVITY_IDE_USER_FLAGS="$(sed 's/#.*//' $XDG_CONFIG_HOME/antigravity-ide-flags.conf | tr '\n' ' ')"
|
||||
fi
|
||||
|
||||
# Launch
|
||||
exec /opt/Antigravity-ide/bin/antigravity-ide "$@" $ANTIGRAVITY_IDE_USER_FLAGS
|
||||
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>Antigravity-ide</Name>
|
||||
<Homepage>https://antigravity.google/</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary xml:lang="en">An agentic development platform from Google, evolving the IDE into the agent-first era.</Summary>
|
||||
<Summary xml:lang="tr">Google'dan bir agentic geliştirme platformu, IDE'yi agent-first era'ye evrimini getiriyor.</Summary>
|
||||
<Description xml:lang="en" >An agentic development platform from Google, evolving the IDE into the agent-first era.</Description>
|
||||
<Description xml:lang="tr" >Google'dan bir agentic geliştirme platformu, IDE'yi agent-first era'ye evrimini getiriyor.</Description>
|
||||
<License>LicenseRef-Google-Antigravity</License>
|
||||
<PartOf>programming.tools</PartOf>
|
||||
<Icon>antigravity-ide</Icon>
|
||||
<Archive sha1sum="554c984665548968983ccfd381bc991596b0e158" type="targz">
|
||||
https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/2.0.3-6242596486512640/linux-x64/Antigravity%20IDE.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>Antigravity-ide</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>at-spi2-core</Dependency>
|
||||
<Dependency>bash</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>gcc</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>glibc</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cups</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>libxkbcommon</Dependency>
|
||||
<Dependency>libxkbfile</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/opt/Antigravity-ide</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
<Path fileType="data">/usr/share/mime</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/share/licenses</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/antigravity-ide.desktop" owner="root">antigravity-ide.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/antigravity-ide-url-handler.desktop" owner="root">antigravity-ide-url-handler.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/bin/antigravity-ide" owner="root">antigravity-ide.sh</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/mime/packages/antigravity-ide-workspace.xml">antigravity-ide-workspace.xml</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/pixmaps/antigravity-ide.png">antigravity-ide.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2026-11-22</Date>
|
||||
<Version>2.0.3</Version>
|
||||
<Comment>İlk sürüm</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/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
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "."
|
||||
NoStrip = ["/"]
|
||||
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/Antigravity", "Antigravity-x64/*")
|
||||
pisitools.dosym("/opt/antigravity/antigravity", "/usr/bin/antigravity")
|
||||
pisitools.dosym("/opt/Antigravity/LICENSE.electron.txt", "/usr/share/licenses/antigravity/LICENSE.electron.txt")
|
||||
pisitools.dosym("/opt/Antigravity/LICENSES.chromium.html", "/usr/share/licenses/antigravity/LICENSES.chromium.html")
|
||||
pisitools.dosym("/opt/Antigravity/LICENSE", "/usr/share/licenses/antigravity/LICENSE")
|
||||
@@ -0,0 +1,60 @@
|
||||
_antigravity()
|
||||
{
|
||||
local cur prev words cword split
|
||||
_init_completion -s || return
|
||||
|
||||
_expand || return
|
||||
|
||||
case $prev in
|
||||
-d|--diff)
|
||||
_filedir
|
||||
return
|
||||
;;
|
||||
-a|--add|--user-data-dir|--extensions-dir)
|
||||
_filedir -d
|
||||
return
|
||||
;;
|
||||
-g|--goto)
|
||||
compopt -o nospace
|
||||
_filedir
|
||||
return
|
||||
;;
|
||||
--locale)
|
||||
COMPREPLY=( $( compgen -W 'de en en-US es fr it ja ko ru zh-CN zh-TW bg hu pt-br tr' ) )
|
||||
return
|
||||
;;
|
||||
--install-extension|--uninstall-extension)
|
||||
_filedir vsix
|
||||
return
|
||||
;;
|
||||
--log)
|
||||
COMPREPLY=( $( compgen -W 'critical error warn info debug trace off' ) )
|
||||
return
|
||||
;;
|
||||
--folder-uri|--disable-extension)
|
||||
# argument required but no completions available
|
||||
return 0
|
||||
;;
|
||||
--enable-proposed-api)
|
||||
# argument optional but no completions available
|
||||
;;
|
||||
esac
|
||||
|
||||
$split && return
|
||||
|
||||
if [[ $cur == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W '-d --diff --folder-uri -a --add -g
|
||||
--goto -n --new-window -r --reuse-window -w --wait --locale=
|
||||
--user-data-dir -v --version -h --help --extensions-dir
|
||||
--list-extensions --show-versions --install-extension
|
||||
--uninstall-extension --enable-proposed-api --verbose --log -s
|
||||
--status -p --performance --prof-startup --disable-extensions
|
||||
--disable-extension --inspect-extensions --update-extensions
|
||||
--inspect-brk-extensions --disable-gpu' -- "$cur") )
|
||||
[[ $COMPREPLY == *= ]] && compopt -o nospace
|
||||
return
|
||||
fi
|
||||
|
||||
_filedir
|
||||
} &&
|
||||
complete -F _antigravity antigravity
|
||||
@@ -0,0 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Name=Antigravity - URL Handler
|
||||
Comment=Experience liftoff
|
||||
GenericName=Text Editor
|
||||
Exec=/opt/Antigravity/antigravity --open-url %U
|
||||
Icon=antigravity
|
||||
Type=Application
|
||||
NoDisplay=true
|
||||
StartupNotify=true
|
||||
Categories=Utility;TextEditor;Development;IDE;
|
||||
MimeType=x-scheme-handler/antigravity;
|
||||
Keywords=vscode;
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
||||
<mime-type type="application/x-antigravity-workspace">
|
||||
<comment>Antigravity Workspace</comment>
|
||||
<glob pattern="*.code-workspace"/>
|
||||
</mime-type>
|
||||
</mime-info>
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Name=Antigravity
|
||||
Comment=Experience liftoff
|
||||
GenericName=Agentic Platform
|
||||
Exec=/usr/bin/antigravity %U
|
||||
Icon=antigravity
|
||||
Type=Application
|
||||
StartupNotify=false
|
||||
StartupWMClass=Antigravity
|
||||
Categories=Development;Utility;
|
||||
|
After Width: | Height: | Size: 172 KiB |
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>antigravity</Name>
|
||||
<Homepage>https://antigravity.google/</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary xml:lang="en">Google Antigravity 2.0 multi-agent orchestration platformu.</Summary>
|
||||
<Summary xml:lang="tr">Google Antigravity 2.0 çoklu-ajan orkestrasyon platformu.</Summary>
|
||||
<Description xml:lang="en" >Google Antigravity 2.0 multi-agent orchestration platform.</Description>
|
||||
<Description xml:lang="tr" >Google Antigravity 2.0 çoklu-ajan orkestrasyon platformu.</Description>
|
||||
<License>LicenseRef-Google-Antigravity</License>
|
||||
<PartOf>programming.tools</PartOf>
|
||||
<Icon>antigravity</Icon>
|
||||
<Archive sha1sum="db646919e06d90435d42b3ba194aaf62c2df6a44" type="targz">
|
||||
https://storage.googleapis.com/antigravity-public/antigravity-hub/2.0.1-6566078776737792/linux-x64/Antigravity.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>antigravity</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>at-spi2-core</Dependency>
|
||||
<Dependency>bash</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>gcc</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>glibc</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cups</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>libxkbcommon</Dependency>
|
||||
<Dependency>libxkbfile</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/opt</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
<Path fileType="data">/usr/share/mime</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps/</Path>
|
||||
<Path fileType="data">/usr/share/licenses/</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/antigravity.desktop" owner="root">antigravity.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/antigravity-url-handler.desktop" owner="root">antigravity-url-handler.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/bash-completion/completions/antigravity">antigravity</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/mime/packages/antigravity-workspace.xml">antigravity-workspace.xml</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/pixmaps/antigravity.png">antigravity.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2026-11-22</Date>
|
||||
<Version>2.0.1</Version>
|
||||
<Comment>İlk sürüm</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from pisi.actionsapi import get, pisitools, shelltools
|
||||
|
||||
|
||||
NoStrip = ["/usr"]
|
||||
IgnoreAutodep = True
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr/share/netbeans", "./*")
|
||||
pisitools.dosym("/usr/share/netbeans/bin/netbeans", "/usr/bin/netbeans")
|
||||
pisitools.remove("/usr/share/netbeans/bin/netbeans.exe")
|
||||
pisitools.remove("/usr/share/netbeans/bin/netbeans64.exe")
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,14 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=Apache NetBeans
|
||||
GenericName=Apache NetBeans
|
||||
GenericName[tr]=Apache NetBeans
|
||||
Comment=NetBeans is an integrated development environment (IDE) for Java.
|
||||
Comment[tr]=NetBeans, Oracle tarafından geliştirilen bir Java geliştirme ortamıdır ve ücretsiz olarak dağıtılmaktadır.
|
||||
Icon=ApacheNetbeans
|
||||
Exec=netbeans
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=TextEditor;Development;IDE
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>Apache Netbeans</Name>
|
||||
<Homepage>https://netbeans.apache.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>NetBeans, Oracle tarafından geliştirilen bir Java geliştirme ortamıdır.</Summary>
|
||||
<Description>NetBeans, Oracle tarafından geliştirilen bir Java geliştirme ortamıdır. Özellikle kullanıcı arayüzü tasarımında sağladığı kolaylıklardan dolayı tercih edilmektedir.</Description>
|
||||
<License>custom</License>
|
||||
<Archive sha1sum="0dd6ba97bbd9766a257526d39c5670a298b4905f" type="zip">
|
||||
https://www.apache.org/dyn/closer.lua/netbeans/netbeans/26/netbeans-26-bin.zip
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>netbeans</Name>
|
||||
<Icon>netbeans</Icon>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr</Path>
|
||||
<Path fileType="data">/usr/share/netbeans</Path>
|
||||
</Files>
|
||||
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/netbeans.desktop">netbeans.desktop</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/ApacheNetbeans.png">ApacheNetbeans.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2025-08-07</Date>
|
||||
<Version>26</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>12.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>development</Name>
|
||||
</PISI>
|
||||
@@ -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 get, pisitools, shelltools
|
||||
|
||||
NoStrip = ["/opt", "/usr"]
|
||||
IgnoreAutodep = True
|
||||
Version = get.srcVERSION()
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.dodir ("/opt/Cursor")
|
||||
pisitools.doexe("Cursor-%s-x86_64.AppImage" % Version, "/opt/Cursor")
|
||||
pisitools.dosym("/opt/Cursor/Cursor-%s-x86_64.AppImage" % Version, "/usr/bin/cursor")
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
[Desktop Entry]
|
||||
Name=Cursor
|
||||
Exec=/usr/bin/cursor --no-sandbox %U
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=cursor
|
||||
# Change the class below to "Cursor" when on X11
|
||||
StartupWMClass=cursor
|
||||
X-AppImage-Version=@@PKGVERSION@@
|
||||
MimeType=x-scheme-handler/cursor;
|
||||
Categories=Development;IDE;
|
||||
|
||||
[Desktop Action new-empty-window]
|
||||
Name=New Empty Window
|
||||
Exec=/usr/bin/cursor --no-sandbox --new-window %F
|
||||
Icon=cursor
|
||||
|
After Width: | Height: | Size: 8.6 KiB |
@@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>Cursor</Name>
|
||||
<Homepage>https://cursor.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary xml:lang="en">The AI Code Editor</Summary>
|
||||
<Summary xml:lang="tr">Yapay Zeka Destekli Kod Düzenleyicisi</Summary>
|
||||
<Description xml:lang="en">Built to make you extraordinarily productive, Cursor is the best way to code with AI.</Description>
|
||||
<Description xml:lang="tr">Sizi olağanüstü derecede üretken kılmak için oluşturulmuş olan Cursor, yapay zeka ile kod yazmanın en iyi yoludur.</Description>
|
||||
<License>custom</License>
|
||||
<PartOf>development</PartOf>
|
||||
<Archive sha1sum="be60f093ea675eab0478b6dab976d5524aa64612" type="binary">
|
||||
https://downloads.cursor.com/production/3578107fdf149b00059ddad37048220e4168100f/linux/x64/Cursor-2.4.31-x86_64.AppImage
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>Cursor</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fuse3</Dependency>
|
||||
<Dependency>gtk3</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/cursor.desktop">cursor.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/icons/cursor.png">cursor.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="18">
|
||||
<Date>2026-02-08</Date>
|
||||
<Version>2.4.31</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="17">
|
||||
<Date>2025-11-06</Date>
|
||||
<Version>2.0.64</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="16">
|
||||
<Date>2025-09-30</Date>
|
||||
<Version>1.7.17</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2025-08-21</Date>
|
||||
<Version>1.4.5</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2025-08-07</Date>
|
||||
<Version>1.4.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2025-07-21</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
|
||||
<Update release="12">
|
||||
<Date>2025-07-07</Date>
|
||||
<Version>1.2.1</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2025-07-03</Date>
|
||||
<Version>1.1.7</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
#!/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
|
||||
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/devin-desktop/", "*")
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
[Desktop Entry]
|
||||
Name=Devin Desktop
|
||||
Comment=Tomorrow's Editor, Today
|
||||
Exec=/opt/devin-desktop/devin-desktop %U
|
||||
Icon=devin-desktop
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Development;IDE;
|
||||
MimeType=text/plain;inode/directory;application/x-devin-desktop-workspace;
|
||||
Actions=new-empty-window;
|
||||
Keywords=devin-desktop;
|
||||
|
||||
|
||||
[Desktop Action new-empty-window]
|
||||
Name=New Empty Window
|
||||
Exec=/opt/devin-desktop/devin --new-window %F
|
||||
Icon=devin-desktop
|
||||
|
After Width: | Height: | Size: 10 KiB |
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>devin-desktop</Name>
|
||||
<Homepage>https://devin.ai</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary xml:lang="en">Built to keep you in flow state</Summary>
|
||||
<Summary xml:lang="tr">Kod yazarken odağını kaybetmemen için tasarlandı.</Summary>
|
||||
<Description xml:lang="en">Tomorrow's Editor, Today. Built to keep you in flow state with instant, invaluable AI developer assistance.</Description>
|
||||
<Description xml:lang="tr">Geleceğin editörü şimdiden burada. Yapay zekâ desteğiyle odağın hiç bölünmez.</Description>
|
||||
<PartOf>development</PartOf>
|
||||
<License>custom</License>
|
||||
<Icon>devin-desktop</Icon>
|
||||
<Archive sha1sum="474f08a86ad34ab4377f43ece1fea5d0545db27d" type="targz">
|
||||
https://windsurf-stable.codeiumdata.com/linux-x64/stable/c8b0b9cf70fb84d1dd37796a52d8229a7eaf9c06/Devin-linux-x64-3.1.7.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>glibc</Dependency>
|
||||
<Dependency>libdrm</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>libxkbcommon</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>xdg-utils</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Name>devin-desktop</Name>
|
||||
<Icon>devin-desktop</Icon>
|
||||
<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/devin-desktop.desktop">devin-desktop.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/icons/devin-desktop.png">devin-desktop.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2026-06-14</Date>
|
||||
<Version>3.1.7</Version>
|
||||
<Comment>First Release (Renamed to Devin Desktop)</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from pisi.actionsapi import get, pisitools, shelltools
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr/share/eclipse", "./*")
|
||||
@@ -0,0 +1,14 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=Eclipse IDE Java için
|
||||
GenericName=Eclipse IDE For Java
|
||||
GenericName[tr]=Eclipse IDE Java için
|
||||
Comment=Eclipse, açık kaynak kodlu ve özgür bir tümleşik geliştirme ortamıdır.
|
||||
Comment[tr]=Eclipse, açık kaynak kodlu ve özgür bir tümleşik geliştirme ortamıdır.
|
||||
Icon=eclipse
|
||||
Exec=/usr/share/eclipse/eclipse
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Application;Game;
|
||||
|
After Width: | Height: | Size: 6.8 KiB |
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>eclipse</Name>
|
||||
<Homepage>https://www.eclipse.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>Eclipse Public License - v 2.0</License>
|
||||
<Icon>eclipse</Icon>
|
||||
<IsA>app</IsA>
|
||||
<Summary>Eclipse, açık kaynak kodlu ve özgür bir tümleşik geliştirme ortamıdır. </Summary>
|
||||
<Description>Eclipse, açık kaynak kodlu ve özgür bir tümleşik geliştirme ortamıdır. Ana odak noktası Java ve Java ile ilişkili teknolojiler olsa da, esnek yapısı sayesinde C ve Python gibi farklı diller için de kullanılmaktadır. </Description>
|
||||
<Archive sha1sum="32e0b4a964077b2c7a3768a67896a7d067f3bbfc" type="targz">
|
||||
https://eclipse.mirror.wearetriple.com/oomph/epp/2025-06/R/eclipse-inst-jre-linux64.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>eclipse</Name>
|
||||
<!--
|
||||
<RuntimeDependencies>
|
||||
<Dependency>Dep1</Dependency>
|
||||
<Dependency>Dep2</Dependency>
|
||||
<Dependency>Dep3</Dependency>
|
||||
<Dependency versionFrom="">Dep4</Dependency>
|
||||
</RuntimeDependencies>
|
||||
-->
|
||||
<Files>
|
||||
<Path fileType="all">/</Path>
|
||||
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/usr/share/eclipse</Path>
|
||||
</Files>
|
||||
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/eclipse.desktop">eclipse.desktop</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/eclipse.png">eclipse.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2025-08-07</Date>
|
||||
<Version>2025.06</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-05-02</Date>
|
||||
<Version>2021.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>eclipse</Name>
|
||||
<Summary xml:lang="tr">Eclipse, açık kaynak kodlu ve özgür bir tümleşik geliştirme ortamıdır. </Summary>
|
||||
<Description xml:lang="tr">Eclipse, açık kaynak kodlu ve özgür bir tümleşik geliştirme ortamıdır. Ana odak noktası Java ve Java ile ilişkili teknolojiler olsa da, esnek yapısı sayesinde C ve Python gibi farklı diller için de kullanılmaktadır. </Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/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 setup():
|
||||
shelltools.system("pwd")
|
||||
shelltools.system("unzip figma-linux_%s_linux_amd64.zip" % get.srcVERSION())
|
||||
|
||||
def install():
|
||||
#pisitools.dodir ("/opt/figma-linux")
|
||||
pisitools.insinto("/opt/figma-linux", "*")
|
||||
pisitools.dosym("/opt/figma-linux/figma-linux", "/usr/bin/figma-linux")
|
||||
#pisitools.insinto("/usr/share/polkit-1/actions", "anydesk-6.1.1/polkit-1/com.anydesk.anydesk.policy")
|
||||
#pisitools.insinto("/etc/init.d", "anydesk-6.1.1/init/anydesk")
|
||||
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300" width="1667" height="2500"><style type="text/css">.st0{fill:#0acf83}.st1{fill:#a259ff}.st2{fill:#f24e1e}.st3{fill:#ff7262}.st4{fill:#1abcfe}</style><title>Figma.logo</title><desc>Created using Figma</desc><path id="path0_fill" class="st0" d="M50 300c27.6 0 50-22.4 50-50v-50H50c-27.6 0-50 22.4-50 50s22.4 50 50 50z"/><path id="path1_fill" class="st1" d="M0 150c0-27.6 22.4-50 50-50h50v100H50c-27.6 0-50-22.4-50-50z"/><path id="path1_fill_1_" class="st2" d="M0 50C0 22.4 22.4 0 50 0h50v100H50C22.4 100 0 77.6 0 50z"/><path id="path2_fill" class="st3" d="M100 0h50c27.6 0 50 22.4 50 50s-22.4 50-50 50h-50V0z"/><path id="path3_fill" class="st4" d="M200 150c0 27.6-22.4 50-50 50s-50-22.4-50-50 22.4-50 50-50 50 22.4 50 50z"/></svg>
|
||||
|
After Width: | Height: | Size: 802 B |
@@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Figma-linux
|
||||
GenericName=Figma-linux
|
||||
Exec=figma-linux %u
|
||||
Icon=Figma-logo.svg
|
||||
Terminal=false
|
||||
TryExec=figma-linux
|
||||
Categories=Development;
|
||||
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>figma-linux</Name>
|
||||
<Homepage>https://github.com/Figma-Linux/figma-linux</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary xml:lang="en">The collaborative interface design tool. Unofficial Figma desktop client for Linux</Summary>
|
||||
<Summary xml:lang="tr">İşbirliğine dayalı arayüz tasarım aracı. Linux için resmi olmayan Figma masaüstü istemcisi</Summary>
|
||||
<Description xml:lang="en" >The collaborative interface design tool. Unofficial Figma desktop client for Linux</Description>
|
||||
<Description xml:lang="tr" >İşbirliğine dayalı arayüz tasarım aracı. Linux için resmi olmayan Figma masaüstü istemcisi</Description>
|
||||
<License>GPL2</License>
|
||||
<PartOf>programming.tools</PartOf>
|
||||
<Archive sha1sum="8c2f373cec0725cf0ff69b9afe8af576fd74b20b" type="binary">
|
||||
https://github.com/Figma-Linux/figma-linux/releases/download/v0.11.5/figma-linux_0.11.5_linux_amd64.zip
|
||||
</Archive>
|
||||
<!-- https://github.com/Figma-Linux/figma-linux/ -->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>figma-linux</Name>
|
||||
<RuntimeDependencies>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/opt</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps/</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/figma-linux.desktop" owner="root">figma-linux.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/icons/Figma-logo.svg">Figma-logo.svg</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/pixmaps/Figma-logo.svg">Figma-logo.svg</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2025-08-07</Date>
|
||||
<Version>0.11.5</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2022-04-11</Date>
|
||||
<Version>0.9.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# Created For PisiLinux
|
||||
|
||||
from pisi.actionsapi import shelltools, get, pisitools
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def install():
|
||||
shelltools.system("rpm2targz fpc-src-3.0.4-1.x86_64.rpm")
|
||||
shelltools.system("tar -zxvf fpc-src-3.0.4-1.x86_64.tar.gz")
|
||||
pisitools.insinto("/usr", "usr/share/")
|
||||
@@ -0,0 +1,37 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fpc-src</Name>
|
||||
<Homepage>https://www.freepascal.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>Fpc-src, pascal için derleyici</Summary>
|
||||
<Description>Fpc-src, pascal için derleyici</Description>
|
||||
<License>GPL</License>
|
||||
<IsA>data</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Archive sha1sum="215aeb42c07eee80a52f8cecd7aa23c11bcc79a1">https://datapacket.dl.sourceforge.net/project/lazarus/Lazarus%20Linux%20x86_64%20RPM/Lazarus%201.8.4/fpc-src-3.0.4-1.x86_64.rpm</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rpm2targz</Dependency>
|
||||
<Dependency>tar</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fpc-src</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/share/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-09-11</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# Created For PisiLinux
|
||||
|
||||
from pisi.actionsapi import shelltools, get, pisitools
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def install():
|
||||
shelltools.system("rpm2targz fpc-3.0.4-1.x86_64.rpm")
|
||||
shelltools.system("tar -zxvf fpc-3.0.4-1.x86_64.tar.gz")
|
||||
pisitools.insinto("/", "usr/")
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fpc</Name>
|
||||
<Homepage>https://www.freepascal.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>Fpc-src, pascal için derleyici</Summary>
|
||||
<Description>Fpc-src, pascal için derleyici</Description>
|
||||
<License>GPL</License>
|
||||
<IsA>data</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Archive sha1sum="e13de5eacd47fa2010ee65ca1ad84a782a942f2d">https://datapacket.dl.sourceforge.net/project/lazarus/Lazarus%20Linux%20x86_64%20RPM/Lazarus%201.8.4/fpc-3.0.4-1.x86_64.rpm</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rpm2targz</Dependency>
|
||||
<Dependency>tar</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fpc</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/bin/</Path>
|
||||
<Path fileType="data">/usr/share/</Path>
|
||||
<Path fileType="data">/usr/lib64/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-09-12</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/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
|
||||
import os
|
||||
|
||||
|
||||
|
||||
def build():
|
||||
autotools.make("clean all")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall('PREFIX="%s/usr"' % (get.installDIR()))
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lazarus</Name>
|
||||
<Homepage>https://www.lazarus-ide.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv1</License>
|
||||
<Icon>lazarus</Icon>
|
||||
<IsA>app</IsA>
|
||||
<Summary>Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır.</Summary>
|
||||
<Description>Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır. Pascal ve Object Pascal geliştiricileri için Rapid Application Development Delphi benzeri bir ortam sağlamayı amaçlar.</Description>
|
||||
<Archive sha1sum="854133645712e9f33d34e9d922685c7d52c503ca" type="targz">
|
||||
https://sourceforge.net/projects/lazarus/files/Lazarus%20Zip%20_%20GZip/Lazarus%204.6/lazarus-4.6-0.tar.gz/download
|
||||
</Archive>
|
||||
|
||||
<BuildDependencies>
|
||||
<Dependency>fpc</Dependency>
|
||||
<Dependency>fpc-src</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>rsync</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lazarus</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fpc</Dependency>
|
||||
<Dependency>fpc-src</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>rsync</Dependency>
|
||||
</RuntimeDependencies>
|
||||
|
||||
<Files>
|
||||
<Path fileType="all">/</Path>
|
||||
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
|
||||
<Update release="4">
|
||||
<Date>2026-03-11</Date>
|
||||
<Version>4.6</Version>
|
||||
<Comment>Update to 4.6</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2021-05-13</Date>
|
||||
<Version>2.0.12</Version>
|
||||
<Comment>Update ver and fix</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Update>
|
||||
|
||||
<Update release="2">
|
||||
<Date>2019-06-22</Date>
|
||||
<Version>2.0.2</Version>
|
||||
<Comment>update versiyon</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
|
||||
<Update release="1">
|
||||
<Date>2018-09-12</Date>
|
||||
<Version>1.8.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lazarus</Name>
|
||||
<Summary xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır.</Summary>
|
||||
<Description xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır. Pascal ve Object Pascal geliştiricileri için Rapid Application Development Delphi benzeri bir ortam sağlamayı amaçlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# Created For PisiLinux
|
||||
|
||||
from pisi.actionsapi import shelltools, get, pisitools
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def install():
|
||||
shelltools.system("rpm2targz fpc-src-3.0.4-1.x86_64.rpm")
|
||||
shelltools.system("tar -zxvf fpc-src-3.0.4-1.x86_64.tar.gz")
|
||||
pisitools.insinto("/usr", "usr/share/")
|
||||
@@ -0,0 +1,37 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fpc-src</Name>
|
||||
<Homepage>https://www.freepascal.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>Fpc-src, pascal için derleyici</Summary>
|
||||
<Description>Fpc-src, pascal için derleyici</Description>
|
||||
<License>GPL</License>
|
||||
<IsA>data</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Archive sha1sum="215aeb42c07eee80a52f8cecd7aa23c11bcc79a1">https://datapacket.dl.sourceforge.net/project/lazarus/Lazarus%20Linux%20x86_64%20RPM/Lazarus%201.8.4/fpc-src-3.0.4-1.x86_64.rpm</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rpm2targz</Dependency>
|
||||
<Dependency>tar</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fpc-src</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/share/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-09-11</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# Created For PisiLinux
|
||||
|
||||
from pisi.actionsapi import shelltools, get, pisitools
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def install():
|
||||
shelltools.system("rpm2targz fpc-3.0.4-1.x86_64.rpm")
|
||||
shelltools.system("tar -zxvf fpc-3.0.4-1.x86_64.tar.gz")
|
||||
pisitools.insinto("/", "usr/")
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fpc</Name>
|
||||
<Homepage>https://www.freepascal.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>Fpc-src, pascal için derleyici</Summary>
|
||||
<Description>Fpc-src, pascal için derleyici</Description>
|
||||
<License>GPL</License>
|
||||
<IsA>data</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Archive sha1sum="e13de5eacd47fa2010ee65ca1ad84a782a942f2d">https://datapacket.dl.sourceforge.net/project/lazarus/Lazarus%20Linux%20x86_64%20RPM/Lazarus%201.8.4/fpc-3.0.4-1.x86_64.rpm</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rpm2targz</Dependency>
|
||||
<Dependency>tar</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fpc</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/bin/</Path>
|
||||
<Path fileType="data">/usr/share/</Path>
|
||||
<Path fileType="data">/usr/lib64/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-09-12</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
Version = get.srcVERSION()
|
||||
WorkDir = "."
|
||||
NoStrip = ["/"]
|
||||
|
||||
def setup():
|
||||
shelltools.system("pwd")
|
||||
#lazarus-project_4.6.0-0_amd64.deb
|
||||
shelltools.system("ar xf lazarus-project_4.6.0-0_amd64.deb")
|
||||
shelltools.system("tar xf data.tar.zst")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/etc", "./etc/*")
|
||||
pisitools.insinto("/usr", "./usr/*")
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lazarus</Name>
|
||||
<Homepage>https://www.lazarus-ide.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv1</License>
|
||||
<Icon>lazarus</Icon>
|
||||
<IsA>app</IsA>
|
||||
<Summary xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır.</Summary>
|
||||
<Description xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır. Pascal ve Object Pascal geliştiricileri için Rapid Application Development Delphi benzeri bir ortam sağlamayı amaçlar.</Description>
|
||||
<Archive sha1sum="093477601298d2f3ba76dbf8864ee5a6d3f44898" type="binary">
|
||||
https://sourceforge.net/projects/lazarus/files/Lazarus%20Linux%20amd64%20DEB/Lazarus%204.6/lazarus-project_4.6.0-0_amd64.deb
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lazarus</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fpc</Dependency>
|
||||
<Dependency>fpc-src</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>rsync</Dependency>
|
||||
</RuntimeDependencies>
|
||||
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
|
||||
<Update release="4">
|
||||
<Date>2026-03-11</Date>
|
||||
<Version>4.6</Version>
|
||||
<Comment>Update to 4.6</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2021-05-13</Date>
|
||||
<Version>2.0.12</Version>
|
||||
<Comment>Update ver and fix</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>samibabat@gmail.com</Email>
|
||||
</Update>
|
||||
|
||||
<Update release="2">
|
||||
<Date>2019-06-22</Date>
|
||||
<Version>2.0.2</Version>
|
||||
<Comment>update versiyon</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
|
||||
<Update release="1">
|
||||
<Date>2018-09-112</Date>
|
||||
<Version>1.8.4</Version>
|
||||
<Comment>Ilk sürüm</Comment>
|
||||
<Name>Sami BABAT</Name>
|
||||
<Email>sami.babat@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lazarus</Name>
|
||||
<Summary xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır.</Summary>
|
||||
<Description xml:lang="tr">Lazarus açık kaynak kodlu Free Pascal derleyicisi tarafından geliştirilip, desteklenen çoklu platform Görsel programlama geliştirme ortamıdır. Pascal ve Object Pascal geliştiricileri için Rapid Application Development Delphi benzeri bir ortam sağlamayı amaçlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
from pisi.actionsapi import get, pisitools, shelltools
|
||||
|
||||
WorkDir = "."
|
||||
NoStrip = ["/"]
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/phpstorm", "PhpStorm-252.23892.419/*")
|
||||
pisitools.dosym("/opt/phpstorm/bin/phpstorm.sh", "/usr/bin/phpstorm")
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=PhpStorm
|
||||
Icon=/opt/phpstorm/bin/webide.png
|
||||
Exec=phpstorm %f
|
||||
Comment=The Drive to Develop
|
||||
Categories=Development;IDE;
|
||||
Terminal=false
|
||||
StartupWMClass=jetbrains-phpstorm
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>phpstorm</Name>
|
||||
<Homepage>https://www.jetbrains.com/phpstorm/</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2.0</License>
|
||||
<License>Proprietary</License>
|
||||
<Summary>PHPStorm - an IDE for the PHP Language</Summary>
|
||||
<Description>PHPStorm - an IDE for the PHP Language</Description>
|
||||
<Archive sha1sum="185c84f7cb1fd112a2729abe52cfe77b6ecbe578" type="targz">
|
||||
https://download-cdn.jetbrains.com/webide/PhpStorm-2025.2.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>phpstorm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libXi</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXtst</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libXxf86vm</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/opt/phpstorm</Path>
|
||||
<Path fileType="data">/usr/bin/phpstorm</Path>
|
||||
<Path fileType="data">/usr/share/applications/phpstorm.desktop</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/phpstorm.desktop">phpstorm.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2025-08-07</Date>
|
||||
<Version>2025.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2021-11-08</Date>
|
||||
<Version>2021.2.3</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
from pisi.actionsapi import get, pisitools, shelltools
|
||||
|
||||
WorkDir = "."
|
||||
NoStrip = ["/"]
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/pycharm-community", "pycharm-2025.2/*")
|
||||
pisitools.dosym("/opt/pycharm-community/bin/pycharm.sh", "/usr/bin/pycharm-community")
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=PyCharm
|
||||
Icon=/opt/pycharm-community/bin/pycharm.png
|
||||
Exec=pycharm-community
|
||||
Comment=The Drive to Develop
|
||||
Categories=Development;IDE;
|
||||
Terminal=false
|
||||
StartupWMClass=jetbrains-pycharm
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pycharm-community</Name>
|
||||
<Homepage>https://www.jetbrains.com/pycharm/</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2.0</License>
|
||||
<License>Proprietary</License>
|
||||
<PartOf>programming</PartOf>
|
||||
<Summary xml:lang="en">Powerful Python and Django IDE. Community edition.</Summary>
|
||||
<Description xml:lang="en">Powerful Python and Django IDE. Community edition.</Description>
|
||||
<Archive type="targz" sha1sum="c55b6cdbdb6871f8fd326ec301a4649055c611f6">
|
||||
https://download-cdn.jetbrains.com/python/pycharm-2025.2.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>pycharm-community</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libXi</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXtst</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libXxf86vm</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/opt/pycharm-community</Path>
|
||||
<Path fileType="data">/usr/bin/pycharm-community</Path>
|
||||
<Path fileType="data">/usr/share/applications/pycharm.desktop</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/pycharm.desktop">pycharm.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="13">
|
||||
<Date>2025-08-07</Date>
|
||||
<Version>2025.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2022-02-17</Date>
|
||||
<Version>2021.3.2</Version>
|
||||
<Comment>version bump</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,42 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
import os
|
||||
|
||||
WorkDir = "."
|
||||
NoStrip = ["/"]
|
||||
Sandbox = ["HOME", "tmp", "usr/local"]
|
||||
|
||||
def setup():
|
||||
os.chdir(get.workDIR())
|
||||
|
||||
sh_files = shelltools.ls("*.sh")
|
||||
if not sh_files:
|
||||
raise Exception("Hiç .sh dosyası bulunamadı! Mevcut dosyalar: %s" % shelltools.ls("*"))
|
||||
|
||||
shelltools.move(sh_files[0], "studio-3t.sh")
|
||||
shelltools.chmod("studio-3t.sh", mode=0755)
|
||||
|
||||
shelltools.system("./studio-3t.sh -q -dir %s/studio-3t -overwrite" % get.workDIR())
|
||||
|
||||
def install():
|
||||
os.chdir(get.workDIR())
|
||||
|
||||
# İkon
|
||||
if os.path.exists("studio-3t/.install4j/Studio-3T.png"):
|
||||
pisitools.insinto("/usr/share/pixmaps", "studio-3t/.install4j/Studio-3T.png", "studio-3t.png")
|
||||
|
||||
# Program dosyaları
|
||||
if os.path.exists("studio-3t"):
|
||||
pisitools.insinto("/opt/studio-3t", "studio-3t/*")
|
||||
|
||||
# Desktop dosyası
|
||||
if os.path.exists("studio-3t.desktop"):
|
||||
pisitools.insinto("/usr/share/applications", "studio-3t.desktop")
|
||||
|
||||
# Sembolik Link
|
||||
if os.path.exists("/opt/studio-3t/Studio-3T"):
|
||||
pisitools.dosym("/opt/studio-3t/Studio-3T", "/usr/bin/studio-3t")
|
||||
@@ -0,0 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Studio 3T
|
||||
Name[tr]=Studio 3T
|
||||
Comment=The Professional Client, IDE and GUI for MongoDB
|
||||
Comment[tr]=MongoDB için profesyonel istemci, IDE ve kullanıcı arayüzü
|
||||
Exec=/usr/bin/studio-3t
|
||||
Icon=studio-3t
|
||||
Categories=Science;Education;Development;Application;
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>studio-3t</Name>
|
||||
<Homepage>https://studio3t.com</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Professional Client, IDE and GUI for MongoDB</Summary>
|
||||
<Description>Studio 3T is the professional GUI and IDE for MongoDB.</Description>
|
||||
<BuildDependencies>
|
||||
<Dependency>jre8-openjdk</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
</BuildDependencies>
|
||||
<Archive sha1sum="779146a13e2586f8fc3597d7b739cc8f421feca6" type="targz" buildpath=".">
|
||||
https://download.studio3t.com/studio-3t/linux/2026.3.0/studio-3t-linux-x64.tar.gz
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>studio-3t</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>jre8-openjdk</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/opt/studio-3t</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/studio-3t.desktop">studio-3t.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2026-04-10</Date>
|
||||
<Version>2026.3.0</Version>
|
||||
<Comment>İlk paketleme.</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>gitbook</Name>
|
||||
<Summary xml:lang="tr">GitBook Simple writing from your desktop.</Summary>
|
||||
<Description xml:lang="tr">The GitBook workflow you love, on your Desktop. Try it now !</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 http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/sublime_merge","*")
|
||||
|
||||
for i in [16,32,48,128,256]:
|
||||
pisitools.domove("/opt/sublime_merge/Icon/{0}x{0}/sublime-merge.png".format(i),"/usr/share/icons/hicolor/{0}x{0}/apps".format(i))
|
||||
|
||||
pisitools.removeDir("/opt/sublime_merge/Icon")
|
||||
|
||||
|
||||
pisitools.dosym("/opt/sublime_merge/sublime_merge","/usr/bin/sublime_merge")
|
||||
@@ -0,0 +1,18 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Sublime Merge
|
||||
GenericName=Git Client
|
||||
Comment=Sublime Merge is a Git client, from the makers of Sublime Text
|
||||
Exec=/opt/sublime_merge/sublime_merge %F
|
||||
Terminal=false
|
||||
MimeType=text/plain;
|
||||
Icon=sublime-merge
|
||||
Categories=Development;
|
||||
StartupNotify=true
|
||||
Actions=new-window;
|
||||
|
||||
[Desktop Action new-window]
|
||||
Name=New Window
|
||||
Exec=/opt/sublime_merge/sublime_merge --launch-or-new-window
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>sublime-merge</Name>
|
||||
<Homepage>https://www.sublimemerge.com</Homepage>
|
||||
<Packager>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Sublime Merge</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Meet a new Git Client, from the makers of Sublime Text</Summary>
|
||||
<Description>Meet a new Git Client, from the makers of Sublime Text</Description>
|
||||
<Archive sha1sum="6c0821ffed28ec7690fb72f5c957e77322111532" type="tarxz">https://download.sublimetext.com/sublime_merge_build_2039_x64.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>sublime-merge</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/</Path>
|
||||
<Path fileType="data">/usr/share/applications/</Path>
|
||||
<Path fileType="data">/opt/sublime_merge/</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/sublime_merge.desktop" owner="root">sublime_merge.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-01-07</Date>
|
||||
<Version>2039</Version>
|
||||
<Comment>First release.</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>sublime-text</Name>
|
||||
<Summary xml:lang="tr">Gelişmiş metin düzenleyici</Summary>
|
||||
<Description xml:lang="tr">Sublime Text kod, işaretleme ve düzyazı için gelişmiş bir metin düzenleyicidir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/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
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/sublime_text","*")
|
||||
for i in [16,32,48,128,256]:
|
||||
pisitools.domove("/opt/sublime_text/Icon/{0}x{0}/sublime-text.png".format(i),"/usr/share/icons/hicolor/{0}x{0}/apps".format(i))
|
||||
pisitools.removeDir("/opt/sublime_text/Icon")
|
||||
pisitools.dosym("/opt/sublime_text/sublime_text","/usr/bin/sublime_text")
|
||||
@@ -0,0 +1,24 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Sublime Text
|
||||
GenericName=Text Editor
|
||||
Comment=Sophisticated text editor for code, markup and prose
|
||||
Exec=LC_ALL=en_US.UTF-8 /opt/sublime_text/sublime_text %F
|
||||
Terminal=false
|
||||
MimeType=text/plain;
|
||||
Icon=sublime-text
|
||||
Categories=TextEditor;Development;
|
||||
StartupNotify=true
|
||||
Actions=new-window;new-file;
|
||||
|
||||
[Desktop Action new-window]
|
||||
Name=New Window
|
||||
Exec=LC_ALL=en_US.UTF-8 /opt/sublime_text/sublime_text --launch-or-new-window
|
||||
OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action new-file]
|
||||
Name=New File
|
||||
Exec=LC_ALL=en_US.UTF-8 /opt/sublime_text/sublime_text --command new_file
|
||||
OnlyShowIn=Unity;
|
||||
|
||||
@@ -0,0 +1,167 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>sublime-text</Name>
|
||||
<Homepage>http://www.sublimetext.com</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Sublime Text</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Sophisticated text editor</Summary>
|
||||
<Description>Sublime Text is a sophisticated text editor for code, markup and prose.</Description>
|
||||
<Archive sha1sum="12035340299901105e15dd927d2bef2bcc20923b" type="tarxz">
|
||||
https://download.sublimetext.com/sublime_text_build_4200_x64.tar.xz
|
||||
</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>sublime-text</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/opt/sublime_text</Path>
|
||||
<Path fileType="executable">/usr/bin/</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/</Path>
|
||||
<Path fileType="data">/usr/share/applications/</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/sublime_text.desktop" owner="root">sublime_text.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="18">
|
||||
<Date>2025-05-25</Date>
|
||||
<Version>4200</Version>
|
||||
<Comment>version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="17">
|
||||
<Date>2025-05-01</Date>
|
||||
<Version>4192</Version>
|
||||
<Comment>version fix.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="16">
|
||||
<Date>2025-01-29</Date>
|
||||
<Version>4192</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2023-11-30</Date>
|
||||
<Version>4169</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2023-08-24</Date>
|
||||
<Version>4152</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2022-11-18</Date>
|
||||
<Version>4143</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2021-11-04</Date>
|
||||
<Version>4121</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2021-07-16</Date>
|
||||
<Version>4113</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2021-05-27</Date>
|
||||
<Version>4107</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2019-10-01</Date>
|
||||
<Version>3211</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2019-04-07</Date>
|
||||
<Version>3207</Version>
|
||||
<Comment>version dump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2019-03-13</Date>
|
||||
<Version>3200</Version>
|
||||
<Comment>version fix.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2018-05-14</Date>
|
||||
<Version>3176</Version>
|
||||
<Comment>version fix.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>info@erkanisik.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-05-08</Date>
|
||||
<Version>3170</Version>
|
||||
<Comment>user release.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>info@erkanisik.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-11-26</Date>
|
||||
<Version>3143</Version>
|
||||
<Comment>user release.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>info@erkanisik.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-09-17</Date>
|
||||
<Version>3144</Version>
|
||||
<Comment>Developer release.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>info@erkanisik.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2017-07-14</Date>
|
||||
<Version>3126</Version>
|
||||
<Comment>Second release.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>info@erkanisik.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-02-23</Date>
|
||||
<Version>3103</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>sublime-text</Name>
|
||||
<Summary xml:lang="tr">Gelişmiş metin düzenleyici</Summary>
|
||||
<Description xml:lang="tr">Sublime Text kod, işaretleme ve düzyazı için gelişmiş bir metin düzenleyicidir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||