diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-02-25 09:30:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-02-25 09:30:32 +0000 |
commit | a1b3f72f35afe3672b7f1fec1ba862120283f44a (patch) | |
tree | 052750c98e159d6222d8c16580b55b8121702903 /t/data/SPECS | |
parent | 85d0b5ca0090c0ebd5b8f957fb6cf53341f3b3bb (diff) | |
download | urpmi-a1b3f72f35afe3672b7f1fec1ba862120283f44a.tar urpmi-a1b3f72f35afe3672b7f1fec1ba862120283f44a.tar.gz urpmi-a1b3f72f35afe3672b7f1fec1ba862120283f44a.tar.bz2 urpmi-a1b3f72f35afe3672b7f1fec1ba862120283f44a.tar.xz urpmi-a1b3f72f35afe3672b7f1fec1ba862120283f44a.zip |
add a test case for "sort choices on virtual package by provided version (#12645)"
Diffstat (limited to 't/data/SPECS')
-rw-r--r-- | t/data/SPECS/best-versioned-provide/a1.spec | 14 | ||||
-rw-r--r-- | t/data/SPECS/best-versioned-provide/a_cc.spec | 14 | ||||
-rw-r--r-- | t/data/SPECS/best-versioned-provide/a_dd.spec | 14 | ||||
-rw-r--r-- | t/data/SPECS/best-versioned-provide/a_ee.spec | 14 | ||||
-rw-r--r-- | t/data/SPECS/best-versioned-provide/b1.spec | 16 | ||||
-rw-r--r-- | t/data/SPECS/best-versioned-provide/b2.spec | 16 | ||||
-rw-r--r-- | t/data/SPECS/best-versioned-provide/b3.spec | 16 |
7 files changed, 104 insertions, 0 deletions
diff --git a/t/data/SPECS/best-versioned-provide/a1.spec b/t/data/SPECS/best-versioned-provide/a1.spec new file mode 100644 index 00000000..8ac191ae --- /dev/null +++ b/t/data/SPECS/best-versioned-provide/a1.spec @@ -0,0 +1,14 @@ +Summary: x +Name: a1 +Version: 1 +Release: 1 +License: x +Group: x +Url: x +Requires: cc +BuildRoot: %{_tmppath}/%{name} + +%description +x + +%files diff --git a/t/data/SPECS/best-versioned-provide/a_cc.spec b/t/data/SPECS/best-versioned-provide/a_cc.spec new file mode 100644 index 00000000..dd55a9d8 --- /dev/null +++ b/t/data/SPECS/best-versioned-provide/a_cc.spec @@ -0,0 +1,14 @@ +Summary: x +Name: a_cc +Version: 1 +Release: 1 +License: x +Group: x +Url: x +Requires: cc +BuildRoot: %{_tmppath}/%{name} + +%description +x + +%files diff --git a/t/data/SPECS/best-versioned-provide/a_dd.spec b/t/data/SPECS/best-versioned-provide/a_dd.spec new file mode 100644 index 00000000..fa7640f2 --- /dev/null +++ b/t/data/SPECS/best-versioned-provide/a_dd.spec @@ -0,0 +1,14 @@ +Summary: x +Name: a_dd +Version: 1 +Release: 1 +License: x +Group: x +Url: x +Requires: dd +BuildRoot: %{_tmppath}/%{name} + +%description +x + +%files diff --git a/t/data/SPECS/best-versioned-provide/a_ee.spec b/t/data/SPECS/best-versioned-provide/a_ee.spec new file mode 100644 index 00000000..17eaec22 --- /dev/null +++ b/t/data/SPECS/best-versioned-provide/a_ee.spec @@ -0,0 +1,14 @@ +Summary: x +Name: a_ee +Version: 1 +Release: 1 +License: x +Group: x +Url: x +Requires: ee +BuildRoot: %{_tmppath}/%{name} + +%description +x + +%files diff --git a/t/data/SPECS/best-versioned-provide/b1.spec b/t/data/SPECS/best-versioned-provide/b1.spec new file mode 100644 index 00000000..01612ea3 --- /dev/null +++ b/t/data/SPECS/best-versioned-provide/b1.spec @@ -0,0 +1,16 @@ +Summary: x +Name: b1 +Version: 1 +Release: 1 +License: x +Group: x +Url: x +Provides: cc = 1 +Provides: dd = 2 +Provides: ee = 3 +BuildRoot: %{_tmppath}/%{name} + +%description +x + +%files diff --git a/t/data/SPECS/best-versioned-provide/b2.spec b/t/data/SPECS/best-versioned-provide/b2.spec new file mode 100644 index 00000000..78e96540 --- /dev/null +++ b/t/data/SPECS/best-versioned-provide/b2.spec @@ -0,0 +1,16 @@ +Summary: x +Name: b2 +Version: 1 +Release: 1 +License: x +Group: x +Url: x +Provides: cc = 2 +Provides: dd = 3 +Provides: ee = 1 +BuildRoot: %{_tmppath}/%{name} + +%description +x + +%files diff --git a/t/data/SPECS/best-versioned-provide/b3.spec b/t/data/SPECS/best-versioned-provide/b3.spec new file mode 100644 index 00000000..e6aea576 --- /dev/null +++ b/t/data/SPECS/best-versioned-provide/b3.spec @@ -0,0 +1,16 @@ +Summary: x +Name: b3 +Version: 1 +Release: 1 +License: x +Group: x +Url: x +Provides: cc = 3 +Provides: dd = 1 +Provides: ee = 2 +BuildRoot: %{_tmppath}/%{name} + +%description +x + +%files |