Accepting request 559525 from home:avindra
- Version 6.7.0 - add ONIG_SYNTAX_ONIGURUMA (default syntax) - restructure StackType - implement subexp calls (?R), (?&name), (?-n), (?+n) for Perl syntax - use string pool of gperf for Unicode Property lookup function - fix an empty greedy regex and a word boundary (.*\b) fails - remove a stack type STK_POS - add a declaration of onig_end() - fix compilation failure in out-of-source build - [new] hexadecimal codepoint \uHHHH - Version 6.6.1 - fix definition of \X to (?>\O(?:\Y\O)*) - Version 6.6.0 - rename Absent clear to Range clear - [new] Extended Grapheme Cluster \X and boundary \y, \Y - fix: invalid index(ctype) value assigned to Unicode Block properties - --enable-crnl-as-line-terminator to be deprecated - [new] ASCII only mode options (?WDSP) - [new] ONIG_OPTION_XXXX_IS_ASCII options - disable OP_CCLASS_NODE - [spec] Absent clear restore previous range value at backtrack - optimize for simple one char repetition in Absent expression - fix: invalid impl. for reluctant repetition in Absent expression - remove compile switch USE_NAMED_GROUP - Visual Studio 2005 compilation fixed - cleanup with spec-cleaner OBS-URL: https://build.opensuse.org/request/show/559525 OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby/oniguruma?expand=0&rev=13
This commit is contained in:
parent
3b1f3f995e
commit
03bb1716fa
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fc78898665dea1e2fbeda0609074ff76f5ef2001907f6184468c752eb52a3ed4
|
|
||||||
size 911379
|
|
3
onig-6.7.0.tar.gz
Normal file
3
onig-6.7.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:32d73c37d3c350b16287d86288f4bc98b95467fc37091cbcade60d83b01da073
|
||||||
|
size 952950
|
@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Dec 23 01:39:12 UTC 2017 - avindra@opensuse.org
|
||||||
|
|
||||||
|
- Version 6.7.0
|
||||||
|
- add ONIG_SYNTAX_ONIGURUMA (default syntax)
|
||||||
|
- restructure StackType
|
||||||
|
- implement subexp calls (?R), (?&name), (?-n), (?+n) for Perl
|
||||||
|
syntax
|
||||||
|
- use string pool of gperf for Unicode Property lookup function
|
||||||
|
- fix an empty greedy regex and a word boundary (.*\b) fails
|
||||||
|
- remove a stack type STK_POS
|
||||||
|
- add a declaration of onig_end()
|
||||||
|
- fix compilation failure in out-of-source build
|
||||||
|
- [new] hexadecimal codepoint \uHHHH
|
||||||
|
- Version 6.6.1
|
||||||
|
- fix definition of \X to (?>\O(?:\Y\O)*)
|
||||||
|
- Version 6.6.0
|
||||||
|
- rename Absent clear to Range clear
|
||||||
|
- [new] Extended Grapheme Cluster \X and boundary \y, \Y
|
||||||
|
- fix: invalid index(ctype) value assigned to Unicode Block
|
||||||
|
properties
|
||||||
|
- --enable-crnl-as-line-terminator to be deprecated
|
||||||
|
- [new] ASCII only mode options (?WDSP)
|
||||||
|
- [new] ONIG_OPTION_XXXX_IS_ASCII options
|
||||||
|
- disable OP_CCLASS_NODE
|
||||||
|
- [spec] Absent clear restore previous range value at backtrack
|
||||||
|
- optimize for simple one char repetition in Absent expression
|
||||||
|
- fix: invalid impl. for reluctant repetition in Absent expression
|
||||||
|
- remove compile switch USE_NAMED_GROUP
|
||||||
|
- Visual Studio 2005 compilation fixed
|
||||||
|
- cleanup with spec-cleaner
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 7 10:06:48 UTC 2017 - mrueckert@suse.de
|
Mon Aug 7 10:06:48 UTC 2017 - mrueckert@suse.de
|
||||||
|
|
||||||
|
@ -16,17 +16,16 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define lib_name libonig4
|
||||||
Name: oniguruma
|
Name: oniguruma
|
||||||
Version: 6.5.0
|
Version: 6.7.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Regex Library Supporting Different Character Encodings
|
Summary: Regex Library Supporting Different Character Encodings
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
Url: https://github.com/kkos/oniguruma
|
Url: https://github.com/kkos/oniguruma
|
||||||
Source: https://github.com/kkos/oniguruma/releases/download/v%{version}/onig-%{version}.tar.gz
|
Source: https://github.com/kkos/oniguruma/releases/download/v%{version}/onig-%{version}.tar.gz
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkgconfig
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
%define lib_name libonig4
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Oniguruma is a regular expressions library. The characteristics of
|
Oniguruma is a regular expressions library. The characteristics of
|
||||||
@ -87,21 +86,18 @@ export CFLAGS="%{optflags} -g"
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
%make_install
|
||||||
find %{buildroot} -type f -name "*.a" -delete -print
|
find %{buildroot} -type f -name "*.a" -delete -print
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n %{lib_name} -p /sbin/ldconfig
|
%post -n %{lib_name} -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %{lib_name} -p /sbin/ldconfig
|
%postun -n %{lib_name} -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n %{lib_name}
|
%files -n %{lib_name}
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_libdir}/libonig.so.*
|
%{_libdir}/libonig.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%doc AUTHORS COPYING HISTORY index.html index_ja.html README
|
||||||
%doc AUTHORS COPYING HISTORY index.html index_ja.html README README.ja
|
|
||||||
%doc doc/* examples/
|
%doc doc/* examples/
|
||||||
%{_bindir}/onig-config
|
%{_bindir}/onig-config
|
||||||
%{_includedir}/oniguruma.h
|
%{_includedir}/oniguruma.h
|
||||||
|
Loading…
Reference in New Issue
Block a user