Files
python-exiv2/python-exiv2.spec
Matej Cepl 981d2fcbcf - Update to 0.14.1:
- Added enums for XmpStruct and XmpArrayType
  - Added method for copy-free access to XmpTextValue raw data.
  - Fix occasional segfault with Image.io() of in-memory image
    data.
  - Add data() method to access Exiv2::StringValueBase raw bytes.
  - Enable video support in binary wheels.
  - Automatically cast Exiv2::Value return values to correct
    type.
  - Exiv2::byte* return values are converted to a simple buffer
    object.
  - Deprecated some superseded features. Use 'python -Wd' when
    testing.
  - Exiv2's Date & Time structs can be used from Python.
  - Removed Value.downCast methods deprecated in v0.7.0.
  - Reduced probability of segfaults by keeping references to
    other objects.
  - Fix iterator bug introduced in v0.10.0. (Issue #7.)
- Remove now superfluous py3exiv2-link-boost.patch

- Update to 0.12.3:
  - upstream doesn't release proper changelog

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-exiv2?expand=0&rev=23
2023-10-11 11:42:32 +00:00

65 lines
2.0 KiB
RPMSpec
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#
# spec file for package python-exiv2
#
# Copyright (c) 2023 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/
#
Name: python-exiv2
Version: 0.14.1
Release: 0
Summary: Python3 bindings for the exiv2 library
License: GPL-3.0-only
Group: Development/Languages/Python
URL: https://launchpad.net/py3exiv2
#
Source: https://github.com/jim-easterbrook/python-exiv2/archive/refs/tags/%{version}.tar.gz
#
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: libboost_python3-devel
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(exiv2)
%python_subpackages
%description
python3-exiv2 is a Python 3 binding to exiv2, the C++ library for manipulation
of EXIF, IPTC and XMP image metadata. It is a python 3 module that allows your
scripts to read and write metadata (EXIF, IPTC, XMP, thumbnails) embedded in
image files (JPEG, TIFF, ...).
It is designed as a high-level interface to the functionalities offered by
libexiv2. Using pythons built-in data types and standard modules, it provides
easy manipulation of image metadata.
%prep
%autosetup -p1
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%files %{python_files}
%{python_sitearch}/libexiv2python.*.so
%{python_sitearch}/pyexiv2
%{python_sitearch}/py3exiv2-%{version}*-info
%changelog