diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ee216e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/uuid-2.0.1.tgz diff --git a/.nodejs010-nodejs-uuid.metadata b/.nodejs010-nodejs-uuid.metadata new file mode 100644 index 0000000..f084d94 --- /dev/null +++ b/.nodejs010-nodejs-uuid.metadata @@ -0,0 +1 @@ +c2a30dedb3e535d72ccf82e343941a50ba8533ac SOURCES/uuid-2.0.1.tgz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +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-uuid.spec b/SPECS/nodejs-uuid.spec new file mode 100644 index 0000000..2799d1d --- /dev/null +++ b/SPECS/nodejs-uuid.spec @@ -0,0 +1,70 @@ +%{?scl:%scl_package nodejs-%{npm_name}} +%{!?scl:%global pkg_name %{name}} +%{?nodejs_find_provides_and_requires} + +%global npm_name uuid + +# Disable until dependencies are met +%global enable_tests 0 + +Summary: Rigorous implementation of RFC4122 (v1 and v4) UUIDs +Name: %{?scl_prefix}nodejs-%{npm_name} +Version: 2.0.1 +Release: 5%{?dist} +License: MIT +URL: https://github.com/shtylman/node-uuid +Source0: http://registry.npmjs.org/%{npm_name}/-/%{npm_name}-%{version}.tgz +BuildRequires: nodejs010-runtime +ExclusiveArch: %{nodejs_arches} noarch +BuildArch: noarch +Provides: %{?scl_prefix}nodejs-%{npm_name} = %{version} + +%if 0%{?enable_tests} +BuildRequires: %{?scl_prefix}npm(mocha) +BuildRequires: %{?scl_prefix}npm(coveralls) +%endif + +%description +Simple, fast generation of RFC4122 UUIDS. + +Features: + - Generate RFC4122 version 1 or version 4 UUIDs + - Runs in node.js and all browsers. + - Cryptographically strong random # generation on supporting platforms + - 1185 bytes minified and gzip'ed + - Annotated source code + +%prep +%setup -q -n package +%nodejs_fixdep uuid-js '0.7.5' + +%build + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name} +cp -pr *.js package.json %{buildroot}%{nodejs_sitelib}/%{npm_name} + +%nodejs_symlink_deps + +%if 0%{?enable_tests} + +%check +%nodejs_symlink_deps --check +mocha test/test.js +%endif + +%files +%{!?_licensedir:%global license %doc} +%doc benchmark README.md +%license LICENSE.md +%{nodejs_sitelib}/%{npm_name} + +%changelog +* Fri Jan 15 2016 Tomas Hrcka - 2.0.1-5 +- Fix dependency on uuid-js + +* Thu Jan 07 2016 Tomas Hrcka - 2.0.1-2 +- Enable scl macros + +* Wed Dec 16 2015 Troy Dawson - 2.0.1-1 +- Initial package