Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
c0b95d1a
Commit
c0b95d1a
authored
6 months ago
by
Will Sinatra
Committed by
Patrycja Rosa
6 months ago
Browse files
Options
Downloads
Patches
Plain Diff
community/janet: upgrade to 1.36.0
parent
2e83d9e4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!71648
community/janet: upgrade to 1.36.0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/janet/APKBUILD
+3
-5
3 additions, 5 deletions
community/janet/APKBUILD
community/janet/musl-strerror.patch
+0
-11
0 additions, 11 deletions
community/janet/musl-strerror.patch
with
3 additions
and
16 deletions
community/janet/APKBUILD
+
3
−
5
View file @
c0b95d1a
# Contributor: Will Sinatra <wpsinatra@gmail.com>
# Maintainer: Will Sinatra <wpsinatra@gmail.com>
pkgname
=
janet
pkgver
=
1.3
5.2
pkgver
=
1.3
6.0
pkgrel
=
0
pkgdesc
=
"Dynamic Lisp dialect and bytecode VM"
url
=
"https://janet-lang.org/"
...
...
@@ -9,8 +9,7 @@ license="MIT"
arch
=
"all"
makedepends
=
"meson"
subpackages
=
"
$pkgname
-static
$pkgname
-doc
$pkgname
-dev"
source
=
"
$pkgname
-
$pkgver
.tar.gz::https://github.com/janet-lang/janet/archive/v
$pkgver
.tar.gz
musl-strerror.patch"
source
=
"
$pkgname
-
$pkgver
.tar.gz::https://github.com/janet-lang/janet/archive/v
$pkgver
.tar.gz"
# Bump tic-80 when upgrading/rebuilding.
...
...
@@ -51,6 +50,5 @@ package() {
}
sha512sums
=
"
6a259bd3e2e88b0183d164b33991bb248f5fc1b340e4ae04184328b89477932b92f490c9a813e224a91e229865e908f59fc3f3e1a3a1dafc84685e2c16a09696 janet-1.35.2.tar.gz
21e8873b339f21c5b2fe1e4c166ffe9a6e7def18138d9c8a595ba44bf2867525d9e3e058183d15d24cfc7201128aa3c8a47dc59900d288e2018fa8665e06a969 musl-strerror.patch
1cfc24cfb949839d9aa36952e3746473a963c32344e9f05e3250671f4a6f8d244fcbb26d5faf09b296b12aacf721b5287eaf84ef8b7d8b93502e2d38093cb2b8 janet-1.36.0.tar.gz
"
This diff is collapsed.
Click to expand it.
community/janet/musl-strerror.patch
deleted
100644 → 0
+
0
−
11
View file @
2e83d9e4
--- a/src/core/util.c
+++ b/src/core/util.c
@@ -972,7 +972,7 @@
#ifdef JANET_WINDOWS
/* Microsoft strerror seems sane here and is thread safe by default */
return strerror(e);
-#elif defined(_GNU_SOURCE)
+#elif defined(__GLIBC__)
/* See https://linux.die.net/man/3/strerror_r */
return strerror_r(e, janet_vm.strerror_buf, sizeof(janet_vm.strerror_buf));
#else
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment