##// END OF EJS Templates
Some cleanup and test for gnome-software visibility.
Jeandet Alexis -
r68:531aa28c6a12 default
parent child
Show More
@@ -0,0 +1,25
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> -->
3 <application>
4 <id type="desktop">socexplorer.desktop</id>
5 <metadata_license>CC0-1.0</metadata_license>
6 <project_license>GPL-2.0+</project_license>
7 <name>SocExplorer</name>
8 <summary>SocExplorer is an open source generic System On Chip testing software/framework</summary>
9 <description>
10 <p>
11 SocExplorer is an open source generic System On Chip testing software/framework.
12 </p>
13 <p>
14 We write this software for the development and the validation of our instrument, the Low Frequency Receiver(LFR) for the Solar Orbiter mission. This instrument is based on an actel FPGA hosting a LEON3FT processor and some peripherals.
15 </p>
16 <p>
17 To make it more collaborative, we use a plugin based system, the main executable is SocExplorer then all the functionality are provided by plugins. Like this everybody can provide his set of plugins to handle a new SOC or just a new peripheral. SocExplorer uses PythonQt to allow user to automate some tasks such as loading some plugins, configuring them and talking with his device.
18 </p>
19 </description>
20 <screenshots>
21 <screenshot type="default" width="800" height="600">https://hephaistos.lpp.polytechnique.fr/redmine/attachments/download/384/SocExplorer_ScreenShot1.png</screenshot>
22 </screenshots>
23 <url type="homepage">http://www.gnome.org/projects/en_US/gnome-power-manager</url>
24 <updatecontact>alexis.jeandet@member.fsf.org</updatecontact>
25 </application>
@@ -0,0 +1,14
1 [Desktop Entry]
2 Version=1.0
3 Name=SocExplorer
4 Type=Application
5 GenericName=SocExplorer
6
7 Comment=Software to monitor and explore Soc devices.
8
9 Exec=socexplorer
10 Icon=/usr/share/SocExplorer/Indiana_Jones_cappello.png
11 Terminal=false
12 Type=Application
13 Categories=Application;Programming;
14 Name[en_US]=socexplorer.desktop
@@ -1,91 +1,91
1 #-------------------------------------------------
1 #-------------------------------------------------
2 #
2 #
3 # Project created by QtCreator 2011-09-19T22:52:10
3 # Project created by QtCreator 2011-09-19T22:52:10
4 #
4 #
5 #-------------------------------------------------
5 #-------------------------------------------------
6
6
7 TEMPLATE = subdirs
7 TEMPLATE = subdirs
8 CONFIG += ordered release
8 CONFIG += ordered release
9
9
10 SUBDIRS = \
10 SUBDIRS = \
11 src/common \
11 src/common \
12 src/SocExplorerEngine \
12 src/SocExplorerEngine \
13 src \
13 src \
14 src/SocExplorer_TCP_Terminal
14 src/SocExplorer_TCP_Terminal
15
15
16
16
17 socexplorercfg.path = $$[QT_INSTALL_PREFIX]/mkspecs/features
17 socexplorercfg.path = $$[QT_INSTALL_PREFIX]/mkspecs/features
18 socexplorercfg.files = \
18 socexplorercfg.files = \
19 src/SocExplorerEngine/plugins/socexplorerplugin.prf
19 src/SocExplorerEngine/plugins/socexplorerplugin.prf
20
20
21
21
22 unix{
22 unix{
23 SocExplorerLauncher.path = /usr/share/applications/
23 SocExplorerLauncher.path = /usr/share/applications/
24 SocExplorerLauncher.files = unixcfg/SocExplorer.desktop
24 SocExplorerLauncher.files = unixcfg/socexplorer.desktop
25 SocExplorerAppData.path = /usr/share/appdata/
25 SocExplorerAppData.path = /usr/share/appdata/
26 SocExplorerAppData.files = unixcfg/SocExplorer.appdata.xml
26 SocExplorerAppData.files = unixcfg/socexplorer.appdata.xml
27 PluginConfPath.path = /etc/SocExplorer/plugin.conf.d/
27 PluginConfPath.path = /etc/SocExplorer/plugin.conf.d/
28 PluginConfPath.files = unixcfg/plugins.conf
28 PluginConfPath.files = unixcfg/plugins.conf
29 share.path = /usr/share/SocExplorer
29 share.path = /usr/share/SocExplorer
30 share.files = ressources/images/Indiana_Jones_cappello.png \
30 share.files = ressources/images/Indiana_Jones_cappello.png \
31 ressources/Grlib.xml
31 ressources/Grlib.xml
32 Wizard.path = /usr/share/qtcreator/templates/wizards/SocExplorerPlugin
32 Wizard.path = /usr/share/qtcreator/templates/wizards/SocExplorerPlugin
33 Wizard.files = Qt_Creator_Wizard/SocExplorerPlugin/logo-lpp-cutted.png \
33 Wizard.files = Qt_Creator_Wizard/SocExplorerPlugin/logo-lpp-cutted.png \
34 Qt_Creator_Wizard/SocExplorerPlugin/plugin.cpp \
34 Qt_Creator_Wizard/SocExplorerPlugin/plugin.cpp \
35 Qt_Creator_Wizard/SocExplorerPlugin/plugin.h \
35 Qt_Creator_Wizard/SocExplorerPlugin/plugin.h \
36 Qt_Creator_Wizard/SocExplorerPlugin/project.pro \
36 Qt_Creator_Wizard/SocExplorerPlugin/project.pro \
37 Qt_Creator_Wizard/SocExplorerPlugin/wizard.xml
37 Qt_Creator_Wizard/SocExplorerPlugin/wizard.xml
38 INSTALLS+=Wizard SocExplorerLauncher share PluginConfPath SocExplorerAppData
38 INSTALLS+=Wizard SocExplorerLauncher share PluginConfPath SocExplorerAppData
39 }
39 }
40 INSTALLS+=socexplorercfg
40 INSTALLS+=socexplorercfg
41
41
42
42
43
43
44
44
45
45
46
46
47
47
48
48
49
49
50
50
51
51
52
52
53
53
54
54
55
55
56
56
57
57
58
58
59
59
60
60
61
61
62
62
63
63
64
64
65
65
66
66
67
67
68
68
69
69
70
70
71
71
72
72
73
73
74
74
75
75
76
76
77
77
78
78
79
79
80
80
81
81
82
82
83
83
84
84
85
85
86
86
87
87
88
88
89
89
90
90
91
91
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now