diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..325c7fd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/delayed-stream-0.0.5.tgz diff --git a/.nodejs010-nodejs-delayed-stream.metadata b/.nodejs010-nodejs-delayed-stream.metadata new file mode 100644 index 0000000..e06fb41 --- /dev/null +++ b/.nodejs010-nodejs-delayed-stream.metadata @@ -0,0 +1 @@ +d4b1f43a93e8296dfe02694f4680bc37a313c73f SOURCES/delayed-stream-0.0.5.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-delayed-stream.spec b/SPECS/nodejs-delayed-stream.spec new file mode 100644 index 0000000..eef860d --- /dev/null +++ b/SPECS/nodejs-delayed-stream.spec @@ -0,0 +1,56 @@ +%{?scl:%scl_package nodejs-delayed-stream} +%{!?scl:%global pkg_name %{name}} +%{?nodejs_find_provides_and_requires} + +Name: %{?scl_prefix}nodejs-delayed-stream +Version: 0.0.5 +Release: 5%{?dist} +Summary: Buffers events from a stream until you are ready to handle them +BuildArch: noarch + +Group: System Environment/Libraries +License: MIT +URL: https://github.com/felixge/node-delayed-stream +Source0: http://registry.npmjs.org/delayed-stream/-/delayed-stream-%{version}.tgz +BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: %{?scl_prefix}nodejs-devel + +%description +Buffers events from a stream until you are ready to handle them. + +%prep +%setup -q -n package + +%build +#nothing to do + +%install +rm -rf %buildroot +mkdir -p %{buildroot}%{nodejs_sitelib}/delayed-stream +cp -pr package.json lib %{buildroot}%{nodejs_sitelib}/delayed-stream + +%clean +rm -rf %buildroot + +%files +%defattr(-,root,root,-) +%{nodejs_sitelib}/delayed-stream +%doc License Readme.md + +%changelog +* Thu Oct 17 2013 Tomas Hrcka - 0.0.5-5 +- replace provides and requires with macro + +* Thu Apr 11 2013 Stanislav Ochotnicky - 0.0.5-4 +- Add support for software collections + +* Thu Feb 14 2013 Fedora Release Engineering - 0.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Tue Jan 08 2013 T.C. Hollingsworth - 0.0.5-2 +- add missing build section +- fix License + +* Mon Dec 31 2012 T.C. Hollingsworth - 0.0.5-1 +- initial package generated by npm2rpm