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,25 +1,25 @@
require 'package'
require 'buildsystems/autotools'
class Swig < Package
class Swig < Autotools
description 'Simplified Wrapper and Interface Generator'
homepage 'http://www.swig.org'
version '4.1.1'
version '4.1.1-1'
license 'GPL-3, BSD and BSD-2'
compatibility 'all'
source_url 'https://downloads.sourceforge.net/project/swig/swig/swig-4.1.1/swig-4.1.1.tar.gz'
source_sha256 '2af08aced8fcd65cdb5cc62426768914bedc735b1c250325203716f78e39ac9b'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/swig/4.1.1_armv7l/swig-4.1.1-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/swig/4.1.1_armv7l/swig-4.1.1-chromeos-armv7l.tar.zst',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/swig/4.1.1_i686/swig-4.1.1-chromeos-i686.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/swig/4.1.1_x86_64/swig-4.1.1-chromeos-x86_64.tar.zst'
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/swig/4.1.1-1_armv7l/swig-4.1.1-1-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/swig/4.1.1-1_armv7l/swig-4.1.1-1-chromeos-armv7l.tar.zst',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/swig/4.1.1-1_i686/swig-4.1.1-1-chromeos-i686.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/swig/4.1.1-1_x86_64/swig-4.1.1-1-chromeos-x86_64.tar.zst'
})
binary_sha256({
aarch64: 'b5837e879e54df39836c0ba11705c4bf9e6d0cba1a9517766a0ce65ce3b189a1',
armv7l: 'b5837e879e54df39836c0ba11705c4bf9e6d0cba1a9517766a0ce65ce3b189a1',
i686: '6cf56f60437498ef3b08ef4939680d9592a005cc75b868972af9affd8f13d842',
x86_64: '382bbf4c71d2508667b628a94f386db95cdbc0a36458dd9c83de6a28f8628975'
aarch64: 'c6bcbd9582e70c4209eedbb931dd236c030a99cd4150c0ebfac1b250a7912a5b',
armv7l: 'c6bcbd9582e70c4209eedbb931dd236c030a99cd4150c0ebfac1b250a7912a5b',
i686: '5a1c1666474182c3f3f20a8dd5fc3ff659d603cb816210488c5abfee413c8934',
x86_64: '99ebb3ed84b2a5cee79ce6fc228d64ed65249e9d96ac8d8d90c388075f3d6eda'
})
depends_on 'boost' => :build
@@ -28,13 +28,4 @@ class Swig < Package
depends_on 'pcre' => :build
depends_on 'pcre2' # R
depends_on 'zlibpkg' # R
def self.build
system "./configure #{CREW_OPTIONS}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end