

[dglent@localhost meteo-qt-0.8.3]$ python3 setup.py --build
and then run the program:
[dglent@localhost meteo-qt-0.8.3]$ python3 meteo_qt/meteo_qt.py
The best is to make a package, for a rpm distribution i use this:
https://github.com/dglent/meteo-qt/blob/master/meteo-qt.spec - Nov 01 2015

Screenshot Tools by wadealer 7 comments

Screenshot Tools by wadealer 7 comments
I can define other keys but not this one.
Thanks in advance - Aug 07 2014

Plasma 4 Extensions by dglent 18 comments
http://glenbox.free.fr/sansimera-qt/ - Jul 29 2014

Plasma 4 Extensions by dglent 18 comments
Now it has well the 1.7.5 - Apr 23 2014
The errors in compiling are:
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp: In member function ‘void KPKG::slotUpdateHistory(bool, QTreeWidgetItem*)’:
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp:272:31: σφάλμα: cast from ‘QTreeWidgetItem*’ to ‘uint {aka unsigned int}’ loses precision [-fpermissive]
pAct->setData(QVariant((uint)item));
^
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp: In member function ‘void KPKG::slotOpenRecent(const KUrl&)’:
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp:306:50: σφάλμα: cannot call constructor ‘KUrl::List::List’ directly [-fpermissive]
kpackage->openFilesByUrl(KUrl::List::List(url));
^
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp:306:50: error: for a function-style cast, remove the redundant ‘::List’ [-fpermissive]
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp: In member function ‘virtual void KPKG::readProperties(const KConfigGroup&)’:
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp:376:65: error: cannot call constructor ‘KUrl::List::List’ directly [-fpermissive]
kpackage->openFilesByUrl(KUrl::List::List(QStringList(entry)));
^
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp:376:65: error: for a function-style cast, remove the redundant ‘::List’ [-fpermissive]
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp: In member function ‘void KPACKAGE::slotOpenFile()’:
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp:494:55: error: cannot call constructor ‘KUrl::List::List’ directly [-fpermissive]
openFilesByUrl(KUrl::List::List(dlg.selectedUrl()));
^
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp:494:55: error: for a function-style cast, remove the redundant ‘::List’ [-fpermissive]
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp: In member function ‘pkgInterface* KPACKAGE::getPackageHandler(const QString&)’:
/home/dglent/rpm/BUILD/kpackage4-3.6.0/src/kpackage.cpp:505:35: warning: ignoring return value of ‘char* fgets(char*, int, FILE*)’, declared with attribute warn_unused_result [-Wunused-result]
fgets(buf, sizeof(buf) - 1, file);
^
src/CMakeFiles/kpackage.dir/build.make:264: recipe for target 'src/CMakeFiles/kpackage.dir/kpackage.o' failed
make[2]: *** [src/CMakeFiles/kpackage.dir/kpackage.o] Error 1
make[2]: *** Waiting for unfinished jobs....
[ 35%] Building CXX object src/CMakeFiles/kpackage.dir/kissInterface.o
CMakeFiles/Makefile2:110: recipe for target 'src/CMakeFiles/kpackage.dir/all' failed
make[1]: *** [src/CMakeFiles/kpackage.dir/all] Error 2
Makefile:126: recipe for target 'all' failed
make: *** [all] Error 2
error: Bad exit status from /home/dglent/rpm/BUILDROOT/rpm-tmp.Slm3bb (%build)
but i used cmake to compile.
If i use configure i take this error:
CMake Warning (dev) in CMakeLists.txt:
No cmake_minimum_required command is present. A line of code such as
cmake_minimum_required(VERSION 2.8)
should be added at the top of the file.
and if i add the above line i take this error:
/home/dglent/rpm/SOURCES/kpackage4-3.6.0/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx:1:0:
error: bad value (x86_64) for -march= switch
#ifndef __cplusplus
^
CMakeFiles/cmTryCompileExec1622618844.dir/build.make:60: recipe for target
'CMakeFiles/cmTryCompileExec1622618844.dir/testCXXCompiler.cxx.o' failed
gmake[1]: ***
[CMakeFiles/cmTryCompileExec1622618844.dir/testCXXCompiler.cxx.o] Error 1 - Apr 07 2014
However, to be able to compile it in Mageia 5 64bit, i had to do some changes:
--- kpackage4-3.6.0.orig/src/kpackage.cpp 2014-04-05 11:30:06.000000000 +0200
+++ kpackage4-3.6.0/src/kpackage.cpp 2014-04-06 11:46:25.000000000 +0200
@@ -241 +241 @@
- if (pAct->data().toUInt() == (uint)item) {
+ if (pAct->data().value<void*>() == (void*)item) {
@@ -272 +272 @@
- pAct->setData(QVariant((uint)item));
+ pAct->setData(qVariantFromValue<void*>(item));
@@ -306 +306 @@
- kpackage->openFilesByUrl(KUrl::List::List(url));
+ kpackage->openFilesByUrl(KUrl::List(url));
@@ -376 +376 @@
- kpackage->openFilesByUrl(KUrl::List::List(QStringList(entry)));
+ kpackage->openFilesByUrl(KUrl::List(QStringList(entry)));
@@ -494 +494 @@
- openFilesByUrl(KUrl::List::List(dlg.selectedUrl()));
+ openFilesByUrl(KUrl::List(dlg.selectedUrl()));
diff -U 0 -r kpackage4-3.6.0.orig/src/main.cpp kpackage4-3.6.0/src/main.cpp
--- kpackage4-3.6.0.orig/src/main.cpp 2014-02-27 12:36:02.000000000 +0100
+++ kpackage4-3.6.0/src/main.cpp 2014-04-06 11:47:16.000000000 +0200
@@ -140 +140 @@
- kpackage->openFilesByUrl(KUrl::List::List(files), false);
+ kpackage->openFilesByUrl(KUrl::List(files), false);
diff -U 0 -r kpackage4-3.6.0.orig/src/packageDisplay.cpp kpackage4-3.6.0/src/packageDisplay.cpp
--- kpackage4-3.6.0.orig/src/packageDisplay.cpp 2014-03-03 16:34:50.000000000 +0100
+++ kpackage4-3.6.0/src/packageDisplay.cpp 2014-04-06 11:48:07.000000000 +0200
@@ -443 +443 @@
- KRun::displayOpenWithDialog(KUrl::List::List(url), this);
+ KRun::displayOpenWithDialog(KUrl::List(url), this);
also, i have Greek localisation in my system, and i have some text without encoding:
"install time
ÎÏÏ 09 Φεβ 2014 11:09:02 Ïμ CET
distribution
Mageia
vendor
Mageia.Org
packager
build-time
ÎÏÏ 19 Îαν 2014 07:37:31 μμ CET"
in "Properties" and "Changelog" tabs.
In some python programs, to display the text in Greek correctly in qt, i use the self.trUtf8(), if not, i have exactly the above output with symbols. - Apr 06 2014

System Software by rthomsen 27 comments
http://www.mageia-gr.org/rpm/3/x86_64/kcmsystemd-0.5.0-1mgr3.x86_64.rpm - Feb 20 2014

Plasma 4 Extensions by dglent 18 comments
I will rewrite it (i hope to find time soon...) - Jan 13 2014

Dolphin Service Menus by Seniazi 10 comments
Actually it would nt work in some systems. For Mageia, i have to modify the path to /usr/bin/soffice
in the spec file:
http://svnweb.mageia.org/packages/cauldron/kde-export2pdf-servicemenu/current/SPECS/kde-export2pdf-servicemenu.spec?view=markup - Jan 02 2014

Dolphin Service Menus by Seniazi 10 comments

Dolphin Service Menus by Seniazi 10 comments
http://www.mageia-gr.org/rpm/3/noarch/kde-export2pdf-servicemenu-0.03-1mgr3.noarch.rpm - Jan 01 2014

Dolphin Service Menus by Seniazi 10 comments
Name[es]=Exportar a PDF con Libreoffice 4.1
(from Mageia i18n team) - Dec 31 2013

Video Apps by maxrd2 1 comment
http://glenbox.free.fr/files/Subtitle_composer/el/subtitlecomposer.po - Dec 31 2013

Dolphin Service Menus by Seniazi 10 comments
http://www.mageia-gr.org/rpm/3/noarch/kde-export2pdf-servicemenu-0.01-1mgr3.noarch.rpm - Dec 25 2013

Dolphin Service Menus by Seniazi 10 comments
Here are the translations provided from the Mageia i18n team:
Name[et]=Eksport PDF-ina LibreOffice 4.1 abil
Name[fr]=Exporter en PDF avec Libreoffice 4.1
Name[he]=יצוא ל־PDF עם LibreOffice 4.1
Name[id]=ekpor ke pdf dengan Libreoffice 4.1
Name[pl]=Eksportuj do PDF za pomocą Libreoffice 4.1
Name[sl]=Izvozi v pdf s programom Libreoffice 4.1
Name[tr]=LibreOffice 4.1 ile pdf olarak dışa aktar
Name[uk]=Експортувати до PDF за допомогою LibreOffice 4.1 - Dec 24 2013

Education Apps by glad 10 comments
I have the error "Segmentation fault"
In gdb i have this output:
Starting program: /usr/bin/qonjugator
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
Program received signal SIGSEGV, Segmentation fault.
__strlen_sse2 () at ../sysdeps/x86_64/strlen.S:31
31 movdqu (%rdi), %xmm1
---
And the log of the compile:
http://glenbox.free.fr/files/Mageia/log.qonjugator
Is any other information that would be more usefull ?
Thanks in advance - Jul 07 2013

Wallpaper Other by LiquidSky64 4 comments
Thanks - Jun 18 2013

Various KDE 1.-4. Improvements by thomas12777 285 comments

Various KDE 1.-4. Improvements by thomas12777 285 comments
Thanks - May 24 2013

Plasma 4 Extensions by dglent 18 comments
I don't promise but surely i will try - May 13 2013

Utilities by seba 12 comments
thanks a lot for the support :) - May 09 2013

Utilities by seba 12 comments
https://bugs.kde.org/show_bug.cgi?id=319474
Here is the debug:
http://glenbox.free.fr/files/konqueror-20130508-070308.kcrash - May 09 2013

Utilities by seba 12 comments
http://www.mageia-gr.org/rpm/2/x86_64/konqueror-plugin-khtml-userscript-0.1.2-1mgr2.x86_64.rpm
However, the rpm installs correctly the paths, i did nt have the above issue. - May 06 2013

Utilities by seba 12 comments
So i am not sure if it is taken in account the userscript - May 04 2013

Utilities by seba 12 comments
because of this:
[ 0%] Built target khtml_userscript_automoc
[ 42%] Built target khtml_userscript
[ 42%] Built target userjs_automoc
Scanning dependencies of target userjs
[ 50%] Building CXX object strigi_analyzer/CMakeFiles/userjs.dir/userjs_automoc.o
Linking CXX shared module ../lib/strigila_userjs.so
[ 57%] Built target userjs
[ 57%] Built target khtml_userscript_installer_automoc
[100%] Built target khtml_userscript_installer
Install the project...
-- Install configuration: "RelWithDebInfo"
-- Installing: /usr/lib64/kde4/khtml_userscript.so
-- Installing: /usr/share/apps/khtml/kpartplugins/khtml_userscript.rc
-- Installing: /usr/share/apps/khtml/kpartplugins/khtml_userscript.desktop
-- Installing: /usr/share/apps/khtml/kpartplugins/khtml_userscript_gm_compat.js
-- Installing: /usr/share/mime/packages/mimetype_userscript.xml
Unknown media type in type 'all/all'
Unknown media type in type 'all/allfiles'
Unknown media type in type 'uri/mms'
Unknown media type in type 'uri/mmst'
Unknown media type in type 'uri/mmsu'
Unknown media type in type 'uri/pnm'
Unknown media type in type 'uri/rtspt'
Unknown media type in type 'uri/rtspu'
-- Installing: /usr/lib64/strigi/strigila_userjs.so
-- Installing: /usr/bin/khtml_userscript_installer
-- Installing: /usr/share/applications/kde4/khtml_userscript_installer.desktop
i did a link from :
/usr/share/applications/kde4/khtml_userscript_installer.desktop
to:
/usr/share/apps/khtml/kpartplugins/ - May 04 2013

Utilities by seba 12 comments

Utilities by seba 12 comments
If you mean Setting > Configure plugins: i dont see the userscript description there. There is although the bookmarklets plugin - May 04 2013

Utilities by seba 12 comments
May be i did something wrong or the plugin is not working any more - May 04 2013

Plasma 4 Extensions by dglent 18 comments
I have thought about the improvements that you suggest, surely i will do it in a next version. The next 1-2 months i will not have too much spare time, i hope after to do much more improvements to the plasmoid.
Thanks :)
- Feb 05 2013

Plasma 4 Extensions by dglent 18 comments
For the problem with the fonts, i have a disadvantage, because i cannot test it in my system but i try to understand why this happens in Arch. I don't know about other distros, i tested it only in Mageia 2.
Please try the file in my comment bellow
Thanks - Feb 05 2013

Plasma 4 Extensions by dglent 18 comments
Can you please try this:
http://glenbox.free.fr/files/sansimera_utf-8.plasmoid
and if it does nt work i will investigate it better.
Thanks - Feb 04 2013

Plasma 4 Extensions by dglent 18 comments
with this wallpaper (coming with Mageia 2 i think) : http://osarena.net/wp-content/uploads/2012/04/mageia2_ss_background.jpg - Feb 04 2013

Utilities by gcala 18 comments
The debug informations:
Application: Konqueror (kdeinit4), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
82 T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)
[KCrash Handler]
#6 0x00007f9337ec2a1c in KHTMLPart::docImpl (this=0x28c9720) at /usr/src/debug/kdelibs-4.8.5/khtml/khtml_part.cpp:1633
#7 0x00007f933812316e in KJS::Window::executeOpenWindow (this=<optimized out>, exec=0x7fff2a92b010, url=..., frameName=..., features=<optimized out>) at /usr/src/debug/kdelibs-4.8.5/khtml/ecma/kjs_window.cpp:1818
#8 0x00007f933812882b in KJS::Window::openWindow (this=0x7f9334120000, exec=0x7fff2a92b010, args=<optimized out>) at /usr/src/debug/kdelibs-4.8.5/khtml/ecma/kjs_window.cpp:1696
#9 0x00007f933812bc15 in KJS::WindowFunc::callAsFunction (this=0x7f93341117c0, exec=0x7fff2a92b010, thisObj=0x7f9334120000, args=...) at /usr/src/debug/kdelibs-4.8.5/khtml/ecma/kjs_window.cpp:1953
#10 0x00007f933782feca in call (args=<optimized out>, thisObj=<optimized out>, exec=<optimized out>, this=<optimized out>) at /usr/src/debug/kdelibs-4.8.5/kjs/object.h:614
#11 KJS::Machine::runBlock (exec=0x7fff2a92b010, codeBlock=..., parentExec=0x0) at codes.def:1223
#12 0x00007f93377ea3b7 in KJS::FunctionBodyNode::execute (this=0x45ab090, exec=0x7fff2a92b010) at /usr/src/debug/kdelibs-4.8.5/kjs/nodes.cpp:927
#13 0x00007f9337818e10 in KJS::Interpreter::evaluate (this=0x45a1a30, sourceURL=..., startingLineNumber=1, code=0x45a9310, codeLength=42, thisV=0x7f9334120000) at /usr/src/debug/kdelibs-4.8.5/kjs/interpreter.cpp:564
#14 0x00007f9337818ef4 in KJS::Interpreter::evaluate (this=<optimized out>, sourceURL=<optimized out>, startingLineNumber=<optimized out>, code=<optimized out>, thisV=<optimized out>) at /usr/src/debug/kdelibs-4.8.5/kjs/interpreter.cpp:504
#15 0x00007f93381353b7 in KJSProxy::evaluate (this=0x2a0c430, filename=..., baseLine=1, str=..., n=<optimized out>, completion=0x7fff2a92b2b0) at /usr/src/debug/kdelibs-4.8.5/khtml/ecma/kjs_proxy.cpp:126
#16 0x00007f9337ee5f6a in KHTMLPart::executeScript (this=0x28c9720, n=..., script=...) at /usr/src/debug/kdelibs-4.8.5/khtml/khtml_part.cpp:1336
#17 0x00007f9337eeae8b in KHTMLPart::executeScript (this=<optimized out>, script=<optimized out>) at /usr/src/debug/kdelibs-4.8.5/khtml/khtml_part.cpp:1320
#18 0x00007f9335b373cf in Plugin_ReadItLater::slotGoToInstapaper (this=0x29bf700) at /usr/src/debug/konqueror-plugin-readitlater/plugin_readitlater.cpp:128
#19 0x00007f93523faf11 in QMetaObject::activate (sender=0x29d3ca0, m=<optimized out>, local_signal_index=<optimized out>, argv=0x7fff2a92b550) at kernel/qobject.cpp:3547
#20 0x00007f93515518a2 in QAction::triggered (this=<optimized out>, _t1=false) at .moc/release-shared/moc_qaction.cpp:277
#21 0x00007f9351551a8f in QAction::activate (this=0x29d3ca0, event=<optimized out>) at kernel/qaction.cpp:1257
#22 0x00007f935199d7b9 in QMenuPrivate::activateCausedStack (this=0x29d8740, causedStack=..., action=0x29d3ca0, action_e=QAction::Trigger, self=true) at widgets/qmenu.cpp:1028
#23 0x00007f93519a3912 in QMenuPrivate::activateAction (this=0x29d8740, action=0x29d3ca0, action_e=QAction::Trigger, self=true) at widgets/qmenu.cpp:1120
#24 0x00007f9353115f70 in KMenu::mouseReleaseEvent (this=0x29a67e0, e=0x7fff2a92c120) at /usr/src/debug/kdelibs-4.8.5/kdeui/widgets/kmenu.cpp:464
#25 0x00007f93515a8344 in QWidget::event (this=0x29a67e0, event=0x7fff2a92c120) at kernel/qwidget.cpp:8371
#26 0x00007f93519a4eab in QMenu::event (this=0x29a67e0, e=0x7fff2a92c120) at widgets/qmenu.cpp:2469
#27 0x00007f9351557cc4 in notify_helper (e=0x7fff2a92c120, receiver=0x29a67e0, this=0x2031300) at kernel/qapplication.cpp:4551
#28 QApplicationPrivate::notify_helper (this=0x2031300, receiver=0x29a67e0, e=0x7fff2a92c120) at kernel/qapplication.cpp:4523
#29 0x00007f935155d363 in QApplication::notify (this=<optimized out>, receiver=0x29a67e0, e=0x7fff2a92c120) at kernel/qapplication.cpp:4094
#30 0x00007f935314cac6 in KApplication::notify (this=0x7fff2a92cf50, receiver=0x29a67e0, event=0x7fff2a92c120) at /usr/src/debug/kdelibs-4.8.5/kdeui/kernel/kapplication.cpp:311
#31 0x00007f93523e71bc in QCoreApplication::notifyInternal (this=0x7fff2a92cf50, receiver=0x29a67e0, event=0x7fff2a92c120) at kernel/qcoreapplication.cpp:915
#32 0x00007f9351558c92 in sendEvent (event=<optimized out>, receiver=<optimized out>) at ../../src/corelib/kernel/qcoreapplication.h:231
#33 QApplicationPrivate::sendMouseEvent (receiver=0x29a67e0, event=0x7fff2a92c120, alienWidget=0x0, nativeWidget=0x29a67e0, buttonDown=0x0, lastMouseReceiver=..., spontaneous=true) at kernel/qapplication.cpp:3162
#34 0x00007f93515d4e81 in QETWidget::translateMouseEvent (this=0x29a67e0, event=<optimized out>) at kernel/qapplication_x11.cpp:4457
#35 0x00007f93515d367a in QApplication::x11ProcessEvent (this=0x7fff2a92cf50, event=0x7fff2a92c9e0) at kernel/qapplication_x11.cpp:3646
#36 0x00007f93515fb0d2 in x11EventSourceDispatch (s=0x2033b20, callback=0, user_data=0x0) at kernel/qguieventdispatcher_glib.cpp:146
#37 0x00007f934db5cbc3 in g_main_dispatch (context=0x2032800) at gmain.c:2539
#38 g_main_context_dispatch (context=0x2032800) at gmain.c:3075
#39 0x00007f934db5cf10 in g_main_context_iterate (dispatch=1, block=<optimized out>, context=0x2032800, self=<optimized out>) at gmain.c:3146
#40 g_main_context_iterate (context=0x2032800, block=<optimized out>, dispatch=1, self=<optimized out>) at gmain.c:3083
#41 0x00007f934db5cfd4 in g_main_context_iteration (context=0x2032800, may_block=1) at gmain.c:3207
#42 0x00007f9352415f8f in QEventDispatcherGlib::processEvents (this=0x1f447d0, flags=<optimized out>) at kernel/qeventdispatcher_glib.cpp:424
#43 0x00007f93515fad5e in QGuiEventDispatcherGlib::processEvents (this=<optimized out>, flags=<optimized out>) at kernel/qguieventdispatcher_glib.cpp:204
#44 0x00007f93523e5cf2 in QEventLoop::processEvents (this=<optimized out>, flags=...) at kernel/qeventloop.cpp:149
#45 0x00007f93523e5f47 in QEventLoop::exec (this=0x7fff2a92cd80, flags=...) at kernel/qeventloop.cpp:204
#46 0x00007f93523eacf5 in QCoreApplication::exec () at kernel/qcoreapplication.cpp:1187
#47 0x00007f933f25e632 in kdemain (argc=<optimized out>, argv=<optimized out>) at /usr/src/debug/kde-baseapps-4.8.5/konqueror/src/konqmain.cpp:227
#48 0x00000000004086a4 in launch (argc=2, _name=0x200fbc8 "/usr/bin/konqueror", args=<optimized out>, cwd=0x0, envc=<optimized out>, envs=<optimized out>, reset_env=false, tty=0x0, avoid_loops=false, startup_id_str=0x200fbf4 "localhost.localdomain;1359811383;247147;3318_TIME26181411") at /usr/src/debug/kdelibs-4.8.5/kinit/kinit.cpp:734
#49 0x00000000004097a6 in handle_launcher_request (sock=8, who=<optimized out>) at /usr/src/debug/kdelibs-4.8.5/kinit/kinit.cpp:1226
#50 0x0000000000409ce7 in handle_requests (waitForPid=0) at /usr/src/debug/kdelibs-4.8.5/kinit/kinit.cpp:1419
#51 0x00000000004051b7 in main (argc=4, argv=0x7fff00000001, envp=0x7fff2a92e960) at /usr/src/debug/kdelibs-4.8.5/kinit/kinit.cpp:1907 - Feb 02 2013

Plasma 4 Extensions by dridk 284 comments
Here is a rpm for Mageia 2 64bit of translatoid-noremember, with all available translations:
http://www.mageia-gr.org/rpm/2/x86_64/plasma-applet-translatoid-noremember-1.5-1mgr2.x86_64.rpm - Dec 23 2012

System Software by LandertRene 68 comments
I used this spec:
http://svnweb.mageia.org/packages/cauldron/nootka/current/SPECS/nootka.spec?revision=280846&view=markup
normaly it will be included in the official repos of Mageia for the next version Mageia 3. - Aug 13 2012

Board by korobAn 6 comments
http://mageia-gr.org/rpm/2/x86_64/kbackgammon-0.15-1mgr2.x86_64.rpm - Aug 13 2012

Education Apps by glad 10 comments
http://mageia-gr.org/rpm/2/x86_64/plasma-applet-qonjugator-0.17-1mgr2.x86_64.rpm
http://mageia-gr.org/rpm/2/x86_64/qonjugator-0.17-1mgr2.x86_64.rpm
http://mageia-gr.org/rpm/2/x86_64/qonjugator-qml-0.17-1mgr2.x86_64.rpm - Aug 13 2012