Date: Friday, September 30, 2022 @ 07:34:51
Author: arojas
Revision: 1318676
upgpkg: julia 2:1.8.2-1: Update to 1.8.2
Modified:
julia/trunk/PKGBUILD
Deleted:
julia/trunk/julia-libgit-1.4.patch
------------------------+
PKGBUILD | 8 ++------
julia-libgit-1.4.patch | 40 ----------------------------------------
2 files changed, 2 insertions(+), 46 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2022-09-30 07:33:11 UTC (rev 1318675)
+++ PKGBUILD 2022-09-30 07:34:51 UTC (rev 1318676)
@@ -8,7 +8,7 @@
pkgname=julia
epoch=2
-pkgver=1.8.1
+pkgver=1.8.2
pkgrel=1
arch=(x86_64)
pkgdesc='High-level, high-performance, dynamic programming language'
@@ -23,18 +23,16 @@
ed9851b0.patch
074d761f.patch
julia-llvm-14.patch
- julia-libgit-1.4.patch
julia-libunwind-1.6.patch
julia-system-cblas.patch
julia-hardcoded-libs.patch
make-install-no-build.patch)
backup=(etc/julia/startup.jl)
-sha256sums=('31e4655f4b377e73d6f583c539d0221ed7b480a3ea091833d0005316185c5b61'
+sha256sums=('e57cfc2e6d891750a47f7cf03559a4e8f7212bf54900f26a9f12fd6d009d4ca9'
'SKIP'
'ce0de27461197ade425cacdd3a642a6b2579e27c7ecc4a457e2b1bde2d76492a'
'5d4093de84f836e16ec7f83736494e82804ab2fa37bc5594a5b99b1708dce322'
'0d9e21126820a20083e0251c61129134166cc1c7b6637fbda1d3e6ee7614cce0'
- 'adc5576281a9031c006c0977de7d3f464c2c8bc649cfc7271d0e426a5531fb5a'
'cea321f7e16381dd795ee20d7bd5eda64f9b453c01d13e960962eb2723907e24'
'65f24275edb8357ded3c53fd8a10c3d1ed13fa3d34a3869df0c04da10dba6c9d'
'929a52a5503b6d1a21774c170ece0981cb7da1c1e7a5b7a2892cfb1251689b55'
@@ -49,8 +47,6 @@
patch -p1 -i ../ed9851b0.patch
patch -p1 -i ../074d761f.patch
patch -p1 -i ../julia-llvm-14.patch
-# libgit2 1.4 compatibility
- patch -p1 -i ../julia-libgit-1.4.patch
# libunwind 1.6 compatibility
patch -p1 -i ../julia-libunwind-1.6.patch
# Add and use option to build with system cblas
Deleted: julia-libgit-1.4.patch
===================================================================
--- julia-libgit-1.4.patch 2022-09-30 07:33:11 UTC (rev 1318675)
+++ julia-libgit-1.4.patch 2022-09-30 07:34:51 UTC (rev 1318676)
@@ -1,40 +0,0 @@
-diff --git a/stdlib/LibGit2/src/consts.jl b/stdlib/LibGit2/src/consts.jl
-index 2bc9edaf89..55887ebe2a 100644
---- a/stdlib/LibGit2/src/consts.jl
-+++ b/stdlib/LibGit2/src/consts.jl
-@@ -247,6 +247,11 @@ const RESET_HARD = Cint(3) # MIXED plus changes in
working tree discarded
- REBASE_OPERATION_FIXUP = Cint(4),
- REBASE_OPERATION_EXEC = Cint(5))
-
-+# git_remote_redirect_t
-+const GIT_REMOTE_REDIRECT_NONE = Cint(0)
-+const GIT_REMOTE_REDIRECT_INITIAL = Cint(1)
-+const GIT_REMOTE_REDIRECT_ALL = Cint(2)
-+
- # fetch_prune
- const FETCH_PRUNE_UNSPECIFIED = Cint(0)
- const FETCH_PRUNE = Cint(1)
-diff --git a/stdlib/LibGit2/src/types.jl b/stdlib/LibGit2/src/types.jl
-index 9ffcaa3646..98d938df65 100644
---- a/stdlib/LibGit2/src/types.jl
-+++ b/stdlib/LibGit2/src/types.jl
-@@ -346,6 +346,9 @@ The fields represent:
- @static if LibGit2.VERSION >= v"0.25.0"
- proxy_opts::ProxyOptions = ProxyOptions()
- end
-+ @static if LibGit2.VERSION >= v"1.4.0"
-+ follow_redirects::Cint = Consts.GIT_REMOTE_REDIRECT_INITIAL
-+ end
- @static if LibGit2.VERSION >= v"0.24.0"
- custom_headers::StrArrayStruct = StrArrayStruct()
- end
-@@ -677,6 +680,9 @@ The fields represent:
- @static if LibGit2.VERSION >= v"0.25.0"
- proxy_opts::ProxyOptions = ProxyOptions()
- end
-+ @static if LibGit2.VERSION >= v"1.4.0"
-+ follow_redirects::Cint = Consts.GIT_REMOTE_REDIRECT_INITIAL
-+ end
- @static if LibGit2.VERSION >= v"0.24.0"
- custom_headers::StrArrayStruct = StrArrayStruct()
- end