Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_primary_xml.rb « repository_metadata « rpm « packages « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: affb41677c2958eeafa43ffd1ba112d76df4394b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true
module Packages
  module Rpm
    module RepositoryMetadata
      class BuildPrimaryXml < ::Packages::Rpm::RepositoryMetadata::BaseBuilder
        ROOT_TAG = 'metadata'
        ROOT_ATTRIBUTES = {
          xmlns: 'http://linux.duke.edu/metadata/common',
          'xmlns:rpm': 'http://linux.duke.edu/metadata/rpm',
          packages: '0'
        }.freeze
      end
    end
  end
end