Files
chromebrew/packages/docbook_xml.rb
Satadru Pramanik, DO, MPH, MEng 3394408370 Escape anitya name passed via anitya search url; update gtk3 mapping, fix filelist dot files. — docbook_xml,gtk3 → 3.24.51 (#13024)
* Escape anitya name passed via anitya search url; update gtk3 mapping.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* gtk: Package File Update Run on linux/amd64 container.

* gtk: Package File Update Run on linux/arm/v7 container.

* Only let docbook_xml create directories if not in CI.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Include subdirectories of CREW_PREFIX in filelists.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust gtk3 build with fixed filelist.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* gtk: Package File Update Run on linux/arm/v7 container.

* revert url change

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
2025-10-03 19:02:56 +00:00

33 lines
889 B
Ruby

require 'package'
class Docbook_xml < Package
description 'Meta package for all versions of docbook_xml'
homepage 'http://www.docbook.org'
version '5.1-2-2'
license 'MIT'
compatibility 'all'
is_fake
unless File.exist?("#{CREW_PREFIX}/etc/env.d/docbook_xml") || ENV['CI']
FileUtils.mkdir_p "#{CREW_PREFIX}/etc/env.d/"
@env = <<~DOCBOOK_XML_EOF
# Docbook_xml configuration
XML_CATALOG_FILES=#{CREW_PREFIX}/etc/xml/catalog
DOCBOOK_XML_EOF
File.write("#{CREW_PREFIX}/etc/env.d/docbook_xml", @env)
end
depends_on 'xmlcatmgr'
depends_on 'docbook_xml412'
depends_on 'docbook_xml42'
depends_on 'docbook_xml43'
depends_on 'docbook_xml44'
depends_on 'docbook_xml45'
depends_on 'docbook_xml50'
depends_on 'docbook_xml51'
# These are probably needed at the same time too.
depends_on 'docbook_xsl'
depends_on 'docbook_xsl_nons'
end