From 9f7d2e6df0c597682d8fddc14d75630158685c92 Mon Sep 17 00:00:00 2001 From: Miro Hrončok Date: Aug 18 2020 15:44:10 +0000 Subject: Orphaned for 6+ weeks --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3b894d4..0000000 --- a/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -/path-exists-a8d30de.tar.gz -/path-exists-3af4236.tar.gz -/path-exists-3.0.0.tgz -/test.js -/path-exists-4.0.0.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-path-exists.spec b/nodejs-path-exists.spec deleted file mode 100644 index 125a9e2..0000000 --- a/nodejs-path-exists.spec +++ /dev/null @@ -1,103 +0,0 @@ -# ava not yet packaged -%global enable_tests 0 -%global srcname path-exists - -Epoch: 1 -Name: nodejs-%{srcname} -Version: 4.0.0 -Release: 5%{?dist} -Summary: Check if a path exists -License: MIT -URL: https://github.com/sindresorhus/path-exists -Source0: https://registry.npmjs.com/%{srcname}/-/%{srcname}-%{version}.tgz -# Test file not in npm tarball -Source1: https://raw.githubusercontent.com/sindresorhus/%{srcname}/v%{version}/test.js - -BuildArch: noarch -ExclusiveArch: %{nodejs_arches} noarch - -BuildRequires: nodejs-packaging - -%if 0%{?enable_tests} -BuildRequires: npm(ava) -BuildRequires: npm(tsd) -BuildRequires: npm(xo) -%endif - -%description -%{summary}. - -%prep -%autosetup -n package -cp -p %{SOURCE1} . - -%build -#nothing to do - - -%install -mkdir -p %{buildroot}%{nodejs_sitelib}/%{srcname} -cp -pr index.js package.json \ - %{buildroot}%{nodejs_sitelib}/%{srcname} - -%nodejs_symlink_deps - - -%check -%nodejs_symlink_deps --check -%{__nodejs} -e 'require("./")' -%if 0%{?enable_tests} -ava -%endif - - -%files -%doc readme.md -%license license -%{nodejs_sitelib}/%{srcname} - - -%changelog -* Sat Aug 01 2020 Fedora Release Engineering - 1:4.0.0-5 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jul 28 2020 Fedora Release Engineering - 1:4.0.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Wed Jan 29 2020 Fedora Release Engineering - 1:4.0.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Jul 25 2019 Fedora Release Engineering - 1:4.0.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Mon Apr 29 2019 Jan Staněk - 1:4.0.0-1 -- Update to version 4.0.0 - -* Fri Feb 01 2019 Fedora Release Engineering - 1:3.0.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 1:3.0.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Feb 08 2018 Fedora Release Engineering - 1:3.0.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 1:3.0.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Apr 22 2017 Jared Smith - 1:3.0.0-1 -- Update to upstream 3.0.0 release - -* Fri Feb 10 2017 Fedora Release Engineering - 1:2.1.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Thu Feb 04 2016 Fedora Release Engineering - 1:2.1.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Sun Dec 13 2015 Piotr Popieluch - 1:2.1.0-1 -- Update to 2.1.0 -- Bump epoch, version 2.0.0 was pushed with version tag: 2.2.0 - -* Sat Oct 17 2015 Piotr Popieluch - 2.0.0-1 -- Initial package diff --git a/sources b/sources deleted file mode 100644 index ed40b5b..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (path-exists-4.0.0.tgz) = 6a4f50cb943b8d86f65b071ecb9169be0d8aa0073f64884b48b392066466ca03ec1b091556dd1f65ad2aaed333fa6ead2530077d943c167981e0c1b82d6cbbff diff --git a/test.js b/test.js deleted file mode 100644 index 762aad6..0000000 --- a/test.js +++ /dev/null @@ -1,12 +0,0 @@ -import test from 'ava'; -import pathExists from '.'; - -test('async', async t => { - t.true(await pathExists('test.js')); - t.false(await pathExists('fail')); -}); - -test('sync', t => { - t.true(pathExists.sync('test.js')); - t.false(pathExists.sync('fail')); -});