From c1786dbfab7417a730cfb6166a726f6a01499308 Mon Sep 17 00:00:00 2001 From: Miro HronĨok Date: Jan 04 2021 11:37:49 +0000 Subject: Orphaned for 6+ weeks --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index cf9db02..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/is-dotfile-1.0.2.tgz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/nodejs-is-dotfile.spec b/nodejs-is-dotfile.spec deleted file mode 100644 index 8813c50..0000000 --- a/nodejs-is-dotfile.spec +++ /dev/null @@ -1,100 +0,0 @@ -%{?nodejs_find_provides_and_requires} - -%global packagename is-dotfile -%global enable_tests 1 - -Name: nodejs-is-dotfile -Version: 1.0.2 -Release: 10%{?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 -* Sat Aug 01 2020 Fedora Release Engineering - 1.0.2-10 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jul 28 2020 Fedora Release Engineering - 1.0.2-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Wed Jan 29 2020 Fedora Release Engineering - 1.0.2-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Jul 25 2019 Fedora Release Engineering - 1.0.2-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Feb 01 2019 Fedora Release Engineering - 1.0.2-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 1.0.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Feb 08 2018 Fedora Release Engineering - 1.0.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 1.0.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 1.0.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Tue Feb 9 2016 Jared Smith - 1.0.2-1 -- Initial packaging diff --git a/sources b/sources deleted file mode 100644 index 1f28be4..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -59773e89eb22f4dc8d3751a32b66fae8 is-dotfile-1.0.2.tgz diff --git a/test.js b/test.js deleted file mode 100644 index 1abd9c9..0000000 --- a/test.js +++ /dev/null @@ -1,29 +0,0 @@ -/*! - * 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); -});