* Updated astyle lib to version 3.6.13 * Fixed undefined variable in shellscript definition - Changes from version 4.17: * Updated astyle lib to version 3.6.12 * Updated some language definitions * Added fea.lang (gl#saalen/highlight#258) * Fixed creation of unique output filenames in batch mode * Improved LSP compatibility * CLI: improved string length validation in service mode * GUI: fixed file resource handling - Changes from version 4.16: * Updated astyle lib to version 3.6.9 * Fix shell script parenthesis recognition (gl#saalen/highlight#254) * Updated AWK, C, Go and Python language definitions * Added README_FR.adoc * Added shell script and git config file extensions * GUI: adjusted cmake build script to improve Qt build target handling * GUI: updated Qt UI translations - Changes from version 4.15: * Updated astyle lib to version 3.6.6 * Fixed C++ raw string recognition (gl#saalen/highlight#252) OBS-URL: https://build.opensuse.org/package/show/devel:tools/highlight?expand=0&rev=142
168 lines
4.8 KiB
RPMSpec
168 lines
4.8 KiB
RPMSpec
#
|
|
# spec file for package highlight
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%bcond_without gui
|
|
Name: highlight
|
|
Version: 4.18
|
|
Release: 0
|
|
Summary: Universal Source Code to Formatted Text Converter
|
|
License: GPL-3.0-or-later
|
|
Group: Development/Tools/Other
|
|
URL: http://www.andre-simon.de/
|
|
Source0: https://gitlab.com/saalen/highlight/-/archive/v%{version}/%{name}-v%{version}.tar.bz2
|
|
BuildRequires: dos2unix
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libboost_headers-devel
|
|
BuildRequires: lua-devel
|
|
Requires: %{name}-common = %{version}
|
|
|
|
%description
|
|
A utility that converts sourcecode to HTML, XHTML, RTF, LaTeX, TeX, XML or ANSI
|
|
escape sequences with syntax highlighting.
|
|
It supports several programming and markup languages.
|
|
Language descriptions are configurable and support regular expressions.
|
|
The utility offers indentation and reformatting capabilities.
|
|
It is easily possible to create new language definitions and colour themes.
|
|
|
|
%package common
|
|
Summary: Common architecture-independent files for %{name}
|
|
Group: Development/Tools/Other
|
|
BuildArch: noarch
|
|
|
|
%description common
|
|
This package provides some architecture-independent files for %{name} such as
|
|
configuration and themes.
|
|
|
|
%if %{with gui}
|
|
%package gui
|
|
Summary: Graphical Interface for %{name}
|
|
Group: Development/Tools/Other
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: libqt5-qtbase-devel
|
|
BuildRequires: update-desktop-files
|
|
Requires: %{name}-common = %{version}
|
|
|
|
%description gui
|
|
This package provides graphical interface for %{name}.
|
|
|
|
%lang_package -n highlight-gui
|
|
|
|
%endif
|
|
|
|
%package bash-completion
|
|
Summary: Bash completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name}
|
|
Requires: bash-completion
|
|
Supplements: (bash-completion and %{name})
|
|
BuildArch: noarch
|
|
|
|
%description bash-completion
|
|
This package provides Bash command-line completion support for %{name}.
|
|
|
|
%package fish-completion
|
|
Summary: Fish completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name}
|
|
Requires: fish
|
|
Supplements: (fish and %{name})
|
|
BuildArch: noarch
|
|
|
|
%description fish-completion
|
|
This package provides Fish command-line completion support for %{name}.
|
|
|
|
%package zsh-completion
|
|
Summary: Zsh completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name}
|
|
Requires: zsh
|
|
Supplements: (zsh and %{name})
|
|
BuildArch: noarch
|
|
|
|
%description zsh-completion
|
|
This package provides Zsh command-line completion support for %{name}.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{name}-v%{version}
|
|
dos2unix extras/pandoc/* extras/themes-resources/base16/*
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
%make_build cli
|
|
|
|
%if %{with gui}
|
|
# Don't call gui and cli targets in the same make invocation
|
|
# as it leads to concurrency issues.
|
|
%make_build gui \
|
|
doc_dir="%{_docdir}/" \
|
|
QMAKE="qmake-qt5 QMAKE_CXXFLAGS=\"%{optflags}\""
|
|
%endif
|
|
|
|
%install
|
|
%makeinstall doc_dir="%{_docdir}/" \
|
|
%if %{with gui}
|
|
install-gui
|
|
%suse_update_desktop_file -G "Text converter" -r %{name} Utility TextEditor
|
|
%find_lang %{name} --with-qt
|
|
%endif
|
|
|
|
rm %{buildroot}%{_docdir}/%{name}/INSTALL
|
|
|
|
%files
|
|
%{_bindir}/%{name}
|
|
%{_docdir}/%{name}
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
|
|
|
%files common
|
|
%dir %{_datadir}/%{name}
|
|
%{_datadir}/%{name}/langDefs
|
|
%{_datadir}/%{name}/plugins
|
|
%{_datadir}/%{name}/themes
|
|
%dir %{_sysconfdir}/%{name}
|
|
%config %{_sysconfdir}/%{name}/filetypes.conf
|
|
%config %{_sysconfdir}/%{name}/lsp.conf
|
|
%{_mandir}/man5/filetypes.conf.5%{?ext_man}
|
|
|
|
%if %{with gui}
|
|
%files gui
|
|
%{_bindir}/%{name}-gui
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%dir %{_datadir}/%{name}/gui_files
|
|
%dir %{_datadir}/%{name}/gui_files/ext
|
|
%{_datadir}/%{name}/gui_files/ext/fileopenfilter.conf
|
|
%{_datadir}/icons/hicolor/256x256/apps/%{name}.png
|
|
|
|
%files gui-lang -f %{name}.lang
|
|
%dir %{_datadir}/%{name}/gui_files/l10n
|
|
%endif
|
|
|
|
%files bash-completion
|
|
%{_datadir}/bash-completion/completions/%{name}
|
|
|
|
%files fish-completion
|
|
%dir %{_datadir}/fish
|
|
%dir %{_datadir}/fish/vendor_completions.d
|
|
%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
|
|
|
%files zsh-completion
|
|
%dir %{_datadir}/zsh
|
|
%dir %{_datadir}/zsh/site-functions
|
|
%{_datadir}/zsh/site-functions/_%{name}
|
|
|
|
%changelog
|