Hello community,
here is the log from the commit of package man-pages-ja for openSUSE:Factory checked in at 2018-12-31 09:46:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/man-pages-ja (Old)
and /work/SRC/openSUSE:Factory/.man-pages-ja.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "man-pages-ja"
Mon Dec 31 09:46:46 2018 rev:31 rq:661856 version:20181215
Changes:
--------
--- /work/SRC/openSUSE:Factory/man-pages-ja/man-pages-ja.changes 2017-12-19 10:58:24.801565057 +0100
+++ /work/SRC/openSUSE:Factory/.man-pages-ja.new.28833/man-pages-ja.changes 2018-12-31 09:47:30.174161740 +0100
@@ -1,0 +2,6 @@
+Fri Dec 28 18:26:59 UTC 2018 - Petr Gajdos <pgajdos(a)suse.com>
+
+- update to 20181215
+ * added and improved manual pages
+
+-------------------------------------------------------------------
Old:
----
man-pages-ja-20171215.tar.gz
New:
----
man-pages-ja-20181215.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ man-pages-ja.spec ++++++
--- /var/tmp/diff_new_pack.eomJ9j/_old 2018-12-31 09:47:30.798161228 +0100
+++ /var/tmp/diff_new_pack.eomJ9j/_new 2018-12-31 09:47:30.802161225 +0100
@@ -1,7 +1,7 @@
#
# spec file for package man-pages-ja
#
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -12,15 +12,15 @@
# 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: man-pages-ja
-Version: 20171215
+Version: 20181215
Release: 0
Summary: LDP Manual Pages (Japanese)
-License: GPL-2.0 and BSD-3-Clause and GFDL-1.1 and GFDL-1.2 and GFDL-1.3
+License: GPL-2.0-only AND BSD-3-Clause AND GFDL-1.1-only AND GFDL-1.2-only AND GFDL-1.3-only
Group: Documentation/Man
Summary(ja): Linux 日本語マン・ページ
Url: http://linuxjm.sourceforge.jp/download.html
++++++ man-pages-ja-20171215.tar.gz -> man-pages-ja-20181215.tar.gz ++++++
++++ 4212 lines of diff (skipped)
Hello community,
here is the log from the commit of package python-audiomate for openSUSE:Factory checked in at 2018-12-31 09:46:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-audiomate (Old)
and /work/SRC/openSUSE:Factory/.python-audiomate.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-audiomate"
Mon Dec 31 09:46:31 2018 rev:3 rq:660738 version:3.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-audiomate/python-audiomate.changes 2018-11-08 09:49:24.085035383 +0100
+++ /work/SRC/openSUSE:Factory/.python-audiomate.new.28833/python-audiomate.changes 2018-12-31 09:47:21.238169071 +0100
@@ -1,0 +2,30 @@
+Sat Dec 22 04:06:28 UTC 2018 - Todd R <toddrme2178(a)gmail.com>
+
+- Update to 3.0.0
+ + Breaking Changes
+ * Moved label-encoding to its own module (audiomate.encoding). It now provides the processing of full corpora and store it in containers.
+ * Moved audiomate.feeding.PartitioningFeatureIterator to the audiomate.feeding module.
+ * Added audiomate.containers.AudioContainer to store audio tracks in a single file. All container classes are now in a separate module audiomate.containers.
+ * Corpus now contains Tracks not Files anymore. This makes it possible to different kinds of audio sources. Audio from a file is now included using audiomate.tracks.FileTrack. New is the audiomate.tracks.ContainerTrack, which reads data stored in a container.
+ * The audiomate.corpus.io.DefaultReader and the audiomate.corpus.io.DefaultWriter now load and store tracks, that are stored in a container.
+ * All functionality regarding labels was moved to its own module audiomate.annotations.
+ * The class audiomate.tracks.Utterance was moved to the tracks module.
+ + New Features
+ * Introducing the audiomate.feeding module. It provides different tools for accessing container data. Via a audiomate.feeding.Dataset data can be accessed by indices. With a audiomate.feeding.DataIterator one can easily iterate over data, such as frames.
+ * Added processing steps for computing Onset-Strength (audiomate.processing.pipeline.OnsetStrength)) and Tempogram (audiomate.processing.pipeline.Tempogram)).
+ * Introduced audiomate.corpus.validation module, that is used to validate a corpus.
+ * Added reader (audiomate.corpus.io.SWCReader) for the SWC corpus. But it only works for the prepared corpus.
+ * Added function (audiomate.corpus.utils.label_cleaning.merge_consecutive_labels_with_same_values()) for merging consecutive labels with the same value
+ * Added downloader (audiomate.corpus.io.GtzanDownloader) for the GTZAN Music/Speech.
+ * Added audiomate.corpus.assets.Label.tokenized() to get a list of tokens from a label. It basically splits the value and trims whitespace.
+ * Added methods on audiomate.corpus.CorpusView, audiomate.corpus.assets.Utterance and audiomate.corpus.assets.LabelList to get a set of occurring tokens.
+ * Added audiomate.encoding.TokenOrdinalEncoder to encode labels of an utterance by mapping every token of the label to a number.
+ * Create container base class (audiomate.corpus.assets.Container), that can be used to store arbitrary data per utterance. The audiomate.corpus.assets.FeatureContainer is now an extension of the container, that provides functionality especially for features.
+ * Added functions to split utterances and label-lists into multiple parts. (audiomate.corpus.assets.Utterance.split(), audiomate.corpus.assets.LabelList.split())
+ * Added audiomate.processing.pipeline.AddContext to add context to frames, using previous and subsequent frames.
+ * Added reader (audiomate.corpus.io.MailabsReader) and downloader (audiomate.corpus.io.MailabsDownloader) for the M-AILABS Speech Dataset.
+ + Fixes
+ * [#58] Keep track of number of samples per frame and between frames. Now the correct values will be stored in a Feature-Container, if the processor implements it correctly.
+ * [#72] Fix bug, when reading samples from utterance, using a specific duration, while the utterance end is not defined.
+
+-------------------------------------------------------------------
Old:
----
LICENSE
audiomate-2.0.0.tar.gz
New:
----
audiomate-3.0.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-audiomate.spec ++++++
--- /var/tmp/diff_new_pack.tWtSvn/_old 2018-12-31 09:47:21.986168457 +0100
+++ /var/tmp/diff_new_pack.tWtSvn/_new 2018-12-31 09:47:21.990168454 +0100
@@ -19,14 +19,13 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-audiomate
-Version: 2.0.0
+Version: 3.0.0
Release: 0
Summary: A library for working with audio datasets
License: MIT
Group: Development/Languages/Python
Url: https://github.com/ynop/audiomate
Source0: https://files.pythonhosted.org/packages/source/a/audiomate/audiomate-%{vers…
-Source10: https://raw.githubusercontent.com/ynop/audiomate/v%{version}/LICENSE
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -63,7 +62,6 @@
%prep
%setup -q -n audiomate-%{version}
-cp %{SOURCE10} .
%build
%python_build
++++++ audiomate-2.0.0.tar.gz -> audiomate-3.0.0.tar.gz ++++++
++++ 20109 lines of diff (skipped)