From 50ec9a3c41c99eeecdc5a3d597e3751b077ea470 Mon Sep 17 00:00:00 2001 From: Jared K. Smith Date: Aug 06 2016 14:54:28 +0000 Subject: Initial packaging --- diff --git a/.gitignore b/.gitignore index e69de29..cf9db02 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/is-dotfile-1.0.2.tgz diff --git a/nodejs-is-dotfile.spec b/nodejs-is-dotfile.spec new file mode 100644 index 0000000..170e2af --- /dev/null +++ b/nodejs-is-dotfile.spec @@ -0,0 +1,72 @@ +%{?nodejs_find_provides_and_requires} + +%global packagename is-dotfile +%global enable_tests 1 + +Name: nodejs-is-dotfile +Version: 1.0.2 +Release: 1%{?dist} +Summary: Return true if a file path is (or has) a dotfile + +License: MIT +URL: https://github.com/jonschlinkert/is-dotfile.git +Source0: https://registry.npmjs.org/%{packagename}/-/%{packagename}-%{version}.tgz +# The test files are not included in the npm tarball. +Source1: https://raw.githubusercontent.com/jonschlinkert/is-dotfile/1.0.2/test.js + + +BuildArch: noarch +%if 0%{?fedora} >= 19 +ExclusiveArch: %{nodejs_arches} noarch +%else +ExclusiveArch: %{ix86} x86_64 %{arm} noarch +%endif + +BuildRequires: nodejs-packaging +BuildRequires: npm(dotfile-regex) +%if 0%{?enable_tests} +BuildRequires: mocha +%endif + +%description +Return true if a file path is (or has) a dotfile. Returns false if the path +is a dot directory. + + +%prep +%setup -q -n package +# setup the tests +cp -p %{SOURCE1} . + + + +%build +# nothing to do! + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} +cp -pr package.json index.js \ + %{buildroot}%{nodejs_sitelib}/%{packagename} + +%nodejs_symlink_deps + +%check +%nodejs_symlink_deps --check +%{__nodejs} -e 'require("./")' +%if 0%{?enable_tests} +%{_bindir}/mocha -R spec +%else +%{_bindir}/echo "Tests disabled..." +%endif + + +%files +%{!?_licensedir:%global license %doc} +%doc *.md +%license LICENSE +%{nodejs_sitelib}/%{packagename} + + +%changelog +* Tue Feb 9 2016 Jared Smith - 1.0.2-1 +- Initial packaging diff --git a/sources b/sources index e69de29..1f28be4 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +59773e89eb22f4dc8d3751a32b66fae8 is-dotfile-1.0.2.tgz diff --git a/test.js b/test.js new file mode 100644 index 0000000..1abd9c9 --- /dev/null +++ b/test.js @@ -0,0 +1,29 @@ +/*! + * is-dotfile + * + * Copyright (c) 2015 Jon Schlinkert. + * Licensed under the MIT License + */ + +'use strict'; + +/* deps: mocha */ +var assert = require('assert'); +var isDotfile = require('./'); + +it('should return false when the file is not a dotfile', function () { + assert.equal(isDotfile('a/b/c/d/e.js'), false); + assert.equal(isDotfile('a/b.c.d/e.js'), false); + assert.equal(isDotfile('a/b.js'), false); + assert.equal(isDotfile('a/.b/c/a.js'), false); + assert.equal(isDotfile('.git/foo'), false); + assert.equal(isDotfile('.gitignore/foo'), false); +}); + +it('should return true when the file is a dotfile', function () { + assert.equal(isDotfile('a/b/c/d/.gitignore'), true); + assert.equal(isDotfile('a/.b/c/.gitignore'), true); + assert.equal(isDotfile('a/.gitignore'), true); + assert.equal(isDotfile('.gitignore'), true); + assert.equal(isDotfile('/.gitignore'), true); +});