##// END OF EJS Templates
Added plugin vresion management....
jeandet -
r77:820d90d5d232 default
parent child
Show More
@@ -1,58 +1,53
1 1 #
2 2 # Project created by QtCreator 2011-09-20T08:15:30
3 3 #
4 4 #-------------------------------------------------
5 5
6 6 CONFIG += socexplorerplugin
7 7 win32:CONFIG += dll
8 8 win32:CONFIG -= static
9 CONFIG(debug, debug|release) {
10 DEBUG_EXT = _d
11 } else {
12 DEBUG_EXT =
13 }
9 VERSION=0.1.0
14 10 TARGET = %ProjectName%$${DEBUG_EXT}
15 11 DEFINES += PLUGIN=%ProjectName%
16 12 DEFINES += PLUGINHEADER="\"\\\"%ProjectName%.h"\\\"\"
17 13 DEFINES += driver_Name="\"\\\"%driver_Name%"\\\"\"
18 14 DEFINES += driver_Author="\"\\\"%driver_Author% %driver_Mail%"\\\"\"
19 DEFINES += driver_Version="\"\\\"%driver_Version%"\\\"\"
20 15 DEFINES += driver_Description="\"\\\"%driver_Description%"\\\"\"
21 16 DEFINES += driver_can_be_root=%ISROOT%
22 17 DEFINES += driver_can_be_child=%ISCHILD%
23 18 DEFINES += driver_VID=%driver_VID%
24 19 DEFINES += driver_PID=%driver_PID%
25 20
26 21
27 22 INCLUDEPATH += \
28 23 $${PWD}
29 24
30 25 HEADERS += \
31 26 %ProjectName%.h
32 27
33 28
34 29 SOURCES += \
35 30 %ProjectName%.cpp
36 31
37 32
38 33
39 34
40 35
41 36
42 37
43 38
44 39
45 40
46 41
47 42
48 43
49 44
50 45
51 46
52 47
53 48
54 49
55 50
56 51
57 52
58 53
@@ -1,166 +1,166
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=7e54838aea98+
13 SOCEXPLORER_CHAGESETNUM=2c7201cecc87+
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.4.8"\\\"\"
22 DEFINES += SOCEXPLORER_VERSION="\"\\\"0.5.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 plugins/genericPySysdriver.h \
61 61 XmlEngine/XMLmodel.h \
62 62 XmlEngine/XMLdata.h \
63 63 XmlEngine/xmldriver.h \
64 64 SOC/socmodel.h \
65 65 SOC/registerdata.h \
66 66 SOC/socclk.h \
67 67 PeripheralWidget/src/peripheralwidget.h \
68 68 PeripheralWidget/src/registerwidget.h \
69 69 PeripheralWidget/src/socregsviewer.h \
70 70 memtester/memtester.h
71 71
72 72
73 73
74 74 isEmpty(header.path) {
75 75 error(can\'t get QT_INSTALL_HEADERS)
76 76 }
77 77
78 78 pluginif.files = pluginsInterface/*.h \
79 79 pluginsInterface/*.cpp
80 80
81 81 pluginif.path = $$[QT_INSTALL_HEADERS]/SocExplorer/pluginsInterface
82 82
83 83
84 84 INSTALLS += target header pluginif
85 85
86 86 INCLUDEPATH += engine \
87 87 pluginloader \
88 88 pluginsInterface \
89 89 proxy \
90 90 plugins \
91 91 pluginManagerWdgt \
92 92 ../common \
93 93 ../common/genericBinaryFiles \
94 94 ../ \
95 95 RegisterMVS \
96 96 XmlEngine \
97 97 SOC \
98 98 PeripheralWidget/src \
99 99 memtester
100 100
101 101
102 102 HEADERS += \
103 103 pluginloader/pluginscache.h \
104 104 pluginloader/pluginloader.h \
105 105 plugins/genericPySysdriver.h \
106 106 pluginManagerWdgt/plugintree.h \
107 107 pluginManagerWdgt/pluginmanagerWDGT.h \
108 108 pluginManagerWdgt/pluginlist.h \
109 109 pluginManagerWdgt/plugininfoswdgt.h \
110 110 XmlEngine/XMLmodel.h \
111 111 XmlEngine/XMLdata.h \
112 112 SOC/socmodel.h \
113 113 SOC/registerdata.h \
114 114 XmlEngine/xmldriver.h \
115 115 PeripheralWidget/src/peripheralwidget.h \
116 116 PeripheralWidget/src/registerwidget.h \
117 117 PeripheralWidget/src/socregsviewer.h \
118 118 SOC/socclk.h \
119 119 engine/socexplorerengine.h \
120 120 engine/socexplorerxmlfile.h \
121 121 plugins/socexplorerplugin.h \
122 122 pluginsInterface/socexplorerplugininterface.h \
123 123 pluginsInterface/socexplorerplugininterface_global.h \
124 124 proxy/socexplorerproxy.h \
125 125 SOC/socexplorerenumdevice.h \
126 126 PySocExplorerEngine.h \
127 127 memtester/memtester.h
128 128
129 129
130 130
131 131
132 132
133 133
134 134 SOURCES += \
135 135 pluginloader/pluginscache.cpp \
136 136 pluginloader/pluginloader.cpp \
137 137 pluginManagerWdgt/plugintree.cpp \
138 138 pluginManagerWdgt/pluginmanagerWDGT.cpp \
139 139 pluginManagerWdgt/pluginlist.cpp \
140 140 pluginManagerWdgt/plugininfoswdgt.cpp \
141 141 XmlEngine/XMLmodel.cpp \
142 142 XmlEngine/XMLdata.cpp \
143 143 SOC/socmodel.cpp \
144 144 SOC/registerdata.cpp \
145 145 XmlEngine/xmldriver.cpp \
146 146 PeripheralWidget/src/peripheralwidget.cpp \
147 147 PeripheralWidget/src/registerwidget.cpp \
148 148 PeripheralWidget/src/socregsviewer.cpp \
149 149 SOC/socclk.cpp \
150 150 plugins/genericPySysdriver.cpp \
151 151 engine/socexplorerengine.cpp \
152 152 engine/socexplorerxmlfile.cpp \
153 153 proxy/socexplorerproxy.cpp \
154 154 SOC/socexplorerenumdevice.cpp \
155 155 plugins/socexplorerplugin.cpp \
156 156 memtester/memtester.cpp
157 157
158 158
159 159 OTHER_FILES += \
160 160 plugins/socexplorerplugin.cpp \
161 161 pluginsInterface/socexplorerplugininterface.cpp \
162 162 plugins/socexplorerplugin.prf \
163 163 pythongenerator.sh \
164 164 pythonQtgeneratorCfg.txt
165 165
166 166
@@ -1,72 +1,68
1 1
2 DEFINES += driver_Version="\"\\\"$$VERSION"\\\"\"
2 3
3 4 win32 {
4 5 DEFINES += WIN32
5 6 DEFINES += WINTRANSLATIONPATH
6 7 DEFINES += SOCEXPLORER_TRANSLATION_PATH="\"\\\"./translations"\\\"\"
7 8 SOCEXPLORER_TRANSLATION_INSTALL_PATH = translations
8 9 SOCEXPLORER_INSTALL_PATH =
9 10 SOCEXPLORER_PLUGINS_INSTALL_PATH = $$SOCEXPLORER_PLUGIN_PATH
10 11 }
11 12
12 13 unix {
13 14 DEFINES += UNIX
14 15 DEFINES += UNIXTRANSLATIONPATH
15 16 DEFINES += SOCEXPLORER_TRANSLATION_PATH="\"\\\"/etc/SocExplorer/translations"\\\"\"
16 17 SOCEXPLORER_TRANSLATION_INSTALL_PATH = /etc/SocExplorer/translations
17 18 SOCEXPLORER_INSTALL_PATH = /usr/local/SocExplorer
18 19 SOCEXPLORER_PLUGINS_INSTALL_PATH = $$[QT_INSTALL_LIBS]"/SocExplorer/plugins"
19 20 DEFINES += SOCEXPLORER_CONFIG_PATH="\"\\\"/etc/SocExplorer"\\\"\"
20 21 DEFINES += SOCEXPLORER_SHARE_PATH="\"\\\"/usr/share/SocExplorer"\\\"\"
21 22 SOCEXPLORER_CONFIG_PATH=/etc/SocExplorer
22 23 }
23 24
24 25 isEmpty( SOCEXPLORER_SDK_BUILD ){
25 26 message( "building a plugin" )
26 27 QT += core gui xml
27 28 contains(QT_MAJOR_VERSION, 5) {
28 29 QT += widgets
29 30 }
30 31 CONFIG += pythonqt
31 32 TEMPLATE = lib
32 33 win32:CONFIG += dll
33 34 win32:CONFIG -= static
34 35 OBJECTS_DIR = obj
35 36 MOC_DIR = moc
36 37 DESTDIR = bin
37 # CONFIG(debug, debug|release) {
38 # DEBUG_EXT = _d
39 # } else {
40 # DEBUG_EXT =
41 # }
42 38 unix{
43 39 target.path = $${SOCEXPLORER_PLUGINS_INSTALL_PATH}
44 40 INSTALLS += target
45 41 LIBS+= -lsocexplorerengine$${DEBUG_EXT} -lsocexplorercommon$${DEBUG_EXT}
46 42 }
47 43 win32{
48 44 INCLUDEPATH += $$[QT_INSTALL_HEADERS]/SocExplorer/common/libelf
49 45 LIBS+=$$[QT_INSTALL_LIBS]/socexplorerengine$${DEBUG_EXT}.dll $$[QT_INSTALL_LIBS]/socexplorercommon$${DEBUG_EXT}.dll
50 46 }
51 47 DEFINES += SOCEXPLORER_LIBRARY
52 48
53 49 SOURCES += \
54 50 $$[QT_INSTALL_HEADERS]/SocExplorer/pluginsInterface/socexplorerplugininterface.cpp
55 51
56 52 HEADERS += \
57 53 $$[QT_INSTALL_HEADERS]/SocExplorer/genericPySysdriver.h \
58 54 $$[QT_INSTALL_HEADERS]/SocExplorer/socexplorerplugin.h
59 55
60 56 INCLUDEPATH += $$[QT_INSTALL_HEADERS]/SocExplorer/common \
61 57 $$[QT_INSTALL_HEADERS]/SocExplorer \
62 58 $$[QT_INSTALL_HEADERS]/SocExplorer/pluginsInterface
63 59
64 60
65 61 }else{
66 62 message( "building SocExplorer" )
67 63 HEADERS += \
68 64 $$[QT_INSTALL_HEADERS]/SocExplorer/genericPySysdriver.h \
69 65 $$[QT_INSTALL_HEADERS]/SocExplorer/socexplorerplugin.h
70 66 }
71 67
72 68
@@ -1,139 +1,113
1 1 #-------------------------------------------------
2 2 #
3 3 # Project created by QtCreator 2011-09-19T22:52:10
4 4 #
5 5 #-------------------------------------------------
6 6 SOCEXPLORER_ROOT = $${PWD}/..
7 7 include(../build_cfg/socexplorer.pri)
8 8
9 9 TARGET = socexplorer$${DEBUG_EXT}
10 10 TEMPLATE = app
11 11 CONFIG += pythonqt
12 12
13 13
14 14 QMAKE_LFLAGS_RELEASE += --enable-auto-import -mstackrealign
15 15 QMAKE_LFLAGS_DEBUG += --enable-auto-import -mstackrealign
16 16
17 17 include ( common/pythonQtOut/generated_cpp/PySocExplorer/PySocExplorer.pri )
18 18 include ( SocExplorerEngine/pythonQtOut/generated_cpp/PySocExplorerEngine/PySocExplorerEngine.pri )
19 19 include ( SocExplorerEngine/plugins/socexplorerplugin.prf )
20 20
21 21 INCLUDEPATH+=$${PWD} \
22 22 $${PWD}/common \
23 23 $${PWD}/common/qhexedit \
24 24 $${PWD}/common/QCustomPlot \
25 25 $${PWD}/common/genericBinaryFiles \
26 26 $${PWD}/common/genericBinaryFiles/elf \
27 27 $${PWD}/common/genericBinaryFiles/srec \
28 28 $${PWD}/common/genericBinaryFiles/BinFile \
29 29 SocExplorerEngine/engine \
30 30 SocExplorerEngine/pluginloader \
31 31 SocExplorerEngine/pluginsInterface \
32 32 SocExplorerEngine/proxy \
33 33 SocExplorerEngine/pluginManagerWdgt \
34 34 SocExplorerEngine/plugins \
35 35 SocExplorerEngine/RegisterMVS \
36 36 SocExplorerEngine/XmlEngine \
37 37 SocExplorerEngine/SOC \
38 38 SocExplorerEngine/PeripheralWidget/src \
39 39 SocExplorerEngine/memtester
40 40
41 41 win32:INCLUDEPATH+= \
42 42 $${PWD}/common/genericBinaryFiles/elf/libelfWin32/include \
43 43 $${PWD}/common/genericBinaryFiles/elf/libelfWin32/include/libelf \
44 44
45 45
46 46 RC_FILE = ../win32cfg/socexplorer.rc
47 47
48 48
49 49 unix:LIBS+=-L$${SOCEXPLORER_ROOT}/bin/linux -lsocexplorercommon$${DEBUG_EXT} -L$${SOCEXPLORER_ROOT}/bin/linux -lsocexplorerengine$${DEBUG_EXT}
50 50
51 51 win32-g++:LIBS += $${SOCEXPLORER_ROOT}/bin/win32/socexplorercommon$${DEBUG_EXT}.dll $${SOCEXPLORER_ROOT}/bin/win32/socexplorerengine$${DEBUG_EXT}.dll
52 52
53 53
54 54 unix{
55 55 translation.files = $${SOCEXPLORER_ROOT}/translations/socexplorer_fr.qm \
56 56 $${SOCEXPLORER_ROOT}/translations/socexplorer_en.qm
57 57 translation.path = $${SOCEXPLORER_TRANSLATION_INSTALL_PATH}
58 58 target.path = /usr/bin
59 59 INSTALLS += translation target
60 60 }
61 61
62 62 header.path = $$[QT_INSTALL_HEADERS]/SocExplorer/common
63 63 header.files = \
64 64 socexplorer.h
65 65 INSTALLS += header
66 66
67 67
68 68 SOURCES += main.cpp\
69 69 mainwindow.cpp \
70 70 PyWdgt/pythonconsole.cpp \
71 71 PyWdgt/pythonqtscriptingconsoledandd.cpp \
72 72 dockablepluginmanager.cpp \
73 73 toolbar.cpp \
74 74 toolbarcontainer.cpp \
75 75 regsExplorer/regsexplorer.cpp \
76 76 regsExplorer/regsviewer.cpp \
77 77 regsExplorer/regsexplorercfg.cpp \
78 78 aboutsocexplorer.cpp
79 79
80 # regWidget/xmltagtextedit.cpp \
81 # regWidget/xmltaglabeledit.cpp \
82 # regWidget/xmlelementslistwidget.cpp \
83 # regWidget/xmlelementslistview.cpp \
84 # regWidget/regpropeditor.cpp \
85 # regWidget/registerwdgt.cpp \
86 # regWidget/registereditor.cpp \
87 # regWidget/registercel.cpp \
88 # regWidget/periphpropeditor.cpp \
89 # regWidget/peripherialregs.cpp \
90 # regWidget/bitfieldpropeditor.cpp \
91 # regWidget/bitfield.cpp
92
93
94 80 HEADERS += mainwindow.h \
95 81 PyWdgt/pythonconsole.h \
96 82 PyWdgt/pythonqtscriptingconsoledandd.h \
97 83 dockablepluginmanager.h \
98 84 toolbar.h \
99 85 toolbarcontainer.h \
100 86 regsExplorer/regsexplorer.h \
101 87 regsExplorer/regsviewer.h \
102 88 regsExplorer/regsexplorercfg.h \
103 89 socexplorer.h \
104 90 SocExplorerEngine/plugins/socexplorerplugin.h \
105 91 aboutsocexplorer.h
106 # regWidget/xmltagtextedit.h \
107 # regWidget/xmltaglabeledit.h \
108 # regWidget/xmlelementslistwidget.h \
109 # regWidget/xmlelementslistview.h \
110 # regWidget/regpropeditor.h \
111 # regWidget/registerwdgt.h \
112 # regWidget/registereditor.h \
113 # regWidget/registercel.h \
114 # regWidget/periphpropeditor.h \
115 # regWidget/peripherialregs.h \
116 # regWidget/bitfieldpropeditor.h \
117 # regWidget/bitfield.h
118 92
119 93
120 94 include ( NicePyConsole/NicePyConsole.pri)
121 95
122 96 win32{
123 97 RESOURCES = ../ressources/SocExplorer.qrc
124 98 }
125 99
126 100 unix{
127 101 RESOURCES = ../ressources/SocExplorer.qrc
128 102 }
129 103
130 104 TRANSLATIONS = ../translations/socexplorer_fr.ts \
131 105 ../translations/socexplorer_en.ts
132 106
133 107
134 108
135 109
136 110
137 111
138 112
139 113
@@ -1,332 +1,331
1 %global upstream_name socexplorer-0.4
1 %global upstream_name socexplorer-0.5
2 2
3 3 Name: socexplorer
4 Version: 0.4
5 Release: 8%{?dist}
4 Version: 0.5
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 Source0: https://hephaistos.lpp.polytechnique.fr/redmine/attachments/download/376/socexplorer-0.4.zip
11 #
12 #Patch0: socexplorer_desktop.patch
13
10 Source0: https://hephaistos.lpp.polytechnique.fr/redmine/attachments/download/376/socexplorer-0.5.zip
14 11
15 12 BuildRequires: python2-devel
16 13 BuildRequires: qt5-qtbase-devel
17 14 BuildRequires: qt5-qtwebkit-devel
18 15 BuildRequires: qt5-qttools-static
19 16 BuildRequires: qt5-qttools-devel
20 17 BuildRequires: qt5-qtsvg-devel
21 18 BuildRequires: qt5-qtxmlpatterns-devel
22 19 BuildRequires: qt5-qtmultimedia-devel
23 20 BuildRequires: elfutils-libelf-devel
24 21 BuildRequires: qt5-pythonqt-devel
25 22 BuildRequires: mercurial
26 23 BuildRequires: appdata-tools
27 24 BuildRequires: desktop-file-utils
28 25
29 26 Requires(post): python2
30 27 Requires(post): qt5-qtbase
31 28 Requires(post): qt5-qtwebkit
32 29 Requires(post): qt5-qtsvg
33 30 Requires(post): qt5-qtxmlpatterns
34 31 Requires(post): elfutils-libelf
35 32 Requires(post): qt5-pythonqt
36 33
37 Provides: socexplorer = 0.4-6
38 Obsoletes: socexplorer < 0.4-5
34 Provides: socexplorer = 0.5-0
35 Obsoletes: socexplorer < 0.4-8
39 36
40 37 %description
41 38 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.
42 39
43 40 %package devel
44 41 Summary: SocExplorer is an open source generic System On Chip testing software/framework.
45 42 Group: Development/Tools
46 43 Requires: %{name}%{?_isa} = %{version}-%{release}
47 44
48 45 %description devel
49 46 Header files and development libraries for SocExplorer package. SocExplorer is an open source generic System On Chip testing software/framework.
50 47
51 48 %prep
52 49 %setup -q -n %{upstream_name}
53 #%patch0 -p1 -b .desktop
54 50
55 51
56 52
57 53 %build
58 54 %{_qt5_qmake}
59 55
60 56 make %{?_smp_mflags}
61 57
62 58 %install
63 59 make install INSTALL_ROOT=%{buildroot}
64 60 appdata-validate --nonet %{buildroot}/%{_datadir}/appdata/socexplorer.appdata.xml
65 61 desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/socexplorer.desktop
66 62
67 63 %post -p /sbin/ldconfig
68 64
69 65 %postun -p /sbin/ldconfig
70 66
71 67 %files
72 68 /etc/SocExplorer/python/PygmentsHighlighter.py
73 69 /etc/SocExplorer/python/PygmentsHighlighter.pyc
74 70 /etc/SocExplorer/python/PygmentsHighlighter.pyo
75 71 /etc/SocExplorer/python/PythonCompleter.py
76 72 /etc/SocExplorer/python/PythonCompleter.pyc
77 73 /etc/SocExplorer/python/PythonCompleter.pyo
78 74 /etc/SocExplorer/python/module_completion.py
79 75 /etc/SocExplorer/python/module_completion.pyc
80 76 /etc/SocExplorer/python/module_completion.pyo
81 77 /etc/SocExplorer/python/pygments/__init__.py
82 78 /etc/SocExplorer/python/pygments/__init__.pyc
83 79 /etc/SocExplorer/python/pygments/__init__.pyo
84 80 /etc/SocExplorer/python/pygments/cmdline.py
85 81 /etc/SocExplorer/python/pygments/cmdline.pyc
86 82 /etc/SocExplorer/python/pygments/cmdline.pyo
87 83 /etc/SocExplorer/python/pygments/console.py
88 84 /etc/SocExplorer/python/pygments/console.pyc
89 85 /etc/SocExplorer/python/pygments/console.pyo
90 86 /etc/SocExplorer/python/pygments/filter.py
91 87 /etc/SocExplorer/python/pygments/filter.pyc
92 88 /etc/SocExplorer/python/pygments/filter.pyo
93 89 /etc/SocExplorer/python/pygments/filters/__init__.py
94 90 /etc/SocExplorer/python/pygments/filters/__init__.pyc
95 91 /etc/SocExplorer/python/pygments/filters/__init__.pyo
96 92 /etc/SocExplorer/python/pygments/formatter.py
97 93 /etc/SocExplorer/python/pygments/formatter.pyc
98 94 /etc/SocExplorer/python/pygments/formatter.pyo
99 95 /etc/SocExplorer/python/pygments/formatters/__init__.py
100 96 /etc/SocExplorer/python/pygments/formatters/__init__.pyc
101 97 /etc/SocExplorer/python/pygments/formatters/__init__.pyo
102 98 /etc/SocExplorer/python/pygments/formatters/_mapping.py
103 99 /etc/SocExplorer/python/pygments/formatters/_mapping.pyc
104 100 /etc/SocExplorer/python/pygments/formatters/_mapping.pyo
105 101 /etc/SocExplorer/python/pygments/formatters/bbcode.py
106 102 /etc/SocExplorer/python/pygments/formatters/bbcode.pyc
107 103 /etc/SocExplorer/python/pygments/formatters/bbcode.pyo
108 104 /etc/SocExplorer/python/pygments/formatters/html.py
109 105 /etc/SocExplorer/python/pygments/formatters/html.pyc
110 106 /etc/SocExplorer/python/pygments/formatters/html.pyo
111 107 /etc/SocExplorer/python/pygments/formatters/img.py
112 108 /etc/SocExplorer/python/pygments/formatters/img.pyc
113 109 /etc/SocExplorer/python/pygments/formatters/img.pyo
114 110 /etc/SocExplorer/python/pygments/formatters/latex.py
115 111 /etc/SocExplorer/python/pygments/formatters/latex.pyc
116 112 /etc/SocExplorer/python/pygments/formatters/latex.pyo
117 113 /etc/SocExplorer/python/pygments/formatters/other.py
118 114 /etc/SocExplorer/python/pygments/formatters/other.pyc
119 115 /etc/SocExplorer/python/pygments/formatters/other.pyo
120 116 /etc/SocExplorer/python/pygments/formatters/rtf.py
121 117 /etc/SocExplorer/python/pygments/formatters/rtf.pyc
122 118 /etc/SocExplorer/python/pygments/formatters/rtf.pyo
123 119 /etc/SocExplorer/python/pygments/formatters/svg.py
124 120 /etc/SocExplorer/python/pygments/formatters/svg.pyc
125 121 /etc/SocExplorer/python/pygments/formatters/svg.pyo
126 122 /etc/SocExplorer/python/pygments/formatters/terminal.py
127 123 /etc/SocExplorer/python/pygments/formatters/terminal.pyc
128 124 /etc/SocExplorer/python/pygments/formatters/terminal.pyo
129 125 /etc/SocExplorer/python/pygments/formatters/terminal256.py
130 126 /etc/SocExplorer/python/pygments/formatters/terminal256.pyc
131 127 /etc/SocExplorer/python/pygments/formatters/terminal256.pyo
132 128 /etc/SocExplorer/python/pygments/lexer.py
133 129 /etc/SocExplorer/python/pygments/lexer.pyc
134 130 /etc/SocExplorer/python/pygments/lexer.pyo
135 131 /etc/SocExplorer/python/pygments/lexers/__init__.py
136 132 /etc/SocExplorer/python/pygments/lexers/__init__.pyc
137 133 /etc/SocExplorer/python/pygments/lexers/__init__.pyo
138 134 /etc/SocExplorer/python/pygments/lexers/_asybuiltins.py
139 135 /etc/SocExplorer/python/pygments/lexers/_asybuiltins.pyc
140 136 /etc/SocExplorer/python/pygments/lexers/_asybuiltins.pyo
141 137 /etc/SocExplorer/python/pygments/lexers/_clbuiltins.py
142 138 /etc/SocExplorer/python/pygments/lexers/_clbuiltins.pyc
143 139 /etc/SocExplorer/python/pygments/lexers/_clbuiltins.pyo
144 140 /etc/SocExplorer/python/pygments/lexers/_luabuiltins.py
145 141 /etc/SocExplorer/python/pygments/lexers/_luabuiltins.pyc
146 142 /etc/SocExplorer/python/pygments/lexers/_luabuiltins.pyo
147 143 /etc/SocExplorer/python/pygments/lexers/_mapping.py
148 144 /etc/SocExplorer/python/pygments/lexers/_mapping.pyc
149 145 /etc/SocExplorer/python/pygments/lexers/_mapping.pyo
150 146 /etc/SocExplorer/python/pygments/lexers/_phpbuiltins.py
151 147 /etc/SocExplorer/python/pygments/lexers/_phpbuiltins.pyc
152 148 /etc/SocExplorer/python/pygments/lexers/_phpbuiltins.pyo
153 149 /etc/SocExplorer/python/pygments/lexers/_postgres_builtins.py
154 150 /etc/SocExplorer/python/pygments/lexers/_postgres_builtins.pyc
155 151 /etc/SocExplorer/python/pygments/lexers/_postgres_builtins.pyo
156 152 /etc/SocExplorer/python/pygments/lexers/_scilab_builtins.py
157 153 /etc/SocExplorer/python/pygments/lexers/_scilab_builtins.pyc
158 154 /etc/SocExplorer/python/pygments/lexers/_scilab_builtins.pyo
159 155 /etc/SocExplorer/python/pygments/lexers/_vimbuiltins.py
160 156 /etc/SocExplorer/python/pygments/lexers/_vimbuiltins.pyc
161 157 /etc/SocExplorer/python/pygments/lexers/_vimbuiltins.pyo
162 158 /etc/SocExplorer/python/pygments/lexers/agile.py
163 159 /etc/SocExplorer/python/pygments/lexers/agile.pyc
164 160 /etc/SocExplorer/python/pygments/lexers/agile.pyo
165 161 /etc/SocExplorer/python/pygments/lexers/asm.py
166 162 /etc/SocExplorer/python/pygments/lexers/asm.pyc
167 163 /etc/SocExplorer/python/pygments/lexers/asm.pyo
168 164 /etc/SocExplorer/python/pygments/lexers/compiled.py
169 165 /etc/SocExplorer/python/pygments/lexers/compiled.pyc
170 166 /etc/SocExplorer/python/pygments/lexers/compiled.pyo
171 167 /etc/SocExplorer/python/pygments/lexers/dotnet.py
172 168 /etc/SocExplorer/python/pygments/lexers/dotnet.pyc
173 169 /etc/SocExplorer/python/pygments/lexers/dotnet.pyo
174 170 /etc/SocExplorer/python/pygments/lexers/functional.py
175 171 /etc/SocExplorer/python/pygments/lexers/functional.pyc
176 172 /etc/SocExplorer/python/pygments/lexers/functional.pyo
177 173 /etc/SocExplorer/python/pygments/lexers/hdl.py
178 174 /etc/SocExplorer/python/pygments/lexers/hdl.pyc
179 175 /etc/SocExplorer/python/pygments/lexers/hdl.pyo
180 176 /etc/SocExplorer/python/pygments/lexers/jvm.py
181 177 /etc/SocExplorer/python/pygments/lexers/jvm.pyc
182 178 /etc/SocExplorer/python/pygments/lexers/jvm.pyo
183 179 /etc/SocExplorer/python/pygments/lexers/math.py
184 180 /etc/SocExplorer/python/pygments/lexers/math.pyc
185 181 /etc/SocExplorer/python/pygments/lexers/math.pyo
186 182 /etc/SocExplorer/python/pygments/lexers/other.py
187 183 /etc/SocExplorer/python/pygments/lexers/other.pyc
188 184 /etc/SocExplorer/python/pygments/lexers/other.pyo
189 185 /etc/SocExplorer/python/pygments/lexers/parsers.py
190 186 /etc/SocExplorer/python/pygments/lexers/parsers.pyc
191 187 /etc/SocExplorer/python/pygments/lexers/parsers.pyo
192 188 /etc/SocExplorer/python/pygments/lexers/shell.py
193 189 /etc/SocExplorer/python/pygments/lexers/shell.pyc
194 190 /etc/SocExplorer/python/pygments/lexers/shell.pyo
195 191 /etc/SocExplorer/python/pygments/lexers/special.py
196 192 /etc/SocExplorer/python/pygments/lexers/special.pyc
197 193 /etc/SocExplorer/python/pygments/lexers/special.pyo
198 194 /etc/SocExplorer/python/pygments/lexers/sql.py
199 195 /etc/SocExplorer/python/pygments/lexers/sql.pyc
200 196 /etc/SocExplorer/python/pygments/lexers/sql.pyo
201 197 /etc/SocExplorer/python/pygments/lexers/templates.py
202 198 /etc/SocExplorer/python/pygments/lexers/templates.pyc
203 199 /etc/SocExplorer/python/pygments/lexers/templates.pyo
204 200 /etc/SocExplorer/python/pygments/lexers/text.py
205 201 /etc/SocExplorer/python/pygments/lexers/text.pyc
206 202 /etc/SocExplorer/python/pygments/lexers/text.pyo
207 203 /etc/SocExplorer/python/pygments/lexers/web.py
208 204 /etc/SocExplorer/python/pygments/lexers/web.pyc
209 205 /etc/SocExplorer/python/pygments/lexers/web.pyo
210 206 /etc/SocExplorer/python/pygments/plugin.py
211 207 /etc/SocExplorer/python/pygments/plugin.pyc
212 208 /etc/SocExplorer/python/pygments/plugin.pyo
213 209 /etc/SocExplorer/python/pygments/scanner.py
214 210 /etc/SocExplorer/python/pygments/scanner.pyc
215 211 /etc/SocExplorer/python/pygments/scanner.pyo
216 212 /etc/SocExplorer/python/pygments/style.py
217 213 /etc/SocExplorer/python/pygments/style.pyc
218 214 /etc/SocExplorer/python/pygments/style.pyo
219 215 /etc/SocExplorer/python/pygments/styles/__init__.py
220 216 /etc/SocExplorer/python/pygments/styles/__init__.pyc
221 217 /etc/SocExplorer/python/pygments/styles/__init__.pyo
222 218 /etc/SocExplorer/python/pygments/styles/autumn.py
223 219 /etc/SocExplorer/python/pygments/styles/autumn.pyc
224 220 /etc/SocExplorer/python/pygments/styles/autumn.pyo
225 221 /etc/SocExplorer/python/pygments/styles/borland.py
226 222 /etc/SocExplorer/python/pygments/styles/borland.pyc
227 223 /etc/SocExplorer/python/pygments/styles/borland.pyo
228 224 /etc/SocExplorer/python/pygments/styles/bw.py
229 225 /etc/SocExplorer/python/pygments/styles/bw.pyc
230 226 /etc/SocExplorer/python/pygments/styles/bw.pyo
231 227 /etc/SocExplorer/python/pygments/styles/colorful.py
232 228 /etc/SocExplorer/python/pygments/styles/colorful.pyc
233 229 /etc/SocExplorer/python/pygments/styles/colorful.pyo
234 230 /etc/SocExplorer/python/pygments/styles/default.py
235 231 /etc/SocExplorer/python/pygments/styles/default.pyc
236 232 /etc/SocExplorer/python/pygments/styles/default.pyo
237 233 /etc/SocExplorer/python/pygments/styles/emacs.py
238 234 /etc/SocExplorer/python/pygments/styles/emacs.pyc
239 235 /etc/SocExplorer/python/pygments/styles/emacs.pyo
240 236 /etc/SocExplorer/python/pygments/styles/friendly.py
241 237 /etc/SocExplorer/python/pygments/styles/friendly.pyc
242 238 /etc/SocExplorer/python/pygments/styles/friendly.pyo
243 239 /etc/SocExplorer/python/pygments/styles/fruity.py
244 240 /etc/SocExplorer/python/pygments/styles/fruity.pyc
245 241 /etc/SocExplorer/python/pygments/styles/fruity.pyo
246 242 /etc/SocExplorer/python/pygments/styles/manni.py
247 243 /etc/SocExplorer/python/pygments/styles/manni.pyc
248 244 /etc/SocExplorer/python/pygments/styles/manni.pyo
249 245 /etc/SocExplorer/python/pygments/styles/monokai.py
250 246 /etc/SocExplorer/python/pygments/styles/monokai.pyc
251 247 /etc/SocExplorer/python/pygments/styles/monokai.pyo
252 248 /etc/SocExplorer/python/pygments/styles/murphy.py
253 249 /etc/SocExplorer/python/pygments/styles/murphy.pyc
254 250 /etc/SocExplorer/python/pygments/styles/murphy.pyo
255 251 /etc/SocExplorer/python/pygments/styles/native.py
256 252 /etc/SocExplorer/python/pygments/styles/native.pyc
257 253 /etc/SocExplorer/python/pygments/styles/native.pyo
258 254 /etc/SocExplorer/python/pygments/styles/pastie.py
259 255 /etc/SocExplorer/python/pygments/styles/pastie.pyc
260 256 /etc/SocExplorer/python/pygments/styles/pastie.pyo
261 257 /etc/SocExplorer/python/pygments/styles/perldoc.py
262 258 /etc/SocExplorer/python/pygments/styles/perldoc.pyc
263 259 /etc/SocExplorer/python/pygments/styles/perldoc.pyo
264 260 /etc/SocExplorer/python/pygments/styles/rrt.py
265 261 /etc/SocExplorer/python/pygments/styles/rrt.pyc
266 262 /etc/SocExplorer/python/pygments/styles/rrt.pyo
267 263 /etc/SocExplorer/python/pygments/styles/tango.py
268 264 /etc/SocExplorer/python/pygments/styles/tango.pyc
269 265 /etc/SocExplorer/python/pygments/styles/tango.pyo
270 266 /etc/SocExplorer/python/pygments/styles/trac.py
271 267 /etc/SocExplorer/python/pygments/styles/trac.pyc
272 268 /etc/SocExplorer/python/pygments/styles/trac.pyo
273 269 /etc/SocExplorer/python/pygments/styles/vim.py
274 270 /etc/SocExplorer/python/pygments/styles/vim.pyc
275 271 /etc/SocExplorer/python/pygments/styles/vim.pyo
276 272 /etc/SocExplorer/python/pygments/styles/vs.py
277 273 /etc/SocExplorer/python/pygments/styles/vs.pyc
278 274 /etc/SocExplorer/python/pygments/styles/vs.pyo
279 275 /etc/SocExplorer/python/pygments/token.py
280 276 /etc/SocExplorer/python/pygments/token.pyc
281 277 /etc/SocExplorer/python/pygments/token.pyo
282 278 /etc/SocExplorer/python/pygments/unistring.py
283 279 /etc/SocExplorer/python/pygments/unistring.pyc
284 280 /etc/SocExplorer/python/pygments/unistring.pyo
285 281 /etc/SocExplorer/python/pygments/util.py
286 282 /etc/SocExplorer/python/pygments/util.pyc
287 283 /etc/SocExplorer/python/pygments/util.pyo
288 284 /etc/SocExplorer/plugin.conf.d/plugins.conf
289 285 %{_bindir}/SocExplorer_TCP_Terminal
290 286 %{_bindir}/socexplorer
291 287 %{_datadir}/SocExplorer/icon.png
292 288 %{_datadir}/SocExplorer/Grlib.xml
293 289 %{_datadir}/SocExplorer/LPP.xml
294 290 %{_datadir}/SocExplorer/IAP.xml
295 291 %{_datadir}/applications/socexplorer.desktop
296 292 %{_datadir}/appdata/socexplorer.appdata.xml
297 293 %{_qt5_libdir}/libsocexplorercommon.so*
298 294 %{_qt5_libdir}/libsocexplorerengine.so*
299 295
300 296
301 297 %files devel
302 298 %{_qt5_headerdir}/SocExplorer/
303 299 %{_qt5_archdatadir}/mkspecs/features/socexplorerplugin.prf
304 300 /usr/share/qtcreator/templates/wizards/SocExplorerPlugin/plugin.cpp
305 301 /usr/share/qtcreator/templates/wizards/SocExplorerPlugin/plugin.h
306 302 /usr/share/qtcreator/templates/wizards/SocExplorerPlugin/project.pro
307 303 /usr/share/qtcreator/templates/wizards/SocExplorerPlugin/wizard.xml
308 304
309 305
310 306 %changelog
307 * Thu Mar 26 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.5
308 -Uses r77 as source.
309
311 310 * Mon Mar 9 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4
312 311 - Uses r75 as source.
313 312
314 313 * Tue Feb 10 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4
315 314 - Uses r74 as source.
316 315
317 316 * Fri Feb 6 2015 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4
318 317 - Reseted patches uses r73 as source.
319 318
320 319 * Tue Dec 30 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4
321 320 - Reseted patches uses r72 as source.
322 321
323 322 * Sun Jun 29 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4
324 323 - Reseted patches uses r69 as source.
325 324
326 325 * Sat Jun 28 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4
327 326 - Applied patch r65 to install also plugin as RPM
328 327 - Applied patch r66 to install xml soc descriptions in /usr/share/SocExplorer
329 328 - Applied patch r67 to add appdata for gnome-software visibility
330 329
331 330 * Tue Jun 24 2014 Alexis Jeandet <alexis.jeandet@member.fsf.org> - 0.4
332 331 - Initial Fedora packaging
General Comments 0
You need to be logged in to leave comments. Login now