From 66086a2ae43a995c5fa302b3583c6c6bad63ed90 Mon Sep 17 00:00:00 2001 From: Honza Horak Date: Tue, 16 May 2023 21:21:02 +0200 Subject: [PATCH] Replace whole repo with latest content from branch stream-16-rhel-8.8.0 Content corresponds with RHEL dist-git commit 36384cf --- .gitignore | 6 +++++- README.md | 3 --- nodejs-nodemon.spec | 2 +- nodemon-tarball.sh | 8 ++++---- 4 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 README.md diff --git a/.gitignore b/.gitignore index 9bbddfb..83db316 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ -SOURCES/nodemon-v2.0.20-bundled.tar.gz +/nodemon-v1.18.3-bundled.tar.gz +/nodemon-v2.0.3-bundled.tar.gz +/nodemon-v2.0.7-bundled.tar.gz +/nodemon-v2.0.15-bundled.tar.gz +/nodemon-v2.0.19-bundled.tar.gz /nodemon-v2.0.20-bundled.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index cfddba7..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# nodejs-nodemon - -The nodejs-nodemon package \ No newline at end of file diff --git a/nodejs-nodemon.spec b/nodejs-nodemon.spec index a7c66b9..e7a7638 100644 --- a/nodejs-nodemon.spec +++ b/nodejs-nodemon.spec @@ -86,7 +86,7 @@ npm run test * Wed Nov 16 2022 Zuzana Svetlikova - 2.0.20-1 - Rebase to 2.0.20 - Resolves: CVE-2022-3517 -- Resolves: #2142841 +- Resolves: #2135491 * Wed Aug 03 2022 Zuzana Svetlikova - 2.0.19-2 - Switched from autosetup diff --git a/nodemon-tarball.sh b/nodemon-tarball.sh index e9c1502..da0b0b2 100644 --- a/nodemon-tarball.sh +++ b/nodemon-tarball.sh @@ -1,7 +1,7 @@ #!/bin/sh version=$(rpm -q --specfile --qf='%{version}\n' nodejs-nodemon.spec | head -n1) -wget https://github.com/remy/nodemon/archive/v$version.tar.gz -tar -zxf v$version.tar.gz -cd nodemon-$version -npm install --production && cd .. && tar -zcf nodemon-v$version-bundled.tar.gz nodemon-$version +wget https://registry.npmjs.org/nodemon/-/nodemon-$version.tgz +tar -zxf nodemon-$version.tgz +cd package +npm install --production && rm -rf Dockerfile && cd .. && tar -zcf nodemon-v$version-bundled.tar.gz package