Olaf Hering
d462587faf
- Update to version 1.4.1: * Bugfix: Album shown matched even if extra unmatched files (PICARD-953) * Bugfix: Removing album with saves pending does not remove pending saves (PICARD-972) * Bugfix: Pending log messages not flushed to stderr on quit (PICARD-973) * Bugfix: Drag & Drop not working (PICARD-988) * Bugfix: Picard violating ID3 standard for TXXX frames (PICARD-990) * Bugfix: Disabling the cover art box and enabling it again doesn't bring it back (PICARD-996) * Bugfix: Disabling the action toolbar sometimes doesn't work (PICARD-998) * Bugfix: If a cluster is moved to the album side of the main window it gets moved to unmatched files (PICARD-1005) * Bugfix: Drag and drop for cover arts doesnt work on OSX (PICARD-1006) * Bugfix: Unsetting View/Cover Art doesn't work permanently (PICARD-1010) * Bugfix: Toolbar tab order incorrect after PICARD-908 (PICARD-1011) * Bugfix: Number of images in release info is calculated incorrectly (PICARD-1014) * Bugfix: Artwork tab of the Track Info DIalog doesn't show changes anymore (PICARD-1015) * Bugfix: CoverArtBox doesn't show new/removed images after unmatched files are added/removed to the album (PICARD-1018) * Bugfix: Directory persistence for Add Directory needs tweaking (PICARD-1023) * Bugfix: Fix ~artists_sort metadata variable (PICARD-1029) * Bugfix: Missing import for PICARD_APP_NAME (PICARD-1042) * New Feature: Visual feedback for changes to artwork in before-after pane. (PICARD-258) * New Feature: Implement artwork diff for albums (PICARD-1000) * Task: Remove monkey patching of file write methods in picard formats (PICARD-943) * Task: Replace Ok button text by Make It So! in Options dialog (PICARD-1041) * Improvement: Remove should work when Unmatched Files is selected (PICARD-223) * Improvement: Always use HTTPS for musicbrainz.org (PICARD-951) * Improvement: Use Cover Art Archive over HTTPS (PICARD-952) * Improvement: Mention AcoustID on Scan button too (PICARD-961) * Improvement: Drag&drop cover art doesn't work for images from amazon/google images/https links (PICARD-980) * Improvement: Buttons on the "User Interface" and "Scripting" pages are smaller than buttons in other places (PICARD-1012) * Improvement: Multiple images in related tracks confusing (PICARD-1016) * Improvement: Picard loads all pending files before quitting (PICARD-1021) OBS-URL: https://build.opensuse.org/request/show/484849 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/picard?expand=0&rev=51
112 lines
3.5 KiB
RPMSpec
112 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package picard
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: picard
|
|
Version: 1.4.1
|
|
Release: 0
|
|
Summary: The Next Generation MusicBrainz Tagger
|
|
License: GPL-2.0+
|
|
Group: Productivity/Multimedia/Sound/Utilities
|
|
Url: http://musicbrainz.org/doc/PicardTagger
|
|
Source0: ftp://ftp.musicbrainz.org/pub/musicbrainz/picard/%{name}-1.4.1.tar.gz
|
|
# http://wiki.musicbrainz.org/Picard_Plugins
|
|
# All of the Search*.py files come from https://github.com/brianfreud/Picard-plugins
|
|
# The full URL can not be part of this specfile because download corrupts line endings
|
|
Source8: SearchAmazon3.py
|
|
Source9: SearchAMG.py
|
|
Source10: SearchCastAlbums3.py
|
|
Source11: SearchDiscogs3.py
|
|
Source12: SearchFilmMusziek3.py
|
|
Source13: SearchGMR.py
|
|
Source14: SearchGoogle3.py
|
|
Source15: SearchLortelArchives3.py
|
|
Source16: SearchSoundtrackCollector3.py
|
|
Source17: SearchSoundtrackINFO3.py
|
|
#
|
|
BuildRequires: desktop-file-utils
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libofa-devel
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-mutagen
|
|
Requires: python-mutagen
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: python-qt4
|
|
BuildRequires: update-desktop-files
|
|
Recommends: python-discid
|
|
Requires: python-qt4
|
|
Recommends: chromaprint-fpcalc
|
|
|
|
%description
|
|
MusicBrainz Picard is a cross-platform MusicBrainz tag editor written in
|
|
Python. Picard Tagger is intended to be the next generation of tagger for
|
|
MusicBrainz, with a focus on album oriented tagging as opposed to track based
|
|
tagging and cross platform compatibility.
|
|
|
|
%lang_package
|
|
|
|
%prep
|
|
%setup -q -n %{name}-release-1.4.1
|
|
|
|
%build
|
|
python setup.py config
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --skip-build --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
# install plugins
|
|
PLUGINDIR=%{buildroot}%{py_sitedir}/picard/plugins/
|
|
install -m 0644 %{SOURCE8} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE9} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE10} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE11} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE12} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE13} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE14} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE15} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE16} ${PLUGINDIR}
|
|
install -m 0644 %{SOURCE17} ${PLUGINDIR}
|
|
|
|
%suse_update_desktop_file -G "Music Tagger" -N "picard" picard
|
|
|
|
rm -rfv %{buildroot}%{_datadir}/locale/sco
|
|
|
|
%find_lang %{name} %{name}.lang
|
|
%find_lang %{name}-countries %{name}.lang
|
|
%find_lang %{name}-attributes %{name}.lang
|
|
|
|
%post
|
|
%icon_theme_cache_post
|
|
|
|
%postun
|
|
%icon_theme_cache_postun
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS.txt COPYING.txt NEWS.txt
|
|
%{_bindir}/picard
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{python_sitearch}/picard*
|
|
%{_datadir}/icons/hicolor/*/apps/picard.png
|
|
%{_datadir}/icons/hicolor/*/apps/picard.svg
|
|
|
|
%files lang -f %{name}.lang
|
|
%defattr(-,root,root)
|
|
|
|
%changelog
|