@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>desktop.pisilinux</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,38 @@
|
||||
# -*- 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
|
||||
from pisi.actionsapi import shelltools
|
||||
import glob
|
||||
|
||||
projectDir = "/usr/lib/kaptan/"
|
||||
|
||||
def install():
|
||||
for file in glob.glob1(".", "*"):
|
||||
shelltools.chmod(file, 0755)
|
||||
|
||||
for file in glob.glob1("languages", "*"):
|
||||
shelltools.chmod("languages/"+file, 0755)
|
||||
|
||||
for file in glob.glob1("kaptan", "*"):
|
||||
shelltools.chmod("kaptan/"+file, 0755)
|
||||
|
||||
for file in glob.glob1("data", "*"):
|
||||
shelltools.chmod("data/"+file, 0755)
|
||||
|
||||
for file in glob.glob1("data/images", "*"):
|
||||
shelltools.chmod("data/images/"+file, 0755)
|
||||
|
||||
pisitools.insinto("/usr/share/pixmaps/", "data/images/kaptan-icon.png", "kaptan.png")
|
||||
pisitools.insinto(projectDir, "data/")
|
||||
pisitools.insinto(projectDir, "languages/")
|
||||
pisitools.insinto(projectDir, "kaptan/")
|
||||
pisitools.insinto(projectDir, "kaptan.py", "kaptan5.py")
|
||||
pisitools.insinto(projectDir, "rc_kaptan.py")
|
||||
pisitools.insinto("/usr/bin/", "script/kaptan")
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>kaptan</Name>
|
||||
<Homepage>http://pisilinux.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>kaptan</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Kaptan, Pisi Linux workspace configuration wizard</Summary>
|
||||
<Description>Kaptan lets you configure your workspace on first login.</Description>
|
||||
<Archive sha1sum="21724354d0d3899af9ccb1b5dbe7f1121c8c86f6" type="targz">https://github.com/PisiLinuxNew/kaptan/archive/5.0-beta.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-qt5-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>kaptan</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3-qt5</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/lib/kaptan</Path>
|
||||
<Path fileType="data">/usr/lib/python3.4/site-packages</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-04-15</Date>
|
||||
<Version>5.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Metehan Özbek</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>kaptan</Name>
|
||||
<Summary xml:lang="tr">Pisi Linux Kaptan</Summary>
|
||||
<Summary xml:lang="es">Pisi Linux Kaptan</Summary>
|
||||
<Description xml:lang="tr">Kaptan, bilgisayarınız ilk defa açıldığında çalışma ortamınızı kişiselleştirmenize yardımcı olur.</Description>
|
||||
<Description xml:lang="es">Kaptan, el asistente de inicio de Pisi Linux que le ayudará a personalizar su entorno de trabajo.</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 pisitools
|
||||
from pisi.actionsapi import kde4
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
# Copy Notification Rc file for Kde 4
|
||||
pisitools.insinto("%s/package-manager/" % kde4.appsdir, "src/package-manager.notifyrc")
|
||||
|
||||
for lang in ('de','en','es','fr','nl','sv','tr'):
|
||||
pisitools.insinto("%s/html/%s/package-manager/" % (kde4.docdir, lang),
|
||||
"help/%s/main_help.html" % lang, "index.html")
|
||||
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>package-manager</Name>
|
||||
<Homepage>http://www.pisilinux.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>PiSi graphical user interface</Summary>
|
||||
<Description>Package Manager is PiSi's easy-to-use graphical user interface.</Description>
|
||||
<Archive sha1sum="c46fdf5835c9abf56f3af82d2e960ac7fe51382a" type="targz">https://github.com/PisiLinuxNew/package-manager/archive/package-manager.4.1.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>docutils</Dependency>
|
||||
<Dependency versionFrom="5.5.1">python-qt5-devel</Dependency>
|
||||
<Dependency>python-sip</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>package-manager</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>pisi</Dependency>
|
||||
<Dependency versionFrom="5.5.1">python-qt5</Dependency>
|
||||
<!-- <Dependency>python-appinfo</Dependency> -->
|
||||
<Dependency>python-sip</Dependency>
|
||||
<Dependency>pisilinux-desktop-services</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-04-15</Date>
|
||||
<Version>4.1.1</Version>
|
||||
<Comment>ported pyqt5</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>package-manager</Name>
|
||||
<Summary xml:lang="tr">PiSi kullanıcı grafik arayüzü</Summary>
|
||||
<Description xml:lang="tr">PiSi paket yöneticisine ait paket kurma, kaldırma ve güncelleme gibi işlerin grafik ortamda yapılabilmesini sağlayan PiSi grafik arayüzü.</Description>
|
||||
<Description xml:lang="fr">PiSi est une interface graphique permettant d'effectuer l'installation, la suppression et la mise à jour de paquet PiSi depuis un environnement graphique.</Description>
|
||||
</Source>
|
||||
</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 pythonmodules
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
#WorkDir = 'pds-%s' % get.srcVERSION()
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
pisitools.domove("/usr/lib/python2.7/site-packages", "/usr/lib/python3.4")
|
||||
pisitools.removeDir("/usr/lib/python2.7")
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pisilinux-desktop-services</Name>
|
||||
<Homepage>http://www.pisilinux.org</Homepage>
|
||||
<Packager>
|
||||
<Name>pisilinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Pisi Linux Desktop Services</Summary>
|
||||
<Description>pisilinux-desktop-services is a wrapper python module for integrating various desktop environments using PyQt.</Description>
|
||||
<Archive sha1sum="2351a0e61002047309742e3df0c792e7060afbec" type="targz">https://github.com/PisiLinuxNew/pds/archive/2.0.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-qt5-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="0">environment.patch</Patch>
|
||||
<Patch level="0">mate_support.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pisilinux-desktop-services</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-qt5</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python3.4/</Path>
|
||||
<Path fileType="data">/usr/share/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-04-15</Date>
|
||||
<Version>2.0.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pisilinux-desktop-services</Name>
|
||||
<Summary xml:lang="tr">Pisi Linux Masaüstü Hizmetleri</Summary>
|
||||
<Description xml:lang="tr">pisilinux-desktop-services, Pisi Linux Uygulamalarının farklı masaüstü ortamları ile bütünleşik bir şekilde çalışmasını sağlayan bir Python modülüdür.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+73952
-73810
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
ee0efe142d27195ab659952edb29e7024f1a6763
|
||||
65b3c5a762105ed5c26a5378e76dad05b49d2446
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
475cd1bd68c34fc942c06a4bd845d6143f93c9c5
|
||||
26b59f3abc6649caf3939d64166f2eec2c7efdbe
|
||||
Reference in New Issue
Block a user