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

build_other_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: 4bf61c901a3d5822d189978a58b7bbfc363d4198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true
module Packages
  module Rpm
    module RepositoryMetadata
      class BuildOtherXml < ::Packages::Rpm::RepositoryMetadata::BaseBuilder
        ROOT_TAG = 'otherdata'
        ROOT_ATTRIBUTES = {
          xmlns: 'http://linux.duke.edu/metadata/other',
          packages: '0'
        }.freeze
      end
    end
  end
end