[Pkg-javascript-commits] [Git][js-team/node-has-unicode][master] 2 commits: update changelog
Ross Gammon
gitlab at salsa.debian.org
Sun Sep 9 16:58:46 BST 2018
Ross Gammon pushed to branch master at Debian JavaScript Maintainers / node-has-unicode
Commits:
4d0b1271 by Pirate Praveen at 2017-07-06T08:22:07Z
update changelog
- - - - -
a240e952 by Pirate Praveen at 2018-05-02T06:53:47Z
remove generated files
- - - - -
11 changed files:
- debian/changelog
- − debian/debhelper-build-stamp
- − debian/files
- − debian/node-has-unicode.substvars
- − debian/node-has-unicode/DEBIAN/control
- − debian/node-has-unicode/DEBIAN/md5sums
- − debian/node-has-unicode/usr/lib/nodejs/has-unicode/index.js
- − debian/node-has-unicode/usr/lib/nodejs/has-unicode/package.json
- − debian/node-has-unicode/usr/share/doc/node-has-unicode/README.md
- − debian/node-has-unicode/usr/share/doc/node-has-unicode/changelog.Debian.gz
- − debian/node-has-unicode/usr/share/doc/node-has-unicode/copyright
Changes:
=====================================
debian/changelog
=====================================
@@ -2,6 +2,7 @@ node-has-unicode (2.0.1-2) unstable; urgency=medium
* Team upload.
* Reupload to unstable
+ * Bump standards version to 4.0.0
-- Pirate Praveen <praveen at debian.org> Thu, 06 Jul 2017 13:50:02 +0530
=====================================
debian/debhelper-build-stamp deleted
=====================================
@@ -1 +0,0 @@
-node-has-unicode
=====================================
debian/files deleted
=====================================
@@ -1,2 +0,0 @@
-node-has-unicode_2.0.1-1_all.deb web optional
-node-has-unicode_2.0.1-1_amd64.buildinfo web optional
=====================================
debian/node-has-unicode.substvars deleted
=====================================
@@ -1,2 +0,0 @@
-misc:Depends=
-misc:Pre-Depends=
=====================================
debian/node-has-unicode/DEBIAN/control deleted
=====================================
@@ -1,13 +0,0 @@
-Package: node-has-unicode
-Version: 2.0.1-1
-Architecture: all
-Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
-Installed-Size: 16
-Depends: nodejs
-Section: web
-Priority: optional
-Homepage: https://github.com/iarna/has-unicode
-Description: Try to guess if your terminal supports unicode
- What we actually detect is UTF-8 support, as that's what Node itself supports.
- .
- Node.js is an event-based server-side JavaScript engine.
=====================================
debian/node-has-unicode/DEBIAN/md5sums deleted
=====================================
@@ -1,5 +0,0 @@
-c6ce2d7686d2808902abf12837367527 usr/lib/nodejs/has-unicode/index.js
-f14043c8a5d6df10d3671d83073d6883 usr/lib/nodejs/has-unicode/package.json
-de842566c06b4bbcbfa9ec3d8498adda usr/share/doc/node-has-unicode/README.md
-8ee78f207c792d246af24d4de23c5a71 usr/share/doc/node-has-unicode/changelog.Debian.gz
-8b7cfa924a08b95ba08cade6f535a480 usr/share/doc/node-has-unicode/copyright
=====================================
debian/node-has-unicode/usr/lib/nodejs/has-unicode/index.js deleted
=====================================
@@ -1,16 +0,0 @@
-"use strict"
-var os = require("os")
-
-var hasUnicode = module.exports = function () {
- // Recent Win32 platforms (>XP) CAN support unicode in the console but
- // don't have to, and in non-english locales often use traditional local
- // code pages. There's no way, short of windows system calls or execing
- // the chcp command line program to figure this out. As such, we default
- // this to false and encourage your users to override it via config if
- // appropriate.
- if (os.type() == "Windows_NT") { return false }
-
- var isUTF8 = /UTF-?8$/i
- var ctype = process.env.LC_ALL || process.env.LC_CTYPE || process.env.LANG
- return isUTF8.test(ctype)
-}
=====================================
debian/node-has-unicode/usr/lib/nodejs/has-unicode/package.json deleted
=====================================
@@ -1,30 +0,0 @@
-{
- "name": "has-unicode",
- "version": "2.0.1",
- "description": "Try to guess if your terminal supports unicode",
- "main": "index.js",
- "scripts": {
- "test": "tap test/*.js"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/iarna/has-unicode"
- },
- "keywords": [
- "unicode",
- "terminal"
- ],
- "files": [
- "index.js"
- ],
- "author": "Rebecca Turner <me at re-becca.org>",
- "license": "ISC",
- "bugs": {
- "url": "https://github.com/iarna/has-unicode/issues"
- },
- "homepage": "https://github.com/iarna/has-unicode",
- "devDependencies": {
- "require-inject": "^1.3.0",
- "tap": "^2.3.1"
- }
-}
=====================================
debian/node-has-unicode/usr/share/doc/node-has-unicode/README.md deleted
=====================================
@@ -1,43 +0,0 @@
-has-unicode
-===========
-
-Try to guess if your terminal supports unicode
-
-```javascript
-var hasUnicode = require("has-unicode")
-
-if (hasUnicode()) {
- // the terminal probably has unicode support
-}
-```
-```javascript
-var hasUnicode = require("has-unicode").tryHarder
-hasUnicode(function(unicodeSupported) {
- if (unicodeSupported) {
- // the terminal probably has unicode support
- }
-})
-```
-
-## Detecting Unicode
-
-What we actually detect is UTF-8 support, as that's what Node itself supports.
-If you have a UTF-16 locale then you won't be detected as unicode capable.
-
-### Windows
-
-Since at least Windows 7, `cmd` and `powershell` have been unicode capable,
-but unfortunately even then it's not guaranteed. In many localizations it
-still uses legacy code pages and there's no facility short of running
-programs or linking C++ that will let us detect this. As such, we
-report any Windows installation as NOT unicode capable, and recommend
-that you encourage your users to override this via config.
-
-### Unix Like Operating Systems
-
-We look at the environment variables `LC_ALL`, `LC_CTYPE`, and `LANG` in
-that order. For `LC_ALL` and `LANG`, it looks for `.UTF-8` in the value.
-For `LC_CTYPE` it looks to see if the value is `UTF-8`. This is sufficient
-for most POSIX systems. While locale data can be put in `/etc/locale.conf`
-as well, AFAIK it's always copied into the environment.
-
=====================================
debian/node-has-unicode/usr/share/doc/node-has-unicode/changelog.Debian.gz deleted
=====================================
Binary files a/debian/node-has-unicode/usr/share/doc/node-has-unicode/changelog.Debian.gz and /dev/null differ
=====================================
debian/node-has-unicode/usr/share/doc/node-has-unicode/copyright deleted
=====================================
@@ -1,26 +0,0 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: has-unicode
-Upstream-Contact: https://github.com/iarna/has-unicode/issues
-Source: https://github.com/iarna/has-unicode
-
-Files: *
-Copyright: 2017 Rebecca Turner <me at re-becca.org>
-License: ISC
-
-Files: debian/*
-Copyright: 2017 Yogiraj Kulkarni <yogirajkulkarni1411 at gmail.com>
-License: ISC
-
-License: ISC
- Permission to use, copy, modify, and/or distribute this software for any
- purpose with or without fee is hereby granted, provided that the above
- copyright notice and this permission notice appear in all copies.
- .
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
View it on GitLab: https://salsa.debian.org/js-team/node-has-unicode/compare/a21857a199c42b436ace4caae9637e4040cf77e6...a240e952bf657d3978bbd1139ca3002434cee86f
--
View it on GitLab: https://salsa.debian.org/js-team/node-has-unicode/compare/a21857a199c42b436ace4caae9637e4040cf77e6...a240e952bf657d3978bbd1139ca3002434cee86f
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-javascript-commits/attachments/20180909/f71a519a/attachment-0001.html>
More information about the Pkg-javascript-commits
mailing list