Files
chromebrew/packages/libnxml.rb
chromebrew-actions[bot] 4bac339cef wallstreet 1.21 -> 1.25 — json_c: 0.18-a1249bfd → 0.18-52ddfb3,libmrss: 0.19.2-7 → 0.19.4-1,libnxml: 0.18.3-8 → 0.18.5-2,newsboat: 2.25 → 2.43,rsstail → 2.2,wallstreet: 1.21 → 1.25 (#15368)
* wallstreet 1.21 -> 1.25

* Add wallstreet to CREW_ANITYA_PACKAGE_NAME_MAPPINGS in lib/const.rb

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

* Add rsstail package.

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

* Fix version.rb new hash printing.

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

* json_c => 0.18-52ddfb3

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

* Adjust wallstreet deps.

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

* Add x86_64 newsboat build.

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

* Bump tools/version.rb version.

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

* Re-order wallstreet deps.

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

* Update libnxml

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

* Update libmrss

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

* Bypass newsboat checks.

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

* Mark packages from successful builds as automatically buildable.

* wallstreet: Package File Update Run on linux/386 container.

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

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

* Restore xkeyboard_config manifests from #15398

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

* Fix extra sha256 hash in libnxml.rb

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

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2026-04-06 02:28:50 +00:00

41 lines
1.5 KiB
Ruby

require 'buildsystems/autotools'
class Libnxml < Autotools
description 'libnXML is a C library for parsing, writing and creating XML 1.0 and 1.1 files or streams.'
homepage 'https://www.autistici.org/bakunin/libnxml/doc/'
version '0.18.5-2'
license 'LGPL-2.1'
compatibility 'all'
source_url "https://salsa.debian.org/debian/libnxml/-/archive/debian/#{version}/libnxml-debian-#{version}.tar.bz2"
source_sha256 'bae082f80d15488415d4e24f9938a568bb6669ee54288919ab0f9dc7be59fd77'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'b174cf6a1346eb736934021f24d068ab7786761dcbaac538c3ce4fc137bf998c',
armv7l: 'b174cf6a1346eb736934021f24d068ab7786761dcbaac538c3ce4fc137bf998c',
i686: '764abd3b20b080eab152b4d183fc59f59cf02ae50d274b28b20f1964a9da437f',
x86_64: '2a7ba31136626e9af7015c9812218b3868c37b1ac57424b6472ef3403b9cf357'
})
depends_on 'brotli' => :library
depends_on 'c_ares' => :library
depends_on 'curl' => :library
depends_on 'glibc' => :library
depends_on 'libcyrussasl' => :library
depends_on 'libidn2' => :library
depends_on 'libnghttp2' => :library
depends_on 'libnghttp3' => :library
depends_on 'libngtcp2' => :library
depends_on 'libpsl' => :library
depends_on 'libssh' => :library
depends_on 'libunistring' => :library
depends_on 'openldap' => :library
depends_on 'openssl' => :library
depends_on 'zlib' => :library
depends_on 'zstd' => :library
def self.patch
system "for i in \$(cat debian/patches/series); do patch -Np1 -i debian/patches/\"\${i}\"; done"
end
end