@@ -1,186 +1,186 | |||
|
1 | 1 | SOCEXPLORER_ROOT = \"$${PWD}/../..\" |
|
2 | 2 | |
|
3 | 3 | include($${PWD}/../../build_cfg/socexplorer.pri) |
|
4 | 4 | |
|
5 | 5 | TARGET = socexplorerengine$${DEBUG_EXT} |
|
6 | 6 | TEMPLATE = lib |
|
7 | 7 | |
|
8 | 8 | #more verbose plugin loader to debug plugin loading issues such as dependencies issues |
|
9 | 9 | SOCEXPLORER_PLUGIN_LOADER="custom" |
|
10 | 10 | |
|
11 | 11 | SOCEXPLORER_CHAGESETNUM=$$system(hg id) |
|
12 | 12 | isEmpty(SOCEXPLORER_CHAGESETNUM){ |
|
13 |
SOCEXPLORER_CHAGESETNUM=c |
|
|
13 | SOCEXPLORER_CHAGESETNUM=c459540a6dbdcbb4e17f204685fce02c070ba971+ | |
|
14 | 14 | } |
|
15 | 15 | SOCEXPLORER_CHAGESETNUMSTR = '\\"$${SOCEXPLORER_CHAGESETNUM}\\"' |
|
16 | 16 | SOCEXPLORER_BRANCH=$$system(hg branch) |
|
17 | 17 | isEmpty(SOCEXPLORER_BRANCH){ |
|
18 | 18 | SOCEXPLORER_BRANCH=default |
|
19 | 19 | } |
|
20 | 20 | SOCEXPLORER_BRANCHSTR = '\\"$${SOCEXPLORER_BRANCH}\\"' |
|
21 | 21 | |
|
22 |
DEFINES += SOCEXPLORER_VERSION="\"\\\"0. |
|
|
22 | DEFINES += SOCEXPLORER_VERSION="\"\\\"0.7.0"\\\"\" | |
|
23 | 23 | DEFINES += SOCEXPLORER_CHAGESET=\"$${SOCEXPLORER_CHAGESETNUMSTR}\" |
|
24 | 24 | DEFINES += SOCEXPLORER_BRANCH=\"$${SOCEXPLORER_BRANCHSTR}\" |
|
25 | 25 | |
|
26 | 26 | |
|
27 | 27 | message("Building SOCEXPLORER changeset $${SOCEXPLORER_CHAGESETNUM}") |
|
28 | 28 | |
|
29 | 29 | DEFINES += SOCEXPLORER_EXPORTS |
|
30 | 30 | |
|
31 | 31 | include ( plugins/socexplorerplugin.prf ) |
|
32 | 32 | include ( PeripheralWidget/PeripheralWidget.pri) |
|
33 | 33 | |
|
34 | 34 | win32:CONFIG += dll |
|
35 | 35 | win32:CONFIG -= static |
|
36 | 36 | win32:LIBS+=-L$${SOCEXPLORER_ROOT}/bin/win32 -lsocexplorercommon$${DEBUG_EXT} |
|
37 | 37 | |
|
38 | 38 | contains(SOCEXPLORER_PLUGIN_LOADER,"custom") |
|
39 | 39 | { |
|
40 | 40 | unix:LIBS+= -ldl |
|
41 | 41 | unix:DEFINES += SOCEXPLORER_CUSTOM_PLUGIN_LOADER |
|
42 | 42 | unix:HEADERS += \ |
|
43 | 43 | pluginloader/unix/unixpluginloader.h |
|
44 | 44 | unix:SOURCES += \ |
|
45 | 45 | pluginloader/unix/unixpluginloader.cpp |
|
46 | 46 | } |
|
47 | 47 | |
|
48 | 48 | target.path = $$[QT_INSTALL_LIBS] |
|
49 | 49 | isEmpty(target.path) { |
|
50 | 50 | error(can\'t get QT_INSTALL_LIBS) |
|
51 | 51 | } |
|
52 | 52 | |
|
53 | 53 | header.path = $$[QT_INSTALL_HEADERS]/SocExplorer |
|
54 | 54 | header.files = engine/socexplorerengine.h \ |
|
55 | 55 | pluginloader/pluginscache.h \ |
|
56 | 56 | plugins/socexplorerplugin.h \ |
|
57 | 57 | proxy/socexplorerproxy.h \ |
|
58 | 58 | engine/socexplorerxmlfile.h \ |
|
59 | 59 | SOC/socexplorerenumdevice.h \ |
|
60 | 60 | XmlEngine/XMLmodel.h \ |
|
61 | 61 | XmlEngine/XMLdata.h \ |
|
62 | 62 | XmlEngine/xmldriver.h \ |
|
63 | 63 | SOC/socmodel.h \ |
|
64 | 64 | SOC/registerdata.h \ |
|
65 | 65 | SOC/socclk.h \ |
|
66 | 66 | PeripheralWidget/src/peripheralwidget.h \ |
|
67 | 67 | PeripheralWidget/src/registerwidget.h \ |
|
68 | 68 | PeripheralWidget/src/socregsviewer.h \ |
|
69 | 69 | PeripheralWidget/src/socregsviewernew.h \ |
|
70 | 70 | memtester/memtester.h \ |
|
71 | 71 | engine/socexplorersettings.h \ |
|
72 | 72 | engine/socexplorersettingsdialog.h \ |
|
73 | 73 | engine/socexplorergui.h\ |
|
74 | 74 | engine/socexplorerconfigkeys.h |
|
75 | 75 | |
|
76 | 76 | |
|
77 | 77 | |
|
78 | 78 | isEmpty(header.path) { |
|
79 | 79 | error(can\'t get QT_INSTALL_HEADERS) |
|
80 | 80 | } |
|
81 | 81 | |
|
82 | 82 | pluginif.files = pluginsInterface/*.h \ |
|
83 | 83 | pluginsInterface/*.cpp |
|
84 | 84 | |
|
85 | 85 | pluginif.path = $$[QT_INSTALL_HEADERS]/SocExplorer/pluginsInterface |
|
86 | 86 | |
|
87 | 87 | |
|
88 | 88 | INSTALLS += target header pluginif |
|
89 | 89 | |
|
90 | 90 | INCLUDEPATH += engine \ |
|
91 | 91 | pluginloader \ |
|
92 | 92 | pluginsInterface \ |
|
93 | 93 | proxy \ |
|
94 | 94 | plugins \ |
|
95 | 95 | pluginManagerWdgt \ |
|
96 | 96 | ../common \ |
|
97 | 97 | ../common/genericBinaryFiles \ |
|
98 | 98 | ../ \ |
|
99 | 99 | RegisterMVS \ |
|
100 | 100 | XmlEngine \ |
|
101 | 101 | SOC \ |
|
102 | 102 | PeripheralWidget/src \ |
|
103 | 103 | memtester |
|
104 | 104 | |
|
105 | 105 | |
|
106 | 106 | HEADERS += \ |
|
107 | 107 | pluginloader/pluginscache.h \ |
|
108 | 108 | pluginloader/pluginloader.h \ |
|
109 | 109 | pluginManagerWdgt/plugintree.h \ |
|
110 | 110 | pluginManagerWdgt/pluginmanagerWDGT.h \ |
|
111 | 111 | pluginManagerWdgt/pluginlist.h \ |
|
112 | 112 | pluginManagerWdgt/plugininfoswdgt.h \ |
|
113 | 113 | XmlEngine/XMLmodel.h \ |
|
114 | 114 | XmlEngine/XMLdata.h \ |
|
115 | 115 | SOC/socmodel.h \ |
|
116 | 116 | SOC/registerdata.h \ |
|
117 | 117 | XmlEngine/xmldriver.h \ |
|
118 | 118 | PeripheralWidget/src/peripheralwidget.h \ |
|
119 | 119 | PeripheralWidget/src/registerwidget.h \ |
|
120 | 120 | PeripheralWidget/src/socregsviewer.h \ |
|
121 | 121 | SOC/socclk.h \ |
|
122 | 122 | engine/socexplorerengine.h \ |
|
123 | 123 | engine/socexplorerxmlfile.h \ |
|
124 | 124 | plugins/socexplorerplugin.h \ |
|
125 | 125 | pluginsInterface/socexplorerplugininterface.h \ |
|
126 | 126 | pluginsInterface/socexplorerplugininterface_global.h \ |
|
127 | 127 | proxy/socexplorerproxy.h \ |
|
128 | 128 | SOC/socexplorerenumdevice.h \ |
|
129 | 129 | PySocExplorerEngine.h \ |
|
130 | 130 | memtester/memtester.h\ |
|
131 | 131 | PeripheralWidget/src/socregsviewernew.h \ |
|
132 | 132 | PeripheralWidget/src/collapsableperipheralwidget.h \ |
|
133 | 133 | engine/socexplorersettings.h \ |
|
134 | 134 | engine/socexplorersettingsdialog.h \ |
|
135 | 135 | engine/socexplorergui.h \ |
|
136 | 136 | engine/socexplorerconfigkeys.h |
|
137 | 137 | |
|
138 | 138 | |
|
139 | 139 | |
|
140 | 140 | |
|
141 | 141 | |
|
142 | 142 | |
|
143 | 143 | SOURCES += \ |
|
144 | 144 | pluginloader/pluginscache.cpp \ |
|
145 | 145 | pluginloader/pluginloader.cpp \ |
|
146 | 146 | pluginManagerWdgt/plugintree.cpp \ |
|
147 | 147 | pluginManagerWdgt/pluginmanagerWDGT.cpp \ |
|
148 | 148 | pluginManagerWdgt/pluginlist.cpp \ |
|
149 | 149 | pluginManagerWdgt/plugininfoswdgt.cpp \ |
|
150 | 150 | XmlEngine/XMLmodel.cpp \ |
|
151 | 151 | XmlEngine/XMLdata.cpp \ |
|
152 | 152 | SOC/socmodel.cpp \ |
|
153 | 153 | SOC/registerdata.cpp \ |
|
154 | 154 | XmlEngine/xmldriver.cpp \ |
|
155 | 155 | PeripheralWidget/src/peripheralwidget.cpp \ |
|
156 | 156 | PeripheralWidget/src/registerwidget.cpp \ |
|
157 | 157 | PeripheralWidget/src/socregsviewer.cpp \ |
|
158 | 158 | SOC/socclk.cpp \ |
|
159 | 159 | engine/socexplorerengine.cpp \ |
|
160 | 160 | engine/socexplorerxmlfile.cpp \ |
|
161 | 161 | proxy/socexplorerproxy.cpp \ |
|
162 | 162 | SOC/socexplorerenumdevice.cpp \ |
|
163 | 163 | plugins/socexplorerplugin.cpp \ |
|
164 | 164 | memtester/memtester.cpp \ |
|
165 | 165 | PeripheralWidget/src/socregsviewernew.cpp \ |
|
166 | 166 | PeripheralWidget/src/collapsableperipheralwidget.cpp \ |
|
167 | 167 | engine/socexplorersettings.cpp \ |
|
168 | 168 | engine/socexplorersettingsdialog.cpp \ |
|
169 | 169 | engine/socexplorergui.cpp |
|
170 | 170 | |
|
171 | 171 | |
|
172 | 172 | OTHER_FILES += \ |
|
173 | 173 | plugins/socexplorerplugin.cpp \ |
|
174 | 174 | pluginsInterface/socexplorerplugininterface.cpp \ |
|
175 | 175 | plugins/socexplorerplugin.prf \ |
|
176 | 176 | pythongenerator.sh \ |
|
177 | 177 | pythonQtgeneratorCfg.txt |
|
178 | 178 | |
|
179 | 179 | FORMS += \ |
|
180 | 180 | PeripheralWidget/src/socregsviewernew.ui \ |
|
181 | 181 | PeripheralWidget/src/collapsableperipheralwidget.ui \ |
|
182 | 182 | engine/socexplorersettingsdialog.ui |
|
183 | 183 | |
|
184 | 184 | |
|
185 | 185 | RESOURCES += \ |
|
186 | 186 | PeripheralWidget/ressources/peripheralwidget.qrc |
@@ -1,369 +1,372 | |||
|
1 |
%global upstream_name socexplorer-0. |
|
|
1 | %global upstream_name socexplorer-0.7-0 | |
|
2 | 2 | |
|
3 | 3 | Name: socexplorer |
|
4 |
Version: 0. |
|
|
5 |
Release: |
|
|
4 | Version: 0.7 | |
|
5 | Release: 0%{?dist} | |
|
6 | 6 | Summary: SocExplorer is an open source generic System On Chip testing software/framework. |
|
7 | 7 | Group: Development/Tools |
|
8 | 8 | License: GPLv2+ |
|
9 | 9 | URL: https://hephaistos.lpp.polytechnique.fr/redmine/projects/socexplorer |
|
10 | 10 | Source0: https://hephaistos.lpp.polytechnique.fr/redmine/attachments/download/376/%{upstream_name}.zip |
|
11 | 11 | |
|
12 | 12 | BuildRequires: python2-devel |
|
13 | 13 | BuildRequires: qt5-qtbase-devel |
|
14 | 14 | BuildRequires: qt5-qtwebkit-devel |
|
15 | 15 | BuildRequires: qt5-qttools-static |
|
16 | 16 | BuildRequires: qt5-qttools-devel |
|
17 | 17 | BuildRequires: qt5-qtsvg-devel |
|
18 | 18 | BuildRequires: qt5-qtxmlpatterns-devel |
|
19 | 19 | BuildRequires: qt5-qtmultimedia-devel |
|
20 | 20 | BuildRequires: elfutils-libelf-devel |
|
21 | 21 | BuildRequires: qt5-pythonqt-devel |
|
22 | 22 | BuildRequires: mercurial |
|
23 | 23 | %if 0%{?fedora} <= 22 |
|
24 | 24 | BuildRequires: appdata-tools |
|
25 | 25 | %endif |
|
26 | 26 | %if 0%{?fedora} >= 23 |
|
27 | 27 | BuildRequires: libappstream-glib |
|
28 | 28 | %endif |
|
29 | 29 | BuildRequires: desktop-file-utils |
|
30 | 30 | |
|
31 | 31 | Requires(post): python2 |
|
32 | 32 | Requires(post): qt5-qtbase |
|
33 | 33 | Requires(post): qt5-qtwebkit |
|
34 | 34 | Requires(post): qt5-qtsvg |
|
35 | 35 | Requires(post): qt5-qtxmlpatterns |
|
36 | 36 | Requires(post): elfutils-libelf |
|
37 | 37 | Requires(post): qt5-pythonqt |
|
38 | 38 | |
|
39 |
Provides: socexplorer = 0. |
|
|
39 | Provides: socexplorer = 0.7-0 | |
|
40 | 40 | |
|
41 | 41 | %description |
|
42 | 42 | SocExplorer is an open source generic System On Chip testing software/framework. 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. 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. |
|
43 | 43 | |
|
44 | 44 | %package devel |
|
45 | 45 | Summary: SocExplorer is an open source generic System On Chip testing software/framework. |
|
46 | 46 | Group: Development/Tools |
|
47 | 47 | Requires: %{name}%{?_isa} = %{version}-%{release} |
|
48 | 48 | Requires: python2-devel |
|
49 | 49 | Requires: qt5-qtbase-devel |
|
50 | 50 | Requires: qt5-qtwebkit-devel |
|
51 | 51 | Requires: qt5-qttools-static |
|
52 | 52 | Requires: qt5-qttools-devel |
|
53 | 53 | Requires: qt5-qtsvg-devel |
|
54 | 54 | Requires: qt5-qtxmlpatterns-devel |
|
55 | 55 | Requires: qt5-qtmultimedia-devel |
|
56 | 56 | Requires: elfutils-libelf-devel |
|
57 | 57 | Requires: qt5-pythonqt-devel |
|
58 | 58 | Requires: mercurial |
|
59 | 59 | %if 0%{?fedora} <= 22 |
|
60 | 60 | Requires: appdata-tools |
|
61 | 61 | %endif |
|
62 | 62 | %if 0%{?fedora} >= 23 |
|
63 | 63 | Requires: libappstream-glib |
|
64 | 64 | %endif |
|
65 | 65 | Requires: desktop-file-utils |
|
66 | 66 | |
|
67 | 67 | %description devel |
|
68 | 68 | Header files and development libraries for SocExplorer package. SocExplorer is an open source generic System On Chip testing software/framework. |
|
69 | 69 | |
|
70 | 70 | %prep |
|
71 | 71 | %setup -q -n %{upstream_name} |
|
72 | 72 | |
|
73 | 73 | |
|
74 | 74 | |
|
75 | 75 | %build |
|
76 | 76 | %{_qt5_qmake} |
|
77 | 77 | |
|
78 | 78 | make %{?_smp_mflags} |
|
79 | 79 | |
|
80 | 80 | %install |
|
81 | 81 | make install INSTALL_ROOT=%{buildroot} |
|
82 | 82 | appstream-util validate-relax %{buildroot}/%{_datadir}/appdata/socexplorer.appdata.xml |
|
83 | 83 | desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/socexplorer.desktop |
|
84 | 84 | |
|
85 | 85 | %post -p /sbin/ldconfig |
|
86 | 86 | |
|
87 | 87 | %postun -p /sbin/ldconfig |
|
88 | 88 | |
|
89 | 89 | %files |
|
90 | 90 | /etc/SocExplorer/python/PygmentsHighlighter.py |
|
91 | 91 | /etc/SocExplorer/python/PygmentsHighlighter.pyc |
|
92 | 92 | /etc/SocExplorer/python/PygmentsHighlighter.pyo |
|
93 | 93 | /etc/SocExplorer/python/PythonCompleter.py |
|
94 | 94 | /etc/SocExplorer/python/PythonCompleter.pyc |
|
95 | 95 | /etc/SocExplorer/python/PythonCompleter.pyo |
|
96 | 96 | /etc/SocExplorer/python/module_completion.py |
|
97 | 97 | /etc/SocExplorer/python/module_completion.pyc |
|
98 | 98 | /etc/SocExplorer/python/module_completion.pyo |
|
99 | 99 | /etc/SocExplorer/python/pygments/__init__.py |
|
100 | 100 | /etc/SocExplorer/python/pygments/__init__.pyc |
|
101 | 101 | /etc/SocExplorer/python/pygments/__init__.pyo |
|
102 | 102 | /etc/SocExplorer/python/pygments/cmdline.py |
|
103 | 103 | /etc/SocExplorer/python/pygments/cmdline.pyc |
|
104 | 104 | /etc/SocExplorer/python/pygments/cmdline.pyo |
|
105 | 105 | /etc/SocExplorer/python/pygments/console.py |
|
106 | 106 | /etc/SocExplorer/python/pygments/console.pyc |
|
107 | 107 | /etc/SocExplorer/python/pygments/console.pyo |
|
108 | 108 | /etc/SocExplorer/python/pygments/filter.py |
|
109 | 109 | /etc/SocExplorer/python/pygments/filter.pyc |
|
110 | 110 | /etc/SocExplorer/python/pygments/filter.pyo |
|
111 | 111 | /etc/SocExplorer/python/pygments/filters/__init__.py |
|
112 | 112 | /etc/SocExplorer/python/pygments/filters/__init__.pyc |
|
113 | 113 | /etc/SocExplorer/python/pygments/filters/__init__.pyo |
|
114 | 114 | /etc/SocExplorer/python/pygments/formatter.py |
|
115 | 115 | /etc/SocExplorer/python/pygments/formatter.pyc |
|
116 | 116 | /etc/SocExplorer/python/pygments/formatter.pyo |
|
117 | 117 | /etc/SocExplorer/python/pygments/formatters/__init__.py |
|
118 | 118 | /etc/SocExplorer/python/pygments/formatters/__init__.pyc |
|
119 | 119 | /etc/SocExplorer/python/pygments/formatters/__init__.pyo |
|
120 | 120 | /etc/SocExplorer/python/pygments/formatters/_mapping.py |
|
121 | 121 | /etc/SocExplorer/python/pygments/formatters/_mapping.pyc |
|
122 | 122 | /etc/SocExplorer/python/pygments/formatters/_mapping.pyo |
|
123 | 123 | /etc/SocExplorer/python/pygments/formatters/bbcode.py |
|
124 | 124 | /etc/SocExplorer/python/pygments/formatters/bbcode.pyc |
|
125 | 125 | /etc/SocExplorer/python/pygments/formatters/bbcode.pyo |
|
126 | 126 | /etc/SocExplorer/python/pygments/formatters/html.py |
|
127 | 127 | /etc/SocExplorer/python/pygments/formatters/html.pyc |
|
128 | 128 | /etc/SocExplorer/python/pygments/formatters/html.pyo |
|
129 | 129 | /etc/SocExplorer/python/pygments/formatters/img.py |
|
130 | 130 | /etc/SocExplorer/python/pygments/formatters/img.pyc |
|
131 | 131 | /etc/SocExplorer/python/pygments/formatters/img.pyo |
|
132 | 132 | /etc/SocExplorer/python/pygments/formatters/latex.py |
|
133 | 133 | /etc/SocExplorer/python/pygments/formatters/latex.pyc |
|
134 | 134 | /etc/SocExplorer/python/pygments/formatters/latex.pyo |
|
135 | 135 | /etc/SocExplorer/python/pygments/formatters/other.py |
|
136 | 136 | /etc/SocExplorer/python/pygments/formatters/other.pyc |
|
137 | 137 | /etc/SocExplorer/python/pygments/formatters/other.pyo |
|
138 | 138 | /etc/SocExplorer/python/pygments/formatters/rtf.py |
|
139 | 139 | /etc/SocExplorer/python/pygments/formatters/rtf.pyc |
|
140 | 140 | /etc/SocExplorer/python/pygments/formatters/rtf.pyo |
|
141 | 141 | /etc/SocExplorer/python/pygments/formatters/svg.py |
|
142 | 142 | /etc/SocExplorer/python/pygments/formatters/svg.pyc |
|
143 | 143 | /etc/SocExplorer/python/pygments/formatters/svg.pyo |
|
144 | 144 | /etc/SocExplorer/python/pygments/formatters/terminal.py |
|
145 | 145 | /etc/SocExplorer/python/pygments/formatters/terminal.pyc |
|
146 | 146 | /etc/SocExplorer/python/pygments/formatters/terminal.pyo |
|
147 | 147 | /etc/SocExplorer/python/pygments/formatters/terminal256.py |
|
148 | 148 | /etc/SocExplorer/python/pygments/formatters/terminal256.pyc |
|
149 | 149 | /etc/SocExplorer/python/pygments/formatters/terminal256.pyo |
|
150 | 150 | /etc/SocExplorer/python/pygments/lexer.py |
|
151 | 151 | /etc/SocExplorer/python/pygments/lexer.pyc |
|
152 | 152 | /etc/SocExplorer/python/pygments/lexer.pyo |
|
153 | 153 | /etc/SocExplorer/python/pygments/lexers/__init__.py |
|
154 | 154 | /etc/SocExplorer/python/pygments/lexers/__init__.pyc |
|
155 | 155 | /etc/SocExplorer/python/pygments/lexers/__init__.pyo |
|
156 | 156 | /etc/SocExplorer/python/pygments/lexers/_asybuiltins.py |
|
157 | 157 | /etc/SocExplorer/python/pygments/lexers/_asybuiltins.pyc |
|
158 | 158 | /etc/SocExplorer/python/pygments/lexers/_asybuiltins.pyo |
|
159 | 159 | /etc/SocExplorer/python/pygments/lexers/_clbuiltins.py |
|
160 | 160 | /etc/SocExplorer/python/pygments/lexers/_clbuiltins.pyc |
|
161 | 161 | /etc/SocExplorer/python/pygments/lexers/_clbuiltins.pyo |
|
162 | 162 | /etc/SocExplorer/python/pygments/lexers/_luabuiltins.py |
|
163 | 163 | /etc/SocExplorer/python/pygments/lexers/_luabuiltins.pyc |
|
164 | 164 | /etc/SocExplorer/python/pygments/lexers/_luabuiltins.pyo |
|
165 | 165 | /etc/SocExplorer/python/pygments/lexers/_mapping.py |
|
166 | 166 | /etc/SocExplorer/python/pygments/lexers/_mapping.pyc |
|
167 | 167 | /etc/SocExplorer/python/pygments/lexers/_mapping.pyo |
|
168 | 168 | /etc/SocExplorer/python/pygments/lexers/_phpbuiltins.py |
|
169 | 169 | /etc/SocExplorer/python/pygments/lexers/_phpbuiltins.pyc |
|
170 | 170 | /etc/SocExplorer/python/pygments/lexers/_phpbuiltins.pyo |
|
171 | 171 | /etc/SocExplorer/python/pygments/lexers/_postgres_builtins.py |
|
172 | 172 | /etc/SocExplorer/python/pygments/lexers/_postgres_builtins.pyc |
|
173 | 173 | /etc/SocExplorer/python/pygments/lexers/_postgres_builtins.pyo |
|
174 | 174 | /etc/SocExplorer/python/pygments/lexers/_scilab_builtins.py |
|
175 | 175 | /etc/SocExplorer/python/pygments/lexers/_scilab_builtins.pyc |
|
176 | 176 | /etc/SocExplorer/python/pygments/lexers/_scilab_builtins.pyo |
|
177 | 177 | /etc/SocExplorer/python/pygments/lexers/_vimbuiltins.py |
|
178 | 178 | /etc/SocExplorer/python/pygments/lexers/_vimbuiltins.pyc |
|
179 | 179 | /etc/SocExplorer/python/pygments/lexers/_vimbuiltins.pyo |
|
180 | 180 | /etc/SocExplorer/python/pygments/lexers/agile.py |
|
181 | 181 | /etc/SocExplorer/python/pygments/lexers/agile.pyc |
|
182 | 182 | /etc/SocExplorer/python/pygments/lexers/agile.pyo |
|
183 | 183 | /etc/SocExplorer/python/pygments/lexers/asm.py |
|
184 | 184 | /etc/SocExplorer/python/pygments/lexers/asm.pyc |
|
185 | 185 | /etc/SocExplorer/python/pygments/lexers/asm.pyo |
|
186 | 186 | /etc/SocExplorer/python/pygments/lexers/compiled.py |
|
187 | 187 | /etc/SocExplorer/python/pygments/lexers/compiled.pyc |
|
188 | 188 | /etc/SocExplorer/python/pygments/lexers/compiled.pyo |
|
189 | 189 | /etc/SocExplorer/python/pygments/lexers/dotnet.py |
|
190 | 190 | /etc/SocExplorer/python/pygments/lexers/dotnet.pyc |
|
191 | 191 | /etc/SocExplorer/python/pygments/lexers/dotnet.pyo |
|
192 | 192 | /etc/SocExplorer/python/pygments/lexers/functional.py |
|
193 | 193 | /etc/SocExplorer/python/pygments/lexers/functional.pyc |
|
194 | 194 | /etc/SocExplorer/python/pygments/lexers/functional.pyo |
|
195 | 195 | /etc/SocExplorer/python/pygments/lexers/hdl.py |
|
196 | 196 | /etc/SocExplorer/python/pygments/lexers/hdl.pyc |
|
197 | 197 | /etc/SocExplorer/python/pygments/lexers/hdl.pyo |
|
198 | 198 | /etc/SocExplorer/python/pygments/lexers/jvm.py |
|
199 | 199 | /etc/SocExplorer/python/pygments/lexers/jvm.pyc |
|
200 | 200 | /etc/SocExplorer/python/pygments/lexers/jvm.pyo |
|
201 | 201 | /etc/SocExplorer/python/pygments/lexers/math.py |
|
202 | 202 | /etc/SocExplorer/python/pygments/lexers/math.pyc |
|
203 | 203 | /etc/SocExplorer/python/pygments/lexers/math.pyo |
|
204 | 204 | /etc/SocExplorer/python/pygments/lexers/other.py |
|
205 | 205 | /etc/SocExplorer/python/pygments/lexers/other.pyc |
|
206 | 206 | /etc/SocExplorer/python/pygments/lexers/other.pyo |
|
207 | 207 | /etc/SocExplorer/python/pygments/lexers/parsers.py |
|
208 | 208 | /etc/SocExplorer/python/pygments/lexers/parsers.pyc |
|
209 | 209 | /etc/SocExplorer/python/pygments/lexers/parsers.pyo |
|
210 | 210 | /etc/SocExplorer/python/pygments/lexers/shell.py |
|
211 | 211 | /etc/SocExplorer/python/pygments/lexers/shell.pyc |
|
212 | 212 | /etc/SocExplorer/python/pygments/lexers/shell.pyo |
|
213 | 213 | /etc/SocExplorer/python/pygments/lexers/special.py |
|
214 | 214 | /etc/SocExplorer/python/pygments/lexers/special.pyc |
|
215 | 215 | /etc/SocExplorer/python/pygments/lexers/special.pyo |
|
216 | 216 | /etc/SocExplorer/python/pygments/lexers/sql.py |
|
217 | 217 | /etc/SocExplorer/python/pygments/lexers/sql.pyc |
|
218 | 218 | /etc/SocExplorer/python/pygments/lexers/sql.pyo |
|
219 | 219 | /etc/SocExplorer/python/pygments/lexers/templates.py |
|
220 | 220 | /etc/SocExplorer/python/pygments/lexers/templates.pyc |
|
221 | 221 | /etc/SocExplorer/python/pygments/lexers/templates.pyo |
|
222 | 222 | /etc/SocExplorer/python/pygments/lexers/text.py |
|
223 | 223 | /etc/SocExplorer/python/pygments/lexers/text.pyc |
|
224 | 224 | /etc/SocExplorer/python/pygments/lexers/text.pyo |
|
225 | 225 | /etc/SocExplorer/python/pygments/lexers/web.py |
|
226 | 226 | /etc/SocExplorer/python/pygments/lexers/web.pyc |
|
227 | 227 | /etc/SocExplorer/python/pygments/lexers/web.pyo |
|
228 | 228 | /etc/SocExplorer/python/pygments/plugin.py |
|
229 | 229 | /etc/SocExplorer/python/pygments/plugin.pyc |
|
230 | 230 | /etc/SocExplorer/python/pygments/plugin.pyo |
|
231 | 231 | /etc/SocExplorer/python/pygments/scanner.py |
|
232 | 232 | /etc/SocExplorer/python/pygments/scanner.pyc |
|
233 | 233 | /etc/SocExplorer/python/pygments/scanner.pyo |
|
234 | 234 | /etc/SocExplorer/python/pygments/style.py |
|
235 | 235 | /etc/SocExplorer/python/pygments/style.pyc |
|
236 | 236 | /etc/SocExplorer/python/pygments/style.pyo |
|
237 | 237 | /etc/SocExplorer/python/pygments/styles/__init__.py |
|
238 | 238 | /etc/SocExplorer/python/pygments/styles/__init__.pyc |
|
239 | 239 | /etc/SocExplorer/python/pygments/styles/__init__.pyo |
|
240 | 240 | /etc/SocExplorer/python/pygments/styles/autumn.py |
|
241 | 241 | /etc/SocExplorer/python/pygments/styles/autumn.pyc |
|
242 | 242 | /etc/SocExplorer/python/pygments/styles/autumn.pyo |
|
243 | 243 | /etc/SocExplorer/python/pygments/styles/borland.py |
|
244 | 244 | /etc/SocExplorer/python/pygments/styles/borland.pyc |
|
245 | 245 | /etc/SocExplorer/python/pygments/styles/borland.pyo |
|
246 | 246 | /etc/SocExplorer/python/pygments/styles/bw.py |
|
247 | 247 | /etc/SocExplorer/python/pygments/styles/bw.pyc |
|
248 | 248 | /etc/SocExplorer/python/pygments/styles/bw.pyo |
|
249 | 249 | /etc/SocExplorer/python/pygments/styles/colorful.py |
|
250 | 250 | /etc/SocExplorer/python/pygments/styles/colorful.pyc |
|
251 | 251 | /etc/SocExplorer/python/pygments/styles/colorful.pyo |
|
252 | 252 | /etc/SocExplorer/python/pygments/styles/default.py |
|
253 | 253 | /etc/SocExplorer/python/pygments/styles/default.pyc |
|
254 | 254 | /etc/SocExplorer/python/pygments/styles/default.pyo |
|
255 | 255 | /etc/SocExplorer/python/pygments/styles/emacs.py |
|
256 | 256 | /etc/SocExplorer/python/pygments/styles/emacs.pyc |
|
257 | 257 | /etc/SocExplorer/python/pygments/styles/emacs.pyo |
|
258 | 258 | /etc/SocExplorer/python/pygments/styles/friendly.py |
|
259 | 259 | /etc/SocExplorer/python/pygments/styles/friendly.pyc |
|
260 | 260 | /etc/SocExplorer/python/pygments/styles/friendly.pyo |
|
261 | 261 | /etc/SocExplorer/python/pygments/styles/fruity.py |
|
262 | 262 | /etc/SocExplorer/python/pygments/styles/fruity.pyc |
|
263 | 263 | /etc/SocExplorer/python/pygments/styles/fruity.pyo |
|
264 | 264 | /etc/SocExplorer/python/pygments/styles/manni.py |
|
265 | 265 | /etc/SocExplorer/python/pygments/styles/manni.pyc |
|
266 | 266 | /etc/SocExplorer/python/pygments/styles/manni.pyo |
|
267 | 267 | /etc/SocExplorer/python/pygments/styles/monokai.py |
|
268 | 268 | /etc/SocExplorer/python/pygments/styles/monokai.pyc |
|
269 | 269 | /etc/SocExplorer/python/pygments/styles/monokai.pyo |
|
270 | 270 | /etc/SocExplorer/python/pygments/styles/murphy.py |
|
271 | 271 | /etc/SocExplorer/python/pygments/styles/murphy.pyc |
|
272 | 272 | /etc/SocExplorer/python/pygments/styles/murphy.pyo |
|
273 | 273 | /etc/SocExplorer/python/pygments/styles/native.py |
|
274 | 274 | /etc/SocExplorer/python/pygments/styles/native.pyc |
|
275 | 275 | /etc/SocExplorer/python/pygments/styles/native.pyo |
|
276 | 276 | /etc/SocExplorer/python/pygments/styles/pastie.py |
|
277 | 277 | /etc/SocExplorer/python/pygments/styles/pastie.pyc |
|
278 | 278 | /etc/SocExplorer/python/pygments/styles/pastie.pyo |
|
279 | 279 | /etc/SocExplorer/python/pygments/styles/perldoc.py |
|
280 | 280 | /etc/SocExplorer/python/pygments/styles/perldoc.pyc |
|
281 | 281 | /etc/SocExplorer/python/pygments/styles/perldoc.pyo |
|
282 | 282 | /etc/SocExplorer/python/pygments/styles/rrt.py |
|
283 | 283 | /etc/SocExplorer/python/pygments/styles/rrt.pyc |
|
284 | 284 | /etc/SocExplorer/python/pygments/styles/rrt.pyo |
|
285 | 285 | /etc/SocExplorer/python/pygments/styles/tango.py |
|
286 | 286 | /etc/SocExplorer/python/pygments/styles/tango.pyc |
|
287 | 287 | /etc/SocExplorer/python/pygments/styles/tango.pyo |
|
288 | 288 | /etc/SocExplorer/python/pygments/styles/trac.py |
|
289 | 289 | /etc/SocExplorer/python/pygments/styles/trac.pyc |
|
290 | 290 | /etc/SocExplorer/python/pygments/styles/trac.pyo |
|
291 | 291 | /etc/SocExplorer/python/pygments/styles/vim.py |
|
292 | 292 | /etc/SocExplorer/python/pygments/styles/vim.pyc |
|
293 | 293 | /etc/SocExplorer/python/pygments/styles/vim.pyo |
|
294 | 294 | /etc/SocExplorer/python/pygments/styles/vs.py |
|
295 | 295 | /etc/SocExplorer/python/pygments/styles/vs.pyc |
|
296 | 296 | /etc/SocExplorer/python/pygments/styles/vs.pyo |
|
297 | 297 | /etc/SocExplorer/python/pygments/token.py |
|
298 | 298 | /etc/SocExplorer/python/pygments/token.pyc |
|
299 | 299 | /etc/SocExplorer/python/pygments/token.pyo |
|
300 | 300 | /etc/SocExplorer/python/pygments/unistring.py |
|
301 | 301 | /etc/SocExplorer/python/pygments/unistring.pyc |
|
302 | 302 | /etc/SocExplorer/python/pygments/unistring.pyo |
|
303 | 303 | /etc/SocExplorer/python/pygments/util.py |
|
304 | 304 | /etc/SocExplorer/python/pygments/util.pyc |
|
305 | 305 | /etc/SocExplorer/python/pygments/util.pyo |
|
306 | 306 | /etc/SocExplorer/plugin.conf.d/plugins.conf |
|
307 | 307 | %{_bindir}/SocExplorer_TCP_Terminal |
|
308 | 308 | %{_bindir}/socexplorer |
|
309 | 309 | %{_datadir}/SocExplorer/icon.png |
|
310 | 310 | %{_datadir}/SocExplorer/Grlib.xml |
|
311 | 311 | %{_datadir}/SocExplorer/LPP.xml |
|
312 | 312 | %{_datadir}/SocExplorer/IAP.xml |
|
313 | 313 | %{_datadir}/applications/socexplorer.desktop |
|
314 | 314 | %{_datadir}/appdata/socexplorer.appdata.xml |
|
315 | 315 | %{_qt5_libdir}/libsocexplorercommon.so* |
|
316 | 316 | %{_qt5_libdir}/libsocexplorerengine.so* |
|
317 | 317 | |
|
318 | 318 | |
|
319 | 319 | %files devel |
|
320 | 320 | %{_qt5_headerdir}/SocExplorer/ |
|
321 | 321 | %{_qt5_archdatadir}/mkspecs/features/socexplorerplugin.prf |
|
322 | 322 | /usr/share/qtcreator/templates/wizards/SocExplorerPlugin/plugin.cpp |
|
323 | 323 | /usr/share/qtcreator/templates/wizards/SocExplorerPlugin/plugin.h |
|
324 | 324 | /usr/share/qtcreator/templates/wizards/SocExplorerPlugin/project.pro |
|
325 | 325 | /usr/share/qtcreator/templates/wizards/SocExplorerPlugin/wizard.xml |
|
326 | 326 | |
|
327 | 327 | |
|
328 | 328 | %changelog |
|
329 | * Tue Apr 19 2016 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.7 | |
|
330 | - Updated to 0.7 version. | |
|
331 | ||
|
329 | 332 | * Fri Jan 22 2016 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.6 |
|
330 | 333 | - Added Fedora 23 support. |
|
331 | 334 | |
|
332 | 335 | * Mon Oct 26 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.6 |
|
333 | 336 | - Updated LPP IPs registers definition list(LPP.xml). |
|
334 | 337 | |
|
335 | 338 | * Fri Apr 17 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.6 |
|
336 | 339 | - Updated abstractbinary file lib to expose new feature. |
|
337 | 340 | |
|
338 | 341 | * Fri Apr 3 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.6 |
|
339 | 342 | - Fix some remaining mistakes. |
|
340 | 343 | |
|
341 | 344 | * Thu Apr 2 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.6 |
|
342 | 345 | -Uses r80 as source. |
|
343 | 346 | -Removed GenericPySysdriver interface, now socexplorer plugins can be subclassed in python. |
|
344 | 347 | |
|
345 | 348 | * Thu Mar 26 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.5 |
|
346 | 349 | -Uses r77 as source. |
|
347 | 350 | |
|
348 | 351 | * Mon Mar 9 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4 |
|
349 | 352 | - Uses r75 as source. |
|
350 | 353 | |
|
351 | 354 | * Tue Feb 10 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4 |
|
352 | 355 | - Uses r74 as source. |
|
353 | 356 | |
|
354 | 357 | * Fri Feb 6 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4 |
|
355 | 358 | - Reseted patches uses r73 as source. |
|
356 | 359 | |
|
357 | 360 | * Tue Dec 30 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4 |
|
358 | 361 | - Reseted patches uses r72 as source. |
|
359 | 362 | |
|
360 | 363 | * Sun Jun 29 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4 |
|
361 | 364 | - Reseted patches uses r69 as source. |
|
362 | 365 | |
|
363 | 366 | * Sat Jun 28 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4 |
|
364 | 367 | - Applied patch r65 to install also plugin as RPM |
|
365 | 368 | - Applied patch r66 to install xml soc descriptions in /usr/share/SocExplorer |
|
366 | 369 | - Applied patch r67 to add appdata for gnome-software visibility |
|
367 | 370 | |
|
368 | 371 | * Tue Jun 24 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4 |
|
369 | 372 | - Initial Fedora packaging |
General Comments 0
You need to be logged in to leave comments.
Login now