Skip to content

Commit e325895

Browse files
committed
packaging updates after helpviewer removal (followup 55cdc89)
1 parent a7cef87 commit e325895

File tree

8 files changed

+3
-31
lines changed

8 files changed

+3
-31
lines changed

debian/libqgis-dev.install.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ usr/lib/libqgis_app.so
33
usr/lib/libqgis_core.so
44
usr/lib/libqgis_gui.so
55
usr/lib/libqgis_analysis.so
6-
#server#usr/lib/libqgis_server.so
6+
usr/lib/libqgis_native.so
7+
usr/lib/libqgis_server.so
78
usr/lib/libqgisgrass{GRASSVER}.so
89
usr/lib/libqgispython.so
910
usr/share/qgis/FindQGIS.cmake

debian/qgis-common.install

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ usr/share/qgis/doc/images
1212
usr/share/qgis/doc/index.html
1313
usr/share/qgis/doc/news
1414
usr/share/qgis/doc/news.html
15+
usr/share/qgis/doc/nohelp.html
1516
usr/share/qgis/doc/style.css
1617
usr/share/qgis/i18n/*
1718
usr/share/qgis/images/*

debian/qgis.install

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ usr/lib/qgis/plugins/libspatialqueryplugin.so
66
usr/lib/qgis/plugins/libofflineeditingplugin.so
77
usr/lib/qgis/plugins/libtopolplugin.so
88
usr/lib/qgis/plugins/libgeometrycheckerplugin.so
9-
usr/lib/qgis/qgis_help
109
usr/share/pixmaps/
1110
usr/share/applications/
1211
usr/share/mime/packages/

debian/qgis.lintian-overrides

Lines changed: 0 additions & 4 deletions
This file was deleted.

ms-windows/osgeo4w/package.cmd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,6 @@ tar -C %OSGEO4W_ROOT% -cjf %ARCH%/release/qgis/%PACKAGENAME%/%PACKAGENAME%-%VERS
384384
"apps/%PACKAGENAME%/plugins/spatialqueryplugin.dll" ^
385385
"apps/%PACKAGENAME%/plugins/topolplugin.dll" ^
386386
"apps/%PACKAGENAME%/plugins/geometrycheckerplugin.dll" ^
387-
"apps/%PACKAGENAME%/qgis_help.exe" ^
388387
"apps/%PACKAGENAME%/qtplugins/sqldrivers/qsqlspatialite.dll" ^
389388
"apps/%PACKAGENAME%/qtplugins/designer/" ^
390389
"apps/%PACKAGENAME%/python/" ^

python/core/qgsapplication.sip

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -223,12 +223,6 @@ Returns the path to the licence file.
223223
:rtype: str
224224
%End
225225

226-
static QString helpAppPath();
227-
%Docstring
228-
Returns the path to the help application.
229-
:rtype: str
230-
%End
231-
232226
static QString i18nPath();
233227
%Docstring
234228
Returns the path to the translation directory.

src/core/qgsapplication.cpp

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -614,21 +614,6 @@ QString QgsApplication::licenceFilePath()
614614
return ABISYM( mPkgDataPath ) + QStringLiteral( "/doc/LICENSE" );
615615
}
616616

617-
QString QgsApplication::helpAppPath()
618-
{
619-
QString helpAppPath;
620-
#ifdef Q_OS_MACX
621-
helpAppPath = applicationDirPath() + "/bin/qgis_help.app/Contents/MacOS";
622-
#else
623-
helpAppPath = libexecPath();
624-
#endif
625-
helpAppPath += QLatin1String( "/qgis_help" );
626-
#ifdef Q_OS_WIN
627-
helpAppPath += ".exe";
628-
#endif
629-
return helpAppPath;
630-
}
631-
632617
QString QgsApplication::i18nPath()
633618
{
634619
if ( ABISYM( mRunningFromBuildDir ) )

src/core/qgsapplication.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,6 @@ class CORE_EXPORT QgsApplication : public QApplication
234234
*/
235235
static QString licenceFilePath();
236236

237-
//! Returns the path to the help application.
238-
static QString helpAppPath();
239-
240237
//! Returns the path to the translation directory.
241238
static QString i18nPath();
242239

0 commit comments

Comments
 (0)