npm currently has broken dependencies in EPEL 6 because of what appears to be a rel-eng issue: https://fedorahosted.org/rel-eng/ticket/5657
Ordinarily I'd unpush that update but I'd rather wait for rel-eng's advice since something strange seems to have gone wrong here.
-T.C.
On 07/03/2013 09:05 PM, T.C. Hollingsworth wrote:
npm currently has broken dependencies in EPEL 6 because of what appears to be a rel-eng issue: https://fedorahosted.org/rel-eng/ticket/5657
Ordinarily I'd unpush that update but I'd rather wait for rel-eng's advice since something strange seems to have gone wrong here.
-T.C.
Hi T.C. What was the outcome of this. I just barely noticed that none of my el6 nodejs packages have a Provides: npm(<package>) The same packages have the proper provides on all Fedora packages. I looked through the nodejs packaging guidelines [0] and it says
"The nodejs package includes an automatic Requires and Provides generator that automatically adds versioned dependencies based on the information provided in a module's package.json file.
It also adds virtual provides in the form npm(<module name>) to identify modules listed in the npm registry (the module is listed at npmjs.org) ... "
Can we either get things fixed in EL6 (my preference) or update the documentation.
Thanks Troy p.s. I tried rebuilding with no changes to the spec file, and things are still broken.
[0] https://fedoraproject.org/wiki/Packaging:Node.js#Provides
Troy, You can use njs2rpm (https://github.com/sfreire/njs2rpm) in order to package your node packages and it will generate the rpm with the correct dependencies, I hope ;)
-----Original Message----- From: nodejs-bounces@lists.fedoraproject.org [mailto:nodejs-bounces@lists.fedoraproject.org] On Behalf Of Troy Dawson Sent: sexta-feira, 3 de Janeiro de 2014 14:36 To: Node.js on Fedora Subject: Re: [HEADSUP] npm in EPEL broken due to rel-eng issue
On 07/03/2013 09:05 PM, T.C. Hollingsworth wrote:
npm currently has broken dependencies in EPEL 6 because of what appears to be a rel-eng issue: https://fedorahosted.org/rel-eng/ticket/5657
Ordinarily I'd unpush that update but I'd rather wait for rel-eng's advice since something strange seems to have gone wrong here.
-T.C.
Hi T.C. What was the outcome of this. I just barely noticed that none of my el6 nodejs packages have a Provides: npm(<package>) The same packages have the proper provides on all Fedora packages. I looked through the nodejs packaging guidelines [0] and it says
"The nodejs package includes an automatic Requires and Provides generator that automatically adds versioned dependencies based on the information provided in a module's package.json file.
It also adds virtual provides in the form npm(<module name>) to identify modules listed in the npm registry (the module is listed at npmjs.org) ... "
Can we either get things fixed in EL6 (my preference) or update the documentation.
Thanks Troy p.s. I tried rebuilding with no changes to the spec file, and things are still broken.
[0] https://fedoraproject.org/wiki/Packaging:Node.js#Provides _______________________________________________ nodejs mailing list nodejs@lists.fedoraproject.org https://admin.fedoraproject.org/mailman/listinfo/nodejs
On Fri, Jan 3, 2014 at 7:35 AM, Troy Dawson tdawson@redhat.com wrote:
Hi T.C. What was the outcome of this.
This was a transient buildroot issue which has been resolved. Your issue is different.
I just barely noticed that none of my el6 nodejs packages have a Provides: npm(<package>) The same packages have the proper provides on all Fedora packages. I looked through the nodejs packaging guidelines [0] and it says
"The nodejs package includes an automatic Requires and Provides generator that automatically adds versioned dependencies based on the information provided in a module's package.json file.
It also adds virtual provides in the form npm(<module name>) to identify modules listed in the npm registry (the module is listed at npmjs.org) ... "
Can we either get things fixed in EL6 (my preference) or update the documentation.
Your spec files seem to be missing the %nodejs_find_provides_and_requires macro. It is necessary to invoke the generators manually on RHEL 6, because rpm < 4.9 doesn't support the fileattrs mechanism for automatically running Provides/Requires generators based on the presence of paths matching regexes in binary RPMs.
But I can't exactly blame you for not realizing this, since that seems to have not made it into the official guidelines! FPC approved an update to the guidelines that included this and other fixes five months ago [1], but they seem to have never merged my requested changes into the offiical copy. :-(
I'll see if I can prod FPC into getting the official copy updated with the new text they've already approved, but in the interim I suggest everyone refer to the draft. [2]
-T.C.
[1] https://fedorahosted.org/fpc/ticket/311 [2] https://fedoraproject.org/wiki/User:Patches/PackagingDrafts/NodeJS
On 01/03/2014 03:43 PM, T.C. Hollingsworth wrote:
On Fri, Jan 3, 2014 at 7:35 AM, Troy Dawson tdawson@redhat.com wrote:
Hi T.C. What was the outcome of this.
This was a transient buildroot issue which has been resolved. Your issue is different.
I just barely noticed that none of my el6 nodejs packages have a Provides: npm(<package>) The same packages have the proper provides on all Fedora packages. I looked through the nodejs packaging guidelines [0] and it says
"The nodejs package includes an automatic Requires and Provides generator that automatically adds versioned dependencies based on the information provided in a module's package.json file.
It also adds virtual provides in the form npm(<module name>) to identify modules listed in the npm registry (the module is listed at npmjs.org) ... "
Can we either get things fixed in EL6 (my preference) or update the documentation.
Your spec files seem to be missing the %nodejs_find_provides_and_requires macro. It is necessary to invoke the generators manually on RHEL 6, because rpm < 4.9 doesn't support the fileattrs mechanism for automatically running Provides/Requires generators based on the presence of paths matching regexes in binary RPMs.
But I can't exactly blame you for not realizing this, since that seems to have not made it into the official guidelines! FPC approved an update to the guidelines that included this and other fixes five months ago [1], but they seem to have never merged my requested changes into the offiical copy. :-(
I'll see if I can prod FPC into getting the official copy updated with the new text they've already approved, but in the interim I suggest everyone refer to the draft. [2]
-T.C.
[1] https://fedorahosted.org/fpc/ticket/311 [2] https://fedoraproject.org/wiki/User:Patches/PackagingDrafts/NodeJS
I knew I'd seen it at one point. Thank you very much, and I hope they merge it soon. That also has the ExclusiveArch I'd been looking for.
Troy
On Fri, Jan 3, 2014 at 3:03 PM, Troy Dawson tdawson@redhat.com wrote:
I knew I'd seen it at one point. Thank you very much, and I hope they merge it soon. That also has the ExclusiveArch I'd been looking for.
Unfortunately, that ExclusiveArch macro doesn't work on EL6 either because we can't update redhat-rpm-config there. :-(
I went ahead and fixed all the packages that were missing npm(foo) provides in EPEL6; I'm just waiting for builds and necessary buildroot overrides to shake out. You weren't the only one missing it BTW, even two of my packages slipped through the cracks. ;-)
-T.C.
On Fri, Jan 3, 2014 at 3:39 PM, T.C. Hollingsworth tchollingsworth@gmail.com wrote:
I went ahead and fixed all the packages that were missing npm(foo) provides in EPEL6; I'm just waiting for builds and necessary buildroot overrides to shake out. You weren't the only one missing it BTW, even two of my packages slipped through the cracks. ;-)
Should all be resolved now. Feel free to merge the changes in the EL6 branch back to master if you'd like, it's deliberately a no-op in Fedora so spec compatibility can be maintained.
Sorry for the trouble here.
Here's the output from my big bodhi shell loop for reference:
Creating a new update for nodejs-bignumber-js-1.2.0-3.el6 Update successfully created ================================================================================ nodejs-bignumber-js-1.2.0-3.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-bignumber-js) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:49:36 Comments: bodhi - 2014-01-03 22:49:42 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-bignumber-js-1.2.0-3.el6
Creating a new update for nodejs-bson-0.2.3-4.el6 Update successfully created ================================================================================ nodejs-bson-0.2.3-4.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-bson) provides, which may resolve dependency : issues when installing this package or other packages : that depend on it Submitter: patches Submitted: 2014-01-03 22:49:58 Comments: bodhi - 2014-01-03 22:50:03 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-bson-0.2.3-4.el6
Creating a new update for nodejs-dryice-0.4.10-4.el6 Update successfully created ================================================================================ nodejs-dryice-0.4.10-4.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-dryice) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:50:13 Comments: bodhi - 2014-01-03 22:50:17 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-dryice-0.4.10-4.el6
Creating a new update for nodejs-hashish-0.0.4-2.el6 Update successfully created ================================================================================ nodejs-hashish-0.0.4-2.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-hashish) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:50:28 Comments: bodhi - 2014-01-03 22:50:34 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-hashish-0.0.4-2.el6
Creating a new update for nodejs-mongodb-1.3.19-2.el6 Update successfully created ================================================================================ nodejs-mongodb-1.3.19-2.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-mongodb) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:50:44 Comments: bodhi - 2014-01-03 22:50:48 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-mongodb-1.3.19-2.el6
Creating a new update for nodejs-mysql-2.0.0-alpha9.2.el6.1 Update successfully created ================================================================================ nodejs-mysql-2.0.0-alpha9.2.el6.1 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-mysql) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:50:57 Comments: bodhi - 2014-01-03 22:51:03 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-mysql-2.0.0-alpha9.2.el6.1
Creating a new update for nodejs-nan-0.4.4-2.el6 Update successfully created ================================================================================ nodejs-nan-0.4.4-2.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-nan) provides, which may resolve dependency : issues when installing this package or other packages : that depend on it Submitter: patches Submitted: 2014-01-03 22:51:12 Comments: bodhi - 2014-01-03 22:51:15 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-nan-0.4.4-2.el6
Creating a new update for nodejs-node-static-0.7.1-3.el6 Update successfully created ================================================================================ nodejs-node-static-0.7.1-3.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-node-static) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:51:26 Comments: bodhi - 2014-01-03 22:51:38 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-node-static-0.7.1-3.el6
Creating a new update for nodejs-options-0.0.5-3.el6 Update successfully created ================================================================================ nodejs-options-0.0.5-3.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-options) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:51:49 Comments: bodhi - 2014-01-03 22:51:52 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-options-0.0.5-3.el6
Creating a new update for nodejs-require-all-0.0.6-2.el6 Update successfully created ================================================================================ nodejs-require-all-0.0.6-2.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-require-all) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:52:05 Comments: bodhi - 2014-01-03 22:52:07 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-require-all-0.0.6-2.el6
Creating a new update for nodejs-ronn-0.4.0-4.el6 Update successfully created ================================================================================ nodejs-ronn-0.4.0-4.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-ronn) provides, which may resolve dependency : issues when installing this package or other packages : that depend on it Submitter: patches Submitted: 2014-01-03 22:52:18 Comments: bodhi - 2014-01-03 22:52:20 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-ronn-0.4.0-4.el6
Creating a new update for nodejs-supervisor-0.5.2-4.el6 Update successfully created ================================================================================ nodejs-supervisor-0.5.2-4.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-supervisor) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:52:31 Comments: bodhi - 2014-01-03 22:52:35 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-supervisor-0.5.2-4.el6
Creating a new update for nodejs-tinycolor-0.0.1-5.el6 Update successfully created ================================================================================ nodejs-tinycolor-0.0.1-5.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-tinycolor) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:52:45 Comments: bodhi - 2014-01-03 22:52:49 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-tinycolor-0.0.1-5.el6
Creating a new update for nodejs-ws-0.4.25-6.el6 Update successfully created ================================================================================ nodejs-ws-0.4.25-6.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-ws) provides, which may resolve dependency : issues when installing this package or other packages : that depend on it Submitter: patches Submitted: 2014-01-03 22:53:00 Comments: bodhi - 2014-01-03 22:53:04 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-ws-0.4.25-6.el6
-T.C.
Thank you very much for that. That saved me a load of work. Troy
On 01/03/2014 05:00 PM, T.C. Hollingsworth wrote:
On Fri, Jan 3, 2014 at 3:39 PM, T.C. Hollingsworth tchollingsworth@gmail.com wrote:
I went ahead and fixed all the packages that were missing npm(foo) provides in EPEL6; I'm just waiting for builds and necessary buildroot overrides to shake out. You weren't the only one missing it BTW, even two of my packages slipped through the cracks. ;-)
Should all be resolved now. Feel free to merge the changes in the EL6 branch back to master if you'd like, it's deliberately a no-op in Fedora so spec compatibility can be maintained.
Sorry for the trouble here.
Here's the output from my big bodhi shell loop for reference:
Creating a new update for nodejs-bignumber-js-1.2.0-3.el6 Update successfully created ================================================================================ nodejs-bignumber-js-1.2.0-3.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-bignumber-js) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:49:36 Comments: bodhi - 2014-01-03 22:49:42 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-bignumber-js-1.2.0-3.el6
Creating a new update for nodejs-bson-0.2.3-4.el6 Update successfully created ================================================================================ nodejs-bson-0.2.3-4.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-bson) provides, which may resolve dependency : issues when installing this package or other packages : that depend on it Submitter: patches Submitted: 2014-01-03 22:49:58 Comments: bodhi - 2014-01-03 22:50:03 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-bson-0.2.3-4.el6
Creating a new update for nodejs-dryice-0.4.10-4.el6 Update successfully created ================================================================================ nodejs-dryice-0.4.10-4.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-dryice) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:50:13 Comments: bodhi - 2014-01-03 22:50:17 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-dryice-0.4.10-4.el6
Creating a new update for nodejs-hashish-0.0.4-2.el6 Update successfully created ================================================================================ nodejs-hashish-0.0.4-2.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-hashish) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:50:28 Comments: bodhi - 2014-01-03 22:50:34 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-hashish-0.0.4-2.el6
Creating a new update for nodejs-mongodb-1.3.19-2.el6 Update successfully created ================================================================================ nodejs-mongodb-1.3.19-2.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-mongodb) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:50:44 Comments: bodhi - 2014-01-03 22:50:48 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-mongodb-1.3.19-2.el6
Creating a new update for nodejs-mysql-2.0.0-alpha9.2.el6.1 Update successfully created ================================================================================ nodejs-mysql-2.0.0-alpha9.2.el6.1 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-mysql) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:50:57 Comments: bodhi - 2014-01-03 22:51:03 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-mysql-2.0.0-alpha9.2.el6.1
Creating a new update for nodejs-nan-0.4.4-2.el6 Update successfully created ================================================================================ nodejs-nan-0.4.4-2.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-nan) provides, which may resolve dependency : issues when installing this package or other packages : that depend on it Submitter: patches Submitted: 2014-01-03 22:51:12 Comments: bodhi - 2014-01-03 22:51:15 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-nan-0.4.4-2.el6
Creating a new update for nodejs-node-static-0.7.1-3.el6 Update successfully created ================================================================================ nodejs-node-static-0.7.1-3.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-node-static) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:51:26 Comments: bodhi - 2014-01-03 22:51:38 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-node-static-0.7.1-3.el6
Creating a new update for nodejs-options-0.0.5-3.el6 Update successfully created ================================================================================ nodejs-options-0.0.5-3.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-options) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:51:49 Comments: bodhi - 2014-01-03 22:51:52 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-options-0.0.5-3.el6
Creating a new update for nodejs-require-all-0.0.6-2.el6 Update successfully created ================================================================================ nodejs-require-all-0.0.6-2.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-require-all) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:52:05 Comments: bodhi - 2014-01-03 22:52:07 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-require-all-0.0.6-2.el6
Creating a new update for nodejs-ronn-0.4.0-4.el6 Update successfully created ================================================================================ nodejs-ronn-0.4.0-4.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-ronn) provides, which may resolve dependency : issues when installing this package or other packages : that depend on it Submitter: patches Submitted: 2014-01-03 22:52:18 Comments: bodhi - 2014-01-03 22:52:20 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-ronn-0.4.0-4.el6
Creating a new update for nodejs-supervisor-0.5.2-4.el6 Update successfully created ================================================================================ nodejs-supervisor-0.5.2-4.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-supervisor) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:52:31 Comments: bodhi - 2014-01-03 22:52:35 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-supervisor-0.5.2-4.el6
Creating a new update for nodejs-tinycolor-0.0.1-5.el6 Update successfully created ================================================================================ nodejs-tinycolor-0.0.1-5.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-tinycolor) provides, which may resolve : dependency issues when installing this package or : other packages that depend on it Submitter: patches Submitted: 2014-01-03 22:52:45 Comments: bodhi - 2014-01-03 22:52:49 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-tinycolor-0.0.1-5.el6
Creating a new update for nodejs-ws-0.4.25-6.el6 Update successfully created ================================================================================ nodejs-ws-0.4.25-6.el6 ================================================================================ Release: Fedora EPEL 6 Status: pending Type: bugfix Karma: 0 Request: testing Notes: Fix missing npm(nodejs-ws) provides, which may resolve dependency : issues when installing this package or other packages : that depend on it Submitter: patches Submitted: 2014-01-03 22:53:00 Comments: bodhi - 2014-01-03 22:53:04 (karma 0) This update has been submitted for testing by patches.
https://admin.fedoraproject.org/updates/nodejs-ws-0.4.25-6.el6
-T.C.
nodejs@lists.fedoraproject.org