From 1a7e32a806c5de74b98ed7fe5af3d5533b4037a0 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 9 Mar 2019 09:23:50 -0800 Subject: [PATCH] Fix typo in image names: s/vabrant/vagrant/ --- productmd-1.20-typofix.patch | 12 ++++++++++++ python-productmd.spec | 7 ++++++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 productmd-1.20-typofix.patch diff --git a/productmd-1.20-typofix.patch b/productmd-1.20-typofix.patch new file mode 100644 index 0000000..a78e15f --- /dev/null +++ b/productmd-1.20-typofix.patch @@ -0,0 +1,12 @@ +diff -Nur productmd-1.20.orig/productmd/images.py productmd-1.20/productmd/images.py +--- productmd-1.20.orig/productmd/images.py 2019-03-04 23:05:11.000000000 -0800 ++++ productmd-1.20/productmd/images.py 2019-03-09 09:19:43.137799875 -0800 +@@ -92,7 +92,7 @@ + 'rhevm-ova': ['rhevm.ova'], + 'tar-gz': ['tar.gz'], + 'vagrant-hyperv': ['vagrant-hyperv.box'], +- 'vagrant-libvirt': ['vabrant-libvirt.box'], ++ 'vagrant-libvirt': ['vagrant-libvirt.box'], + 'vagrant-virtualbox': ['vagrant-virtualbox.box'], + 'vagrant-vmware-fusion': ['vagrant-vmware-fusion.box'], + 'vdi': ['vdi'], diff --git a/python-productmd.spec b/python-productmd.spec index 195464d..00082fe 100644 --- a/python-productmd.spec +++ b/python-productmd.spec @@ -9,12 +9,13 @@ Name: python-%{srcname} Version: 1.20 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library providing parsers for metadata related to OS installation License: LGPLv2+ URL: https://github.com/release-engineering/productmd Source0: https://files.pythonhosted.org/packages/source/p/%{srcname}/%{srcname}-%{version}.tar.bz2 +Patch0: productmd-1.20-typofix.patch BuildArch: noarch @@ -57,6 +58,7 @@ Requires: python%{python3_pkgversion}-six %prep %setup -q -n %{srcname}-%{version} +%patch0 -p1 %build %if 0%{?with_python2} @@ -102,6 +104,9 @@ Requires: python%{python3_pkgversion}-six %endif %changelog +* Sat Mar 09 2019 Kevin Fenzi - 1.20-3 +- Fix typo in image names: s/vabrant/vagrant/ + * Thu Mar 07 2019 Lubomír Sedlář - 1.20-2 - Disable python 2 subpackage on F>=31