diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3edde3e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/ansi-0.2.1-stripped.tgz diff --git a/.nodejs010-nodejs-ansi.metadata b/.nodejs010-nodejs-ansi.metadata new file mode 100644 index 0000000..a35b1e7 --- /dev/null +++ b/.nodejs010-nodejs-ansi.metadata @@ -0,0 +1 @@ +833fc2ae9c57f94176e11395c5ef01953295c4d8 SOURCES/ansi-0.2.1-stripped.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/SOURCES/nodejs-ansi-tarball.sh b/SOURCES/nodejs-ansi-tarball.sh new file mode 100755 index 0000000..71def75 --- /dev/null +++ b/SOURCES/nodejs-ansi-tarball.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +if [ $# -eq 1 ]; then + version="${1}" +else + version=$(rpm -q --specfile --qf='%{version}' nodejs-ansi.spec) +fi +wget http://registry.npmjs.org/ansi/-/ansi-${version}.tgz +tar -zxf ansi-${version}.tgz +rm -f package/examples/imgcat/yoshi.png +tar -zcf ansi-${version}-stripped.tgz package diff --git a/SPECS/nodejs-ansi.spec b/SPECS/nodejs-ansi.spec new file mode 100644 index 0000000..caf4b6b --- /dev/null +++ b/SPECS/nodejs-ansi.spec @@ -0,0 +1,104 @@ +%{?scl:%scl_package nodejs-ansi} +%{!?scl:%global pkg_name %{name}} + +%{?nodejs_find_provides_and_requires} + + +Name: %{?scl_prefix}nodejs-ansi +Version: 0.2.1 +Release: 1%{?dist} +Summary: ANSI escape codes for Node.js +License: MIT +Group: System Environment/Libraries +URL: https://github.com/TooTallNate/ansi.js +# the source contains a nonfree image file, which is removed by the Source1 script +Source0: ansi-%{version}-stripped.tgz +Source1: nodejs-ansi-tarball.sh +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +%if 0%{?fedora} >= 19 +ExclusiveArch: %{nodejs_arches} noarch +%else +ExclusiveArch: %{ix86} x86_64 %{arm} noarch +%endif + +BuildRequires: %{?scl_prefix}nodejs-devel + +%description +ansi.js is a module for Node.js that provides an easy-to-use API for writing +ANSI escape codes to Stream instances. ANSI escape codes are used to do fancy +things in a terminal window, like render text in colors, delete characters, +lines, the entire window, or hide and show the cursor, and lots more! + +%prep +%setup -q -n package + +#fix perms in stuff that goes in %%doc +chmod 0644 examples/*.js examples/*/* + +%build +#nothing to do + +%install +rm -rf %{buildroot} + +mkdir -p %{buildroot}%{nodejs_sitelib}/ansi +cp -pr lib package.json %{buildroot}%{nodejs_sitelib}/ansi + +%nodejs_symlink_deps + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%{nodejs_sitelib}/ansi +%doc README.md examples + +%changelog +* Fri Sep 06 2013 Jamie Nguyen - 0.2.1-1 +- update to upstream release 0.2.1 + +* Sat Aug 03 2013 Fedora Release Engineering - 0.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sat Jun 22 2013 T.C. Hollingsworth - 0.2.0-1 +- new upstream release 0.2.0 + +* Sat Jun 22 2013 T.C. Hollingsworth - 0.1.2-8.1 +- restrict to compatible arches + +* Thu May 30 2013 T.C. Hollingsworth - 0.1.2-7.1 +- rebuild for missing npm(ansi) provides (RHBZ#968531) + +* Fri May 03 2013 T.C. Hollingsworth - 0.1.2-7 +- remove nonfree image + +* Mon Apr 15 2013 T.C. Hollingsworth - 0.1.2-6 +- add macro for EPEL6 dependency generation + +* Thu Apr 11 2013 Stanislav Ochotnicky - 0.1.2-6 +- Add support for software collections + +* Thu Feb 14 2013 Fedora Release Engineering - 0.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sun Jan 13 2013 T.C. Hollingsworth - 0.1.2-4 +- fix permissions correctly + +* Fri Jan 11 2013 T.C. Hollingsworth - 0.1.2-3 +- fix permissions in example + +* Tue Jan 08 2013 T.C. Hollingsworth - 0.1.2-2 +- add missing build section +- fix incorrect summary + +* Fri Apr 27 2012 T.C. Hollingsworth - 0.1.2-1 +- New upstream release 0.1.2 + +* Thu Mar 22 2012 T.C. Hollingsworth - 0.1.0-1 +- new upstream release 0.1.0 + +* Fri Mar 16 2012 T.C. Hollingsworth - 0.0.4-1 +- initial package