Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package node-unicode-data Hi all, Julien pushed a new version of node-unicode-data that fixes #927944 (FTBFS). Changes are only related to unicode-12 support. Cheers, Xavier unblock node-unicode-data/0~20190414+gitbf518e99-2 -- System Information: Debian Release: buster/sid APT prefers testing APT policy: (600, 'testing'), (50, 'unstable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.14.0-3-amd64 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE= (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled
diff --git a/README.md b/README.md index c66e41d..e1837f1 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ For more information, see the README for the package you’re interested in. [He * [_unicode-9.0.0_](https://npmjs.org/package/unicode-9.0.0#readme) ([repository](https://github.com/mathiasbynens/unicode-9.0.0#readme)) * [_unicode-10.0.0_](https://npmjs.org/package/unicode-10.0.0#readme) ([repository](https://github.com/mathiasbynens/unicode-10.0.0#readme)) * [_unicode-11.0.0_](https://npmjs.org/package/unicode-11.0.0#readme) ([repository](https://github.com/mathiasbynens/unicode-11.0.0#readme)) +* [_unicode-12.0.0_](https://npmjs.org/package/unicode-12.0.0#readme) ([repository](https://github.com/mathiasbynens/unicode-12.0.0#readme)) Note that these READMEs are auto-generated by this script, too – they describe all the data that is available for that particular Unicode version. To programmatically get this list of available categories, scripts, script extensions, blocks, and properties for a given Unicode version, just `require` the main module for that version: diff --git a/debian/changelog b/debian/changelog index d1c41be..eb09837 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +node-unicode-data (0~20190414+gitbf518e99-2) unstable; urgency=medium + + * Make the package really work with unicode 12. + + -- Julien Puydt <jpu...@debian.org> Mon, 15 Apr 2019 19:12:53 +0200 + +node-unicode-data (0~20190414+gitbf518e99-1) unstable; urgency=medium + + * New upstream release. + * Bump std-ver to 4.3.0. + + -- Julien Puydt <jpu...@debian.org> Sun, 14 Apr 2019 00:51:30 +0200 + node-unicode-data (0~20181101+gitaddfb440-1) unstable; urgency=medium * Mention unicode 11 in package description (Closes: #908212). diff --git a/debian/control b/debian/control index 440e198..1cf0484 100644 --- a/debian/control +++ b/debian/control @@ -15,18 +15,18 @@ Build-Depends: debhelper (>= 11), node-unicode-property-value-aliases (>= 3.3~), node-when (>= 3.7.8), nodejs, - unicode-data (>= 11.0.0) -Standards-Version: 4.2.1 + unicode-data (>= 12.0.0) +Standards-Version: 4.3.0 Homepage: https://github.com/mathiasbynens/node-unicode-data Vcs-Git: https://salsa.debian.org/js-team/node-unicode-data.git Vcs-Browser: https://salsa.debian.org/js-team/node-unicode-data -Package: node-unicode-11.0.0 +Package: node-unicode-12.0.0 Architecture: all Depends: nodejs, ${misc:Depends} -Description: Unicode 11.0.0 data for Node.js +Description: Unicode 12.0.0 data for Node.js JavaScript-compatible Unicode data. Arrays of code points, arrays of symbols, - and regular expressions for Unicode v11.0.0’s categories, scripts, blocks, + and regular expressions for Unicode v12.0.0’s categories, scripts, blocks, bidi, and other properties. . Node.js is an event-based server-side JavaScript engine. diff --git a/debian/resources.js b/debian/resources.js index ad85789..79cfef5 100644 --- a/debian/resources.js +++ b/debian/resources.js @@ -1,6 +1,6 @@ var resources = [ { - 'version': '11.0.0', + 'version': '12.0.0', 'main': '/usr/share/unicode/UnicodeData.txt', 'scripts': '/usr/share/unicode/Scripts.txt', 'script-extensions': '/usr/share/unicode/ScriptExtensions.txt', diff --git a/debian/rules b/debian/rules index 0a8b449..2beb97f 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f UNICODE = /usr/share/unicode -VERSION = 11.0.0 +VERSION = 12.0.0 %: dh $@ diff --git a/debian/tests/control b/debian/tests/control index e7f0022..c107051 100644 --- a/debian/tests/control +++ b/debian/tests/control @@ -1,2 +1,2 @@ Tests: require -Depends: node-unicode-11.0.0 +Depends: node-unicode-12.0.0 diff --git a/debian/tests/require b/debian/tests/require index e7cd5d1..b872af1 100644 --- a/debian/tests/require +++ b/debian/tests/require @@ -1,3 +1,3 @@ #!/bin/sh set -e -node -e "require('unicode-11.0.0');" +node -e "require('unicode-12.0.0');" diff --git a/package.json b/package.json index 7b2fc9f..e3be398 100644 --- a/package.json +++ b/package.json @@ -41,17 +41,17 @@ }, "dependencies": { "cp": "^0.2.0", - "jsesc": "^2.5.1", + "jsesc": "^2.5.2", "lodash.template": "^4.4.0", "mkdirp": "^0.5.1", - "regenerate": "^1.3.3", - "request": "^2.83.0", - "unicode-loose-match": "^2.4.0", - "unicode-property-aliases": "^1.3.0", + "regenerate": "^1.4.0", + "request": "^2.88.0", + "unicode-loose-match": "^2.5.0", + "unicode-property-aliases": "^1.4.0", "when": "^3.7.8" }, "devDependencies": { "istanbul": "^0.4.5", - "unicode-property-value-aliases": "^3.2.0" + "unicode-property-value-aliases": "^3.4.0" } } diff --git a/templates/package.json b/templates/package.json index e114532..d5063e9 100644 --- a/templates/package.json +++ b/templates/package.json @@ -1,6 +1,6 @@ { "name": "unicode-<%= version %>", - "version": "0.7.5", + "version": "0.7.9", "description": "JavaScript-compatible Unicode data. Arrays of code points, arrays of symbols, and regular expressions for Unicode v<%= version %>’s categories, scripts, blocks, bidi, and other properties.", "homepage": "https://github.com/mathiasbynens/unicode-<%= version %>", "main": "index.js",