Matej Cepl
d10e68f11a
gh#tree-sitter/tree-sitter#2042) to use more recent version of webbrowser-rs, which has been fixed against CVE-2022-45299 (bsc#1207196). OBS-URL: https://build.opensuse.org/package/show/editors/tree-sitter?expand=0&rev=11
106 lines
3.4 KiB
RPMSpec
106 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package tree-sitter
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define somajor 0
|
|
%define libdirname tree_sitter
|
|
Name: tree-sitter
|
|
Version: 0.20.7
|
|
Release: 0
|
|
Summary: An incremental parsing system for programming tools
|
|
License: MIT
|
|
URL: https://tree-sitter.github.io/
|
|
Source0: https://github.com/tree-sitter/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.xz
|
|
Source1: vendor.tar.xz
|
|
Source2: cargo_config
|
|
# PATCH-FIX-UPSTREAM CVE-2022-45299-update-webbrowser.patch bsc#1207196 mcepl@suse.com
|
|
# Use more recent version of webbrowser-rs
|
|
Patch0: CVE-2022-45299-update-webbrowser.patch
|
|
BuildRequires: cargo-packaging
|
|
BuildRequires: rust > 1.40
|
|
Requires: lib%{name}%{somajor} = %{version}
|
|
|
|
%description
|
|
Tree-sitter is a parser generator tool and an incremental parsing
|
|
library. It can build a concrete syntax tree for a source file
|
|
and efficiently update the syntax tree as the source file is
|
|
edited. Tree-sitter aims to be:
|
|
|
|
* General enough to parse any programming language
|
|
* Fast enough to parse on every keystroke in a text editor
|
|
* Robust enough to provide useful results even in the presence
|
|
of syntax errors
|
|
* Dependency-free so that the runtime library (which is written
|
|
in pure C) can be embedded in any application
|
|
|
|
%package -n lib%{name}%{somajor}
|
|
Summary: Asychronous I/O support library
|
|
|
|
%description -n lib%{name}%{somajor}
|
|
Tree-sitter is a parser generator tool and an incremental parsing
|
|
library. It can build a concrete syntax tree for a source file
|
|
and efficiently update the syntax tree as the source file is
|
|
edited. This is the package with the dynamically linked C library.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: lib%{name}%{somajor} = %{version}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
%prep
|
|
%autosetup -p1 -a1
|
|
|
|
mkdir -p .cargo
|
|
cp %{SOURCE2} .cargo/config
|
|
|
|
%build
|
|
%{cargo_build}
|
|
export CFLAGS='%{optflags}'
|
|
export PREFIX='%{_prefix}' LIBDIR='%{_libdir}'
|
|
%make_build
|
|
|
|
%install
|
|
export PREFIX='%{_prefix}' LIBDIR='%{_libdir}' INCLUDEDIR='%{_includedir}'
|
|
%make_install
|
|
install -p -m 0755 -D %{_builddir}/%{name}-%{version}/target/release/tree-sitter \
|
|
%{buildroot}%{_bindir}/tree-sitter
|
|
|
|
find %{buildroot} -type f \( -name "*.la" -o -name "*.a" \) -delete -print
|
|
|
|
%post -n lib%{name}%{somajor} -p /sbin/ldconfig
|
|
%postun -n lib%{name}%{somajor} -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc README.md CONTRIBUTING.md
|
|
%{_bindir}/tree-sitter
|
|
|
|
%files -n lib%{name}%{somajor}
|
|
%license LICENSE
|
|
%{_libdir}/*.so.*
|
|
|
|
%files devel
|
|
%doc docs/
|
|
%dir %{_includedir}/%{libdirname}/
|
|
%{_includedir}/%{libdirname}/*
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
%changelog
|