- Update to 1.1.3:
* Direct return function wrappers for partition, rpartition, split, rsplit and splitlines * Fix for deadlock in split_nt function * Declaring global strings for performance improvement * CMake build system * Allow default values in make file to be overridden * CI tests * Updates to license file OBS-URL: https://build.opensuse.org/package/show/graphics/pystring?expand=0&rev=3
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 21 11:01:09 UTC 2024 - Frantisek Simorda <frantisek.simorda@suse.com>
|
||||
|
||||
- Update to 1.1.3:
|
||||
* Direct return function wrappers for partition, rpartition, split, rsplit and splitlines
|
||||
* Fix for deadlock in split_nt function
|
||||
* Declaring global strings for performance improvement
|
||||
* CMake build system
|
||||
* Allow default values in make file to be overridden
|
||||
* CI tests
|
||||
* Updates to license file
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 5 13:29:11 UTC 2021 - Hans-Peter Jansen <hpj@urpla.net>
|
||||
|
||||
|
||||
+9
-8
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package pystring
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2021 LISA GmbH, Bingen, Germany
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@@ -16,9 +16,10 @@
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define so_ver 0_0
|
||||
Name: pystring
|
||||
Version: 1.1.3
|
||||
Version: 1.1.4
|
||||
Release: 0
|
||||
Summary: Collection of C++ functions emulating Python's string class methods
|
||||
License: BSD-2-Clause
|
||||
@@ -34,7 +35,7 @@ BuildRequires: gcc-c++
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: lib%{name}%{so_ver} = %{version}-%{release}
|
||||
|
||||
|
||||
%description devel
|
||||
%{summary}.
|
||||
|
||||
@@ -48,10 +49,10 @@ C++, it does not require or make use of a Python interpreter. It provides
|
||||
convenience and familiarity for common string operations not included in the
|
||||
standard C++ library. It's also useful in environments where both C++ and
|
||||
Python are used.
|
||||
|
||||
|
||||
Overlapping functionality (such as index and slice/substr) of std::string is
|
||||
included to match Python interfaces.
|
||||
|
||||
|
||||
Originally developed at Sony Pictures Imageworks.
|
||||
http://opensource.imageworks.com/
|
||||
|
||||
@@ -69,17 +70,17 @@ cp %{SOURCE100} .
|
||||
%check
|
||||
pushd build
|
||||
./test
|
||||
|
||||
|
||||
%post -n lib%{name}%{so_ver} -p /sbin/ldconfig
|
||||
%postun -n lib%{name}%{so_ver} -p /sbin/ldconfig
|
||||
|
||||
%files -n lib%{name}%{so_ver}
|
||||
%license LICENSE
|
||||
%doc README
|
||||
%doc README.md
|
||||
%{_libdir}/lib%{name}.so.0.0
|
||||
|
||||
%files devel
|
||||
%{_includedir}/pystring/
|
||||
%{_libdir}/lib%{name}.so
|
||||
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:49da0fe2a049340d3c45cce530df63a2278af936003642330287b68cefd788fb
|
||||
size 19184
|
||||
Reference in New Issue
Block a user