Blame SPECS/libmodulemd.spec

5fe8c0
%if  0%{?rhel} && 0%{?rhel} <= 7
5fe8c0
  # There is no python3-gobject-base in RHEL 7. But it exists in EPEL 7.
5fe8c0
  %global meson_python_flags -Dwith_py2=true -Dwith_py3=true
5fe8c0
  %global build_python2 1
5fe8c0
  %global build_python3 1
5fe8c0
%else
5fe8c0
  %global meson_python_flags -Dwith_py2=false -Dwith_py3=true
5fe8c0
  %global build_python2 0
5fe8c0
  %global build_python3 1
5fe8c0
%endif
5fe8c0
5fe8c0
%if  0%{?rhel} && 0%{?rhel} <= 10
5fe8c0
  # Support module builds with an invalid buildorder in RHEL 8.
5fe8c0
  %global meson_accept_overflowed_buildorder_flag -Daccept_overflowed_buildorder=true
5fe8c0
%else
5fe8c0
  %global meson_accept_overflowed_buildorder_flag -Daccept_overflowed_buildorder=false
5fe8c0
%endif
5fe8c0
5fe8c0
%global upstream_name libmodulemd
5fe8c0
5fe8c0
%if (0%{?rhel} && 0%{?rhel} <= 7)
5fe8c0
  %global v2_suffix 2
5fe8c0
%endif
5fe8c0
5fe8c0
Name:           %{upstream_name}%{?v2_suffix}
5fe8c0
Version:        2.13.0
5fe8c0
Release:        2%{?dist}
5fe8c0
Summary:        Module metadata manipulation library
5fe8c0
5fe8c0
# COPYING:      MIT
5fe8c0
## not in any binary package
5fe8c0
# contrib/coverity-modeling.c:  GPLv2+
5fe8c0
# contrib/release-tools/semver: GPLv3
5fe8c0
License:        MIT
5fe8c0
URL:            https://github.com/fedora-modularity/libmodulemd
5fe8c0
Source0:        %{url}/releases/download/%{version}/modulemd-%{version}.tar.xz
5fe8c0
Source1:        %{url}/releases/download/%{version}/modulemd-%{version}.tar.xz.asc
5fe8c0
# Key exported from Petr Pisar's keyring
5fe8c0
Source2:        gpgkey-E3F42FCE156830A80358E6E94FD1AEC3365AF7BF.gpg
5fe8c0
# Accept invalid, but existing 18446744073709551615 buildorder when loading
5fe8c0
# modulemd-v2 documents, bug #1984402, proposed to the upstream
5fe8c0
Patch0:         modulemd-2.13.0-Accept-18446744073709551615-buildorder-if-accept_ove.patch
5fe8c0
5fe8c0
BuildRequires:  gnupg2
5fe8c0
BuildRequires:  meson >= 0.47
5fe8c0
BuildRequires:  pkgconfig
5fe8c0
BuildRequires:  gcc
5fe8c0
BuildRequires:  gcc-c++
5fe8c0
BuildRequires:  pkgconfig(gobject-2.0)
5fe8c0
BuildRequires:  pkgconfig(gobject-introspection-1.0)
5fe8c0
BuildRequires:  pkgconfig(yaml-0.1)
5fe8c0
BuildRequires:  pkgconfig(gtk-doc)
5fe8c0
BuildRequires:  glib2-doc
5fe8c0
BuildRequires:  rpm-devel
5fe8c0
BuildRequires:  file-devel
5fe8c0
%if %{build_python2}
5fe8c0
BuildRequires:  python2-devel
5fe8c0
BuildRequires:  python-gobject-base
5fe8c0
%endif
5fe8c0
%if %{build_python3}
5fe8c0
BuildRequires:  python%{python3_pkgversion}-devel
5fe8c0
BuildRequires:  python%{python3_pkgversion}-gobject-base
5fe8c0
%endif
5fe8c0
BuildRequires:  help2man
5fe8c0
5fe8c0
5fe8c0
# Patches
5fe8c0
5fe8c0
5fe8c0
%description
5fe8c0
C library for manipulating module metadata files.
5fe8c0
See https://github.com/fedora-modularity/libmodulemd/blob/master/README.md for
5fe8c0
more details.
5fe8c0
5fe8c0
5fe8c0
%if %{build_python2}
5fe8c0
%package -n python2-%{name}
5fe8c0
Summary:        Python 2 bindings for %{name}
5fe8c0
Requires:       %{name}%{?_isa} = %{version}-%{release}
5fe8c0
Requires:       python-gobject-base
5fe8c0
Requires:       python-six
5fe8c0
5fe8c0
%description -n python2-%{name}
5fe8c0
Python 2 bindings for %{name}.
5fe8c0
%endif
5fe8c0
5fe8c0
5fe8c0
%if %{build_python3}
5fe8c0
%package -n python%{python3_pkgversion}-%{name}
5fe8c0
Summary:        Python 3 bindings for %{name}
5fe8c0
Requires:       %{name}%{?_isa} = %{version}-%{release}
5fe8c0
Requires:       python%{python3_pkgversion}-gobject-base
5fe8c0
%if (0%{?rhel} && 0%{?rhel} <= 7)
5fe8c0
# The py3_dist macro on EPEL 7 doesn't work right at the moment
5fe8c0
Requires:       python3.6dist(six)
5fe8c0
%else
5fe8c0
Requires:       %{py3_dist six}
5fe8c0
%endif
5fe8c0
5fe8c0
%description -n python%{python3_pkgversion}-%{name}
5fe8c0
Python %{python3_pkgversion} bindings for %{name}.
5fe8c0
%endif
5fe8c0
5fe8c0
5fe8c0
%package devel
5fe8c0
Summary:        Development files for libmodulemd
5fe8c0
Requires:       %{name}%{?_isa} = %{version}-%{release}
5fe8c0
%if (0%{?rhel} && 0%{?rhel} <= 7)
5fe8c0
Conflicts:      libmodulemd1-devel
5fe8c0
Conflicts:      libmodulemd-devel
5fe8c0
%endif
5fe8c0
5fe8c0
5fe8c0
%description devel
5fe8c0
Development files for %{name}.
5fe8c0
5fe8c0
5fe8c0
%prep
5fe8c0
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
5fe8c0
%autosetup -p1 -n modulemd-%{version}
5fe8c0
5fe8c0
5fe8c0
%build
5fe8c0
%meson \
5fe8c0
    %{meson_accept_overflowed_buildorder_flag} \
5fe8c0
    -Dlibmagic=enabled \
5fe8c0
    -Drpmio=enabled \
5fe8c0
    -Dskip_introspection=false \
5fe8c0
    -Dtest_installed_lib=false \
5fe8c0
    -Dwith_docs=true \
5fe8c0
    -Dwith_manpages=enabled \
5fe8c0
    %{meson_python_flags}
5fe8c0
%meson_build
5fe8c0
5fe8c0
5fe8c0
%check
5fe8c0
export LC_CTYPE=C.utf8
5fe8c0
# The tests sometimes time out in CI, so give them a little extra time
5fe8c0
%{__meson} test -C %{_vpath_builddir} %{?_smp_mesonflags} --print-errorlogs -t 5
5fe8c0
5fe8c0
5fe8c0
%install
5fe8c0
%meson_install
5fe8c0
5fe8c0
%if ( 0%{?rhel} && 0%{?rhel} <= 7)
5fe8c0
# Don't conflict with modulemd-validator from 1.x included in the official
5fe8c0
# RHEL 7 repos
5fe8c0
mv %{buildroot}%{_bindir}/modulemd-validator \
5fe8c0
   %{buildroot}%{_bindir}/modulemd-validator%{?v2_suffix}
5fe8c0
5fe8c0
mv %{buildroot}%{_mandir}/man1/modulemd-validator.1 \
5fe8c0
   %{buildroot}%{_mandir}/man1/modulemd-validator%{?v2_suffix}.1
5fe8c0
%endif
5fe8c0
5fe8c0
5fe8c0
%ldconfig_scriptlets
5fe8c0
5fe8c0
5fe8c0
%files
5fe8c0
%license COPYING
5fe8c0
%doc NEWS README.md
5fe8c0
%{_bindir}/modulemd-validator%{?v2_suffix}
5fe8c0
%{_mandir}/man1/modulemd-validator%{?v2_suffix}.1*
5fe8c0
%{_libdir}/%{upstream_name}.so.2*
5fe8c0
%dir %{_libdir}/girepository-1.0
5fe8c0
%{_libdir}/girepository-1.0/Modulemd-2.0.typelib
5fe8c0
5fe8c0
5fe8c0
%files devel
5fe8c0
%{_libdir}/%{upstream_name}.so
5fe8c0
%{_libdir}/pkgconfig/modulemd-2.0.pc
5fe8c0
%{_includedir}/modulemd-2.0/
5fe8c0
%dir %{_datadir}/gir-1.0
5fe8c0
%{_datadir}/gir-1.0/Modulemd-2.0.gir
5fe8c0
%dir %{_datadir}/gtk-doc
5fe8c0
%dir %{_datadir}/gtk-doc/html
5fe8c0
%{_datadir}/gtk-doc/html/modulemd-2.0/
5fe8c0
5fe8c0
5fe8c0
%if %{build_python2}
5fe8c0
%files -n python2-%{name}
5fe8c0
%{python2_sitearch}/gi/overrides/
5fe8c0
%endif
5fe8c0
5fe8c0
5fe8c0
%if %{build_python3}
5fe8c0
%files -n python%{python3_pkgversion}-%{name}
5fe8c0
%{python3_sitearch}/gi/overrides/
5fe8c0
%endif
5fe8c0
5fe8c0
5fe8c0
%changelog
5fe8c0
* Thu Aug 12 2021 Petr Pisar <ppisar@redhat.com> - 2.13.0-2
5fe8c0
- Enable accept_overflowed_buildorder in tier0 tests (bug #1984403)
5fe8c0
5fe8c0
* Tue Aug 10 2021 Petr Pisar <ppisar@redhat.com> - 2.13.0-1
5fe8c0
- 2.13.0 bump (bug #1984403)
5fe8c0
5fe8c0
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.12.1-2
5fe8c0
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
5fe8c0
  Related: rhbz#1991688
5fe8c0
5fe8c0
* Mon May 03 2021 Petr Pisar <ppisar@redhat.com> - 2.12.1-1
5fe8c0
- 2.12.1 bump (bug #1956346)
5fe8c0
5fe8c0
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.12.0-3
5fe8c0
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
5fe8c0
5fe8c0
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.0-2
5fe8c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
5fe8c0
5fe8c0
* Thu Jan 14 2021 Stephen Gallagher <sgallagh@redhat.com> - 2.12.0-1
5fe8c0
- Add support for 'buildorder' to Packager documents
5fe8c0
5fe8c0
* Tue Jan 12 2021 Stephen Gallagher <sgallagh@redhat.com> - 2.11.2-2
5fe8c0
- Fix issue with ModuleIndex when input contains only Obsoletes documents
5fe8c0
- Fix import issue when built with Python 2 support
5fe8c0
5fe8c0
* Thu Jan 07 2021 Stephen Gallagher <sgallagh@redhat.com> - 2.11.2-1
5fe8c0
- Release 2.11.2
5fe8c0
- Extend read_packager_[file|string]() to support overriding the module name
5fe8c0
  and stream.
5fe8c0
5fe8c0
* Thu Dec 17 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.11.1-1
5fe8c0
- Release 2.11.1
5fe8c0
- Ignore Packager documents when running ModuleIndex.update_from_*()
5fe8c0
- Add python overrides for XMD in PackagerV3
5fe8c0
- Add python override to ignore the GType return when reading packager files
5fe8c0
- Add PackagerV3.get_mdversion()
5fe8c0
5fe8c0
* Thu Dec 10 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.11.0-1
5fe8c0
- Release 2.11.0
5fe8c0
5fe8c0
* Fri Nov 20 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.10.0-2
5fe8c0
- Fix integer size issue on 32-bit platforms
5fe8c0
5fe8c0
* Fri Nov 20 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.10.0-1
5fe8c0
- Release 2.10.0
5fe8c0
- https://github.com/fedora-modularity/libmodulemd/releases/tag/libmodulemd-2.10.0
5fe8c0
5fe8c0
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-3
5fe8c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5fe8c0
5fe8c0
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 2.9.4-2
5fe8c0
- Rebuilt for Python 3.9
5fe8c0
5fe8c0
* Wed May 20 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.4-1
5fe8c0
- new upstream release: 2.9.4
5fe8c0
5fe8c0
* Wed May 20 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.4-2.9.300520.1gitgc19757c
5fe8c0
- new upstream release: 2.9.4
5fe8c0
5fe8c0
* Wed Apr 08 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.3-1
5fe8c0
- new upstream release: 2.9.3
5fe8c0
5fe8c0
* Wed Apr 01 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.2-4
5fe8c0
- Skip rpmdeplint from gating due to https://github.com/fedora-infra/bodhi/issues/3944
5fe8c0
5fe8c0
* Wed Apr 01 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.2-3
5fe8c0
- Fix build against Python 3.9
5fe8c0
- Resolves: rhbz#1817665
5fe8c0
5fe8c0
* Wed Mar 11 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.2-2
5fe8c0
- new upstream release: 2.9.2
5fe8c0
5fe8c0
* Wed Mar 11 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.2-0.20200311.1gitg31bbd4e
5fe8c0
- new upstream release: 2.9.2
5fe8c0
5fe8c0
* Wed Mar 11 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.2-0.20200311.1gitg31bbd4e
5fe8c0
- new upstream release: 2.9.2
5fe8c0
5fe8c0
* Fri Feb 14 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.1-1
5fe8c0
- new upstream release: 2.9.1
5fe8c0
5fe8c0
* Wed Feb 12 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.9.0-1
5fe8c0
- new upstream release: 2.9.0
5fe8c0
5fe8c0
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-2
5fe8c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5fe8c0
5fe8c0
* Thu Jan 09 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.8.3-1
5fe8c0
- Update to 2.8.3
5fe8c0
- Fix compilation issue with glib >= 2.63.3
5fe8c0
- Improved modulemd document validation
5fe8c0
- Numerous test enhancements
5fe8c0
5fe8c0
* Thu Oct 24 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.8.2-1
5fe8c0
- Update to 2.8.2
5fe8c0
- Use safer version of dup()
5fe8c0
- Fix loading of YAML module stream with no module or stream name
5fe8c0
5fe8c0
* Tue Oct 15 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.8.1-1
5fe8c0
- Improve the merge logic to handle third-party repos more sanely
5fe8c0
5fe8c0
* Wed Sep 18 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.8.0-2
5fe8c0
- Improvements to ModuleIndex.update_from_defaults_directory()
5fe8c0
  * Import each file in the directory as a merge rather than an overwrite so
5fe8c0
    we can detect conflicts.
5fe8c0
  * Modify the meaning of the 'strict' argument to fail if the merge would
5fe8c0
    result in a conflict in the default stream setting of a module.
5fe8c0
5fe8c0
* Wed Sep 04 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.8.0-1
5fe8c0
- Update to 2.8.0
5fe8c0
- API Changes
5fe8c0
  * Add Modulemd.Module.get_translation() - Retrieve the translations
5fe8c0
    associated with a Modulemd.Module
5fe8c0
  * Add ModuleIndex.update_from_defaults_directory() - Import defaults from a
5fe8c0
    directory of yaml documents, such as fedora-module-defaults, optionally
5fe8c0
    providing a second path containing overrides.
5fe8c0
- Enhancements
5fe8c0
  * Modulemd.ModuleIndex.update_from_file() now supports reading files
5fe8c0
    compressed with gzip, bzip2 or xz. (Issue: #208)
5fe8c0
  * Documentation updates
5fe8c0
- Bugfixes
5fe8c0
  * Assorted minor issues discovered by static analysis tools.
5fe8c0
5fe8c0
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.7.0-2
5fe8c0
- Rebuilt for Python 3.8
5fe8c0
5fe8c0
* Thu Aug 15 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.7.0-1
5fe8c0
- Update to 2.7.0
5fe8c0
- Drop libmodulemd1 subpackage which is now packaged separately
5fe8c0
- Add support for 'buildroot' and 'srpm-buildroot' arguments to components
5fe8c0
5fe8c0
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-2
5fe8c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
5fe8c0
5fe8c0
* Wed Jul 03 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.6.0-1
5fe8c0
- Update to 2.6.0
5fe8c0
- New function ModuleIndexMerger.resolve_ext() allowing for strict merging
5fe8c0
- Profile.get_description() now properly returns available translations
5fe8c0
- Numerous documentation fixes
5fe8c0
- Test improvements
5fe8c0
5fe8c0
* Wed May 29 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.5.0-2
5fe8c0
- Fix memory issue with Module.search_streams() in the python bindings
5fe8c0
5fe8c0
* Wed May 22 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.5.0-1
5fe8c0
- Update to 2.5.0 and 1.8.11
5fe8c0
- Ensure that XMD is always emitted in the same order
5fe8c0
- Add .clear_*() functions for all .add_*() functions
5fe8c0
- Add ModuleStream.equals()
5fe8c0
- Add ModuleIndex.get_default_streams()
5fe8c0
5fe8c0
* Mon May 13 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.4.0-1
5fe8c0
- Update to 2.4.0 and 1.8.10
5fe8c0
- Add ModuleStreamV2.clear_dependencies() and .remove_dependencies()
5fe8c0
- Fix bugs and memory issues with the XMD python bindings
5fe8c0
- Assorted documentation enhancements
5fe8c0
5fe8c0
* Fri May 03 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.3.1-1
5fe8c0
- Update to 2.3.1
5fe8c0
- Make Modulemd.Component.set_*() functions accept NULL
5fe8c0
- Fix segmentation fault in XMD code due to improper memory management
5fe8c0
- Fix incompatibility in python2-libmodulemd GObject overrides
5fe8c0
- Fix assorted documentation issues
5fe8c0
5fe8c0
* Mon Apr 22 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.3.0-1
5fe8c0
- Add ModuleIndex.update_from_custom()
5fe8c0
- Add ModuleIndex.dump_to_custom()
5fe8c0
- Add Component.equals()
5fe8c0
- Add Module.remove_streams_by_NSVCA()
5fe8c0
- Fix bug with emitting lists of scalars in XMD
5fe8c0
- Fix bug with deduplication in the ModuleIndexMerger
5fe8c0
- Fix serious memory leak
5fe8c0
5fe8c0
* Tue Apr 16 2019 Adam Williamson <awilliam@redhat.com> - 2.2.3-3
5fe8c0
- Rebuild with Meson fix for #1699099
5fe8c0
5fe8c0
* Wed Apr 03 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.2.3-2
5fe8c0
- Fix accidental ABI break
5fe8c0
5fe8c0
* Mon Apr 01 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.2.3-1
5fe8c0
- Update to 2.2.3 and 1.8.6
5fe8c0
- Fix header issue with ModulemdRpmMapEntry
5fe8c0
5fe8c0
* Wed Mar 27 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.2.2-2
5fe8c0
- Don't run tests on armv7hl/aarch64 since they have timeout problems
5fe8c0
5fe8c0
* Wed Mar 27 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.2.2-1
5fe8c0
- Update to libmodulemd 2.2.2
5fe8c0
- Add support for python2 on RHEL and Fedora < 31
5fe8c0
- Make python subpackages archful for GObject overrides
5fe8c0
5fe8c0
* Tue Mar 26 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.2.1-1
5fe8c0
- Update to libmodulemd 2.2.1
5fe8c0
- Fixes builds on i686
5fe8c0
- Fixes an accidental API error
5fe8c0
5fe8c0
* Tue Mar 26 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.2.0-1
5fe8c0
- Update to libmodulemd 2.2.0
5fe8c0
- Support for RPM checksums
5fe8c0
- Adds a new directive: "buildafter" for specifying build dependencies
5fe8c0
- Adds a new directive: "buildonly" to indicate that a component's built
5fe8c0
  artifacts should be listed in the "filter" field.
5fe8c0
- Deprecate lookup functions by NSVC in favor of NSVCA (including the
5fe8c0
  architecture.
5fe8c0
5fe8c0
* Fri Mar 01 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.1.0-4
5fe8c0
- Don't run tests on 32-bit ARM due to performance issues causing timeouts
5fe8c0
5fe8c0
* Fri Mar 01 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.1.0-3
5fe8c0
- Have python3-libmodulemd1 properly Obsolete libmodulemd and
5fe8c0
  python3-libmodulemd < 2.
5fe8c0
5fe8c0
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-2
5fe8c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
5fe8c0
5fe8c0
* Sat Jan 26 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.1.0-1
5fe8c0
- Update to libmodulemd 2.1.0 and 1.8.2
5fe8c0
- Drop upstreamed patches
5fe8c0
- Add new API ModuleStream.depends_on_stream() and
5fe8c0
  ModuleStream.build_depends_on_stream() to help support auto-detection of
5fe8c0
  when a module stream may need to be rebuilt when its dependencies change.
5fe8c0
- Don't fail merges when default streams differ, treat it as "no default for
5fe8c0
  this module"
5fe8c0
- Fix error message
5fe8c0
- Copy modified value when copying Modulemd.Defaults objects
5fe8c0
- Fixes discovered by clang and coverity static analysis tools
5fe8c0
- Test improvements
5fe8c0
5fe8c0
* Fri Jan 11 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.0.0-3
5fe8c0
- Fix ordering issue with dependencies
5fe8c0
- Use glib2 suppression file when running valgrind tests
5fe8c0
5fe8c0
* Fri Jan 11 2019 Stephen Gallagher <sgallagh@redhat.com> - 2.0.0-2
5fe8c0
- Fix issue reading modified value for defaults from YAML streams
5fe8c0
5fe8c0
* Thu Dec 13 2018 Stephen Gallagher <sgallagh@redhat.com> - 2.0.0-1
5fe8c0
- Update to 2.0.0 final
5fe8c0
- Assorted fixes for validation
5fe8c0
- Add modulemd-validator tool based on v2 code
5fe8c0
- Fix a crash when merging defaults
5fe8c0
5fe8c0
* Tue Dec 11 2018 Stephen Gallagher <sgallagh@redhat.com> - 2.0.0-0.beta2
5fe8c0
- Update to 2.0.0beta2
5fe8c0
- Better validation of stored content during read and write operations
5fe8c0
- ModuleIndex now returns FALSE if any subdocument fails
5fe8c0
- Fix tests on 32-bit platforms
5fe8c0
- Make unknown keys in YAML maps non-fatal for libmodulemd1
5fe8c0
- Make unknown keys in YAML maps optionally fatal for libmodulemd 2.x
5fe8c0
- Fix RPM version requirements for libmodulemd1
5fe8c0
5fe8c0
* Mon Dec 10 2018 Stephen Gallagher <sgallagh@redhat.com> - 2.0.0-0.beta1
5fe8c0
- Update to 2.0.0beta1
5fe8c0
- Total rewrite to 2.0 API
5fe8c0
- https://sgallagh.fedorapeople.org/docs/libmodulemd/2.0/
5fe8c0
5fe8c0
* Fri Oct 26 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.7.0-1
5fe8c0
- Update to 1.7.0
5fe8c0
- Enhance YAML parser for use with `fedmod lint`
5fe8c0
- Support running unit tests against installed packages
5fe8c0
- Include all NSVCs for ModuleStreams in ImprovedModule
5fe8c0
5fe8c0
* Tue Sep 18 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.6.4-1
5fe8c0
- Update to 1.6.4.
5fe8c0
- Add Buildopts to the documentation.
5fe8c0
- Deduplicate module streams when merging.
5fe8c0
- Drop upstreamed patches.
5fe8c0
5fe8c0
* Thu Sep 06 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.6.3-2
5fe8c0
- Fix generation of module component YAML
5fe8c0
- Output NSVC information using decimal version
5fe8c0
5fe8c0
* Tue Sep 04 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.6.3-1
5fe8c0
- Update to 1.6.3
5fe8c0
- Drop upstreamed patch
5fe8c0
- Don't return ModuleStream objects from modulemd_module_new_all_from_*_ext()
5fe8c0
- Ensure that Component buildorder property is signed
5fe8c0
- Work around optimization bug
5fe8c0
- Don't crash dumping translation events without summary or desc
5fe8c0
5fe8c0
* Thu Aug 09 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.6.2-2
5fe8c0
- Fix backwards-incompatible API change
5fe8c0
- Resolves: rhbz#1607083
5fe8c0
5fe8c0
* Tue Aug 07 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.6.2-1
5fe8c0
- Update to 1.6.2
5fe8c0
- Make buildorder a signed integer to match modulemd specification
5fe8c0
5fe8c0
* Mon Jul 23 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.6.1-2
5fe8c0
- Obsolete unsupported pythonX-modulemd packages
5fe8c0
5fe8c0
* Fri Jul 20 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.6.1-1
5fe8c0
- Update to 1.6.1
5fe8c0
- Fix header include ordering
5fe8c0
- Suppress empty sections from .dump() ordering
5fe8c0
5fe8c0
* Wed Jul 18 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.6.0-1
5fe8c0
- Update to 1.6.0
5fe8c0
- Adds Modulemd.ModuleStream object, deprecating Modulemd.Module
5fe8c0
- Adds Modulemd.Translation and Modulemd.TranslationEntry objects
5fe8c0
- Adds Modulemd.ImprovedModule object that collects streams, defaults and
5fe8c0
  translations together
5fe8c0
- Adds new Modulemd.index_from_*() funtions to get a hash table of
5fe8c0
  Modulemd.ImprovedModule objects for easier searching
5fe8c0
- Moves function documentation to the public headers
5fe8c0
- Corrects the license headers to MIT (they were incorrectly listed as MITNFA
5fe8c0
  in previous releases)
5fe8c0
- Makes the "eol" field optional for Modulemd.ServiceLevel
5fe8c0
- Clean up HTML documentation
5fe8c0
- Fixes a type error on 32-bit systems
5fe8c0
5fe8c0
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-2
5fe8c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
5fe8c0
5fe8c0
* Sat Jun 23 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.5.2-1
5fe8c0
- Update to libdmodulemd 1.5.2
5fe8c0
- Don't free uninitialized memory
5fe8c0
5fe8c0
* Fri Jun 22 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-2
5fe8c0
- Fix buildopts property not being initialized
5fe8c0
5fe8c0
* Tue Jun 19 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-1
5fe8c0
- Update to version 1.5.1
5fe8c0
- Re-enable build-time tests
5fe8c0
5fe8c0
* Mon Jun 18 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.5.0-2
5fe8c0
- Temporarily disable build-time tests
5fe8c0
5fe8c0
* Mon Jun 18 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.5.0-1
5fe8c0
- Update to version 1.5.0
5fe8c0
- Adds support for "intents" in Modulemd.Defaults
5fe8c0
- Adds `Modulemd.get_version()`
5fe8c0
- Adds support for RPM whitelists in the buildopts
5fe8c0
- Adds a new object: Modulemd.Buildopts
5fe8c0
- Deprecates Modulemd.Module.get_rpm_buildopts()
5fe8c0
- Deprecates Modulemd.Module.set_rpm_buildopts()
5fe8c0
- Fixes some missing license blurbs
5fe8c0
5fe8c0
* Tue May 08 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.4.1-1
5fe8c0
- Update to version 1.4.1
5fe8c0
- Improve output from modulemd-validator
5fe8c0
- Drop upstreamed patches
5fe8c0
5fe8c0
* Wed Apr 25 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.4.0-2
5fe8c0
- Fix pointer math error
5fe8c0
- Fix compilation failure in Fedora build system
5fe8c0
5fe8c0
* Wed Apr 25 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.4.0-1
5fe8c0
- Update to version 1.4.0
5fe8c0
- Adds new API for returning failed YAML subdocuments
5fe8c0
- Stop emitting log messages by default (polluting consumer logs)
5fe8c0
- Validate RPM artifacts for proper NEVRA format
5fe8c0
- Improve the validator tool
5fe8c0
- Drop upstreamed patch
5fe8c0
5fe8c0
* Mon Apr 16 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.3.0-2
5fe8c0
- Fix serious error in modulemd-defaults emitter
5fe8c0
5fe8c0
* Fri Apr 13 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.3.0-1
5fe8c0
- Update to version 1.3.0
5fe8c0
- New Public Objects:
5fe8c0
  * Modulemd.Prioritizer - tool to merge module defaults
5fe8c0
- New Public Functions:
5fe8c0
  * Modulemd.SimpleSet.is_equal()
5fe8c0
  * Modulemd.Defaults.copy()
5fe8c0
  * Modulemd.Defaults.merge()
5fe8c0
5fe8c0
* Wed Apr 04 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.2.0-1
5fe8c0
- Update to version 1.2.0
5fe8c0
- New Functions:
5fe8c0
  * Modulemd.objects_from_file()
5fe8c0
  * Modulemd.objects_from_string()
5fe8c0
  * Modulemd.dump()
5fe8c0
  * Modulemd.dumps()
5fe8c0
  * Modulemd.Defaults.new_from_file()
5fe8c0
  * Modulemd.Defaults.new_from_string()
5fe8c0
- Deprecated Functions:
5fe8c0
  * Modulemd.Module.new_all_from_file()
5fe8c0
  * Modulemd.Module.new_all_from_file_ext()
5fe8c0
  * Modulemd.Module.new_all_from_string()
5fe8c0
  * Modulemd.Module.new_all_from_string_ext()
5fe8c0
  * Modulemd.Module.dump_all()
5fe8c0
  * Modulemd.Module.dumps_all()
5fe8c0
- Bugfixes
5fe8c0
  * Properly use G_BEGIN_DECLS and G_END_DECLS in headers
5fe8c0
  * Assorted fixes for memory ownership in GObject Introspection
5fe8c0
5fe8c0
* Fri Mar 23 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-2
5fe8c0
- Fix missing G_END_DECL from public headers
5fe8c0
5fe8c0
* Mon Mar 19 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-1
5fe8c0
- Fix numerous memory leaks
5fe8c0
- Drop upstreamed patch
5fe8c0
5fe8c0
* Thu Mar 15 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.1.2-1
5fe8c0
- Update to version 1.1.2
5fe8c0
- Revert backwards-incompatible API change
5fe8c0
- Fix version string in pkgconfig file
5fe8c0
5fe8c0
* Thu Mar 15 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.1.1-1
5fe8c0
- Update to version 1.1.1
5fe8c0
- Make default stream and profiles optional
5fe8c0
- Fixes: https://github.com/fedora-modularity/libmodulemd/issues/25
5fe8c0
- Fixes: https://github.com/fedora-modularity/libmodulemd/issues/26
5fe8c0
- Fixes: https://github.com/fedora-modularity/libmodulemd/issues/27
5fe8c0
5fe8c0
* Wed Mar 14 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.1.0-1
5fe8c0
- Update to version 1.1.0
5fe8c0
- Adds support for handling modulemd-defaults YAML documents
5fe8c0
- Adds peek()/dup() routines to all object properties
5fe8c0
- Adds Modulemd.Module.dup_nsvc() to retrieve the canonical form of the unique module identifier.
5fe8c0
- Adds support for boolean types in the XMD section
5fe8c0
- Revert obsoletion of pythonX-modulemd packages for now
5fe8c0
5fe8c0
* Tue Mar 13 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.0.4-2
5fe8c0
- Obsolete unsupported pythonX-modulemd packages
5fe8c0
5fe8c0
* Tue Feb 27 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.0.4-1
5fe8c0
- Update to 1.0.4
5fe8c0
- Rework version autodetection
5fe8c0
- Avoid infinite loop on unparseable YAML
5fe8c0
5fe8c0
* Sun Feb 25 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.0.3-1
5fe8c0
- RPM components are properly emitted when no module components exist
5fe8c0
- Parser works around late determination of modulemd version
5fe8c0
5fe8c0
* Fri Feb 16 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.0.2-1
5fe8c0
- Be more strict with certain parser edge-cases
5fe8c0
- Replace popt argument processing with glib
5fe8c0
- Drop upstreamed patches
5fe8c0
5fe8c0
* Thu Feb 15 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.0.1-2
5fe8c0
- Handle certain unlikely format violations
5fe8c0
5fe8c0
* Thu Feb 15 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.0.1-1
5fe8c0
- Support modulemd v2
5fe8c0
- Add tool to do quick validation of modulemd
5fe8c0
- Fix memory management
5fe8c0
- Warn and ignore unparseable sub-documents in the YAML
5fe8c0
- Fix several memory issues detected by Coverity scan
5fe8c0
5fe8c0
* Tue Feb 06 2018 Stephen Gallagher <sgallagh@redhat.com> - 0.2.2-1
5fe8c0
- Update to libmodulemd 0.2.2
5fe8c0
- Fix numerous minor memory leaks
5fe8c0
- Fix issues with EOL/SL dates
5fe8c0
5fe8c0
* Tue Feb 06 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.2.1-3
5fe8c0
- Own appropriate directories
5fe8c0
5fe8c0
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.2.1-2
5fe8c0
- Switch to %%ldconfig_scriptlets
5fe8c0
5fe8c0
* Fri Jan 05 2018 Stephen Gallagher <sgallagh@redhat.com> - 0.2.1-1
5fe8c0
- Update to libmodulemd 0.2.1
5fe8c0
- Add 'name' property for Profiles
5fe8c0
5fe8c0
* Thu Oct 05 2017 Stephen Gallagher <sgallagh@redhat.com> - 0.2.0-2
5fe8c0
- Add missing BuildRequires for gtk-doc
5fe8c0
5fe8c0
* Thu Oct 05 2017 Stephen Gallagher <sgallagh@redhat.com> - 0.2.0-1
5fe8c0
- Update to libmodulemd 0.2.0
5fe8c0
- Adds gtk-doc generated documentation
5fe8c0
- (ABI-break) Makes all optional properties accept NULL as a value to clear
5fe8c0
  them
5fe8c0
- (ABI-break) Modulemd.SimpleSet takes a STRV (char **) instead of a
5fe8c0
  GLib.PtrArray
5fe8c0
- Fixes a bug where the name was not always set for components
5fe8c0
- Adds support for dumping YAML from the introspected API
5fe8c0
- Includes add/remove routines for profiles
5fe8c0
5fe8c0
* Sat Sep 30 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.1.0-5
5fe8c0
- Use %%_isa in Requires for main package from devel
5fe8c0
5fe8c0
* Mon Sep 18 2017 Stephen Gallagher <sgallagh@redhat.com> - 0.1.0-4
5fe8c0
- Correct the license to MIT
5fe8c0
5fe8c0
* Mon Sep 18 2017 Stephen Gallagher <sgallagh@redhat.com> - 0.1.0-3
5fe8c0
- Modifications requested during package review
5fe8c0
5fe8c0
* Fri Sep 15 2017 Stephen Gallagher <sgallagh@redhat.com> - 0.1.0-2
5fe8c0
- First public release
5fe8c0