diff options
Diffstat (limited to 't/data')
-rw-r--r-- | t/data/SPECS/file-conflicts/h.spec | 23 | ||||
-rw-r--r-- | t/data/SPECS/file-conflicts/i.spec | 23 |
2 files changed, 46 insertions, 0 deletions
diff --git a/t/data/SPECS/file-conflicts/h.spec b/t/data/SPECS/file-conflicts/h.spec new file mode 100644 index 00000000..90de1e35 --- /dev/null +++ b/t/data/SPECS/file-conflicts/h.spec @@ -0,0 +1,23 @@ +Summary: x +Name: h +Version: 1 +Release: 1 +License: x +Group: x +Url: x +BuildArch: noarch + +%description +x + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT/usr/share/man +echo h > $RPM_BUILD_ROOT/usr/share/man/foo + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +/usr/share/man/foo* + diff --git a/t/data/SPECS/file-conflicts/i.spec b/t/data/SPECS/file-conflicts/i.spec new file mode 100644 index 00000000..47e2c3fc --- /dev/null +++ b/t/data/SPECS/file-conflicts/i.spec @@ -0,0 +1,23 @@ +Summary: x +Name: i +Version: 1 +Release: 1 +License: x +Group: x +Url: x +BuildArch: noarch + +%description +x + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT/usr/share/man +echo i > $RPM_BUILD_ROOT/usr/share/man/foo + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +/usr/share/man/foo* + |