Boost => 1.82, Gimp => 2.99.16 & deps (#8467)

* update gnulib_git and babl

* icu4c => 73.2

* update boost

* rebuild source_highlight

* update mold

* rebuild cppunit

* update libgpgerror

* update taglib

* update libgcrypt

* rebuild librevenge

* update gnupg, rebuild yajl, grive

* update exempi, rebuild libvisio

* update poppler

* rebuild eigen libcdr

* update gegl

* swig rebuild

* update tcpflow, ledger

* update gdb, rebuild libtorrent

* update gimp

* rebuild inkscape

* rebuild binutils with gdb fallback

* gimp rebuild
This commit is contained in:
Satadru Pramanik, DO, MPH, MEng
2023-07-11 22:08:04 -04:00
committed by GitHub
parent 6c4116a8d6
commit 9cb087928e
67 changed files with 4008 additions and 3355 deletions

View File

@@ -1,37 +1,28 @@
require 'package'
require 'buildsystems/autotools'
class Cppunit < Package
class Cppunit < Autotools
description 'CppUnit is the C++ port of the famous JUnit framework for unit testing.'
homepage 'https://www.freedesktop.org/wiki/Software/cppunit'
version '1.15.1'
version '1.15.1-1'
license 'LGPL'
compatibility 'all'
source_url 'https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz'
source_sha256 '89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/cppunit/1.15.1_armv7l/cppunit-1.15.1-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/cppunit/1.15.1_armv7l/cppunit-1.15.1-chromeos-armv7l.tar.zst',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/cppunit/1.15.1_i686/cppunit-1.15.1-chromeos-i686.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/cppunit/1.15.1_x86_64/cppunit-1.15.1-chromeos-x86_64.tar.zst'
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/cppunit/1.15.1-1_armv7l/cppunit-1.15.1-1-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/cppunit/1.15.1-1_armv7l/cppunit-1.15.1-1-chromeos-armv7l.tar.zst',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/cppunit/1.15.1-1_i686/cppunit-1.15.1-1-chromeos-i686.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/cppunit/1.15.1-1_x86_64/cppunit-1.15.1-1-chromeos-x86_64.tar.zst'
})
binary_sha256({
aarch64: 'ff33e323513beb49457df2f8fd8d5642998664a4eef9e0f1095aa5f99d79e05d',
armv7l: 'ff33e323513beb49457df2f8fd8d5642998664a4eef9e0f1095aa5f99d79e05d',
i686: '91c258a319a9bb7fc7052e4ed40b057a653125b5a4a9b17d21145d603088bf28',
x86_64: '2020d8901ded8bb1123f82ab598b77af77cd08392204a939f1d229c915c353cb'
aarch64: '34994f0771929f0990b528a73bdeba8989e609f9dec999cc8d9e08506dd91c45',
armv7l: '34994f0771929f0990b528a73bdeba8989e609f9dec999cc8d9e08506dd91c45',
i686: 'e67306e63a5e85ed48b15937ec40cd6fa462368e0a5f1d2136eba4dfb4673220',
x86_64: 'd6cab6f3a67a23be49b7760e237f74f346146d76d2fa2ab689553f285bf6cfd7'
})
depends_on 'doxygen' => ':build'
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
def self.build
system "./configure #{CREW_OPTIONS} --disable-static"
system 'make'
end
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} install"
end
end