From 89773ce9658779e04b9515cb029377249bc62aea Mon Sep 17 00:00:00 2001 From: Miro HronĨok Date: Aug 13 2020 09:28:11 +0000 Subject: Orphaned for 6+ weeks --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 806c567..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/babel-runtime-6.23.0.tgz -/babel-runtime-scripts-6.23.0.tar.bz2 diff --git a/LICENSE b/LICENSE deleted file mode 100644 index d6b2e00..0000000 --- a/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -MIT License - -Copyright (c) 2014-2017 Sebastian McKenzie - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 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/dl-babel-files.sh b/dl-babel-files.sh deleted file mode 100644 index 548d4ae..0000000 --- a/dl-babel-files.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash - -tag=$(sed -n 's/^Version:\s\(.*\)$/\1/p' ./*.spec | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//') -url=https://github.com/babel/babel/ -subpackage=$(sed -n 's/^.global packagename\s\(.*\)$/\1/p' ./*.spec | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//') - -echo "*** Working on [$subpackage] version [$tag] *** " - -set -e - -tmp=$(mktemp -d) - -trap cleanup EXIT -cleanup() { - echo Cleaning up... - set +e - [ -z "$tmp" -o ! -d "$tmp" ] || rm -rf "$tmp" -} - -unset CDPATH -pwd=$(pwd) - -pushd "$tmp" -git clone $url -cd babel -subdir=packages/${subpackage} -if [ -d "${subdir}/test" ]; then - git archive --prefix='test/' --format=tar refs/tags/v${tag}:${subdir}/test/ \ - | bzip2 > "$pwd"/${subpackage}-tests-${tag}.tar.bz2 -elif [ -d "${subdir}/tests" ]; then - git archive --prefix='tests/' --format=tar refs/tags/v${tag}:${subdir}/tests/ \ - | bzip2 > "$pwd"/${subpackage}-tests-${tag}.tar.bz2 -else - echo "No test directory found for tag ${gittag}" -fi -if [ -d "${subdir}/src" ]; then - git archive --prefix='src/' --format=tar refs/tags/v${tag}:${subdir}/src/ \ - | bzip2 > "$pwd"/${subpackage}-src-${tag}.tar.bz2 -fi -if [ -d "${subdir}/scripts" ]; then - git archive --prefix='scripts/' --format=tar refs/tags/v${tag}:${subdir}/scripts/ \ - | bzip2 > "$pwd"/${subpackage}-scripts-${tag}.tar.bz2 -fi -popd diff --git a/nodejs-babel-runtime.spec b/nodejs-babel-runtime.spec deleted file mode 100644 index 2520923..0000000 --- a/nodejs-babel-runtime.spec +++ /dev/null @@ -1,106 +0,0 @@ -%{?nodejs_find_provides_and_requires} - -%global packagename babel-runtime -%global enable_tests 1 - -Name: nodejs-babel-runtime -Version: 6.23.0 -Release: 8%{?dist} -Summary: The babel selfContained runtime - -License: MIT -URL: https://github.com/babel/babel/tree/master/packages/babel-runtime -Source0: https://registry.npmjs.org/%{packagename}/-/%{packagename}-%{version}.tgz -# The test files are not included in the npm tarball. -# Source1 is generated by running Source10, which pulls from the upstream -# version control repository. -Source1: %{packagename}-scripts-%{version}.tar.bz2 -Source10: dl-babel-files.sh -# license file -Source11: https://raw.githubusercontent.com/babel/babel/v%{version}/LICENSE - - -BuildArch: noarch -%if 0%{?fedora} >= 19 -ExclusiveArch: %{nodejs_arches} noarch -%else -ExclusiveArch: %{ix86} x86_64 %{arm} noarch -%endif - -BuildRequires: nodejs-packaging -%if 0%{?enable_tests} -BuildRequires: npm(core-js) -%endif - -%description -The babel selfContained runtime - - -%prep -%setup -q -n package -# setup the tests -%setup -q -T -D -a 1 -n package -# copy the license file -cp -p %{SOURCE11} . - -# I know you'll be temped to remove the "core-js" directory, thinking that it's -# a bundled copy of the npm(core-js) package. It's not. Instead, it's a bunch -# of files that refer to the corresponding files from the npm(core-js) package. - -%build -# nothing to do! - -%install -mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} -cp -pr package.json *.js helpers/ regenerator/ core-js/ \ - %{buildroot}%{nodejs_sitelib}/%{packagename} - -%nodejs_symlink_deps - -%check -%nodejs_symlink_deps --check -%if 0%{?enable_tests} -%{_bindir}/echo -e "\e[102m -=#=- There are no tests -=#=- \e[0m" -%else -%{_bindir}/echo -e "\e[101m -=#=- Tests disabled -=#=- \e[0m" - -%endif - - -%files -%{!?_licensedir:%global license %doc} -%doc *.md -%license LICENSE -%{nodejs_sitelib}/%{packagename} - - -%changelog -* Tue Jul 28 2020 Fedora Release Engineering - 6.23.0-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Wed Jan 29 2020 Fedora Release Engineering - 6.23.0-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Jul 25 2019 Fedora Release Engineering - 6.23.0-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Feb 01 2019 Fedora Release Engineering - 6.23.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 6.23.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Feb 08 2018 Fedora Release Engineering - 6.23.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 6.23.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Thu Apr 13 2017 Jared Smith - 6.23.0-1 -- Update to upstream 6.23.0 release - -* Tue Jul 05 2016 Jared Smith - 6.9.2-1 -- Update to upstream 6.9.2 release - -* Wed Feb 17 2016 Jared Smith - 6.5.0-1 -- Initial packaging diff --git a/sources b/sources deleted file mode 100644 index 3c85b01..0000000 --- a/sources +++ /dev/null @@ -1,2 +0,0 @@ -SHA512 (babel-runtime-6.23.0.tgz) = f55765b9e6bf329b2474bb0b6131f5d16b5ce73d94d131c61d525ea9e73410751b7c4b76ab7cccd69890fbf1a3325f61d1dad4635845f331d5f67987f0a97e3a -SHA512 (babel-runtime-scripts-6.23.0.tar.bz2) = b65507c3e39fb887e506ca19cb59f2ccd9a739db27c6a1fcf690ae052c049d9a8cf3da7227735da83d5613311901a2bb1ad47257f67d849c7d8196d0af8a53b4