- update to 1.21: core: python 3.12 support - package vim plugin - %check section added - cleanup OBS-URL: https://build.opensuse.org/request/show/1254305 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/coccigrep?expand=0&rev=18
95 lines
2.7 KiB
RPMSpec
95 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package coccigrep
|
|
#
|
|
# Copyright (c) 2025 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 vimplugin_dir %{_datadir}/vim/site/plugin
|
|
|
|
Name: coccigrep
|
|
Version: 1.21
|
|
Release: 0
|
|
Summary: Semantic grep tool for C, based on coccinelle
|
|
License: GPL-3.0-only
|
|
Group: Development/Libraries/C and C++
|
|
URL: https://github.com/regit/coccigrep
|
|
Source: https://github.com/regit/coccigrep/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: coccinelle
|
|
BuildRequires: fdupes
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: vim
|
|
BuildRequires: xz
|
|
Requires: coccinelle
|
|
Requires: python3
|
|
# Mimicing coccinelle
|
|
ExclusiveArch: aarch64 ppc64le powerpc64le s390x x86_64 riscv64
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
coccigrep is a semantic grep for the C language based on coccinelle. It can be
|
|
used to find where a given structure is used in code files. coccigrep depends on
|
|
the spatch program which comes with coccinelle.
|
|
|
|
%package vim-plugin
|
|
Summary: Vim plugin for coccigrep
|
|
Requires: coccigrep = %{version}
|
|
|
|
%description vim-plugin
|
|
A vim plugin to invoke coccigrep from vim.
|
|
|
|
%prep
|
|
%autosetup
|
|
chmod 644 README.rst
|
|
|
|
%build
|
|
%python3_build
|
|
|
|
%install
|
|
%python3_install
|
|
|
|
install -d %{buildroot}/%{_mandir}/man1/
|
|
install -m 644 coccigrep.1 %{buildroot}/%{_mandir}/man1/
|
|
|
|
install -d %{buildroot}/%{vimplugin_dir}
|
|
install -m 644 editors/cocci-grep.vim %{buildroot}/%{vimplugin_dir}
|
|
|
|
%fdupes %{buildroot}%{python3_sitelib}
|
|
|
|
%check
|
|
cat >test.c <<EOF
|
|
struct X { int x; };
|
|
struct Y { int y, z; };
|
|
int fun1(struct X *x) { return x->x; }
|
|
int fun2(struct Y *y) { return y->y; }
|
|
EOF
|
|
export PYTHONPATH="%{buildroot}%{python3_sitelib}"
|
|
export PATH="%{buildroot}%{_bindir}:$PATH"
|
|
coccigrep -t 'struct X' test.c | grep -q fun1
|
|
coccigrep -t 'struct Y' -a y test.c | grep -q fun2
|
|
test $(coccigrep -t 'struct Y' -a z test.c | wc -c) -eq 0
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.rst ChangeLog
|
|
%{python3_sitelib}/*
|
|
%{_bindir}/coccigrep
|
|
%{_mandir}/man1/coccigrep.1%{?ext_man}
|
|
|
|
%files vim-plugin
|
|
%{vimplugin_dir}/cocci-grep.vim
|
|
|
|
%changelog
|