diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a79bfd2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/normalize-package-data-0.2.8.tgz diff --git a/.nodejs010-nodejs-normalize-package-data.metadata b/.nodejs010-nodejs-normalize-package-data.metadata new file mode 100644 index 0000000..339a560 --- /dev/null +++ b/.nodejs010-nodejs-normalize-package-data.metadata @@ -0,0 +1 @@ +95dc1bcb54c8d46b3be345c05afbab27e48e2f69 SOURCES/normalize-package-data-0.2.8.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-normalize-package-data.spec b/SPECS/nodejs-normalize-package-data.spec new file mode 100644 index 0000000..eab6759 --- /dev/null +++ b/SPECS/nodejs-normalize-package-data.spec @@ -0,0 +1,81 @@ +%{?scl:%scl_package nodejs-normalize-package-data} +%{!?scl:%global pkg_name %{name}} + +%{?nodejs_find_provides_and_requires} + +Name: %{?scl_prefix}nodejs-normalize-package-data +Version: 0.2.8 +Release: 1%{?dist} +Summary: Normalizes npm/package.json metadata +BuildArch: noarch +ExclusiveArch: %{nodejs_arches} noarch + +Group: Development/Libraries +License: BSD +URL: https://github.com/meryn/normalize-package-data +Source0: http://registry.npmjs.org/normalize-package-data/-/normalize-package-data-%{version}.tgz +BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: %{?scl_prefix}nodejs-devel + +#for tests +#BuildRequires: %{?scl_prefix}npm(tap) +#BuildRequires: %{?scl_prefix}npm(underscore) +#BuildRequires: %{?scl_prefix}npm(async) +#BuildRequires: %{?scl_prefix}npm(semver) +#BuildRequires: %{?scl_prefix}npm(github-url-from-git) + +%description +normalize-package-data exports a function that normalizes package metadata. This +data is typically found in a package.json file, but in principle could come from +any source - for example the npm registry. + +normalize-package-data is used by read-package-json to normalize the data it +reads from a package.json file. In turn, read-package-json is used by npm and +various npm-related tools. + +%prep +%setup -q -n package + +%build +#nothing to do + +%install +rm -rf %buildroot + +mkdir -p %{buildroot}%{nodejs_sitelib}/normalize-package-data +cp -pr lib package.json %{buildroot}%{nodejs_sitelib}/normalize-package-data + +%nodejs_symlink_deps + +%check +#%nodejs_symlink_deps --check +#%tap test/*.js || : + +%clean +rm -rf %buildroot + +%files +%defattr(-,root,root,-) +%{nodejs_sitelib}/normalize-package-data +%doc README.md LICENSE AUTHORS + +%changelog +* Thu Jan 16 2014 Tomas Hrcka - 0.2.8-1 +- New upstream release 0.2.8 + +* Fri Nov 08 2013 Tomas Hrcka - 0.2.1-1.1 +- Software collections support + +* Tue Jul 30 2013 T.C. Hollingsworth - 0.2.1-1 +- new upstream release 0.2.1 + +* Sun Jun 23 2013 T.C. Hollingsworth - 0.2.0-1 +- new upstream release 0.2.0 +- temporarily ignore test results to make semver update easier + +* Sat Jun 22 2013 T.C. Hollingsworth - 0.1.6-2 +- restrict to compatible arches + +* Sun Jun 02 2013 T.C. Hollingsworth - 0.1.6-1 +- initial package