Compare commits
2 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 58ac0d5378 | |||
| 12fa6dea85 |
3
ctre-3.10.0.tar.gz
Normal file
3
ctre-3.10.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b17e6c9a6cc0cea65132f62a6c699cefed952721063569d6339eb3ca471045e6
|
||||
size 429297
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:55778712968d4f3ad00e9d20fc4d2149d14d96b4ff3dab086613797cd2ccd2b2
|
||||
size 428305
|
||||
36
ctre.changes
36
ctre.changes
@@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 15 02:56:47 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.10.0:
|
||||
* Fix for warning in wrapper.hpp
|
||||
(gh#hanickadot/compile-time-regular-expressions#307).
|
||||
* Added operator-> in search_all iterator
|
||||
(gh#hanickadot/compile-time-regular-expressions#311).
|
||||
* Allow (|) in grammar
|
||||
(gh#hanickadot/compile-time-regular-expressions#319).
|
||||
* range-for in unicode library is using reference instead of
|
||||
copy (gh#hanickadot/compile-time-regular-expressions#316).
|
||||
* Improve cmake for modules from PR
|
||||
(gh#hanickadot/compile-time-regular-expressions#322) and PR
|
||||
(gh#hanickadot/compile-time-regular-expressions#323).
|
||||
* Fixes problems with modules in MSVC
|
||||
(gh#hanickadot/compile-time-regular-expressions#324).
|
||||
* Make work a|, |b, and | regimes
|
||||
(gh#hanickadot/compile-time-regular-expressions#326).
|
||||
* Don't ignore inserted \0 inside fixed string
|
||||
(gh#hanickadot/compile-time-regular-expressions#328).
|
||||
* Improve documentation from
|
||||
(gh#hanickadot/compile-time-regular-expressions#333).
|
||||
* Improve look behind which didn't mirrored sequences inside
|
||||
optional: (?<=ba|cd)s was evaluated as (?<=ab|dc)s
|
||||
(gh#hanickadot/compile-time-regular-expressions#339).
|
||||
* Fixed warning about undefined macros around feature testing
|
||||
(gh#hanickadot/compile-time-regular-expressions#196).
|
||||
* Allow [^] to be equivalent to "any character"
|
||||
(gh#hanickadot/compile-time-regular-expressions#341).
|
||||
* Fixes warnings in latest clang
|
||||
(gh#hanickadot/compile-time-regular-expressions#344).
|
||||
- Packages are now arch dependent (/usr/lib*/cmake and
|
||||
/usr/lib*/pkgconfig).
|
||||
- Be more specific with globs in file lists.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 18 17:11:01 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
|
||||
18
ctre.spec
18
ctre.spec
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ctre
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# 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
|
||||
@@ -20,7 +20,7 @@
|
||||
%define gcc_ver 11
|
||||
%endif
|
||||
Name: ctre
|
||||
Version: 3.9.0
|
||||
Version: 3.10.0
|
||||
Release: 0
|
||||
Summary: Compile time regular expressions library
|
||||
License: Apache-2.0
|
||||
@@ -31,7 +31,6 @@ Patch1: unsigned-char.patch
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gcc%{?gcc_ver}-c++
|
||||
BuildRequires: pkgconfig
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
A compile-time regular expressions with support for
|
||||
@@ -39,7 +38,6 @@ matching/searching/capturing during compile-time or runtime.
|
||||
|
||||
%package devel
|
||||
Summary: Header and cmake files for ctre, a regular expressions library
|
||||
BuildArch: noarch
|
||||
|
||||
%description devel
|
||||
This package provides the header files and other development files needed for
|
||||
@@ -59,13 +57,17 @@ developing applications against ctre.
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
CXX=g++%{?gcc_ver:-%{gcc_ver}} %make_build
|
||||
export CXX=g++%{?gcc_ver:-%{gcc_ver}}
|
||||
%make_build
|
||||
|
||||
%files devel
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_includedir}/*
|
||||
%{_datadir}/cmake/ctre/
|
||||
%{_datadir}/pkgconfig/*.pc
|
||||
%{_includedir}/ctll/
|
||||
%{_includedir}/ctre/
|
||||
%{_includedir}/unicode-db/
|
||||
%{_includedir}/*.hpp
|
||||
%{_libdir}/cmake/ctre/
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user