diff --git a/desktop/pisilinux/service-manager/actions.py b/desktop/pisilinux/service-manager/actions.py new file mode 100644 index 0000000000..c591c9e858 --- /dev/null +++ b/desktop/pisilinux/service-manager/actions.py @@ -0,0 +1,17 @@ +#!/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 shelltools + +def build(): + pisitools.dosed("data/service-manager.desktop", "NotShowIn=KDE;", "") + shelltools.system("python setup.py build") + +def install(): + pythonmodules.install() + diff --git a/desktop/pisilinux/service-manager/files/flag-yellow.png b/desktop/pisilinux/service-manager/files/flag-yellow.png new file mode 100644 index 0000000000..1306f8eed6 Binary files /dev/null and b/desktop/pisilinux/service-manager/files/flag-yellow.png differ diff --git a/desktop/pisilinux/service-manager/files/pds.patch b/desktop/pisilinux/service-manager/files/pds.patch new file mode 100644 index 0000000000..a7f2305e02 --- /dev/null +++ b/desktop/pisilinux/service-manager/files/pds.patch @@ -0,0 +1,433 @@ +diff -Nuar service-manager-3.0.0.orig//setup.py service-manager-3.0.0/setup.py +--- service-manager-3.0.0.orig//setup.py 2011-03-21 11:09:29.708000015 +0200 ++++ service-manager-3.0.0/setup.py 2011-03-21 11:10:08.152000017 +0200 +@@ -26,6 +26,12 @@ + from distutils.command.install import install + + PROJECT = about.appName ++FOR_KDE_4=False ++ ++if 'kde4' in sys.argv: ++ sys.argv.remove('kde4') ++ FOR_KDE_4=True ++ print 'UI files will be created for KDE 4.. ' + + def makeDirs(directory): + if not os.path.exists(directory): +@@ -47,8 +53,14 @@ + + # Collect UI files + filelist = [] +- for filename in glob.glob1("ui", "*.ui"): +- os.system("pykde4uic -o ui/ui_%s.py ui/%s" % (filename.split(".")[0], filename)) ++ # UI files for kde4 ++ if FOR_KDE_4: ++ for filename in glob.glob1("ui", "*.ui"): ++ os.system("pykde4uic -o ui/ui_%s.py ui/%s" % (filename.split(".")[0], filename)) ++ #UI files for pure-qt ++ else : ++ for filename in glob.glob1("ui", "*.ui"): ++ os.system("pyuic4 -o ui/ui_%s.py ui/%s -g %s" % (filename.split(".")[0], filename, PROJECT)) + + # Collect headers for desktop files + for filename in glob.glob("data/*.desktop.in"): +@@ -104,8 +116,15 @@ + os.system("intltool-merge -d po %s %s" % (filename, filename[:-3])) + + print "Generating UIs..." +- for filename in glob.glob1("ui", "*.ui"): +- os.system("pykde4uic -o build/servicemanager/ui_%s.py ui/%s" % (filename.split(".")[0], filename)) ++ # Collect UI for kde4 ++ if FOR_KDE_4: ++ for filename in glob.glob1("ui", "*.ui"): ++ os.system("pykde4uic -o build/servicemanager/ui_%s.py ui/%s" % (filename.split(".")[0], filename)) ++ # Collect UI for pure-qt ++ else: ++ for filename in glob.glob1("ui", "*.ui"): ++ os.system("pyuic4 -o build/servicemanager/ui_%s.py ui/%s -g %s" % (filename.split(".")[0], filename, PROJECT)) ++ + + print "Generating RCs..." + for filename in glob.glob1("data", "*.qrc"): +@@ -128,9 +147,13 @@ + bin_dir = "/usr/bin" + + locale_dir = os.path.join(root_dir, "locale") +- apps_dir = os.path.join(root_dir, "applications/kde4") +- services_dir = os.path.join(root_dir, "kde4/services") +- project_dir = os.path.join(root_dir, "kde4/apps", PROJECT) ++ if FOR_KDE_4: ++ apps_dir = os.path.join(root_dir, "applications/kde4") ++ services_dir = os.path.join(root_dir, "kde4/services") ++ project_dir = os.path.join(root_dir, "kde4/apps", PROJECT) ++ else: ++ apps_dir = os.path.join(root_dir, "applications") ++ project_dir = os.path.join(root_dir, PROJECT) + + # Make directories + print "Making directories..." +@@ -138,13 +161,15 @@ + makeDirs(locale_dir) + makeDirs(apps_dir) + makeDirs(project_dir) +- makeDirs(services_dir) ++ if FOR_KDE_4: ++ makeDirs(services_dir) + + # Install desktop files + print "Installing desktop files..." + + shutil.copy("data/%s.desktop" % PROJECT, apps_dir) +- shutil.copy("data/kcm_%s.desktop" % PROJECT, services_dir) ++ if FOR_KDE_4: ++ shutil.copy("data/kcm_%s.desktop" % PROJECT, services_dir) + shutil.rmtree('build/data') + + # Install codes +@@ -192,14 +217,19 @@ + bin_dir = "/usr/bin" + + locale_dir = os.path.join(root_dir, "locale") +- apps_dir = os.path.join(root_dir, "applications/kde4") +- services_dir = os.path.join(root_dir, "kde4/services") +- project_dir = os.path.join(root_dir, "kde4/apps", PROJECT) ++ if FOR_KDE_4: ++ apps_dir = os.path.join(root_dir, "applications/kde4") ++ services_dir = os.path.join(root_dir, "kde4/services") ++ project_dir = os.path.join(root_dir, "kde4/apps", PROJECT) ++ else: ++ apps_dir = os.path.join(root_dir, "applications") ++ project_dir = os.path.join(root_dir, PROJECT) + + print 'Uninstalling ...' + remove(project_dir) + remove(apps_dir +"/%s.desktop" % PROJECT) +- remove(services_dir +"/kcm_%s.desktop" % PROJECT) ++ if FOR_KDE_4: ++ remove(services_dir +"/kcm_%s.desktop" % PROJECT) + for filename in glob.glob1('po', '*.po'): + lang = filename.rsplit(".", 1)[0] + remove(os.path.join(locale_dir, "%s/LC_MESSAGES" % lang, "%s.mo" % PROJECT)) +diff -Nuar service-manager-3.0.0.orig//src/servicemanager/about.py service-manager-3.0.0/src/servicemanager/about.py +--- service-manager-3.0.0.orig//src/servicemanager/about.py 2011-03-21 11:09:29.711000015 +0200 ++++ service-manager-3.0.0/src/servicemanager/about.py 2011-03-21 11:10:08.152000017 +0200 +@@ -11,29 +11,35 @@ + # Please read the COPYING file. + # + +-# PyKDE4 Stuff +-from PyKDE4.kdecore import KAboutData, ki18n, ki18nc +- +-PACKAGE = "Service Manager" ++# PDS Stuff ++import context as ctx + + # Application Data ++PACKAGE = "Service Manager" + appName = "service-manager" + modName = "servicemanager" +-programName = ki18n(PACKAGE) + version = "3.0.0" +-description = ki18n(PACKAGE) +-license = KAboutData.License_GPL +-copyright = ki18n("(c) 2009-2010 TUBITAK/UEKAE") +-text = ki18n(None) + homePage = "http://developer.pardus.org.tr/projects/service-manager" + bugEmail = "bugs@pardus.org.tr" ++icon = "flag-yellow" + catalog = appName +-aboutData = KAboutData(appName, catalog, programName, version, description, license, copyright, text, homePage, bugEmail) + +-# Authors +-aboutData.addAuthor(ki18n("Gökmen Göksel"), ki18n("Current Maintainer")) +-aboutData.addAuthor(ki18n("Bahadır Kandemir"), ki18n("COMAR Author")) +-aboutData.setTranslator(ki18nc("NAME OF TRANSLATORS", "Your names"), ki18nc("EMAIL OF TRANSLATORS", "Your emails")) ++if ctx.Pds.session == ctx.pds.Kde4: ++ ++ # PyKDE4 Stuff ++ from PyKDE4.kdecore import KAboutData, ki18n, ki18nc ++ ++ programName = ki18n(PACKAGE) ++ description = ki18n(PACKAGE) ++ license = KAboutData.License_GPL ++ copyright = ki18n("(c) 2009-2010 TUBITAK/UEKAE") ++ text = ki18n(None) ++ aboutData = KAboutData(appName, catalog, programName, version, description, license, copyright, text, homePage, bugEmail) ++ ++ # Authors ++ aboutData.addAuthor(ki18n("Gökmen Göksel"), ki18n("Current Maintainer")) ++ aboutData.addAuthor(ki18n("Bahadır Kandemir"), ki18n("COMAR Author")) ++ aboutData.setTranslator(ki18nc("NAME OF TRANSLATORS", "Your names"), ki18nc("EMAIL OF TRANSLATORS", "Your emails")) + +-# Use this if icon name is different than appName +-aboutData.setProgramIconName("flag-yellow") ++ # Use this if icon name is different than appName ++ aboutData.setProgramIconName(icon) +diff -Nuar service-manager-3.0.0.orig//src/servicemanager/base.py service-manager-3.0.0/src/servicemanager/base.py +--- service-manager-3.0.0.orig//src/servicemanager/base.py 2011-03-21 11:09:29.712000015 +0200 ++++ service-manager-3.0.0/src/servicemanager/base.py 2011-03-21 11:10:08.157000017 +0200 +@@ -20,16 +20,18 @@ + from PyQt4.QtGui import QMessageBox + from PyQt4.QtCore import * + +-# PyKDE4 Stuff +-from PyKDE4.kdeui import * +-from PyKDE4.kdecore import * +- + # Application Stuff + from servicemanager.backend import ServiceIface +-from servicemanager.about import aboutData + from servicemanager.ui_main import Ui_mainManager + from servicemanager.widgets import ServiceItemWidget, ServiceItem + ++# Pds vs KDE ++import servicemanager.context as ctx ++if ctx.Pds.session == ctx.pds.Kde4: ++ from PyKDE4.kdecore import i18n ++else: ++ from servicemanager.context import i18n ++ + class MainManager(QtGui.QWidget): + def __init__(self, parent, standAlone=True): + QtGui.QWidget.__init__(self, parent) +diff -Nuar service-manager-3.0.0.orig//src/servicemanager/context.py service-manager-3.0.0/src/servicemanager/context.py +--- service-manager-3.0.0.orig//src/servicemanager/context.py 1970-01-01 02:00:00.000000000 +0200 ++++ service-manager-3.0.0/src/servicemanager/context.py 2011-03-21 11:10:08.161000017 +0200 +@@ -0,0 +1,29 @@ ++#!/usr/bin/python ++# -*- coding: utf-8 -*- ++ ++import pds ++import traceback ++from time import time ++from pds.qiconloader import QIconLoader ++ ++Pds = pds.Pds('service-manager', debug = False) ++# Force to use Default Session for testing ++# Pds.session = pds.DefaultDe ++# print 'Current session is : %s %s' % (Pds.session.Name, Pds.session.Version) ++ ++i18n = Pds.i18n ++KIconLoader = QIconLoader(Pds, forceCache=True) ++KIcon = KIconLoader.icon ++ ++time_counter = 0 ++start_time = time() ++last_time = time() ++ ++def _time(): ++ global last_time, time_counter ++ trace = list(traceback.extract_stack()) ++ diff = time() - start_time ++ print ('%s ::: %s:%s' % (time_counter, trace[-2][0].split('/')[-1], trace[-2][1])), diff, diff - last_time ++ last_time = diff ++ time_counter += 1 ++ +diff -Nuar service-manager-3.0.0.orig//src/servicemanager/widgets.py service-manager-3.0.0/src/servicemanager/widgets.py +--- service-manager-3.0.0.orig//src/servicemanager/widgets.py 2011-03-21 11:09:29.712000015 +0200 ++++ service-manager-3.0.0/src/servicemanager/widgets.py 2011-03-21 11:10:08.163000017 +0200 +@@ -15,10 +15,13 @@ + from PyQt4 import QtGui + from PyQt4.QtCore import * + +-# KDE Stuff +-from PyKDE4 import kdeui +-from PyKDE4.kdecore import i18n +-from PyKDE4.kdecore import KGlobal ++# Pds vs KDE ++import servicemanager.context as ctx ++if ctx.Pds.session == ctx.pds.Kde4: ++ from PyKDE4.kdeui import KIcon ++ from PyKDE4.kdecore import i18n ++else: ++ from servicemanager.context import KIcon, i18n + + # Application Stuff + from servicemanager.ui_item import Ui_ServiceItemWidget +@@ -31,6 +34,7 @@ + # Python Stuff + import time + import textwrap ++import locale + + # Pisi Stuff + import pisi +@@ -60,10 +64,10 @@ + + self.toggleButtons() + +- self.ui.buttonStart.setIcon(kdeui.KIcon("media-playback-start")) +- self.ui.buttonStop.setIcon(kdeui.KIcon("media-playback-stop")) +- self.ui.buttonReload.setIcon(kdeui.KIcon("view-refresh")) +- self.ui.buttonInfo.setIcon(kdeui.KIcon("dialog-information")) ++ self.ui.buttonStart.setIcon(KIcon("media-playback-start")) ++ self.ui.buttonStop.setIcon(KIcon("media-playback-stop")) ++ self.ui.buttonReload.setIcon(KIcon("view-refresh")) ++ self.ui.buttonInfo.setIcon(KIcon("dialog-information")) + + self.toggled = False + self.root = parent +@@ -100,7 +104,7 @@ + self.ui.buttonStop.setEnabled(self.running) + self.ui.buttonReload.setEnabled(self.running) + +- self.ui.labelStatus.setPixmap(kdeui.KIcon(icon).pixmap(32, 32)) ++ self.ui.labelStatus.setPixmap(KIcon(icon).pixmap(32, 32)) + self.showStatus() + self.runningAtStart = False + if state in ('on', 'stopped'): +@@ -161,7 +165,7 @@ + try: + # TODO add a package map for known services + service = service.replace('_','-') +- lang = str(KGlobal.locale().language()) ++ lang = str(locale.getdefaultlocale()[0].split("_")[0]) + desc = pisi.api.info_name(service)[0].package.description + if desc.has_key(lang): + return unicode(desc[lang]) +@@ -178,7 +182,7 @@ + self.ui = Ui_InfoWidget() + self.ui.setupUi(self) + self.ui.buttonHide.clicked.connect(self.hideDescription) +- self.ui.buttonHide.setIcon(kdeui.KIcon("dialog-close")) ++ self.ui.buttonHide.setIcon(KIcon("dialog-close")) + + self._animation = 2 + self._duration = 500 +diff -Nuar service-manager-3.0.0.orig//src/service-manager.py service-manager-3.0.0/src/service-manager.py +--- service-manager-3.0.0.orig//src/service-manager.py 2011-03-21 11:09:29.712000015 +0200 ++++ service-manager-3.0.0/src/service-manager.py 2011-03-21 11:33:38.407000038 +0200 +@@ -13,46 +13,72 @@ + + # System + import sys +- + import dbus + ++# Pds Stuff ++import servicemanager.context as ctx ++ ++# Application Stuff ++import servicemanager.about as about ++ + # Qt Stuff + from PyQt4.QtCore import SIGNAL + +-# PyKDE4 Stuff +-from PyKDE4.kdeui import * +-from PyKDE4.kdecore import * +- +-def CreatePlugin(widget_parent, parent, component_data): +- from servicemanager.kcmodule import ServiceManager +- return ServiceManager(component_data, parent) ++# Enable plugin if session is Kde4 ++if ctx.Pds.session == ctx.pds.Kde4: ++ def CreatePlugin(widget_parent, parent, component_data): ++ from servicemanager.kcmodule import ServiceManager ++ return ServiceManager(component_data, parent) + + if __name__ == '__main__': + +- # Service Manager +- from servicemanager.standalone import ServiceManager +- +- # Application Stuff +- from servicemanager.about import aboutData +- +- # Set Command-line arguments +- KCmdLineArgs.init(sys.argv, aboutData) +- +- # Create a Kapplitcation instance +- app = KApplication() +- + # DBUS MainLoop + if not dbus.get_default_main_loop(): + from dbus.mainloop.qt import DBusQtMainLoop + DBusQtMainLoop(set_as_default = True) + +- # Create Main Widget +- mainWindow = ServiceManager(None, 'service-manager') +- mainWindow.show() ++ # Pds vs KDE ++ if ctx.Pds.session == ctx.pds.Kde4: ++ ++ # PyKDE4 Stuff ++ from PyKDE4.kdeui import * ++ from PyKDE4.kdecore import * ++ ++ # Application Stuff ++ from servicemanager.standalone import ServiceManager ++ from servicemanager.about import aboutData ++ ++ # Set Command-line arguments ++ KCmdLineArgs.init(sys.argv, aboutData) ++ ++ # Create a Kapplitcation instance ++ app = KApplication() ++ ++ # Create Main Widget ++ mainWindow = ServiceManager(None, aboutData.appName) ++ mainWindow.show() ++ ++ else: ++ ++ # Application Stuff ++ from servicemanager.base import MainManager ++ ++ # Pds Stuff ++ from pds.quniqueapp import QUniqueApplication ++ from servicemanager.context import KIcon, i18n ++ ++ # Create a QUniqueApllication instance ++ app = QUniqueApplication(sys.argv, catalog=about.appName) ++ ++ # Create Main Widget and make some settings ++ mainWindow = MainManager(None) ++ mainWindow.show() ++ mainWindow.resize(640, 480) ++ mainWindow.setWindowTitle(i18n(about.PACKAGE)) ++ mainWindow.setWindowIcon(KIcon(about.icon)) + + # Create connection for lastWindowClosed signal to quit app + app.connect(app, SIGNAL('lastWindowClosed()'), app.quit) + +- # Run the application ++ # Run the applications + app.exec_() +- +diff -Nuar service-manager-3.0.0.orig//ui/main.ui service-manager-3.0.0/ui/main.ui +--- service-manager-3.0.0.orig//ui/main.ui 2011-03-21 11:09:29.703000015 +0200 ++++ service-manager-3.0.0/ui/main.ui 2011-03-21 11:10:08.165000017 +0200 +@@ -17,16 +17,10 @@ + + + +- +- +- false +- +- ++ ++ + type service name to search... + +- +- true +- + + + +@@ -106,13 +100,6 @@ + + + +- +- +- KLineEdit +- QLineEdit +-
klineedit.h
+-
+-
+ + + diff --git a/desktop/pisilinux/service-manager/pspec.xml b/desktop/pisilinux/service-manager/pspec.xml new file mode 100644 index 0000000000..265c4df6ba --- /dev/null +++ b/desktop/pisilinux/service-manager/pspec.xml @@ -0,0 +1,50 @@ + + + + + service-manager + http://www.pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + System Service configuration GUI + This system service configuration software is developed for Pisi Linux. It provides managing system services. + https://github.com/PisiLinuxNew/service-manager/archive/3.1.0.tar.gz + + pisilinux-desktop-services + docutils + python-qt5-devel + + + + + service-manager + + python-qt5 + pisilinux-desktop-services + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/applications + + + + + + + + + 2016-06-03 + 3.1.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/desktop/pisilinux/service-manager/translations.xml b/desktop/pisilinux/service-manager/translations.xml new file mode 100644 index 0000000000..a54482cb76 --- /dev/null +++ b/desktop/pisilinux/service-manager/translations.xml @@ -0,0 +1,9 @@ + + + + service-manager + Servis yönetim arayüzü + Servis yöneticisi, Pisi Linux'da çalışan sunucu ve servislerin yönetilmesini sağlar + Le gestionnaire de Service est utilisé pour administrer les services lancés dans Pisi Linux. + + diff --git a/pisi-index.xml b/pisi-index.xml index 46c90b4971..8066208282 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -4163,7 +4163,7 @@ Mozilla Firefox – otwarta przeglądarka internetowa oparta na silniku Gecko, stworzona i rozwijana przez Korporację Mozilla oraz ochotników. Navegue por la web de forma rápida y segura. Navegador web de código abierto que se puede personalizar con características adicionales. firefox - https://ftp.mozilla.org/pub/firefox/releases/44.0.2/source/firefox-44.0.2.source.tar.xz + https://ftp.mozilla.org/pub/firefox/releases/47.0/source/firefox-47.0.source.tar.xz mozconfig pisilinux/browserconfig.properties @@ -4172,6 +4172,7 @@ wget yasm zlib-devel + gtk3-devel gtk2-devel libXt-devel libSM-devel @@ -4179,18 +4180,26 @@ libffi-devel gnutls-devel hunspell-devel + sqlite-devel + autoconf213 alsa-lib-devel dbus-glib-devel libXcomposite-devel libXScrnSaver-devel libjpeg-turbo-devel pulseaudio-libs-devel + gconf-devel + startup-notification-devel + libvpx-devel + libevent-devel + pulseaudio-libs-devel gst-plugins-base-next-devel nss-devel nspr-devel firefox-install-dir.patch + gtk3.patch network/web/firefox/pspec.xml @@ -4200,6 +4209,7 @@ atk nss dbus + gtk3 gtk2 nspr zlib @@ -4215,17 +4225,23 @@ sqlite iconcan libXext + icu4c + libvpx alsa-lib + gconf + libevent freetype hunspell dbus-glib libXfixes fontconfig + gstreamer-next gdk-pixbuf libXdamage libXrender libXcomposite libjpeg-turbo + startup-notification /etc/ @@ -4259,7 +4275,7 @@ system.locale lang-az - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org @@ -4273,7 +4289,7 @@ system.locale lang-be - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-be@firefox.mozilla.org @@ -4287,7 +4303,7 @@ system.locale lang-bs - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org @@ -4301,7 +4317,7 @@ system.locale lang-ca - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org @@ -4315,7 +4331,7 @@ system.locale lang-da - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org @@ -4329,7 +4345,7 @@ system.locale lang-de - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org @@ -4343,7 +4359,7 @@ system.locale lang-el - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org @@ -4357,7 +4373,7 @@ system.locale lang-en-US - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org @@ -4371,7 +4387,7 @@ system.locale lang-en-ZA - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-en-ZA@firefox.mozilla.org @@ -4385,7 +4401,7 @@ system.locale lang-en-GB - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org @@ -4399,7 +4415,7 @@ system.locale lang-es-AR - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org @@ -4413,7 +4429,7 @@ system.locale lang-es-CL - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org @@ -4427,7 +4443,7 @@ system.locale lang-es-ES - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org @@ -4441,7 +4457,7 @@ system.locale lang-fi - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org @@ -4455,7 +4471,7 @@ system.locale lang-fr - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org @@ -4469,7 +4485,7 @@ system.locale lang-hr - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org @@ -4483,7 +4499,7 @@ system.locale lang-hu - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org @@ -4497,7 +4513,7 @@ system.locale lang-it - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org @@ -4511,7 +4527,7 @@ system.locale lang-lt - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org @@ -4525,7 +4541,7 @@ system.locale lang-nl - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org @@ -4539,7 +4555,7 @@ system.locale lang-pl - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org @@ -4553,7 +4569,7 @@ system.locale lang-pt-BR - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org @@ -4567,7 +4583,7 @@ system.locale lang-pt-PT - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org @@ -4581,7 +4597,7 @@ system.locale lang-ro - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org @@ -4595,7 +4611,7 @@ system.locale lang-ru - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org @@ -4609,7 +4625,7 @@ system.locale lang-sr - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org @@ -4623,7 +4639,7 @@ system.locale lang-sv-SE - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org @@ -4637,7 +4653,7 @@ system.locale lang-tr - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org @@ -4651,13 +4667,20 @@ system.locale lang-uk - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org + + 2016-06-16 + 47.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2016-06-09 44.0.2 @@ -67776,6 +67799,53 @@ + + + service-manager + http://www.pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.pisilinux + System Service configuration GUI + Servis yönetim arayüzü + Le gestionnaire de Service est utilisé pour administrer les services lancés dans Pisi Linux. + This system service configuration software is developed for Pisi Linux. It provides managing system services. + Servis yöneticisi, Pisi Linux'da çalışan sunucu ve servislerin yönetilmesini sağlar + https://github.com/PisiLinuxNew/service-manager/archive/3.1.0.tar.gz + + pisilinux-desktop-services + docutils + python-qt5-devel + + desktop/pisilinux/service-manager/pspec.xml + + + service-manager + + python-qt5 + pisilinux-desktop-services + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/applications + + + + + 2016-06-03 + 3.1.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + at-spi2-atk @@ -85636,7 +85706,7 @@ Güçlü bir sanallaştırma programı VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. This is the Open Source Edition which lacks USB support and some other things. VirtualBox, ev kullanımı yanında kurumsal kullanım alanı da bulan güçlü bir xf86 sanallaştırma ürünleri ailesidir. Bu sürüm, USB ve birkaç özellik için desteği bulunmayan açık kodlu uyarlamasıdır. - http://download.virtualbox.org/virtualbox/5.0.12/VirtualBox-5.0.12.tar.bz2 + http://download.virtualbox.org/virtualbox/5.1.0_BETA2/VirtualBox-5.1.0_BETA2.tar.bz2 LocalConfig.kmk @@ -85671,22 +85741,25 @@ pulseaudio-libs-devel jdk7-openjdk kernel-module-headers + qt5-x11extras-devel + libxcb-devel + qt5-base-devel + qt5-linguist + wrapper.patch 002-dri-driver-path.patch 003-ogl-include-path.patch - 005-gsoap-build.patch - 006-rdesktop-vrdp-keymap-path.patch - desktop-file.patch - fix-tr-keyboard.patch - virtualbox-4-makeself-check.patch + 008-root-window.patch + 004-xorg.patch hardware/virtualization/virtualbox/pspec.xml virtualbox - device-mapper + qt5-base + libxcb mesa libXt gsoap @@ -85698,7 +85771,6 @@ libXinerama virt-wrapper libvncserver - module-virtualbox curl zlib libX11 @@ -85707,6 +85779,9 @@ python libxml2 openssl + device-mapper + qt5-x11extras + module-virtualbox /etc/vbox @@ -85742,7 +85817,7 @@ libXdamage xorg-server libXcomposite - module-virtualbox-guest + module-virtualbox-guest /etc/X11/Xsession.d @@ -85762,6 +85837,13 @@ + + 2016-06-17 + 5.1.0b + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2016-06-12 5.0.12 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 035fdb385c..de505e508a 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -e6600ede59e07f4f3f6776cca389bbb1071b9e39 \ No newline at end of file +703de22727b611381e0b488a42fa1e45b3629534 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 3bc157cb36..f2d6a4e4d2 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index 210abfbdf7..78fe258c44 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -b5c826079f006767845e7bbfa01581baaff34a73 \ No newline at end of file +aa85bb8c3d2647be7d665ee081459d1658a1147a \ No newline at end of file