Skip to content

Commit 537e42e

Browse files
committed
Update to v1.56.0.
1 parent 0f6de9f commit 537e42e

14 files changed

+66
-68
lines changed

editors/atom/Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PORTNAME= atom
22
DISTVERSIONPREFIX= v
3-
DISTVERSION= 1.55.0
3+
DISTVERSION= 1.56.0
44
CATEGORIES= editors
55
MASTER_SITES= https://nodejs.org/dist/v${APM_NODE_VER}/:node \
66
https://github.com/tagattie/FreeBSD-Atom/releases/download/v1.42.0/:jasmine_tagged \
@@ -40,6 +40,7 @@ LIB_DEPENDS= libatk-bridge-2.0.so:accessibility/at-spi2-atk \
4040
libre2.so:devel/re2 \
4141
liblcms2.so:graphics/lcms2 \
4242
libdrm.so:graphics/libdrm \
43+
libpng16.so:graphics/png \
4344
libwebp.so:graphics/webp \
4445
libavcodec.so:multimedia/ffmpeg \
4546
libvpx.so:multimedia/libvpx \
@@ -61,7 +62,7 @@ USES= desktop-file-utils gl gnome jpeg localbase:ldflags pkgconfig \
6162

6263
USE_GITHUB= yes
6364

64-
.include "${.CURDIR}/../../devel/electron6/Makefile.version"
65+
.include "${.CURDIR}/../../devel/electron9/Makefile.version"
6566
# See ${WRKSRC}/apm/node_modules/atom-package-manager/BUNDLED_NODE_VERSION for APM_NODE_VER
6667
APM_NODE_VER= 12.4.0
6768

@@ -207,6 +208,9 @@ do-install:
207208
${FIND} . -type f -name '*.node' -exec ${STRIP_CMD} {} ';'
208209
cd ${STAGEDIR}${DATADIR}/resources/app.asar.unpacked && \
209210
${FIND} . -type f -name '*.node' -exec ${STRIP_CMD} {} ';'
211+
# remove left-out temporary files generated by strip command
212+
cd ${STAGEDIR}${DATADIR}/resources/app.asar.unpacked && \
213+
${FIND} . -type f -name 'ecp.*' -delete
210214

211215
do-test:
212216
# Note: Xvfb or something similar is necessary for headless testing

editors/atom/distinfo

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
TIMESTAMP = 1615702840
1+
TIMESTAMP = 1619526326
22
SHA256 (node-v12.4.0.tar.gz) = cf39befb8ea486363cac6f297d8f451fd0d5dd8ad21dca51e9c2ea86b242baa0
33
SIZE (node-v12.4.0.tar.gz) = 49167965
44
SHA256 (jasmine-tagged-1.1.4.tar.gz) = 8988597858ddf9e9ba3333a19d8651691c8384117bf2e362e8a5ba193ed47585
55
SIZE (jasmine-tagged-1.1.4.tar.gz) = 3071259
6-
SHA256 (atom-npm-cache-1.55.0.tar.gz) = 001676687a7bab868e6c200fb279eb06d3494fd996a149c98eb59c31da667627
7-
SIZE (atom-npm-cache-1.55.0.tar.gz) = 50572079
8-
SHA256 (atom-apm-cache-1.55.0.tar.gz) = adfc703c9b268bffe775942ff57d6a10ff0a8c0d3956582f5f3bb601799fc820
9-
SIZE (atom-apm-cache-1.55.0.tar.gz) = 116325472
10-
SHA256 (atom-atom-v1.55.0_GH0.tar.gz) = 50f7f77decf16d51b4620976a2d1c2d4c3cd256dbaebef41d2f3eed800d9a4f5
11-
SIZE (atom-atom-v1.55.0_GH0.tar.gz) = 11995968
6+
SHA256 (atom-npm-cache-1.56.0.tar.gz) = e8d3a1ccf5323483e483aead904112d007e5bf566dafc4b19d4df7dd8b497e53
7+
SIZE (atom-npm-cache-1.56.0.tar.gz) = 50705627
8+
SHA256 (atom-apm-cache-1.56.0.tar.gz) = f58b291b95122f6c8bb39dcfa89119b9be2d61305ac8270aeea8f47e900c73f8
9+
SIZE (atom-apm-cache-1.56.0.tar.gz) = 120333955
10+
SHA256 (atom-atom-v1.56.0_GH0.tar.gz) = 6e2c401c681314333e1756235df1d4d7a4d5b79d7179073621de6bb7ddc7ee1d
11+
SIZE (atom-atom-v1.56.0_GH0.tar.gz) = 12009366

editors/atom/files/atom/patch-node__modules_github_package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
--- node_modules/github/package.json.orig 2021-02-19 11:15:39 UTC
1+
--- node_modules/github/package.json.orig 2021-04-27 12:34:26 UTC
22
+++ node_modules/github/package.json
3-
@@ -215,7 +215,6 @@
3+
@@ -216,7 +216,6 @@
44
"dedent-js": "1.0.1",
55
"electron-devtools-installer": "3.1.1",
66
"electron-link": "0.4.3",

editors/atom/files/atom/patch-node__modules_spell-check_lib_checker-env.coffee

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
--- node_modules/spell-check/lib/checker-env.js.orig 2021-04-28 06:40:37 UTC
2+
+++ node_modules/spell-check/lib/checker-env.js
3+
@@ -1,6 +1,6 @@
4+
module.exports = {
5+
isLinux() {
6+
- return /linux/.test(process.platform);
7+
+ return /(linux|freebsd)/.test(process.platform);
8+
},
9+
isWindows() {
10+
return /win32/.test(process.platform);

editors/atom/files/atom/patch-node__modules_spell-check_lib_locale-checker.coffee

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
--- node_modules/spell-check/lib/locale-checker.js.orig 2021-04-28 06:41:59 UTC
2+
+++ node_modules/spell-check/lib/locale-checker.js
3+
@@ -114,6 +114,7 @@ class LocaleChecker {
4+
searchPaths.push('/usr/share/hunspell');
5+
searchPaths.push('/usr/share/myspell');
6+
searchPaths.push('/usr/share/myspell/dicts');
7+
+ searchPaths.push('/usr/local/share/hunspell');
8+
}
9+
10+
if (env.isDarwin()) {

editors/atom/files/atom/patch-node__modules_text-buffer_lib_text-buffer.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

editors/atom/files/patch-package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
--- package.json.orig 2020-05-18 19:34:10 UTC
1+
--- package.json.orig 2021-04-09 16:13:53 UTC
22
+++ package.json
3-
@@ -76,7 +76,7 @@
3+
@@ -77,7 +77,7 @@
44
"incompatible-packages": "file:packages/incompatible-packages",
55
"jasmine-json": "~0.0",
66
"jasmine-reporters": "1.1.0",

editors/atom/files/patch-script_package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
--- script/package.json.orig 2020-11-06 18:27:28 UTC
1+
--- script/package.json.orig 2021-04-09 16:13:53 UTC
22
+++ script/package.json
33
@@ -12,9 +12,7 @@
44
"coffeelint": "1.15.7",
55
"colors": "1.1.2",
66
"donna": "1.0.16",
77
- "electron-chromedriver": "^9.0.0",
8-
"electron-link": "^0.4.3",
8+
"electron-link": "^0.6.0",
99
- "electron-mksnapshot": "^9.0.2",
1010
"electron-packager": "^15.0.0",
1111
"eslint": "^5.16.0",

0 commit comments

Comments
 (0)