mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt gimp to updater-gimp-3.2.0 * Adjust version. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gimp deps, add lensfun. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add gegl build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild babl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add suitesparse build, reenable vala in gimp build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gexiv2 => 0.14.6 from the stable tag. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup gimp package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add x86_64 binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add arm binaries built with GCC 14. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-gimp-3.2.0: Package File Update Run on linux/amd64 container. * updater-gimp-3.2.0: Package File Update Run on linux/arm/v7 container. * Add fallback if gitlab package id can not be identified. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Document reason for fallback. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix py3_twine, py3_cfgv Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add verbose pkg message to tools/build_updated_packages.rb Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
65 lines
1.9 KiB
Ruby
65 lines
1.9 KiB
Ruby
# Does NOT build with GCC 15.
|
|
require 'buildsystems/autotools'
|
|
|
|
class Mailutils < Autotools
|
|
description 'GNU Mailutils is the swiss army knife of electronic mail handling.'
|
|
homepage 'https://mailutils.org'
|
|
version '3.20'
|
|
license 'GPL-2 and LGPL-2.1'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://https.git.savannah.gnu.org/git/mailutils.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f9092b850262749d5c9e96592f07b62fc20299b11a2324c75a842823f2a3290c',
|
|
armv7l: 'f9092b850262749d5c9e96592f07b62fc20299b11a2324c75a842823f2a3290c',
|
|
x86_64: '6f4b18de58422568a586105c0171116c22fe332962e00fdb3b1a5c68f36473b1'
|
|
})
|
|
|
|
depends_on 'brotli' # R
|
|
depends_on 'e2fsprogs' # R
|
|
depends_on 'emacs' => :build
|
|
depends_on 'fribidi' # R
|
|
depends_on 'gdbm' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'gnutls' # R
|
|
depends_on 'krb5' # R
|
|
depends_on 'libcyrussasl' # R
|
|
depends_on 'libdb' # R
|
|
depends_on 'libidn2' # R
|
|
depends_on 'libtasn1' # R
|
|
depends_on 'libtirpc' # R
|
|
depends_on 'libtool' # R
|
|
depends_on 'libunistring' # R
|
|
depends_on 'libxcrypt' # R
|
|
depends_on 'linux_pam' # R
|
|
depends_on 'ncurses' # R
|
|
depends_on 'nettle' # R
|
|
depends_on 'openldap' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'p11kit' # R
|
|
depends_on 'perl_pod_parser' => :build
|
|
depends_on 'python3' # R
|
|
depends_on 'readline' # R
|
|
depends_on 'tcpwrappers' # R
|
|
depends_on 'wget2' => :build
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
|
|
autotools_configure_options '--enable-ipv6 \
|
|
--with-gnutls \
|
|
--with-berkeley-db \
|
|
--without-guile \
|
|
--with-gdbm \
|
|
--with-fribidi \
|
|
--with-unistring \
|
|
--with-tcp-wrappers \
|
|
--with-readline'
|
|
|
|
def self.check
|
|
system 'make check || /bin/true' # Check 471 will fail
|
|
end
|
|
end
|