From ec4115d9e38eacf56794002da7e122b27e423ab8 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 24 2017 08:58:56 +0000 Subject: import rh-nodejs8-nodejs-uuid-js-0.7.5-4.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..abd8ccd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/uuid-js-0.7.5.tgz diff --git a/.rh-nodejs8-nodejs-uuid-js.metadata b/.rh-nodejs8-nodejs-uuid-js.metadata new file mode 100644 index 0000000..e74fcdd --- /dev/null +++ b/.rh-nodejs8-nodejs-uuid-js.metadata @@ -0,0 +1 @@ +6c886d02a53d2d40dcf25d91a170b4a7b25b94d0 SOURCES/uuid-js-0.7.5.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-js.spec b/SPECS/nodejs-uuid-js.spec new file mode 100644 index 0000000..79995ee --- /dev/null +++ b/SPECS/nodejs-uuid-js.spec @@ -0,0 +1,78 @@ +%{?scl:%scl_package nodejs-uuid-js} +%{!?scl:%global pkg_name %{name}} + +# spec file for package nodejs-nodejs-uuid-js + +%global npm_name uuid-js +%{?nodejs_find_provides_and_requires} + +%global enable_tests 0 + +Name: %{?scl_prefix}nodejs-uuid-js +Version: 0.7.5 +Release: 4%{?dist} +Summary: A js library to generate and parse UUIDs,TimeUUIDs and generate TimeUUID based on Date for range selections +Url: http://github.com/pnegri/uuid-js +Source0: https://registry.npmjs.org/%{npm_name}/-/%{npm_name}-%{version}.tgz +License: ASL-2.0 + +BuildArch: noarch + +%if 0%{?fedora} >= 19 +ExclusiveArch: %{nodejs_arches} noarch +%else +ExclusiveArch: %{ix86} x86_64 %{arm} noarch +%endif + +BuildRequires: %{?scl_prefix}nodejs-devel + +%if 0%{?enable_tests} +BuildRequires: %{?scl_prefix}npm(sinon) +%endif + +%description +A js library to generate and parse UUIDs,TimeUUIDs and generate TimeUUID based on Date for range selections + +%prep +%setup -q -n package + +rm -rf node_modules + +%build + +#nothing to do + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name} + +cp -pr package.json lib/ \ +%{buildroot}%{nodejs_sitelib}/%{npm_name} + +%{nodejs_symlink_deps} + +%if 0%{?enable_tests} + +%check +%{nodejs_symlink_deps} --check + +%endif + +%files +%{!?_licensedir:%global license %doc} +%{nodejs_sitelib}/uuid-js + +%doc README.md +%license LICENSE.txt + +%changelog +* Mon Jul 03 2017 Zuzana Svetlikova - 0.7.5-4 +- rh-nodejs8 rebuild + +* Tue Feb 16 2016 Zuzana Svetlikova - 0.7.5-3 +- Use macro in -runtime dependency + +* Sun Feb 14 2016 Zuzana Svetlikova - 0.7.5-2 +- Rebuilt with updated metapackage + +* Tue Jan 12 2016 Tomas Hrcka - 0.7.5-1 +- Initial build