forked from pool/python-pymediainfo
Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 581237b67a | |||
| e7f39d8cbc | |||
| 1f14009398 | |||
| c4898cf6b7 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:186a0b41a94524f0984d085ca6b945c79a254465b7097f2560dc0c04e8d1d8a5
|
|
||||||
size 446466
|
|
||||||
3
pymediainfo-7.0.1.tar.gz
Normal file
3
pymediainfo-7.0.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0d5df59ecc615e24c56f303b8f651579c6accab7265715e5d429186d7ba21514
|
||||||
|
size 441563
|
||||||
@@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 13 05:27:03 UTC 2025 - Luigi Baldoni <aloisio@gmx.com>
|
||||||
|
|
||||||
|
- Update to version 7.0.1
|
||||||
|
Miscellaneous:
|
||||||
|
* Improve documentation and README (no changes to the library
|
||||||
|
code itself)
|
||||||
|
* New doc build dependency: myst-parser used to parse Markdown
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 08:12:05 UTC 2025 - Luigi Baldoni <aloisio@gmx.com>
|
||||||
|
|
||||||
|
- Update to version 7.0.0
|
||||||
|
Breaking changes:
|
||||||
|
* Make MediaInfo.parse's optional arguments positional-only
|
||||||
|
* Drop support for Python 3.7 and 3.8
|
||||||
|
New features:
|
||||||
|
* Add wheels for Linux x86-64 and ARM64
|
||||||
|
Miscellaneous:
|
||||||
|
* Switch build backend from setuptools to PDM-Backend
|
||||||
|
* Improve code quality with better type hints and many more
|
||||||
|
fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Oct 29 18:22:02 UTC 2023 - Luigi Baldoni <aloisio@gmx.com>
|
Sun Oct 29 18:22:02 UTC 2023 - Luigi Baldoni <aloisio@gmx.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-pymediainfo
|
# spec file for package python-pymediainfo
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-pymediainfo
|
Name: python-pymediainfo
|
||||||
Version: 6.1.0
|
Version: 7.0.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python wrapper for the mediainfo library
|
Summary: Python wrapper for the mediainfo library
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -27,9 +27,10 @@ URL: https://github.com/sbraz/pymediainfo
|
|||||||
Source0: https://files.pythonhosted.org/packages/source/p/pymediainfo/pymediainfo-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/source/p/pymediainfo/pymediainfo-%{version}.tar.gz
|
||||||
Source99: %{name}-rpmlintrc
|
Source99: %{name}-rpmlintrc
|
||||||
BuildRequires: %{python_module importlib-metadata if %python-version < 3.8}
|
BuildRequires: %{python_module importlib-metadata if %python-version < 3.8}
|
||||||
|
BuildRequires: %{python_module pdm-backend}
|
||||||
|
BuildRequires: %{python_module pdm}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools_scm}
|
|
||||||
BuildRequires: %{python_module setuptools}
|
|
||||||
BuildRequires: libmediainfo0
|
BuildRequires: libmediainfo0
|
||||||
Requires: libmediainfo0
|
Requires: libmediainfo0
|
||||||
%if 0%{?python_version_nodots} < 38
|
%if 0%{?python_version_nodots} < 38
|
||||||
@@ -44,23 +45,22 @@ BuildArch: noarch
|
|||||||
This module is a Python wrapper for the mediainfo library.
|
This module is a Python wrapper for the mediainfo library.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n pymediainfo-%{version}
|
%autosetup -p1 -n pymediainfo-%{version}
|
||||||
rm -rf pymediainfo.egg-info
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%pytest
|
%pytest
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.rst
|
%doc README.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/pymediainfo
|
%{python_sitelib}/pymediainfo
|
||||||
%{python_sitelib}/pymediainfo-%{version}-py%{python_version}.egg-info
|
%{python_sitelib}/pymediainfo-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user