diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..80b66ce --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/node-uuid-1.4.1.tgz diff --git a/.nodejs010-nodejs-node-uuid.metadata b/.nodejs010-nodejs-node-uuid.metadata new file mode 100644 index 0000000..5035492 --- /dev/null +++ b/.nodejs010-nodejs-node-uuid.metadata @@ -0,0 +1 @@ +39aef510e5889a3dca9c895b506c73aae1bac048 SOURCES/node-uuid-1.4.1.tgz diff --git a/README.md b/README.md deleted file mode 100644 index ce46a88..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -\ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/nodejs-node-uuid.spec b/SPECS/nodejs-node-uuid.spec new file mode 100644 index 0000000..705fd7a --- /dev/null +++ b/SPECS/nodejs-node-uuid.spec @@ -0,0 +1,79 @@ +%{?scl:%scl_package nodejs-node-uuid} +%{!?scl:%global pkg_name %{name}} +%{?nodejs_find_provides_and_requires} +%global enable_tests 1 + +Name: %{?scl_prefix}nodejs-node-uuid +Version: 1.4.1 +Release: 2%{?dist} +Summary: Simple and fast generation of RFC4122 (v1 and v4) UUIDs for Node.js +License: MIT +Group: System Environment/Libraries +URL: https://github.com/broofa/node-uuid +Source0: http://registry.npmjs.org/node-uuid/-/node-uuid-%{version}.tgz + +BuildArch: noarch +%if 0%{?fedora} >= 19 +ExclusiveArch: %{nodejs_arches} noarch +%else +ExclusiveArch: %{ix86} x86_64 %{arm} noarch +%endif + +BuildRequires: %{?scl_prefix}nodejs-devel + +%description +This Node.js module provides simple and fast generation of RFC4122 (v1 and v4) +UUIDs. It runs in Node.js and all browsers and can also generate +cryptographically strong random numbers. + +%prep +%setup -q -n package + +%build +#nothing to do + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/node-uuid +cp -pr package.json uuid.js \ + %{buildroot}%{nodejs_sitelib}/node-uuid + +%nodejs_symlink_deps + + +%if 0%{?enable_tests} + +%check +%{?scl:scl enable %{scl} "} +ln -sf %{nodejs_sitelib} . +%__nodejs test/test.js +%{?scl:"} +%endif + +%files +%doc LICENSE.md README.md +%{nodejs_sitelib}/node-uuid + +%changelog +* Thu Oct 17 2013 Tomas Hrcka - 1.4.1-2 +- replace provides and requires with macro + +* Mon Aug 26 2013 Jamie Nguyen - 1.4.1-1 +- update to upstream release 1.4.1 + +* Sun Jul 28 2013 Jamie Nguyen - 1.4.0-5 +- add ExclusiveArch logic + +* Sat Jun 22 2013 T.C. Hollingsworth - 1.4.0-4 +- restrict to compatible arches + +* Mon Apr 15 2013 T.C. Hollingsworth - 1.4.0-3 +- add macro to enable dependency generation in EPEL + +* Fri Apr 12 2013 Stanislav Ochotnicky - 1.4.0-3 +- Add support for software collections + +* Fri Apr 05 2013 Jamie Nguyen - 1.4.0-2 +- do not include benchmark/ directory + +* Wed Feb 13 2013 Jamie Nguyen - 1.4.0-1 +- initial package