Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,2 +1,5 @@
|
|||||||
SOURCES/d3-flame-graph-4.0.7.tar.gz
|
/d3-flame-graph-*.tar.gz
|
||||||
SOURCES/js-d3-flame-graph-vendor-4.0.7-1.tar.xz
|
/js-d3-flame-graph-vendor-*.tar.xz
|
||||||
|
/js-d3-flame-graph-vendor-*.tar.xz.manifest
|
||||||
|
/d3-flame-graph*/
|
||||||
|
*.rpm
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
b80fbdf125fcadec5ec1b3d8acc216f6cbd4c2d5 SOURCES/d3-flame-graph-4.0.7.tar.gz
|
|
||||||
7dafbc87ec919cdb14e5b01fbdb115a75312f7fb SOURCES/js-d3-flame-graph-vendor-4.0.7-1.tar.xz
|
|
2
README
Normal file
2
README
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
The test's Makefiles are not used in Fedora CI infrastructure. But are kept here
|
||||||
|
for backward compatibility with traditional beakerlib test harness in RHEL.
|
26
README.md
Normal file
26
README.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# js-d3-flame-graph
|
||||||
|
The js-d3-flame-graph package
|
||||||
|
|
||||||
|
## Upgrade instructions
|
||||||
|
* update `Version`, `Release`, `%changelog` and tarball NVRs in the specfile
|
||||||
|
* create bundles and manifest: `make clean all`
|
||||||
|
* update specfile with contents of the `.manifest` file
|
||||||
|
* run local build: `rpkg local`
|
||||||
|
* run rpm linter: `rpkg lint -r js-d3-flame-graph.rpmlintrc`
|
||||||
|
* run a scratch build: `fedpkg scratch-build --srpm`
|
||||||
|
* upload new source tarballs: `fedpkg new-sources *.tar.gz *.tar.xz`
|
||||||
|
* commit new `sources` file
|
||||||
|
|
||||||
|
## Backporting
|
||||||
|
* create the patch
|
||||||
|
* declare and apply (`%prep`) the patch in the specfile
|
||||||
|
* if the patch affects Node.js dependencies
|
||||||
|
* create new tarballs
|
||||||
|
* update the specfile with new tarball path and contents of the `.manifest` file
|
||||||
|
|
||||||
|
Note: the Makefile automatically applies patches before creating the tarballs
|
||||||
|
|
||||||
|
## Patches
|
||||||
|
* `*.patch`: regular patches applied to the source, applied in the Makefile before vendoring and in the specfile (e.g. updating dependencies)
|
||||||
|
* `*.vendor.patch`: patches applied to the vendor tarball (e.g. patching vendored sources before generating a webpack)
|
||||||
|
* `*.cond.patch`: conditionally applied patches in the specfile
|
9
gating.yaml
Normal file
9
gating.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-*
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1-tmt-aarch64.functional}
|
||||||
|
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1-tmt-ppc64le.functional}
|
||||||
|
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1-tmt-s390x.functional}
|
||||||
|
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1-tmt-x86_64.functional}
|
2
js-d3-flame-graph.rpmlintrc
Normal file
2
js-d3-flame-graph.rpmlintrc
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
addFilter("W: strange-permission list_bundled_nodejs_packages.py 755")
|
||||||
|
addFilter("W: patch-not-applied .+.vendor.patch")
|
@ -3,12 +3,12 @@
|
|||||||
|
|
||||||
Name: js-d3-flame-graph
|
Name: js-d3-flame-graph
|
||||||
Version: 4.0.7
|
Version: 4.0.7
|
||||||
Release: 1%{?dist}
|
Release: 10%{?dist}
|
||||||
Summary: A D3.js plugin that produces flame graphs
|
Summary: A D3.js plugin that produces flame graphs
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
License: ASL 2.0
|
License: Apache-2.0
|
||||||
URL: %{github}
|
URL: %{github}
|
||||||
|
|
||||||
Source0: %{github}/archive/%{version}/%{pkgname}-%{version}.tar.gz
|
Source0: %{github}/archive/%{version}/%{pkgname}-%{version}.tar.gz
|
||||||
@ -105,8 +105,49 @@ cp -a dist/* %{buildroot}/%{_jsdir}/%{pkgname}
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 4.0.7-10
|
||||||
|
- Bump release for October 2024 mass rebuild:
|
||||||
|
Resolves: RHEL-64018
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 4.0.7-9
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.7-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.7-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.7-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 12 2023 Nathan Scott <nathans@redhat.com> - 4.0.7-5
|
||||||
|
- Switch to SPDX license string
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.7-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Oct 01 2021 Andreas Gerstmayr <agerstmayr@redhat.com> - 4.0.7-1
|
* Fri Oct 01 2021 Andreas Gerstmayr <agerstmayr@redhat.com> - 4.0.7-1
|
||||||
- update to 4.0.7 tagged upstream community sources, see CHANGELOG
|
- update to 4.0.7 tagged upstream community sources, see CHANGELOG
|
||||||
|
|
||||||
|
* Wed Sep 29 2021 Andreas Gerstmayr <agerstmayr@redhat.com> - 3.0.2-5
|
||||||
|
- change webpack hash function to sha256
|
||||||
|
- remove unused cryptographic implementations
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Mar 20 2020 Andreas Gerstmayr <agerstmayr@redhat.com> 3.0.2-1
|
* Fri Mar 20 2020 Andreas Gerstmayr <agerstmayr@redhat.com> 3.0.2-1
|
||||||
- initial version
|
- initial version
|
7
plans/gating.fmf
Normal file
7
plans/gating.fmf
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
summary: CI Gating Plan
|
||||||
|
discover:
|
||||||
|
how: fmf
|
||||||
|
filter: tag:gating
|
||||||
|
url: https://src.fedoraproject.org/rpms/js-d3-flame-graph
|
||||||
|
execute:
|
||||||
|
how: tmt
|
2
sources
Normal file
2
sources
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SHA512 (d3-flame-graph-4.0.7.tar.gz) = 1905fbeac9cef2808330af86495ef2a4ec97a332ed24bb869ed7fe71e0cdf44da179c66464dff125ced2be0768a7fe6f73971dbc4d01f7e39725dd3527ebd05a
|
||||||
|
SHA512 (js-d3-flame-graph-vendor-4.0.7-1.tar.xz) = 1648ff25b800932bb5cdfdfdd8505eb18d0e097c7ea7919ad2a98fdd72ec0ee65ff1bdd67c331b14a8eeb0f3ea533c4b0c0779205ba386c1ed4d8c054328fc53
|
Loading…
Reference in New Issue
Block a user