#10 Initial test data for compose testing.
Closed 8 years ago by ausil. Opened 8 years ago by dmach.
dmach/pungi initial_tests  into  master

file modified
+13 -5
@@ -922,7 +922,6 @@ 

                  pprint.pformat(list(sorted(failed)))))

              self.logger.info("Couldn't find %i of %i srpms." % (

                  len(failed), len(self.src_by_bin)))

-             raise RuntimeError("Could not find all srpms.")

  

      def add_srpms(self, po_list=None):

          """Cycle through the list of package objects and
@@ -932,11 +931,14 @@ 

          srpms = set()

          po_list = po_list or self.po_list

          for po in sorted(po_list):

-             srpm_po = self.sourcerpm_srpmpo_map[po.sourcerpm]

-             if srpm_po in self.completed_add_srpms:

+             try:

+                 srpm_po = self.sourcerpm_srpmpo_map[po.sourcerpm]

+             except KeyError:

+                 self.logger.error("Cannot get source RPM '%s' for %s" % (po.sourcerpm, po.nvra))

+                 srpm_po = None

+ 

+             if srpm_po is None:

                  continue

-             msg = "Added source package %s.%s (repo: %s)" % (srpm_po.name, srpm_po.arch, srpm_po.repoid)

-             self.add_source(srpm_po, msg)

  

              # flags

              if po in self.input_packages:
@@ -948,6 +950,12 @@ 

              if po in self.multilib_packages:

                  self.multilib_packages.add(srpm_po)

  

+             if srpm_po in self.completed_add_srpms:

+                 continue

+ 

+             msg = "Added source package %s.%s (repo: %s)" % (srpm_po.name, srpm_po.arch, srpm_po.repoid)

+             self.add_source(srpm_po, msg)

+ 

              self.completed_add_srpms.add(srpm_po)

              srpms.add(srpm_po)

          return srpms

@@ -0,0 +1,162 @@ 

+ <?xml version="1.0" encoding="UTF-8"?>

+ <!DOCTYPE comps PUBLIC "-//Red Hat, Inc.//DTD Comps info//EN" "comps.dtd">

+ <comps>

+ 

+   <!-- GROUPS -->

+ 

+   <group>

+     <id>core</id>

+     <name>Core</name>

+     <description>Smallest possible installation</description>

+     <default>true</default>

+     <uservisible>false</uservisible>

+     <packagelist>

+       <packagereq type="mandatory">dummy-bash</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>standard</id>

+     <name>Standard</name>

+     <description>Common set of utilities that extend the minimal installation.</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq>dummy-lvm2</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>text-internet</id>

+     <name>Text-based Internet</name>

+     <description>This group includes text-based email, Web, and chat clients.  These applications do not require the X Window System.</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq type="optional">dummy-elinks</packagereq>

+       <packagereq type="optional">dummy-tftp</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>firefox</id>

+     <name>Firefox Web Browser</name>

+     <description>The Firefox web browser</description>

+     <default>false</default>

+     <uservisible>false</uservisible>

+     <packagelist>

+       <packagereq>dummy-firefox</packagereq>

+       <packagereq>dummy-icedtea-web</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group arch="i386 x86_64">

+     <id>skype</id>

+     <name>Skype</name>

+     <description>Free internet telephony</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq>dummy-skype</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group arch="x86_64">

+     <id>resilient-storage</id>

+     <name>Resilient Storage</name>

+     <description>Clustered storage, including the GFS2 filesystem.</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq type="mandatory">dummy-gfs2-utils</packagereq>

+       <packagereq type="mandatory">dummy-lvm2-cluster</packagereq>

+       <packagereq type="mandatory">dummy-pacemaker</packagereq>

+       <packagereq type="mandatory">dummy-resource-agents</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>gluster</id>

+     <name>Gluster</name>

+     <description>GlusterFS support packages</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq type="mandatory">dummy-glusterfs-resource-agents</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>basic-desktop</id>

+     <name>Desktop</name>

+     <default>true</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq type="conditional" requires="dummy-imsettings">dummy-imsettings-gnome</packagereq>

+     </packagelist>

+   </group>

+ 

+   <!-- ENVIRONMENTS -->

+ 

+   <environment>

+     <id>minimal</id>

+     <name>Minimal install</name>

+     <description>Basic functionality.</description>

+     <display_order>99</display_order>

+     <grouplist>

+       <groupid>core</groupid>

+     </grouplist>

+     <optionlist>

+     </optionlist>

+   </environment>

+ 

+   <environment>

+     <id>desktop</id>

+     <name>Desktop</name>

+     <description>Desktop.</description>

+     <display_order>10</display_order>

+     <grouplist>

+       <groupid>core</groupid>

+       <groupid>standard</groupid>

+       <groupid>basic-desktop</groupid>

+     </grouplist>

+     <optionlist>

+     </optionlist>

+   </environment>

+ 

+   <environment>

+     <id>empty</id>

+     <name>Empty</name>

+     <description>Should not appear in the repos.</description>

+     <display_order>10</display_order>

+     <grouplist>

+       <groupid>does-not-exist</groupid>

+     </grouplist>

+   </environment>

+ 

+   <!-- LANGPACKS -->

+ 

+   <langpacks>

+     <match install="LabPlot-doc-%s" name="LabPlot-doc"/>

+     <match install="aspell-%s" name="aspell"/>

+     <match install="autocorr-%s" name="autocorr-en"/>

+     <match install="calligra-l10n-%s" name="calligra-core"/>

+     <match install="childsplay-alphabet_sounds_%s" name="childsplay"/>

+     <match install="eclipse-nls-%s" name="eclipse-platform"/>

+     <match install="firefox-langpack-%s" name="firefox"/>

+     <match install="gcompris-sound-%s" name="gcompris"/>

+     <match install="gimp-help-%s" name="gimp-help"/>

+     <match install="hunspell-%s" name="hunspell"/>

+     <match install="hyphen-%s" name="hyphen"/>

+     <match install="kde-l10n-%s" name="kdelibs"/>

+     <match install="kde-i18n-%s" name="kdelibs3"/>

+     <match install="libreoffice-langpack-%s" name="libreoffice-core"/>

+     <match install="man-pages-%s" name="man-pages"/>

+     <match install="moodle-%s" name="moodle"/>

+     <match install="mythes-%s" name="mythes"/>

+     <match install="nqc-doc-%s" name="nqc-doc"/>

+     <match install="openoffice.org-langpack-%s" name="openoffice.org-core"/>

+     <match install="tesseract-langpack-%s" name="tesseract"/>

+     <match install="tkgate-%s" name="tkgate"/>

+   </langpacks>

+ </comps>

@@ -0,0 +1,139 @@ 

+ # PRODUCT (RELEASE) INFO

+ product_name = "Dummy Product"

+ product_short = "DP"

+ product_version = "1.0"

+ product_is_layered = False

+ product_type = "ga"

+ 

+ 

+ # GENERAL SETTINGS

+ bootable = False

+ comps_file = "dummy-comps.xml"

+ variants_file = "dummy-variants.xml"

+ sigkeys = [None] # None = unsigned

+ 

+ # limit tree architectures

+ # if undefined, all architectures from variants.xml will be included

+ atree_arches = ["x86_64"]

+ 

+ # limit tree variants

+ # if undefined, all variants from variants.xml will be included

+ #tree_variants = ["Server"]

+ 

+ multilib_arches = ["ppc64", "x86_64", "s390x"]

+ multilib_methods = ["devel", "runtime"] # devel (recommended), all, base, file, kernel, none, runtime

+ 

+ 

+ # RUNROOT settings

+ runroot = False

+ #runroot_channel = ""

+ #runroot_tag = ""

+ 

+ 

+ # PKGSET

+ pkgset_source = "repos" # koji, repos

+ 

+ # PKGSET - REPOS

+ # pkgset_repos format: {arch: [repo1_url, repo2_url, ...]}

+ pkgset_repos = {

+     "i386": [

+         "repo",

+     ],

+     "x86_64": [

+         "repo",

+     ],

+     "s390x": [

+         "repo",

+     ],

+ }

+ 

+ # PKGSET - KOJI

+ #pkgset_koji_path_prefix = "/mnt/koji"

+ #pkgset_koji_url = ""

+ #pkgset_koji_tag = ""

+ 

+ 

+ # GATHER

+ gather_source = "comps"

+ gather_method = "deps"

+ check_deps = False

+ greedy_method = "build"

+ 

+ # fomat: [(variant_uid_regex, {arch|*: [repos]})]

+ # gather_lookaside_repos = []

+ 

+ # GATHER - JSON

+ # format: {variant_uid: {arch: package: [arch1, arch2, None (for any arch)]}}

+ #gather_source_mapping = "/path/to/mapping.json"

+ 

+ 

+ # CREATEREPO

+ # TODO: checksum type - mandatory

+ createrepo_c = True

+ 

+ 

+ # BUILDINSTALL

+ 

+ 

+ # PRODUCTIMG

+ 

+ 

+ # CREATEISO

+ create_optional_isos = False

+ symlink_isos_to = None

+ 

+ 

+ # fomat: [(variant_uid_regex, {arch|*: [packages]})]

+ additional_packages = [

+     ('^Server$', {

+         '*': [

+ #            'dummy-lvm2-devel',

+              'dummy-libtool',

+         ],

+     }),

+     ('^Client-optional$', {

+         '*': [

+             'dummy-httpd',

+         ],

+     }),

+ ]

+ 

+ filter_packages = [

+     ('^.*$', {

+         '*': [

+             'dummy-pacemaker',

+         ],

+     }),

+     ('^Client$', {

+         '*': [

+             'dummy-httpd',

+         ],

+     }),

+     ('^Server-optional$', {

+         '*': [

+             'dummy-httpd.i686',

+         ],

+     }),

+     ('^.*-ResilientStorage$', {

+         '*': [

+             'dummy-glusterfs-resource-agents',

+         ],

+     }),

+ ]

+ 

+ 

+ # format: {arch|*: [packages]}

+ multilib_blacklist = {

+     "*": [

+         "kernel-devel",

+         "httpd-devel",

+         "*",

+ #        "dummy-glibc",

+     ],

+ }

+ 

+ multilib_whitelist = {

+     "*": [

+         "dummy-glibc",

+     ],

+ }

@@ -0,0 +1,70 @@ 

+ <?xml version="1.0" encoding="UTF-8"?>

+ <!DOCTYPE variants PUBLIC "-//Red Hat, Inc.//DTD Variants info//EN" "variants.dtd">

+ 

+ <variants>

+   <variant id="ResilientStorage" name="Resilient Storage" type="addon">

+     <arches>

+       <arch>x86_64</arch>

+     </arches>

+     <groups>

+       <group default="true">resilient-storage</group>

+     </groups>

+   </variant>

+ 

+   <variant id="Gluster" name="Gluster Layered Product" type="layered-product">

+     <product name="Gluster" version="2.3" short="Gluster" />

+     <arches>

+       <arch>x86_64</arch>

+     </arches>

+     <groups>

+       <group default="true">gluster</group>

+     </groups>

+   </variant>

+ 

+   <variant id="Client" name="Client" type="variant" has_optional="true">

+     <arches>

+       <arch>i386</arch>

+       <arch>x86_64</arch>

+     </arches>

+     <groups>

+       <group default="true">core</group>

+       <group default="true">standard</group>

+       <group default="false">text-internet</group>

+       <group default="true" uservisible="false">firefox</group>

+       <group>skype</group>

+     </groups>

+     <environments>

+       <environment>minimal</environment>

+       <environment display_order="1000">desktop</environment>

+     </environments>

+   </variant>

+ 

+   <variant id="Server" name="Server" type="variant" has_optional="true">

+     <arches>

+       <arch>x86_64</arch>

+       <arch>s390x</arch>

+     </arches>

+     <groups>

+       <group default="true" uservisible="true">core</group>

+       <group default="true">standard</group>

+       <group default="true">text-internet</group>

+     </groups>

+     <environments>

+       <environment>minimal</environment>

+     </environments>

+     <variants>

+       <ref id="ResilientStorage"/>

+       <ref id="Gluster"/>

+       <variant id="optional" name="optional" type="optional">

+         <arches>

+           <arch>x86_64</arch>

+           <arch>s390x</arch>

+         </arches>

+         <groups>

+           <group default="false">firefox</group>

+         </groups>

+       </variant>

+     </variants>

+   </variant>

+ 

+ </variants>

@@ -0,0 +1,55 @@ 

+ <?xml version="1.0" encoding="UTF-8"?>

+ <repomd xmlns="http://linux.duke.edu/metadata/repo" xmlns:rpm="http://linux.duke.edu/metadata/rpm">

+   <revision>1433703782</revision>

+   <data type="primary">

+     <checksum type="sha256">3ee1c3fafb9178ef21bd71ed7e5294100b3a6fbe9b81609ab99d4ecc783375b0</checksum>

+     <open-checksum type="sha256">218e3655cab97285c5a225dff14eef438b408f4e06e5943646ce56d222d1ce13</open-checksum>

+     <location href="repodata/3ee1c3fafb9178ef21bd71ed7e5294100b3a6fbe9b81609ab99d4ecc783375b0-primary.xml.gz"/>

+     <timestamp>1433703782</timestamp>

+     <size>2807</size>

+     <open-size>34430</open-size>

+   </data>

+   <data type="filelists">

+     <checksum type="sha256">f5ad16adc2c0563296d800b5d39a40b25d8d9140baff7f3f3da2f78d2cc1ea4e</checksum>

+     <open-checksum type="sha256">d6a3f06b473cf9516a2397afbdeda067c9b2dd42e7f2f62ffafc88cb56fa2852</open-checksum>

+     <location href="repodata/f5ad16adc2c0563296d800b5d39a40b25d8d9140baff7f3f3da2f78d2cc1ea4e-filelists.xml.gz"/>

+     <timestamp>1433703782</timestamp>

+     <size>1637</size>

+     <open-size>5515</open-size>

+   </data>

+   <data type="other">

+     <checksum type="sha256">6dc9204acd47b7416fbc49af6ee2076f93dbde635d1183024a568e8572b283d3</checksum>

+     <open-checksum type="sha256">b159c0f978c1de00d4862080689d1e96705dd05868512ba0193e257edc267046</open-checksum>

+     <location href="repodata/6dc9204acd47b7416fbc49af6ee2076f93dbde635d1183024a568e8572b283d3-other.xml.gz"/>

+     <timestamp>1433703782</timestamp>

+     <size>1716</size>

+     <open-size>9014</open-size>

+   </data>

+   <data type="primary_db">

+     <checksum type="sha256">235e7a604cf1b16c29914586a8f04a56ea893d8b47ed959c6f3f2adc3b5964a6</checksum>

+     <open-checksum type="sha256">2555ad6ea5276aa69c9b7024afc4807b3f5f35d82196c564b0f38edf6b171038</open-checksum>

+     <location href="repodata/235e7a604cf1b16c29914586a8f04a56ea893d8b47ed959c6f3f2adc3b5964a6-primary.sqlite.bz2"/>

+     <timestamp>1433703782</timestamp>

+     <size>6289</size>

+     <open-size>50176</open-size>

+     <database_version>10</database_version>

+   </data>

+   <data type="filelists_db">

+     <checksum type="sha256">bc8b8f4456854e72d2ba482d0e6741808c7a424bb916b795fef9453beaa60673</checksum>

+     <open-checksum type="sha256">5b629fb3de56f339591529ddccef2c1227de031943f0faf924f85f7e53390dcb</open-checksum>

+     <location href="repodata/bc8b8f4456854e72d2ba482d0e6741808c7a424bb916b795fef9453beaa60673-filelists.sqlite.bz2"/>

+     <timestamp>1433703782</timestamp>

+     <size>2600</size>

+     <open-size>13312</open-size>

+     <database_version>10</database_version>

+   </data>

+   <data type="other_db">

+     <checksum type="sha256">b309bb1a898ee99a7f53b0302605494b2eb7cb1f234794bdd692846774c5bff5</checksum>

+     <open-checksum type="sha256">dcabf3acc87ab3459c1d2f6e0d64e7ed797bb6d95365c4346f9428c188be49a5</open-checksum>

+     <location href="repodata/b309bb1a898ee99a7f53b0302605494b2eb7cb1f234794bdd692846774c5bff5-other.sqlite.bz2"/>

+     <timestamp>1433703782</timestamp>

+     <size>3090</size>

+     <open-size>15360</open-size>

+     <database_version>10</database_version>

+   </data>

+ </repomd>

empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
@@ -0,0 +1,162 @@ 

+ <?xml version="1.0" encoding="UTF-8"?>

+ <!DOCTYPE comps PUBLIC "-//Red Hat, Inc.//DTD Comps info//EN" "comps.dtd">

+ <comps>

+ 

+   <!-- GROUPS -->

+ 

+   <group>

+     <id>core</id>

+     <name>Core</name>

+     <description>Smallest possible installation</description>

+     <default>true</default>

+     <uservisible>false</uservisible>

+     <packagelist>

+       <packagereq type="mandatory">dummy-bash</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>standard</id>

+     <name>Standard</name>

+     <description>Common set of utilities that extend the minimal installation.</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq>dummy-lvm2</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>text-internet</id>

+     <name>Text-based Internet</name>

+     <description>This group includes text-based email, Web, and chat clients.  These applications do not require the X Window System.</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq type="optional">dummy-elinks</packagereq>

+       <packagereq type="optional">dummy-tftp</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>firefox</id>

+     <name>Firefox Web Browser</name>

+     <description>The Firefox web browser</description>

+     <default>false</default>

+     <uservisible>false</uservisible>

+     <packagelist>

+       <packagereq>dummy-firefox</packagereq>

+       <packagereq>dummy-icedtea-web</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group arch="i386 x86_64">

+     <id>skype</id>

+     <name>Skype</name>

+     <description>Free internet telephony</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq>dummy-skype</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group arch="x86_64">

+     <id>resilient-storage</id>

+     <name>Resilient Storage</name>

+     <description>Clustered storage, including the GFS2 filesystem.</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq type="mandatory">dummy-gfs2-utils</packagereq>

+       <packagereq type="mandatory">dummy-lvm2-cluster</packagereq>

+       <packagereq type="mandatory">dummy-pacemaker</packagereq>

+       <packagereq type="mandatory">dummy-resource-agents</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>gluster</id>

+     <name>Gluster</name>

+     <description>GlusterFS support packages</description>

+     <default>false</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq type="mandatory">dummy-glusterfs-resource-agents</packagereq>

+     </packagelist>

+   </group>

+ 

+   <group>

+     <id>basic-desktop</id>

+     <name>Desktop</name>

+     <default>true</default>

+     <uservisible>true</uservisible>

+     <packagelist>

+       <packagereq type="conditional" requires="dummy-imsettings">dummy-imsettings-gnome</packagereq>

+     </packagelist>

+   </group>

+ 

+   <!-- ENVIRONMENTS -->

+ 

+   <environment>

+     <id>minimal</id>

+     <name>Minimal install</name>

+     <description>Basic functionality.</description>

+     <display_order>99</display_order>

+     <grouplist>

+       <groupid>core</groupid>

+     </grouplist>

+     <optionlist>

+     </optionlist>

+   </environment>

+ 

+   <environment>

+     <id>desktop</id>

+     <name>Desktop</name>

+     <description>Desktop.</description>

+     <display_order>10</display_order>

+     <grouplist>

+       <groupid>core</groupid>

+       <groupid>standard</groupid>

+       <groupid>basic-desktop</groupid>

+     </grouplist>

+     <optionlist>

+     </optionlist>

+   </environment>

+ 

+   <environment>

+     <id>empty</id>

+     <name>Empty</name>

+     <description>Should not appear in the repos.</description>

+     <display_order>10</display_order>

+     <grouplist>

+       <groupid>does-not-exist</groupid>

+     </grouplist>

+   </environment>

+ 

+   <!-- LANGPACKS -->

+ 

+   <langpacks>

+     <match install="LabPlot-doc-%s" name="LabPlot-doc"/>

+     <match install="aspell-%s" name="aspell"/>

+     <match install="autocorr-%s" name="autocorr-en"/>

+     <match install="calligra-l10n-%s" name="calligra-core"/>

+     <match install="childsplay-alphabet_sounds_%s" name="childsplay"/>

+     <match install="eclipse-nls-%s" name="eclipse-platform"/>

+     <match install="firefox-langpack-%s" name="firefox"/>

+     <match install="gcompris-sound-%s" name="gcompris"/>

+     <match install="gimp-help-%s" name="gimp-help"/>

+     <match install="hunspell-%s" name="hunspell"/>

+     <match install="hyphen-%s" name="hyphen"/>

+     <match install="kde-l10n-%s" name="kdelibs"/>

+     <match install="kde-i18n-%s" name="kdelibs3"/>

+     <match install="libreoffice-langpack-%s" name="libreoffice-core"/>

+     <match install="man-pages-%s" name="man-pages"/>

+     <match install="moodle-%s" name="moodle"/>

+     <match install="mythes-%s" name="mythes"/>

+     <match install="nqc-doc-%s" name="nqc-doc"/>

+     <match install="openoffice.org-langpack-%s" name="openoffice.org-core"/>

+     <match install="tesseract-langpack-%s" name="tesseract"/>

+     <match install="tkgate-%s" name="tkgate"/>

+   </langpacks>

+ </comps>

@@ -0,0 +1,69 @@ 

+ <?xml version="1.0" encoding="UTF-8"?>

+ <repomd xmlns="http://linux.duke.edu/metadata/repo" xmlns:rpm="http://linux.duke.edu/metadata/rpm">

+   <revision>1433703782</revision>

+   <data type="primary">

+     <checksum type="sha256">4ebe97695ad46ce149952ea06063b2d5b7fd93d18d7268db98ae8024bb69f31c</checksum>

+     <open-checksum type="sha256">cb7dba389c871a42342a8a973e59d8fd6665a23d53ad6f7468fe48093c8112fc</open-checksum>

+     <location href="repodata/4ebe97695ad46ce149952ea06063b2d5b7fd93d18d7268db98ae8024bb69f31c-primary.xml.gz"/>

+     <timestamp>1433703782</timestamp>

+     <size>32328</size>

+     <open-size>451118</open-size>

+   </data>

+   <data type="filelists">

+     <checksum type="sha256">acf12a179c5f98b08e85279e8dc5cd700c44718669c0f90a9c479421b2302574</checksum>

+     <open-checksum type="sha256">5c8a86a55d688343e51edff5be854e573552860176af6aef1416dfcbf18558ab</open-checksum>

+     <location href="repodata/acf12a179c5f98b08e85279e8dc5cd700c44718669c0f90a9c479421b2302574-filelists.xml.gz"/>

+     <timestamp>1433703782</timestamp>

+     <size>19804</size>

+     <open-size>73844</open-size>

+   </data>

+   <data type="other">

+     <checksum type="sha256">03a1b0cee5e73aac25991ef1a53874769398b4e26429bf29d678d68d81e97f85</checksum>

+     <open-checksum type="sha256">695cb75c325f50f46cfa693243c4210758402c80792926cddfe42dee74907783</open-checksum>

+     <location href="repodata/03a1b0cee5e73aac25991ef1a53874769398b4e26429bf29d678d68d81e97f85-other.xml.gz"/>

+     <timestamp>1433703782</timestamp>

+     <size>19807</size>

+     <open-size>117697</open-size>

+   </data>

+   <data type="primary_db">

+     <checksum type="sha256">b0540346bfe61954819adc7b9ac1e7f8beb39d8b9b9fd4f3abbe1740126dcb80</checksum>

+     <open-checksum type="sha256">48e9a7de5a855968fc31c34e7f28ef7f0f22d05ea467d089c102af8d36323405</open-checksum>

+     <location href="repodata/b0540346bfe61954819adc7b9ac1e7f8beb39d8b9b9fd4f3abbe1740126dcb80-primary.sqlite.bz2"/>

+     <timestamp>1433703782</timestamp>

+     <size>57080</size>

+     <open-size>315392</open-size>

+     <database_version>10</database_version>

+   </data>

+   <data type="filelists_db">

+     <checksum type="sha256">0ed1b1a6780930b0ccb1326e7b8c94dc3c23c6cb8fbca7760f247a1fc337d1d3</checksum>

+     <open-checksum type="sha256">4b5d6048e9e5069dc72d0295aec0644c1ddfb86ff92570ee99288d9e54aa526d</open-checksum>

+     <location href="repodata/0ed1b1a6780930b0ccb1326e7b8c94dc3c23c6cb8fbca7760f247a1fc337d1d3-filelists.sqlite.bz2"/>

+     <timestamp>1433703782</timestamp>

+     <size>25236</size>

+     <open-size>73728</open-size>

+     <database_version>10</database_version>

+   </data>

+   <data type="other_db">

+     <checksum type="sha256">1d6b449f32acbe47d453142a2f63869a56977f92b9274b18e990fc2dea4aaae2</checksum>

+     <open-checksum type="sha256">967d7b3a37480a575aeb4a52194f6e3c9fecb35f546881dd106d8232f58c4702</open-checksum>

+     <location href="repodata/1d6b449f32acbe47d453142a2f63869a56977f92b9274b18e990fc2dea4aaae2-other.sqlite.bz2"/>

+     <timestamp>1433703782</timestamp>

+     <size>28785</size>

+     <open-size>104448</open-size>

+     <database_version>10</database_version>

+   </data>

+   <data type="group">

+     <checksum type="sha256">3cfd22f296e11c420e1ff9be32301a99640e1bc892d3d87f088117fc86aa0a3e</checksum>

+     <location href="repodata/3cfd22f296e11c420e1ff9be32301a99640e1bc892d3d87f088117fc86aa0a3e-dummy-comps.xml"/>

+     <timestamp>1433703782</timestamp>

+     <size>5050</size>

+   </data>

+   <data type="group_gz">

+     <checksum type="sha256">553f3beb9ed9d76030a9aa2f12966524ee5382075532f40a2ab8786d9405315f</checksum>

+     <open-checksum type="sha256">3cfd22f296e11c420e1ff9be32301a99640e1bc892d3d87f088117fc86aa0a3e</open-checksum>

+     <location href="repodata/553f3beb9ed9d76030a9aa2f12966524ee5382075532f40a2ab8786d9405315f-dummy-comps.xml.gz"/>

+     <timestamp>1433703782</timestamp>

+     <size>1224</size>

+     <open-size>5050</open-size>

+   </data>

+ </repomd>

empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
empty or binary file added
@@ -0,0 +1,64 @@ 

+ #!/bin/sh

+ 

+ # run this script to (re-)generate ../repo and ../repo-krb5-lookaside directories

+ 

+ # requirements:

+ #  * rpmbuild

+ #  * createrepo_c

+ 

+ 

+ set -e

+ 

+ 

+ rm -rfv ../repo

+ rm -rfv ../repo-krb5-lookaside

+ 

+ 

+ for spec in *.spec; do

+     echo "Building $spec..."

+     for target in i686 x86_64 ppc ppc64 s390 s390x; do

+         if [ "$spec" == "dummy-foo32.spec" ]; then

+             if [ "$target" == "x86_64" -o "$target" == "ppc64" -o "$target" == "s390x" ]; then

+                 continue

+             fi

+         fi

+         if [ "$spec" == "dummy-glibc-2.14-4.spec" ]; then

+             if [ "$target" == "i686" -o "$target" == "ppc" -o "$target" == "s390" ]; then

+                 continue

+             fi

+         fi

+         if [ "$spec" == "dummy-AdobeReader_enu.spec" ]; then

+             continue

+         fi

+         if [ "$spec" == "dummy-skype.spec" ]; then

+             continue

+         fi

+         echo "Building ${spec/.spec/} for $target"

+         rpmbuild --target=$target -ba --nodeps --define '_srcrpmdir ../repo/src' --define '_rpmdir ../repo' $spec

+     done

+ done

+ 

+ 

+ # AdobeReader_enu is nosrc for i486 -> handle this special case separately

+ spec="dummy-AdobeReader_enu.spec"

+ target="i486"

+ echo "Building ${spec/.spec/} for $target"

+ rpmbuild --target=$target -ba --nodeps --define '_srcrpmdir ../repo/src' --define '_rpmdir ../repo' --define "_sourcedir ." $spec

+ 

+ 

+ # Skype is for i586 -> handle this special case separately

+ # build only binaries

+ spec="dummy-skype.spec"

+ target="i586"

+ echo "Building ${spec/.spec/} for $target"

+ rpmbuild --target=$target -bb --nodeps --define '_srcrpmdir ../repo/src' --define '_rpmdir ../repo' --define "_sourcedir ." $spec

+ 

+ 

+ # create main repo

+ createrepo_c --update --groupfile $(pwd)/../dummy-comps.xml ../repo

+ 

+ 

+ # create lookaside repo for krb5

+ mkdir -p ../repo-krb5-lookaside

+ cp $(find ../repo/ -type f -name '*krb5*.rpm') ../repo-krb5-lookaside

+ createrepo_c --update ../repo-krb5-lookaside

empty or binary file added
@@ -0,0 +1,37 @@ 

+ Name:           dummy-AdobeReader_enu

+ Version:        9.5.1

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy AdobeReader_enu package

+ Requires:       dummy-glibc

+ Source0:        %{name}-%{version}.tar.gz

+ NoSource:       0

+ ExclusiveArch:  i486

+ 

+ %description

+ A dummy AdobeReader_enu package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 9.5.1-1

+ - First release

@@ -0,0 +1,187 @@ 

+ Name:           dummy-atlas

+ Version:        3.8.4

+ Release:        7

+ License:        LGPLv2

+ Summary:        A dummy atlas package

+ 

+ %description

+ A dummy atlas package

+ 

+ %package devel

+ Summary:        A dummy atlas-devel package

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description devel

+ A dummy atlas-devel package

+ 

+ 

+ # ----------

+ 

+ 

+ %ifarch x86_64

+ 

+ %package sse3

+ Summary:        A dummy atlas-sse3 package

+ Provides:       %{name} = %{version}-%{release}

+ 

+ %description sse3

+ A dummy atlas-sse3 package

+ 

+ %package sse3-devel

+ Summary:        A dummy atlas-sse3-devel package

+ Requires:       %{name}-sse3 = %{version}-%{release}

+ 

+ %description sse3-devel

+ A dummy atlas-sse3-devel package

+ 

+ %endif

+ 

+ 

+ # ----------

+ 

+ 

+ %ifarch %{ix86}

+ 

+ %package 3dnow

+ Summary:        A dummy atlas-3dnow package

+ Provides:       %{name} = %{version}-%{release}

+ 

+ %description 3dnow

+ A dummy atlas-3dnow package

+ 

+ %package 3dnow-devel

+ Summary:        A dummy atlas-3dnow-devel package

+ Requires:       %{name}-3dnow = %{version}-%{release}

+ 

+ %description 3dnow-devel

+ A dummy atlas-3dnow-devel package

+ 

+ %package sse

+ Summary:        A dummy atlas-sse package

+ Provides:       %{name} = %{version}-%{release}

+ 

+ %description sse

+ A dummy atlas-sse package

+ 

+ %package sse-devel

+ Summary:        A dummy atlas-sse-devel package

+ Requires:       %{name}-sse = %{version}-%{release}

+ 

+ %description sse-devel

+ A dummy atlas-sse-devel package

+ 

+ %package sse2

+ Summary:        A dummy atlas-sse2 package

+ Provides:       %{name} = %{version}-%{release}

+ 

+ %description sse2

+ A dummy atlas-sse2 package

+ 

+ %package sse2-devel

+ Summary:        A dummy atlas-sse2-devel package

+ Requires:       %{name}-sse2 = %{version}-%{release}

+ 

+ %description sse2-devel

+ A dummy atlas-sse2-devel package

+ 

+ %package sse3

+ Summary:        A dummy atlas-sse3 package

+ Provides:       %{name} = %{version}-%{release}

+ 

+ %description sse3

+ A dummy atlas-sse3 package

+ 

+ %package sse3-devel

+ Summary:        A dummy atlas-sse3-devel package

+ Requires:       %{name}-sse3 = %{version}-%{release}

+ 

+ %description sse3-devel

+ A dummy atlas-sse3-devel package

+ 

+ %endif

+ 

+ 

+ # ----------

+ 

+ 

+ %ifarch s390 s390x

+ 

+ %package z196

+ Summary:        A dummy atlas-z196 package

+ Provides:       %{name} = %{version}-%{release}

+ 

+ %description z196

+ A dummy atlas-z196 package

+ 

+ %package z196-devel

+ Summary:        A dummy atlas-z196-devel package

+ Requires:       %{name}-z196 = %{version}-%{release}

+ 

+ %description z196-devel

+ A dummy atlas-z196-devel package

+ 

+ %package z10

+ Summary:        A dummy atlas-z10 package

+ Provides:       %{name} = %{version}-%{release}

+ 

+ %description z10

+ A dummy atlas-z10 package

+ 

+ %package z10-devel

+ Summary:        A dummy atlas-z10-devel package

+ Requires:       %{name}-z10 = %{version}-%{release}

+ 

+ %description z10-devel

+ A dummy atlas-z10-devel package

+ 

+ %endif

+ 

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files devel

+ 

+ %ifarch x86_64

+ %files sse3

+ %files sse3-devel

+ %endif

+ 

+ %ifarch %{ix86}

+ %files 3dnow

+ %files 3dnow-devel

+ %files sse

+ %files sse-devel

+ %files sse2

+ %files sse2-devel

+ %files sse3

+ %files sse3-devel

+ %endif

+ 

+ %ifarch s390 s390x

+ %files z196

+ %files z196-devel

+ %files z10

+ %files z10-devel

+ %endif

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 3.8.4-7

+ - First release

@@ -0,0 +1,36 @@ 

+ Name:           dummy-basesystem

+ Version:        10.0

+ Release:        6

+ License:        LGPLv2

+ Summary:        A dummy basesystem package

+ Requires:       dummy-filesystem

+ 

+ BuildArch:      noarch

+ 

+ %description

+ A dummy basesystem package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 10.0-6

+ - First release

@@ -0,0 +1,51 @@ 

+ Name:           dummy-bash

+ Version:        4.2.37

+ Release:        5

+ License:        LGPLv2

+ Summary:        A dummy bash package

+ Requires:       dummy-glibc

+ 

+ %description

+ A dummy bash package

+ 

+ %package debuginfo

+ Summary:        A dummy bash-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy bash-debuginfo package

+ 

+ 

+ %package doc

+ Summary:        A dummy bash-doc package

+ BuildArch:      noarch

+ 

+ %description doc

+ A dummy bash-doc package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ %files doc

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 4.2.37-5

+ - First release

@@ -0,0 +1,57 @@ 

+ Name:           dummy-bash

+ Version:        4.2.37

+ Release:        6

+ License:        LGPLv2

+ Summary:        A dummy bash package

+ Requires:       dummy-glibc

+ %if %__isa_bits == 32

+ Requires:       libpthread.so.0(GLIBC_2.0)

+ %else

+ Requires:       libpthread.so.0(GLIBC_2.3)(64bit)

+ %endif

+ 

+ %description

+ A dummy bash package

+ 

+ %package debuginfo

+ Summary:        A dummy bash-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy bash-debuginfo package

+ 

+ 

+ %package doc

+ Summary:        A dummy bash-doc package

+ BuildArch:      noarch

+ Requires:       %{name}

+ 

+ %description doc

+ A dummy bash-doc package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ %files doc

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 4.2.37-6

+ - First release

@@ -0,0 +1,42 @@ 

+ Name:           dummy-elinks

+ Version:        2.6

+ Release:        2

+ License:        LGPLv2

+ Summary:        A dummy elinks package

+ Requires:       dummy-glibc

+ 

+ %description

+ A dummy elinks package

+ 

+ %package debuginfo

+ Summary:        A dummy elinks-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy elinks-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 2.6-2

+ - First release

@@ -0,0 +1,36 @@ 

+ Name:           dummy-fcoe-target-utils

+ Version:        2.0

+ Release:        5

+ License:        LGPLv2

+ Summary:        A dummy fcoe-target-utils package

+ 

+ BuildArch:      noarch

+ ExcludeArch:    ppc s390 s390x

+ 

+ %description

+ A dummy fcoe-target-utils package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 2.0-5

+ - First release

@@ -0,0 +1,34 @@ 

+ Name:           dummy-filesystem

+ Version:        4.2.37

+ Release:        6

+ License:        LGPLv2

+ Summary:        A dummy filesystem package

+ 

+ 

+ %description

+ A dummy filesystem package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 4.2.37-6

+ - First release

@@ -0,0 +1,44 @@ 

+ Name:           dummy-firefox

+ Version:        16.0.1

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy firefox package

+ BuildRequires:  dummy-krb5-devel

+ BuildRequires:  dummy-xulrunner

+ Requires:       dummy-xulrunner

+ 

+ %description

+ A dummy firefox package

+ 

+ %package debuginfo

+ Summary:        A dummy firefox-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy firefox-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 16.0.1-1

+ - First release

@@ -0,0 +1,42 @@ 

+ Name:           dummy-foo32

+ Version:        1

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy foo32 package

+ ExclusiveArch:  i686 ppc s390

+ 

+ %description

+ A dummy foo32 package

+ 

+ %package doc

+ Summary:        A dummy foo32-doc package

+ BuildArch:      noarch

+ 

+ %description doc

+ A dummy foo32-doc package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files doc

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1-1

+ - First release

@@ -0,0 +1,41 @@ 

+ Name:           dummy-freeipa

+ Version:        2.2.0

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy freeipa package

+ 

+ %description

+ A dummy freeipa package

+ 

+ %package server

+ Summary:        A dummy freeipa-server package

+ Requires:       dummy-selinux-policy-base

+ 

+ %description server

+ A dummy freeipa-server package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files server

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 2.2.0-1

+ - First release

@@ -0,0 +1,43 @@ 

+ Name:           dummy-gfs2-utils

+ Version:        3.1.4

+ Release:        3

+ License:        LGPLv2

+ Summary:        A dummy gfs2-utils package

+ Requires:       dummy-glibc

+ Requires:       dummy-lvm2-devel

+ 

+ %description

+ A dummy gfs2-utils package

+ 

+ %package debuginfo

+ Summary:        A dummy gfs2-utils-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy gfs2-utils-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 3.1.4-3

+ - First release

@@ -0,0 +1,78 @@ 

+ Name:           dummy-glibc

+ Version:        2.14

+ Release:        5

+ License:        LGPLv2

+ Summary:        A dummy glibc package

+ Requires:       %{name}-common = %{version}-%{release}

+ Requires:       dummy-basesystem

+ %if %__isa_bits == 32

+ Provides:       libc.so.6()

+ Provides:       libpthread.so.0(GLIBC_2.0)

+ %else

+ Provides:       libc.so.6()(64bit)

+ Provides:       libpthread.so.0(GLIBC_2.3)(64bit)

+ %endif

+ 

+ %description

+ A dummy glibc package

+ 

+ %package common

+ Summary:        A dummy glibc-common package

+ 

+ %description common

+ A dummy glibc-common package

+ 

+ %package -n dummy-nscd

+ Summary:        A dummy nscd package

+ 

+ %description -n dummy-nscd

+ A dummy nscd package

+ 

+ %package debuginfo

+ Summary:        A dummy glibc-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy glibc-debuginfo package

+ 

+ %package debuginfo-common

+ Summary:        A dummy glibc-debuginfo-common package

+ Group:          Development/Debug

+ 

+ %description debuginfo-common

+ A dummy glibc-debuginfo-common package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %if %__isa_bits == 32

+ %ghost /lib/libc.so.6

+ %else

+ %ghost /lib64/libc.so.6

+ %endif

+ 

+ %files common

+ %files -n dummy-nscd

+ %files debuginfo

+ %files debuginfo-common

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 2.14-5

+ - First release

@@ -0,0 +1,42 @@ 

+ Name:           dummy-httpd

+ Version:        2.2.21

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy httpd package

+ Requires:       dummy-glibc

+ 

+ %description

+ A dummy httpd package

+ 

+ %package debuginfo

+ Summary:        A dummy httpd-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy httpd-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 2.2.21-1

+ - First release

@@ -0,0 +1,50 @@ 

+ Name:           dummy-imsettings

+ Version:        1.2.9

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy imsettings package

+ Requires:       dummy-imsettings-desktop-module = %{version}-%{release}

+ 

+ %description

+ A dummy imsettings package

+ 

+ %package gnome

+ Summary:        A dummy imsettings-gnome package

+ Provides:       dummy-imsettings-desktop-module = %{version}-%{release}

+ 

+ %description gnome

+ A dummy imsettings-gnome package

+ 

+ %package qt

+ Summary:        A dummy imsettings-qt package

+ Provides:       dummy-imsettings-desktop-module = %{version}-%{release}

+ 

+ %description qt

+ A dummy imsettings-qt package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files gnome

+ %files qt

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 5.2-6

+ - First release

@@ -0,0 +1,54 @@ 

+ Name:           dummy-ipw3945-kmod

+ Version:        1.2.0

+ Release:        4.20

+ License:        LGPLv2

+ Summary:        A dummy ipw3945-kmod package

+ 

+ %description

+ A dummy ipw3945-kmod package

+ 

+ %package -n dummy-kmod-ipw3945

+ Summary:        A dummy kmod-ipw3945 package

+ 

+ %description -n dummy-kmod-ipw3945

+ A dummy kmod-ipw3945 package

+ 

+ %package -n dummy-kmod-ipw3945-xen

+ Summary:        A dummy kmod-ipw3945-xen package

+ 

+ %description -n dummy-kmod-ipw3945-xen

+ A dummy kmod-ipw3945-xen package

+ 

+ %package -n dummy-ipw3945-kmod-debuginfo

+ Summary:        A dummy ipw3945-kmod-debuginfo package

+ Group:          Development/Debug

+ 

+ %description -n dummy-ipw3945-kmod-debuginfo

+ A dummy ipw3945-kmod-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files -n dummy-kmod-ipw3945

+ %files -n dummy-kmod-ipw3945-xen

+ %files -n dummy-ipw3945-kmod-debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.2.0-4.20

+ - First release

@@ -0,0 +1,48 @@ 

+ Name:           dummy-kernel

+ Version:        3.1.0

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy kernel package

+ 

+ %description

+ A dummy kernel package

+ 

+ %package headers

+ Summary:        A dummy kernel-headers package

+ 

+ %description headers

+ A dummy kernel-headers package

+ 

+ %package doc

+ Summary:        A dummy kernel-doc package

+ BuildArch:      noarch

+ 

+ %description doc

+ A dummy kernel-doc package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files headers

+ %files doc

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 3.1.0-1

+ - First release

@@ -0,0 +1,67 @@ 

+ Name:           dummy-krb5

+ Version:        1.10

+ Release:        5

+ License:        LGPLv2

+ Summary:        A dummy krb5 package

+ 

+ Requires:       dummy-glibc

+ Requires:       %{name}-libs = %{version}-%{release}

+ BuildRequires:  dummy-bash

+ 

+ 

+ %description

+ A dummy krb5 package

+ 

+ %package libs

+ Summary:        A dummy krb5-libs package

+ 

+ %description libs

+ A dummy krb5-libs package

+ 

+ %package workstation

+ Summary:        A dummy krb5-workstation package

+ 

+ %description workstation

+ A dummy krb5-workstation package

+ 

+ %package devel

+ Summary:        A dummy krb5-devel package

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description devel

+ A dummy krb5-devel package

+ 

+ %package debuginfo

+ Summary:        A dummy krb5-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy krb5-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files libs

+ %files devel

+ %files workstation

+ %files debuginfo

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.10-5

+ - First release

@@ -0,0 +1,66 @@ 

+ Name:           dummy-lvm2

+ Version:        2.02.84

+ Release:        4

+ License:        LGPLv2

+ Summary:        A dummy lvm2 package

+ 

+ Requires:       dummy-glibc

+ Requires:       %{name}-libs = %{version}-%{release}

+ 

+ %description

+ A dummy glibc package

+ 

+ %package libs

+ Summary:        A dummy lvm2-libs package

+ 

+ %description libs

+ A dummy lvm2-libs package

+ 

+ %package cluster

+ Summary:        A dummy lvm2-cluster package

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description cluster

+ A dummy lvm2-cluster package

+ 

+ %package devel

+ Summary:        A dummy lvm2-devel package

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description devel

+ A dummy lvm2-devel package

+ 

+ %package debuginfo

+ Summary:        A dummy lvm2-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy lvm2-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files libs

+ %files cluster

+ %files devel

+ %files debuginfo

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 2.02.84-4

+ - First release

@@ -0,0 +1,45 @@ 

+ Name:           dummy-postfix

+ Version:        2.9.2

+ Release:        2

+ License:        LGPLv2

+ Summary:        A dummy postfix package

+ Requires:       dummy-glibc

+ Provides:       MTA

+ Provides:       server(smtp)

+ Provides:       smtpdaemon

+ 

+ %description

+ A dummy postfix package

+ 

+ %package debuginfo

+ Summary:        A dummy postfix-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy postfix-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 2.9.2-2

+ - First release

@@ -0,0 +1,36 @@ 

+ Name:           dummy-release-client-workstation

+ Version:        1.0.0

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy release-client-workstation package

+ Provides:       system-release

+ Provides:       /etc/system-release

+ Provides:       /etc/%{name}

+ 

+ %description

+ A dummy release-client-workstation package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.0.0-1

+ - First release

@@ -0,0 +1,36 @@ 

+ Name:           dummy-release-client

+ Version:        1.0.0

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy release-client package

+ Provides:       system-release

+ Provides:       /etc/system-release

+ Provides:       /etc/%{name}

+ 

+ %description

+ A dummy release-client package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.0.0-1

+ - First release

@@ -0,0 +1,38 @@ 

+ Name:           dummy-release-notes-cs-CZ

+ Version:        1.2

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy release-notes-cs-CZ package

+ 

+ BuildArch:      noarch

+ 

+ %description

+ A dummy release-notes-cs-CZ package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ mkdir -p $RPM_BUILD_ROOT/usr/share/doc/%{name}/

+ touch $RPM_BUILD_ROOT/usr/share/doc/%{name}/index.html

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %doc /usr/share/doc/%{name}/index.html

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.2-1

+ - First release

@@ -0,0 +1,38 @@ 

+ Name:           dummy-release-notes-en-US

+ Version:        1.2

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy release-notes-en-US package

+ 

+ BuildArch:      noarch

+ 

+ %description

+ A dummy release-notes-en-US package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ mkdir -p $RPM_BUILD_ROOT/usr/share/doc/%{name}/

+ touch $RPM_BUILD_ROOT/usr/share/doc/%{name}/index.html

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %doc /usr/share/doc/%{name}/index.html

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.2-1

+ - First release

@@ -0,0 +1,35 @@ 

+ Name:           dummy-release-notes

+ Version:        1.2

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy release-notes package

+ 

+ BuildArch:      noarch

+ 

+ %description

+ A dummy release-notes package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.2-1

+ - First release

@@ -0,0 +1,41 @@ 

+ Name:           dummy-release-server

+ Version:        1.0.0

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy release-server package

+ Provides:       system-release

+ Provides:       /etc/system-release

+ Provides:       /etc/%{name}

+ 

+ %description

+ A dummy release-server package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ mkdir -p $RPM_BUILD_ROOT/usr/share/doc/dummy-relese-server/

+ touch $RPM_BUILD_ROOT/usr/share/doc/dummy-relese-server/EULA

+ touch $RPM_BUILD_ROOT/usr/share/doc/dummy-relese-server/EULA_cs

+ touch $RPM_BUILD_ROOT/usr/share/doc/dummy-relese-server/EULA_de

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ /usr/share/doc/dummy-relese-server/EULA

+ /usr/share/doc/dummy-relese-server/EULA_cs

+ /usr/share/doc/dummy-relese-server/EULA_de

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.0.0-1

+ - First release

@@ -0,0 +1,48 @@ 

+ Name:           dummy-resource-agents

+ Version:        3.9.5

+ Release:        8

+ License:        LGPLv2

+ Summary:        A dummy resource-agents package

+ 

+ %description

+ A dummy resource-agents package

+ 

+ %package -n dummy-glusterfs-resource-agents

+ Summary:        A dummy glusterfs-resource-agents package

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description -n dummy-glusterfs-resource-agents

+ A dummy glusterfs-resource-agents package

+ 

+ %package debuginfo

+ Summary:        A dummy resource-agents-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy resource-agents-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ %files

+ %files -n dummy-glusterfs-resource-agents

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 3.9.5-8

+ - First release

@@ -0,0 +1,68 @@ 

+ Name:           dummy-selinux-policy

+ Version:        3.10.0

+ Release:        121

+ License:        LGPLv2

+ Summary:        A dummy selinux-policy package

+ BuildArch:      noarch

+ 

+ %description

+ A dummy selinux-policy package

+ 

+ %package targeted

+ Summary:        A dummy selinux-policy-targeted package

+ Provides:       dummy-selinux-policy-base

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description targeted

+ A dummy selinux-policy-targeted package

+ 

+ %package mls

+ Summary:        A dummy selinux-policy-mls package

+ Provides:       dummy-selinux-policy-base

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description mls

+ A dummy selinux-policy-mls package

+ 

+ %package minimal

+ Summary:        A dummy selinux-policy-minimal package

+ Provides:       dummy-selinux-policy-base

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description minimal

+ A dummy selinux-policy-minimal package

+ 

+ %package doc

+ Summary:        A dummy selinux-policy-doc package

+ Requires:       %{name} = %{version}-%{release}

+ 

+ %description doc

+ A dummy selinux-policy-doc package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files targeted

+ %files mls

+ %files minimal

+ %files doc

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 3.10.0-121

+ - First release

@@ -0,0 +1,45 @@ 

+ Name:           dummy-sendmail

+ Version:        8.14.5

+ Release:        12

+ License:        LGPLv2

+ Summary:        A dummy sendmail package

+ Requires:       dummy-glibc

+ Provides:       MTA

+ Provides:       server(smtp)

+ Provides:       smtpdaemon

+ 

+ %description

+ A dummy sendmail package

+ 

+ %package debuginfo

+ Summary:        A dummy sendmail-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy sendmail-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 8.14.5-12

+ - First release

@@ -0,0 +1,40 @@ 

+ Name:           dummy-skype

+ Version:        4.2.0.13

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy skype package

+ ExclusiveArch:  i586

+ 

+ %if %__isa_bits == 32

+ Requires:       libc.so.6()

+ %else

+ Requires:       libc.so.6()(64bit)

+ %endif

+ 

+ %description

+ A dummy skype package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 4.2.0.13-1

+ - First release

@@ -0,0 +1,42 @@ 

+ Name:           dummy-tftp

+ Version:        5.2

+ Release:        6

+ License:        LGPLv2

+ Summary:        A dummy tftp package

+ Requires:       dummy-glibc

+ 

+ %description

+ A dummy tftp package

+ 

+ %package debuginfo

+ Summary:        A dummy tftp-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy tftp-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 5.2-6

+ - First release

@@ -0,0 +1,43 @@ 

+ Name:           dummy-vacation

+ Version:        1.2.7.1

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy vacation package

+ Requires:       dummy-glibc

+ Requires:       smtpdaemon

+ 

+ %description

+ A dummy vacation package

+ 

+ %package debuginfo

+ Summary:        A dummy vacation-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy vacation-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 1.2.7.1-1

+ - First release

@@ -0,0 +1,42 @@ 

+ Name:           dummy-xulrunner

+ Version:        16.0.1

+ Release:        1

+ License:        LGPLv2

+ Summary:        A dummy xulrunner package

+ Requires:       dummy-glibc

+ 

+ %description

+ A dummy xulrunner package

+ 

+ %package debuginfo

+ Summary:        A dummy xulrunner-debuginfo package

+ Group:          Development/Debug

+ 

+ %description debuginfo

+ A dummy xulrunner-debuginfo package

+ 

+ 

+ #%prep

+ #%setup -q

+ 

+ 

+ %build

+ echo OK

+ 

+ 

+ %install

+ rm -rf $RPM_BUILD_ROOT

+ mkdir $RPM_BUILD_ROOT

+ 

+ 

+ %clean

+ rm -rf $RPM_BUILD_ROOT

+ 

+ 

+ %files

+ %files debuginfo

+ 

+ 

+ %changelog

+ * Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 16.0.1-1

+ - First release

@@ -0,0 +1,12 @@ 

+ #!/bin/sh

+ 

+ export PYTHONPATH=$(pwd)/pmd:$(pwd)/../../

+ export PATH=$(pwd)/../../bin:$PATH

+ 

+ mkdir -p _composes

+ 

+ pungi-koji \

+ --target-dir=_composes \

+ --old-composes=_composes \

+ --config=dummy-pungi.conf \

+ --test

no initial comment
Metadata
Changes Summary 491
+13 -5
file changed
pungi/gather.py
+162
file added
tests/data/dummy-comps.xml
+139
file added
tests/data/dummy-pungi.conf
+70
file added
tests/data/dummy-variants.xml
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-1.10-5.i686.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-1.10-5.ppc.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-1.10-5.ppc64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-1.10-5.s390.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-1.10-5.s390x.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-1.10-5.src.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-1.10-5.x86_64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-debuginfo-1.10-5.i686.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-debuginfo-1.10-5.ppc.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-debuginfo-1.10-5.ppc64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-debuginfo-1.10-5.s390.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-debuginfo-1.10-5.s390x.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-debuginfo-1.10-5.x86_64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-devel-1.10-5.i686.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-devel-1.10-5.ppc.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-devel-1.10-5.ppc64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-devel-1.10-5.s390.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-devel-1.10-5.s390x.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-devel-1.10-5.x86_64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-libs-1.10-5.i686.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-libs-1.10-5.ppc.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-libs-1.10-5.ppc64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-libs-1.10-5.s390.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-libs-1.10-5.s390x.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-libs-1.10-5.x86_64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-workstation-1.10-5.i686.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-workstation-1.10-5.ppc.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-workstation-1.10-5.ppc64.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-workstation-1.10-5.s390.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-workstation-1.10-5.s390x.rpm
+0
file added
tests/data/repo-krb5-lookaside/dummy-krb5-workstation-1.10-5.x86_64.rpm
+0
file added
tests/data/repo-krb5-lookaside/repodata/235e7a604cf1b16c29914586a8f04a56ea893d8b47ed959c6f3f2adc3b5964a6-primary.sqlite.bz2
+0
file added
tests/data/repo-krb5-lookaside/repodata/3ee1c3fafb9178ef21bd71ed7e5294100b3a6fbe9b81609ab99d4ecc783375b0-primary.xml.gz
+0
file added
tests/data/repo-krb5-lookaside/repodata/6dc9204acd47b7416fbc49af6ee2076f93dbde635d1183024a568e8572b283d3-other.xml.gz
+0
file added
tests/data/repo-krb5-lookaside/repodata/b309bb1a898ee99a7f53b0302605494b2eb7cb1f234794bdd692846774c5bff5-other.sqlite.bz2
+0
file added
tests/data/repo-krb5-lookaside/repodata/bc8b8f4456854e72d2ba482d0e6741808c7a424bb916b795fef9453beaa60673-filelists.sqlite.bz2
+0
file added
tests/data/repo-krb5-lookaside/repodata/f5ad16adc2c0563296d800b5d39a40b25d8d9140baff7f3f3da2f78d2cc1ea4e-filelists.xml.gz
+55
file added
tests/data/repo-krb5-lookaside/repodata/repomd.xml
+0
file added
tests/data/repo/i486/dummy-AdobeReader_enu-9.5.1-1.i486.rpm
+0
file added
tests/data/repo/i586/dummy-skype-4.2.0.13-1.i586.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-3dnow-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-3dnow-devel-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-devel-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-sse-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-sse-devel-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-sse2-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-sse2-devel-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-sse3-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-atlas-sse3-devel-3.8.4-7.i686.rpm
+0
file added
tests/data/repo/i686/dummy-bash-4.2.37-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-bash-4.2.37-6.i686.rpm
+0
file added
tests/data/repo/i686/dummy-bash-debuginfo-4.2.37-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-bash-debuginfo-4.2.37-6.i686.rpm
+0
file added
tests/data/repo/i686/dummy-elinks-2.6-2.i686.rpm
+0
file added
tests/data/repo/i686/dummy-elinks-debuginfo-2.6-2.i686.rpm
+0
file added
tests/data/repo/i686/dummy-filesystem-4.2.37-6.i686.rpm
+0
file added
tests/data/repo/i686/dummy-firefox-16.0.1-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-firefox-debuginfo-16.0.1-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-foo32-1-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-freeipa-2.2.0-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-freeipa-server-2.2.0-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-gfs2-utils-3.1.4-3.i686.rpm
+0
file added
tests/data/repo/i686/dummy-gfs2-utils-debuginfo-3.1.4-3.i686.rpm
+0
file added
tests/data/repo/i686/dummy-glibc-2.14-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-glibc-common-2.14-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-glibc-debuginfo-2.14-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-glibc-debuginfo-common-2.14-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-glusterfs-resource-agents-3.9.5-8.i686.rpm
+0
file added
tests/data/repo/i686/dummy-httpd-2.2.21-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-httpd-debuginfo-2.2.21-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-imsettings-1.2.9-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-imsettings-gnome-1.2.9-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-imsettings-qt-1.2.9-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-ipw3945-kmod-debuginfo-1.2.0-4.20.i686.rpm
+0
file added
tests/data/repo/i686/dummy-kernel-3.1.0-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-kernel-headers-3.1.0-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-kmod-ipw3945-1.2.0-4.20.i686.rpm
+0
file added
tests/data/repo/i686/dummy-kmod-ipw3945-xen-1.2.0-4.20.i686.rpm
+0
file added
tests/data/repo/i686/dummy-krb5-1.10-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-krb5-debuginfo-1.10-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-krb5-devel-1.10-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-krb5-libs-1.10-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-krb5-workstation-1.10-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-lvm2-2.02.84-4.i686.rpm
+0
file added
tests/data/repo/i686/dummy-lvm2-cluster-2.02.84-4.i686.rpm
+0
file added
tests/data/repo/i686/dummy-lvm2-debuginfo-2.02.84-4.i686.rpm
+0
file added
tests/data/repo/i686/dummy-lvm2-devel-2.02.84-4.i686.rpm
+0
file added
tests/data/repo/i686/dummy-lvm2-libs-2.02.84-4.i686.rpm
+0
file added
tests/data/repo/i686/dummy-nscd-2.14-5.i686.rpm
+0
file added
tests/data/repo/i686/dummy-postfix-2.9.2-2.i686.rpm
+0
file added
tests/data/repo/i686/dummy-postfix-debuginfo-2.9.2-2.i686.rpm
+0
file added
tests/data/repo/i686/dummy-release-client-1.0.0-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-release-client-workstation-1.0.0-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-release-server-1.0.0-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-resource-agents-3.9.5-8.i686.rpm
+0
file added
tests/data/repo/i686/dummy-resource-agents-debuginfo-3.9.5-8.i686.rpm
+0
file added
tests/data/repo/i686/dummy-sendmail-8.14.5-12.i686.rpm
+0
file added
tests/data/repo/i686/dummy-sendmail-debuginfo-8.14.5-12.i686.rpm
+0
file added
tests/data/repo/i686/dummy-tftp-5.2-6.i686.rpm
+0
file added
tests/data/repo/i686/dummy-tftp-debuginfo-5.2-6.i686.rpm
+0
file added
tests/data/repo/i686/dummy-vacation-1.2.7.1-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-vacation-debuginfo-1.2.7.1-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-xulrunner-16.0.1-1.i686.rpm
+0
file added
tests/data/repo/i686/dummy-xulrunner-debuginfo-16.0.1-1.i686.rpm
+0
file added
tests/data/repo/noarch/dummy-basesystem-10.0-6.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-bash-doc-4.2.37-5.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-bash-doc-4.2.37-6.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-fcoe-target-utils-2.0-5.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-foo32-doc-1-1.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-kernel-doc-3.1.0-1.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-release-notes-1.2-1.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-release-notes-cs-CZ-1.2-1.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-release-notes-en-US-1.2-1.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-selinux-policy-doc-3.10.0-121.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-selinux-policy-minimal-3.10.0-121.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-selinux-policy-mls-3.10.0-121.noarch.rpm
+0
file added
tests/data/repo/noarch/dummy-selinux-policy-targeted-3.10.0-121.noarch.rpm
+0
file added
tests/data/repo/ppc/dummy-atlas-3.8.4-7.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-atlas-devel-3.8.4-7.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-bash-4.2.37-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-bash-4.2.37-6.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-bash-debuginfo-4.2.37-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-bash-debuginfo-4.2.37-6.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-elinks-2.6-2.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-elinks-debuginfo-2.6-2.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-filesystem-4.2.37-6.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-firefox-16.0.1-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-firefox-debuginfo-16.0.1-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-foo32-1-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-freeipa-2.2.0-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-freeipa-server-2.2.0-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-gfs2-utils-3.1.4-3.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-gfs2-utils-debuginfo-3.1.4-3.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-glibc-2.14-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-glibc-common-2.14-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-glibc-debuginfo-2.14-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-glibc-debuginfo-common-2.14-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-glusterfs-resource-agents-3.9.5-8.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-httpd-2.2.21-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-httpd-debuginfo-2.2.21-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-imsettings-1.2.9-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-imsettings-gnome-1.2.9-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-imsettings-qt-1.2.9-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-ipw3945-kmod-debuginfo-1.2.0-4.20.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-kernel-3.1.0-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-kernel-headers-3.1.0-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-kmod-ipw3945-1.2.0-4.20.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-kmod-ipw3945-xen-1.2.0-4.20.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-krb5-1.10-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-krb5-debuginfo-1.10-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-krb5-devel-1.10-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-krb5-libs-1.10-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-krb5-workstation-1.10-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-lvm2-2.02.84-4.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-lvm2-cluster-2.02.84-4.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-lvm2-debuginfo-2.02.84-4.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-lvm2-devel-2.02.84-4.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-lvm2-libs-2.02.84-4.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-nscd-2.14-5.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-postfix-2.9.2-2.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-postfix-debuginfo-2.9.2-2.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-release-client-1.0.0-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-release-client-workstation-1.0.0-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-release-server-1.0.0-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-resource-agents-3.9.5-8.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-resource-agents-debuginfo-3.9.5-8.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-sendmail-8.14.5-12.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-sendmail-debuginfo-8.14.5-12.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-tftp-5.2-6.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-tftp-debuginfo-5.2-6.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-vacation-1.2.7.1-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-vacation-debuginfo-1.2.7.1-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-xulrunner-16.0.1-1.ppc.rpm
+0
file added
tests/data/repo/ppc/dummy-xulrunner-debuginfo-16.0.1-1.ppc.rpm
+0
file added
tests/data/repo/ppc64/dummy-atlas-3.8.4-7.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-atlas-devel-3.8.4-7.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-bash-4.2.37-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-bash-4.2.37-6.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-bash-debuginfo-4.2.37-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-bash-debuginfo-4.2.37-6.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-elinks-2.6-2.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-elinks-debuginfo-2.6-2.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-filesystem-4.2.37-6.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-firefox-16.0.1-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-firefox-debuginfo-16.0.1-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-freeipa-2.2.0-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-freeipa-server-2.2.0-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-gfs2-utils-3.1.4-3.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-gfs2-utils-debuginfo-3.1.4-3.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-glibc-2.14-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-glibc-common-2.14-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-glibc-debuginfo-2.14-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-glibc-debuginfo-common-2.14-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-glusterfs-resource-agents-3.9.5-8.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-httpd-2.2.21-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-httpd-debuginfo-2.2.21-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-imsettings-1.2.9-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-imsettings-gnome-1.2.9-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-imsettings-qt-1.2.9-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-ipw3945-kmod-debuginfo-1.2.0-4.20.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-kernel-3.1.0-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-kernel-headers-3.1.0-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-kmod-ipw3945-1.2.0-4.20.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-kmod-ipw3945-xen-1.2.0-4.20.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-krb5-1.10-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-krb5-debuginfo-1.10-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-krb5-devel-1.10-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-krb5-libs-1.10-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-krb5-workstation-1.10-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-lvm2-2.02.84-4.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-lvm2-cluster-2.02.84-4.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-lvm2-debuginfo-2.02.84-4.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-lvm2-devel-2.02.84-4.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-lvm2-libs-2.02.84-4.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-nscd-2.14-5.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-postfix-2.9.2-2.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-postfix-debuginfo-2.9.2-2.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-release-client-1.0.0-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-release-client-workstation-1.0.0-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-release-server-1.0.0-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-resource-agents-3.9.5-8.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-resource-agents-debuginfo-3.9.5-8.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-sendmail-8.14.5-12.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-sendmail-debuginfo-8.14.5-12.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-tftp-5.2-6.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-tftp-debuginfo-5.2-6.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-vacation-1.2.7.1-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-vacation-debuginfo-1.2.7.1-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-xulrunner-16.0.1-1.ppc64.rpm
+0
file added
tests/data/repo/ppc64/dummy-xulrunner-debuginfo-16.0.1-1.ppc64.rpm
+0
file added
tests/data/repo/repodata/03a1b0cee5e73aac25991ef1a53874769398b4e26429bf29d678d68d81e97f85-other.xml.gz
+0
file added
tests/data/repo/repodata/0ed1b1a6780930b0ccb1326e7b8c94dc3c23c6cb8fbca7760f247a1fc337d1d3-filelists.sqlite.bz2
+0
file added
tests/data/repo/repodata/1d6b449f32acbe47d453142a2f63869a56977f92b9274b18e990fc2dea4aaae2-other.sqlite.bz2
+162
file added
tests/data/repo/repodata/3cfd22f296e11c420e1ff9be32301a99640e1bc892d3d87f088117fc86aa0a3e-dummy-comps.xml
+0
file added
tests/data/repo/repodata/4ebe97695ad46ce149952ea06063b2d5b7fd93d18d7268db98ae8024bb69f31c-primary.xml.gz
+0
file added
tests/data/repo/repodata/553f3beb9ed9d76030a9aa2f12966524ee5382075532f40a2ab8786d9405315f-dummy-comps.xml.gz
+0
file added
tests/data/repo/repodata/acf12a179c5f98b08e85279e8dc5cd700c44718669c0f90a9c479421b2302574-filelists.xml.gz
+0
file added
tests/data/repo/repodata/b0540346bfe61954819adc7b9ac1e7f8beb39d8b9b9fd4f3abbe1740126dcb80-primary.sqlite.bz2
+69
file added
tests/data/repo/repodata/repomd.xml
+0
file added
tests/data/repo/s390/dummy-atlas-3.8.4-7.s390.rpm
+0
file added
tests/data/repo/s390/dummy-atlas-devel-3.8.4-7.s390.rpm
+0
file added
tests/data/repo/s390/dummy-atlas-z10-3.8.4-7.s390.rpm
+0
file added
tests/data/repo/s390/dummy-atlas-z10-devel-3.8.4-7.s390.rpm
+0
file added
tests/data/repo/s390/dummy-atlas-z196-3.8.4-7.s390.rpm
+0
file added
tests/data/repo/s390/dummy-atlas-z196-devel-3.8.4-7.s390.rpm
+0
file added
tests/data/repo/s390/dummy-bash-4.2.37-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-bash-4.2.37-6.s390.rpm
+0
file added
tests/data/repo/s390/dummy-bash-debuginfo-4.2.37-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-bash-debuginfo-4.2.37-6.s390.rpm
+0
file added
tests/data/repo/s390/dummy-elinks-2.6-2.s390.rpm
+0
file added
tests/data/repo/s390/dummy-elinks-debuginfo-2.6-2.s390.rpm
+0
file added
tests/data/repo/s390/dummy-filesystem-4.2.37-6.s390.rpm
+0
file added
tests/data/repo/s390/dummy-firefox-16.0.1-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-firefox-debuginfo-16.0.1-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-foo32-1-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-freeipa-2.2.0-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-freeipa-server-2.2.0-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-gfs2-utils-3.1.4-3.s390.rpm
+0
file added
tests/data/repo/s390/dummy-gfs2-utils-debuginfo-3.1.4-3.s390.rpm
+0
file added
tests/data/repo/s390/dummy-glibc-2.14-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-glibc-common-2.14-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-glibc-debuginfo-2.14-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-glibc-debuginfo-common-2.14-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-glusterfs-resource-agents-3.9.5-8.s390.rpm
+0
file added
tests/data/repo/s390/dummy-httpd-2.2.21-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-httpd-debuginfo-2.2.21-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-imsettings-1.2.9-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-imsettings-gnome-1.2.9-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-imsettings-qt-1.2.9-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-ipw3945-kmod-debuginfo-1.2.0-4.20.s390.rpm
+0
file added
tests/data/repo/s390/dummy-kernel-3.1.0-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-kernel-headers-3.1.0-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-kmod-ipw3945-1.2.0-4.20.s390.rpm
+0
file added
tests/data/repo/s390/dummy-kmod-ipw3945-xen-1.2.0-4.20.s390.rpm
+0
file added
tests/data/repo/s390/dummy-krb5-1.10-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-krb5-debuginfo-1.10-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-krb5-devel-1.10-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-krb5-libs-1.10-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-krb5-workstation-1.10-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-lvm2-2.02.84-4.s390.rpm
+0
file added
tests/data/repo/s390/dummy-lvm2-cluster-2.02.84-4.s390.rpm
+0
file added
tests/data/repo/s390/dummy-lvm2-debuginfo-2.02.84-4.s390.rpm
+0
file added
tests/data/repo/s390/dummy-lvm2-devel-2.02.84-4.s390.rpm
+0
file added
tests/data/repo/s390/dummy-lvm2-libs-2.02.84-4.s390.rpm
+0
file added
tests/data/repo/s390/dummy-nscd-2.14-5.s390.rpm
+0
file added
tests/data/repo/s390/dummy-postfix-2.9.2-2.s390.rpm
+0
file added
tests/data/repo/s390/dummy-postfix-debuginfo-2.9.2-2.s390.rpm
+0
file added
tests/data/repo/s390/dummy-release-client-1.0.0-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-release-client-workstation-1.0.0-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-release-server-1.0.0-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-resource-agents-3.9.5-8.s390.rpm
+0
file added
tests/data/repo/s390/dummy-resource-agents-debuginfo-3.9.5-8.s390.rpm
+0
file added
tests/data/repo/s390/dummy-sendmail-8.14.5-12.s390.rpm
+0
file added
tests/data/repo/s390/dummy-sendmail-debuginfo-8.14.5-12.s390.rpm
+0
file added
tests/data/repo/s390/dummy-tftp-5.2-6.s390.rpm
+0
file added
tests/data/repo/s390/dummy-tftp-debuginfo-5.2-6.s390.rpm
+0
file added
tests/data/repo/s390/dummy-vacation-1.2.7.1-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-vacation-debuginfo-1.2.7.1-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-xulrunner-16.0.1-1.s390.rpm
+0
file added
tests/data/repo/s390/dummy-xulrunner-debuginfo-16.0.1-1.s390.rpm
+0
file added
tests/data/repo/s390x/dummy-atlas-3.8.4-7.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-atlas-devel-3.8.4-7.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-atlas-z10-3.8.4-7.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-atlas-z10-devel-3.8.4-7.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-atlas-z196-3.8.4-7.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-atlas-z196-devel-3.8.4-7.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-bash-4.2.37-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-bash-4.2.37-6.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-bash-debuginfo-4.2.37-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-bash-debuginfo-4.2.37-6.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-elinks-2.6-2.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-elinks-debuginfo-2.6-2.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-filesystem-4.2.37-6.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-firefox-16.0.1-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-firefox-debuginfo-16.0.1-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-freeipa-2.2.0-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-freeipa-server-2.2.0-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-gfs2-utils-3.1.4-3.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-gfs2-utils-debuginfo-3.1.4-3.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-glibc-2.14-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-glibc-common-2.14-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-glibc-debuginfo-2.14-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-glibc-debuginfo-common-2.14-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-glusterfs-resource-agents-3.9.5-8.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-httpd-2.2.21-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-httpd-debuginfo-2.2.21-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-imsettings-1.2.9-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-imsettings-gnome-1.2.9-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-imsettings-qt-1.2.9-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-ipw3945-kmod-debuginfo-1.2.0-4.20.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-kernel-3.1.0-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-kernel-headers-3.1.0-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-kmod-ipw3945-1.2.0-4.20.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-kmod-ipw3945-xen-1.2.0-4.20.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-krb5-1.10-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-krb5-debuginfo-1.10-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-krb5-devel-1.10-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-krb5-libs-1.10-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-krb5-workstation-1.10-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-lvm2-2.02.84-4.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-lvm2-cluster-2.02.84-4.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-lvm2-debuginfo-2.02.84-4.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-lvm2-devel-2.02.84-4.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-lvm2-libs-2.02.84-4.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-nscd-2.14-5.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-postfix-2.9.2-2.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-postfix-debuginfo-2.9.2-2.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-release-client-1.0.0-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-release-client-workstation-1.0.0-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-release-server-1.0.0-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-resource-agents-3.9.5-8.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-resource-agents-debuginfo-3.9.5-8.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-sendmail-8.14.5-12.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-sendmail-debuginfo-8.14.5-12.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-tftp-5.2-6.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-tftp-debuginfo-5.2-6.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-vacation-1.2.7.1-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-vacation-debuginfo-1.2.7.1-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-xulrunner-16.0.1-1.s390x.rpm
+0
file added
tests/data/repo/s390x/dummy-xulrunner-debuginfo-16.0.1-1.s390x.rpm
+0
file added
tests/data/repo/src/dummy-AdobeReader_enu-9.5.1-1.nosrc.rpm
+0
file added
tests/data/repo/src/dummy-atlas-3.8.4-7.src.rpm
+0
file added
tests/data/repo/src/dummy-basesystem-10.0-6.src.rpm
+0
file added
tests/data/repo/src/dummy-bash-4.2.37-5.src.rpm
+0
file added
tests/data/repo/src/dummy-bash-4.2.37-6.src.rpm
+0
file added
tests/data/repo/src/dummy-elinks-2.6-2.src.rpm
+0
file added
tests/data/repo/src/dummy-fcoe-target-utils-2.0-5.src.rpm
+0
file added
tests/data/repo/src/dummy-filesystem-4.2.37-6.src.rpm
+0
file added
tests/data/repo/src/dummy-firefox-16.0.1-1.src.rpm
+0
file added
tests/data/repo/src/dummy-foo32-1-1.src.rpm
+0
file added
tests/data/repo/src/dummy-freeipa-2.2.0-1.src.rpm
+0
file added
tests/data/repo/src/dummy-gfs2-utils-3.1.4-3.src.rpm
+0
file added
tests/data/repo/src/dummy-glibc-2.14-5.src.rpm
+0
file added
tests/data/repo/src/dummy-httpd-2.2.21-1.src.rpm
+0
file added
tests/data/repo/src/dummy-imsettings-1.2.9-1.src.rpm
+0
file added
tests/data/repo/src/dummy-ipw3945-kmod-1.2.0-4.20.src.rpm
+0
file added
tests/data/repo/src/dummy-kernel-3.1.0-1.src.rpm
+0
file added
tests/data/repo/src/dummy-krb5-1.10-5.src.rpm
+0
file added
tests/data/repo/src/dummy-lvm2-2.02.84-4.src.rpm
+0
file added
tests/data/repo/src/dummy-postfix-2.9.2-2.src.rpm
+0
file added
tests/data/repo/src/dummy-release-client-1.0.0-1.src.rpm
+0
file added
tests/data/repo/src/dummy-release-client-workstation-1.0.0-1.src.rpm
+0
file added
tests/data/repo/src/dummy-release-notes-1.2-1.src.rpm
+0
file added
tests/data/repo/src/dummy-release-notes-cs-CZ-1.2-1.src.rpm
+0
file added
tests/data/repo/src/dummy-release-notes-en-US-1.2-1.src.rpm
+0
file added
tests/data/repo/src/dummy-release-server-1.0.0-1.src.rpm
+0
file added
tests/data/repo/src/dummy-resource-agents-3.9.5-8.src.rpm
+0
file added
tests/data/repo/src/dummy-selinux-policy-3.10.0-121.src.rpm
+0
file added
tests/data/repo/src/dummy-sendmail-8.14.5-12.src.rpm
+0
file added
tests/data/repo/src/dummy-tftp-5.2-6.src.rpm
+0
file added
tests/data/repo/src/dummy-vacation-1.2.7.1-1.src.rpm
+0
file added
tests/data/repo/src/dummy-xulrunner-16.0.1-1.src.rpm
+0
file added
tests/data/repo/x86_64/dummy-atlas-3.8.4-7.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-atlas-devel-3.8.4-7.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-atlas-sse3-3.8.4-7.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-atlas-sse3-devel-3.8.4-7.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-bash-4.2.37-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-bash-4.2.37-6.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-bash-debuginfo-4.2.37-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-bash-debuginfo-4.2.37-6.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-elinks-2.6-2.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-elinks-debuginfo-2.6-2.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-filesystem-4.2.37-6.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-firefox-16.0.1-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-firefox-debuginfo-16.0.1-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-freeipa-2.2.0-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-freeipa-server-2.2.0-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-gfs2-utils-3.1.4-3.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-gfs2-utils-debuginfo-3.1.4-3.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-glibc-2.14-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-glibc-common-2.14-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-glibc-debuginfo-2.14-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-glibc-debuginfo-common-2.14-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-glusterfs-resource-agents-3.9.5-8.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-httpd-2.2.21-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-httpd-debuginfo-2.2.21-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-imsettings-1.2.9-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-imsettings-gnome-1.2.9-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-imsettings-qt-1.2.9-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-ipw3945-kmod-debuginfo-1.2.0-4.20.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-kernel-3.1.0-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-kernel-headers-3.1.0-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-kmod-ipw3945-1.2.0-4.20.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-kmod-ipw3945-xen-1.2.0-4.20.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-krb5-1.10-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-krb5-debuginfo-1.10-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-krb5-devel-1.10-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-krb5-libs-1.10-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-krb5-workstation-1.10-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-lvm2-2.02.84-4.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-lvm2-cluster-2.02.84-4.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-lvm2-debuginfo-2.02.84-4.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-lvm2-devel-2.02.84-4.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-lvm2-libs-2.02.84-4.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-nscd-2.14-5.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-postfix-2.9.2-2.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-postfix-debuginfo-2.9.2-2.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-release-client-1.0.0-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-release-client-workstation-1.0.0-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-release-server-1.0.0-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-resource-agents-3.9.5-8.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-resource-agents-debuginfo-3.9.5-8.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-sendmail-8.14.5-12.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-sendmail-debuginfo-8.14.5-12.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-tftp-5.2-6.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-tftp-debuginfo-5.2-6.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-vacation-1.2.7.1-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-vacation-debuginfo-1.2.7.1-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-xulrunner-16.0.1-1.x86_64.rpm
+0
file added
tests/data/repo/x86_64/dummy-xulrunner-debuginfo-16.0.1-1.x86_64.rpm
+64
file added
tests/data/specs/build.sh
+0
file added
tests/data/specs/dummy-AdobeReader_enu-9.5.1.tar.gz
+37
file added
tests/data/specs/dummy-AdobeReader_enu.spec
+187
file added
tests/data/specs/dummy-atlas.spec
+36
file added
tests/data/specs/dummy-basesystem.spec
+51
file added
tests/data/specs/dummy-bash-4.2.37-5.spec
+57
file added
tests/data/specs/dummy-bash.spec
+42
file added
tests/data/specs/dummy-elinks.spec
+36
file added
tests/data/specs/dummy-fcoe-target-utils.spec
+34
file added
tests/data/specs/dummy-filesystem.spec
+44
file added
tests/data/specs/dummy-firefox.spec
+42
file added
tests/data/specs/dummy-foo32.spec
+41
file added
tests/data/specs/dummy-freeipa.spec
+43
file added
tests/data/specs/dummy-gfs2-utils.spec
+78
file added
tests/data/specs/dummy-glibc.spec
+42
file added
tests/data/specs/dummy-httpd.spec
+50
file added
tests/data/specs/dummy-imsettings.spec
+54
file added
tests/data/specs/dummy-ipw3945-kmod.spec
+48
file added
tests/data/specs/dummy-kernel.spec
+67
file added
tests/data/specs/dummy-krb5.spec
+66
file added
tests/data/specs/dummy-lvm2.spec
+45
file added
tests/data/specs/dummy-postfix.spec
+36
file added
tests/data/specs/dummy-release-client-workstation.spec
+36
file added
tests/data/specs/dummy-release-client.spec
+38
file added
tests/data/specs/dummy-release-notes-cs-CZ.spec
+38
file added
tests/data/specs/dummy-release-notes-en-US.spec
+35
file added
tests/data/specs/dummy-release-notes.spec
+41
file added
tests/data/specs/dummy-release-server.spec
+48
file added
tests/data/specs/dummy-resource-agents.spec
+68
file added
tests/data/specs/dummy-selinux-policy.spec
+45
file added
tests/data/specs/dummy-sendmail.spec
+40
file added
tests/data/specs/dummy-skype.spec
+42
file added
tests/data/specs/dummy-tftp.spec
+43
file added
tests/data/specs/dummy-vacation.spec
+42
file added
tests/data/specs/dummy-xulrunner.spec
+12
file added
tests/data/test-compose.sh