Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)

# Forbid in-source builds to avoid .so files
# polluting the source tree and confusing LUA_CPATH.
Expand Down
36 changes: 36 additions & 0 deletions rpm/cv.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Name: cv
Version: 1.0.0
Release: 1%{?dist}
Summary: Fast OpenAPI 3.1 Compatible Schema Validator for Tarantool
Group: Applications/Databases
License: BSD
URL: https://github.com/tarantool/c-validator
Source0: %{name}-%{version}.tar.gz
BuildRequires: cmake >= 3.5
BuildRequires: gcc >= 13.2.1
BuildRequires: tarantool-devel >= 3.7.0
Requires: tarantool >= 3.7.0

%description
Fast OpenAPI 3.1 Compatible Schema Validator for Tarantool.

%prep
%setup -q -n %{name}-%{version}

%build
%cmake
%cmake_build

%install
%cmake_install

%files
%{_libdir}/tarantool/*/
%{_datadir}/tarantool/*/
%doc README.md
%{!?_licensedir:%global license %doc}
%license LICENSE AUTHORS
Comment thread
locker marked this conversation as resolved.

%changelog
* Mon May 4 2026 Mergen Imeev <imeevma@gmail.com> 1.0.0-1
- Initial version of the RPM spec
47 changes: 0 additions & 47 deletions rpm/tarantool-ckit.spec

This file was deleted.

Loading