Hello community, here is the log from the commit of package nodejs-mime-db for openSUSE:Factory checked in at 2015-08-05 06:51:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nodejs-mime-db (Old) and /work/SRC/openSUSE:Factory/.nodejs-mime-db.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nodejs-mime-db" Changes: -------- --- /work/SRC/openSUSE:Factory/nodejs-mime-db/nodejs-mime-db.changes 2015-06-30 10:17:47.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.nodejs-mime-db.new/nodejs-mime-db.changes 2015-08-05 06:51:32.000000000 +0200 @@ -1,0 +2,5 @@ +Thu Jul 30 10:51:43 UTC 2015 - [email protected] + +- update version 1.16.0 + +------------------------------------------------------------------- Old: ---- mime-db-1.10.0.tgz New: ---- mime-db-1.16.0.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nodejs-mime-db.spec ++++++ --- /var/tmp/diff_new_pack.W3TTdd/_old 2015-08-05 06:51:32.000000000 +0200 +++ /var/tmp/diff_new_pack.W3TTdd/_new 2015-08-05 06:51:32.000000000 +0200 @@ -19,7 +19,7 @@ %define base_name mime-db Name: nodejs-mime-db -Version: 1.10.0 +Version: 1.16.0 Release: 0 Summary: Media Type Database License: MIT @@ -43,13 +43,13 @@ %build %install -mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name} +mkdir -p %{buildroot}%{nodejs_sitelib}/%{base_name} cp -pr *.json index.js \ - %{buildroot}%{nodejs_modulesdir}/%{base_name}/ + %{buildroot}%{nodejs_sitelib}/%{base_name}/ %files %defattr(-,root,root,-) %doc README.md LICENSE HISTORY.md -%{nodejs_modulesdir}/%{base_name} +%{nodejs_sitelib}/%{base_name} %changelog ++++++ mime-db-1.10.0.tgz -> mime-db-1.16.0.tgz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/package/HISTORY.md new/package/HISTORY.md --- old/package/HISTORY.md 2015-05-20 04:50:43.000000000 +0200 +++ new/package/HISTORY.md 2015-07-29 18:13:51.000000000 +0200 @@ -1,3 +1,54 @@ +1.16.0 / 2015-07-29 +=================== + + * Add `application/vnd.uri-map` + +1.15.0 / 2015-07-13 +=================== + + * Add `application/x-httpd-php` + +1.14.0 / 2015-06-25 +=================== + + * Add `application/scim+json` + * Add `application/vnd.3gpp.ussd+xml` + * Add `application/vnd.biopax.rdf+xml` + * Add `text/x-processing` + +1.13.0 / 2015-06-07 +=================== + + * Add nginx as a source + * Add `application/x-cocoa` + * Add `application/x-java-archive-diff` + * Add `application/x-makeself` + * Add `application/x-perl` + * Add `application/x-pilot` + * Add `application/x-redhat-package-manager` + * Add `application/x-sea` + * Add `audio/x-m4a` + * Add `audio/x-realaudio` + * Add `image/x-jng` + * Add `text/mathml` + +1.12.0 / 2015-06-05 +=================== + + * Add `application/bdoc` + * Add `application/vnd.hyperdrive+json` + * Add `application/x-bdoc` + * Add extension `.rtf` to `text/rtf` + +1.11.0 / 2015-05-31 +=================== + + * Add `audio/wav` + * Add `audio/wave` + * Add extension `.litcoffee` to `text/coffeescript` + * Add extension `.sfd-hdstx` to `application/vnd.hydrostatix.sof-data` + * Add extension `.n-gage` to `application/vnd.nokia.n-gage.symbian.install` + 1.10.0 / 2015-05-19 =================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/package/README.md new/package/README.md --- old/package/README.md 2015-03-30 01:30:14.000000000 +0200 +++ new/package/README.md 2015-07-03 18:24:16.000000000 +0200 @@ -13,6 +13,7 @@ - http://www.iana.org/assignments/media-types/media-types.xhtml - http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types +- http://hg.nginx.org/nginx/raw-file/default/conf/mime.types ## Installation @@ -20,8 +21,12 @@ npm install mime-db ``` -If you're crazy enough to use this in the browser, -you can just grab the JSON file: +### Database Download + +If you're crazy enough to use this in the browser, you can just grab the +JSON file using [RawGit](https://rawgit.com/). It is recommended to replace +`master` with [a release tag](https://github.com/jshttp/mime-db/tags) as the +JSON format may change in the future. ``` https://cdn.rawgit.com/jshttp/mime-db/master/db.json @@ -45,6 +50,7 @@ If not set, it's probably a custom media type. - `apache` - [Apache common media types](http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types) - `iana` - [IANA-defined media types](http://www.iana.org/assignments/media-types/media-types.xhtml) + - `nginx` - [nginx media types](http://hg.nginx.org/nginx/raw-file/default/conf/mime.types) - `.extensions[]` - known extensions associated with this mime type. - `.compressible` - whether a file of this type is can be gzipped. - `.charset` - the default charset associated with this type, if any. @@ -56,7 +62,7 @@ To edit the database, only make PRs against `src/custom.json` or `src/custom-suffix.json`. -To update the build, run `npm run update`. +To update the build, run `npm run build`. ## Adding Custom Media Types diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/package/db.json new/package/db.json --- old/package/db.json 2015-05-20 04:28:43.000000000 +0200 +++ new/package/db.json 2015-07-29 18:09:42.000000000 +0200 @@ -105,6 +105,10 @@ "application/batch-smtp": { "source": "iana" }, + "application/bdoc": { + "compressible": false, + "extensions": ["bdoc"] + }, "application/beep+xml": { "source": "iana" }, @@ -410,7 +414,7 @@ "application/java-archive": { "source": "apache", "compressible": false, - "extensions": ["jar"] + "extensions": ["jar","war","ear"] }, "application/java-serialized-object": { "source": "apache", @@ -690,7 +694,7 @@ "application/octet-stream": { "source": "iana", "compressible": false, - "extensions": ["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","buffer"] + "extensions": ["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"] }, "application/oda": { "source": "iana", @@ -933,6 +937,10 @@ "application/scaip+xml": { "source": "iana" }, + "application/scim+json": { + "source": "iana", + "compressible": true + }, "application/scvp-cv-request": { "source": "iana", "extensions": ["scq"] @@ -1158,6 +1166,9 @@ "application/vnd.3gpp.sms": { "source": "iana" }, + "application/vnd.3gpp.ussd+xml": { + "source": "iana" + }, "application/vnd.3gpp2.bcmcsinfo+xml": { "source": "iana" }, @@ -1319,6 +1330,9 @@ "source": "iana", "compressible": true }, + "application/vnd.biopax.rdf+xml": { + "source": "iana" + }, "application/vnd.blueice.multipass": { "source": "iana", "extensions": ["mpm"] @@ -2037,7 +2051,12 @@ "source": "iana" }, "application/vnd.hydrostatix.sof-data": { - "source": "iana" + "source": "iana", + "extensions": ["sfd-hdstx"] + }, + "application/vnd.hyperdrive+json": { + "source": "iana", + "compressible": true }, "application/vnd.hzn-3d-crossword": { "source": "iana" @@ -2728,7 +2747,8 @@ "extensions": ["ngdat"] }, "application/vnd.nokia.n-gage.symbian.install": { - "source": "iana" + "source": "iana", + "extensions": ["n-gage"] }, "application/vnd.nokia.ncd": { "source": "iana" @@ -3819,6 +3839,9 @@ "application/vnd.uplanet.signal": { "source": "iana" }, + "application/vnd.uri-map": { + "source": "iana" + }, "application/vnd.valve.source.material": { "source": "iana" }, @@ -4083,6 +4106,10 @@ "source": "apache", "extensions": ["bcpio"] }, + "application/x-bdoc": { + "compressible": false, + "extensions": ["bdoc"] + }, "application/x-bittorrent": { "source": "apache", "extensions": ["torrent"] @@ -4124,6 +4151,10 @@ "application/x-chrome-extension": { "extensions": ["crx"] }, + "application/x-cocoa": { + "source": "nginx", + "extensions": ["cco"] + }, "application/x-compress": { "source": "apache" }, @@ -4270,6 +4301,10 @@ "source": "apache", "extensions": ["hdf"] }, + "application/x-httpd-php": { + "compressible": true, + "extensions": ["php"] + }, "application/x-install-instructions": { "source": "apache", "extensions": ["install"] @@ -4278,6 +4313,10 @@ "source": "apache", "extensions": ["iso"] }, + "application/x-java-archive-diff": { + "source": "nginx", + "extensions": ["jardiff"] + }, "application/x-java-jnlp-file": { "source": "apache", "compressible": false, @@ -4298,6 +4337,10 @@ "source": "apache", "extensions": ["lzh","lha"] }, + "application/x-makeself": { + "source": "nginx", + "extensions": ["run"] + }, "application/x-mie": { "source": "apache", "extensions": ["mie"] @@ -4389,6 +4432,14 @@ "source": "apache", "extensions": ["nzb"] }, + "application/x-perl": { + "source": "nginx", + "extensions": ["pl","pm"] + }, + "application/x-pilot": { + "source": "nginx", + "extensions": ["prc","pdb"] + }, "application/x-pkcs12": { "source": "apache", "compressible": false, @@ -4407,10 +4458,18 @@ "compressible": false, "extensions": ["rar"] }, + "application/x-redhat-package-manager": { + "source": "nginx", + "extensions": ["rpm"] + }, "application/x-research-info-systems": { "source": "apache", "extensions": ["ris"] }, + "application/x-sea": { + "source": "nginx", + "extensions": ["sea"] + }, "application/x-sh": { "source": "apache", "compressible": true, @@ -4469,7 +4528,7 @@ }, "application/x-tcl": { "source": "apache", - "extensions": ["tcl"] + "extensions": ["tcl","tk"] }, "application/x-tex": { "source": "apache", @@ -4505,7 +4564,7 @@ }, "application/x-x509-ca-cert": { "source": "apache", - "extensions": ["der","crt"] + "extensions": ["der","crt","pem"] }, "application/x-xfig": { "source": "apache", @@ -5100,6 +5159,14 @@ "audio/vorbis-config": { "source": "iana" }, + "audio/wav": { + "compressible": false, + "extensions": ["wav"] + }, + "audio/wave": { + "compressible": false, + "extensions": ["wav"] + }, "audio/webm": { "source": "apache", "compressible": false, @@ -5123,6 +5190,10 @@ "source": "apache", "extensions": ["flac"] }, + "audio/x-m4a": { + "source": "nginx", + "extensions": ["m4a"] + }, "audio/x-matroska": { "source": "apache", "extensions": ["mka"] @@ -5147,6 +5218,10 @@ "source": "apache", "extensions": ["rmp"] }, + "audio/x-realaudio": { + "source": "nginx", + "extensions": ["ra"] + }, "audio/x-tta": { "source": "apache" }, @@ -5402,11 +5477,16 @@ "compressible": true, "extensions": ["ico"] }, + "image/x-jng": { + "source": "nginx", + "extensions": ["jng"] + }, "image/x-mrsid-image": { "source": "apache", "extensions": ["sid"] }, "image/x-ms-bmp": { + "source": "nginx", "compressible": true, "extensions": ["bmp"] }, @@ -5673,7 +5753,7 @@ "compressible": true }, "text/coffeescript": { - "extensions": ["coffee"] + "extensions": ["coffee","litcoffee"] }, "text/css": { "source": "iana", @@ -5715,7 +5795,7 @@ "text/html": { "source": "iana", "compressible": true, - "extensions": ["html","htm"] + "extensions": ["html","htm","shtml"] }, "text/jade": { "extensions": ["jade"] @@ -5737,6 +5817,10 @@ "text/markdown": { "source": "iana" }, + "text/mathml": { + "source": "nginx", + "extensions": ["mml"] + }, "text/mizar": { "source": "iana" }, @@ -5781,7 +5865,9 @@ "extensions": ["rtx"] }, "text/rtf": { - "source": "iana" + "source": "iana", + "compressible": true, + "extensions": ["rtf"] }, "text/rtp-enc-aescm128": { "source": "iana" @@ -5942,6 +6028,7 @@ "extensions": ["c","cc","cxx","cpp","h","hh","dic"] }, "text/x-component": { + "source": "nginx", "extensions": ["htc"] }, "text/x-fortran": { @@ -5980,6 +6067,10 @@ "source": "apache", "extensions": ["p","pas"] }, + "text/x-processing": { + "compressible": true, + "extensions": ["pde"] + }, "text/x-sass": { "extensions": ["sass"] }, @@ -6008,7 +6099,8 @@ }, "text/xml": { "source": "iana", - "compressible": true + "compressible": true, + "extensions": ["xml"] }, "text/xml-external-parsed-entity": { "source": "iana" @@ -6021,7 +6113,7 @@ }, "video/3gpp": { "source": "apache", - "extensions": ["3gp"] + "extensions": ["3gp","3gpp"] }, "video/3gpp-tt": { "source": "apache" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/package/package.json new/package/package.json --- old/package/package.json 2015-05-20 04:50:49.000000000 +0200 +++ new/package/package.json 2015-07-29 18:13:39.000000000 +0200 @@ -1,7 +1,7 @@ { "name": "mime-db", "description": "Media Type Database", - "version": "1.10.0", + "version": "1.16.0", "contributors": [ "Douglas Christopher Wilson <[email protected]>", "Jonathan Ong <[email protected]> (http://jongleberry.com)", @@ -19,14 +19,14 @@ ], "repository": "jshttp/mime-db", "devDependencies": { - "bluebird": "~2.9.20", - "co": "4.5.4", + "bluebird": "2.9.34", + "co": "4.6.0", "cogent": "1.0.1", - "csv-parse": "0.1.1", + "csv-parse": "0.1.4", "gnode": "0.1.1", - "istanbul": "0.3.9", + "istanbul": "0.3.17", "mocha": "1.21.5", - "raw-body": "2.0.1", + "raw-body": "2.1.2", "stream-to-array": "2" }, "files": [ @@ -41,7 +41,7 @@ }, "scripts": { "build": "node scripts/build", - "fetch": "gnode scripts/extensions && gnode scripts/types", + "fetch": "gnode scripts/fetch-apache && gnode scripts/fetch-iana && gnode scripts/fetch-nginx", "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
