From 0e8cb0fc3edc11e2a3fb921574c38107837a0cb3 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 18 Jan 2018 21:33:43 -0500 Subject: [PATCH 01/21] Initial commit of modulemd Signed-off-by: Stephen Gallagher --- reviewboard.yaml | 63 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 reviewboard.yaml diff --git a/reviewboard.yaml b/reviewboard.yaml new file mode 100644 index 0000000..7fc8c44 --- /dev/null +++ b/reviewboard.yaml @@ -0,0 +1,63 @@ +document: modulemd +version: 1 +data: + summary: A web-based code review tool + description: >- + Review Board is a powerful web-based code review tool that offers + developers an easy way to handle code reviews. It scales well from + small projects to large companies and offers a variety of tools to + take much of the stress and time out of the code review process. + license: + module: + - MIT + dependencies: + buildrequires: + platform: f28 + Django: 1.6 + requires: + platform: f28 + Django: 1.6 + references: + community: https://www.reviewboard.org + documentation: https://www.reviewboard.org/docs + tracker: https://hellosplat.com/s/beanbag/tickets/ + profiles: + default: + rpms: + - ReviewBoard + api: + rpms: + - ReviewBoard + components: + rpms: + ReviewBoard: + rationale: The Review Board code review tool + ref: 2.5 + python-django-evolution: + rationale: >- + A database modification library used and maintained by the + Review Board upstream + ref: 0.7 + python-django-haystack: + rationale: >- + An older version of the Haystack search library for + Django, needed for compatibility. + ref: 2.4 + python-django-multiselectfield: + rationale: >- + An older version of a mult-select form field needed by + Review Board. + ref: 0.1 + python-django-pipeline: + rationale: >- + An older version of this asset-packaging library for + Django that is compatible with Review Board. + ref: 1.3 + python-djblets: + rationale: Review Board tool library + ref: 0.9 + python-markdown: + rationale: >- + An older version of this Markdown implementation that is + compatible with Review Board. + ref: 2.4 From c838081ca5ea4cc17d6f4453875d071d709b9443 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 18 Jan 2018 21:43:28 -0500 Subject: [PATCH 02/21] Fix buildorder for Djblets and ReviewBoard Signed-off-by: Stephen Gallagher --- reviewboard.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reviewboard.yaml b/reviewboard.yaml index 7fc8c44..9389726 100644 --- a/reviewboard.yaml +++ b/reviewboard.yaml @@ -33,6 +33,7 @@ data: ReviewBoard: rationale: The Review Board code review tool ref: 2.5 + buildorder: 20 python-django-evolution: rationale: >- A database modification library used and maintained by the @@ -56,6 +57,7 @@ data: python-djblets: rationale: Review Board tool library ref: 0.9 + buildorder: 10 python-markdown: rationale: >- An older version of this Markdown implementation that is From 8e7a952dac7822bb7b87297d30af34f77296e1b3 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 19 Jan 2018 09:12:12 -0500 Subject: [PATCH 03/21] Add RBTools Signed-off-by: Stephen Gallagher --- reviewboard.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reviewboard.yaml b/reviewboard.yaml index 9389726..70e545d 100644 --- a/reviewboard.yaml +++ b/reviewboard.yaml @@ -25,6 +25,7 @@ data: default: rpms: - ReviewBoard + - RBTools api: rpms: - ReviewBoard @@ -34,6 +35,10 @@ data: rationale: The Review Board code review tool ref: 2.5 buildorder: 20 + RBTools: + rationale: The client tools for Review Board + ref: 0.7 + buildorder: 20 python-django-evolution: rationale: >- A database modification library used and maintained by the From 6e5a58bbc7a7e12851428f0ffaaa5b7142ba8125 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 19 Jan 2018 09:43:24 -0500 Subject: [PATCH 04/21] Fix dependency on django module Signed-off-by: Stephen Gallagher --- reviewboard.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reviewboard.yaml b/reviewboard.yaml index 70e545d..da7dd37 100644 --- a/reviewboard.yaml +++ b/reviewboard.yaml @@ -13,10 +13,10 @@ data: dependencies: buildrequires: platform: f28 - Django: 1.6 + django: 1.6 requires: platform: f28 - Django: 1.6 + django: 1.6 references: community: https://www.reviewboard.org documentation: https://www.reviewboard.org/docs From 4764a3596b618cdce7620e20f683267a6271ad46 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 19 Jan 2018 09:43:46 -0500 Subject: [PATCH 05/21] Add profiles for RBtools Signed-off-by: Stephen Gallagher --- reviewboard.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reviewboard.yaml b/reviewboard.yaml index da7dd37..15cacc8 100644 --- a/reviewboard.yaml +++ b/reviewboard.yaml @@ -25,6 +25,11 @@ data: default: rpms: - ReviewBoard + server: + rpms + - ReviewBoard + client: + rpms: - RBTools api: rpms: From 37856583bd9eaeee6b72d3f381fae7b6ac8b18f3 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 19 Jan 2018 09:46:58 -0500 Subject: [PATCH 06/21] Fix typo Signed-off-by: Stephen Gallagher --- reviewboard.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reviewboard.yaml b/reviewboard.yaml index 15cacc8..deee451 100644 --- a/reviewboard.yaml +++ b/reviewboard.yaml @@ -26,7 +26,7 @@ data: rpms: - ReviewBoard server: - rpms + rpms: - ReviewBoard client: rpms: From 1738e1ce6352c0d4da31ba137cab0b5dc5f30166 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 6 Feb 2018 09:42:54 -0500 Subject: [PATCH 07/21] Drop RBTools Signed-off-by: Stephen Gallagher --- reviewboard.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/reviewboard.yaml b/reviewboard.yaml index deee451..ee8ea4b 100644 --- a/reviewboard.yaml +++ b/reviewboard.yaml @@ -28,22 +28,16 @@ data: server: rpms: - ReviewBoard - client: - rpms: - - RBTools api: rpms: - ReviewBoard + - python2-djblets components: rpms: ReviewBoard: rationale: The Review Board code review tool ref: 2.5 buildorder: 20 - RBTools: - rationale: The client tools for Review Board - ref: 0.7 - buildorder: 20 python-django-evolution: rationale: >- A database modification library used and maintained by the From 6b9b2ecb55f0e434262c59c9f7eab2e484e66a43 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 9 Apr 2018 11:02:56 -0400 Subject: [PATCH 08/21] Update to modulemdv2 Signed-off-by: Stephen Gallagher --- reviewboard.yaml | 130 +++++++++++++++++++++++------------------------ 1 file changed, 63 insertions(+), 67 deletions(-) diff --git a/reviewboard.yaml b/reviewboard.yaml index ee8ea4b..0d0801e 100644 --- a/reviewboard.yaml +++ b/reviewboard.yaml @@ -1,69 +1,65 @@ +--- document: modulemd -version: 1 +version: 2 data: - summary: A web-based code review tool - description: >- - Review Board is a powerful web-based code review tool that offers - developers an easy way to handle code reviews. It scales well from - small projects to large companies and offers a variety of tools to - take much of the stress and time out of the code review process. - license: - module: - - MIT - dependencies: - buildrequires: - platform: f28 - django: 1.6 - requires: - platform: f28 - django: 1.6 - references: - community: https://www.reviewboard.org - documentation: https://www.reviewboard.org/docs - tracker: https://hellosplat.com/s/beanbag/tickets/ - profiles: - default: - rpms: - - ReviewBoard - server: - rpms: - - ReviewBoard - api: - rpms: - - ReviewBoard - - python2-djblets - components: - rpms: - ReviewBoard: - rationale: The Review Board code review tool - ref: 2.5 - buildorder: 20 - python-django-evolution: - rationale: >- - A database modification library used and maintained by the - Review Board upstream - ref: 0.7 - python-django-haystack: - rationale: >- - An older version of the Haystack search library for - Django, needed for compatibility. - ref: 2.4 - python-django-multiselectfield: - rationale: >- - An older version of a mult-select form field needed by - Review Board. - ref: 0.1 - python-django-pipeline: - rationale: >- - An older version of this asset-packaging library for - Django that is compatible with Review Board. - ref: 1.3 - python-djblets: - rationale: Review Board tool library - ref: 0.9 - buildorder: 10 - python-markdown: - rationale: >- - An older version of this Markdown implementation that is - compatible with Review Board. - ref: 2.4 + summary: A web-based code review tool + description: >- + Review Board is a powerful web-based code review tool that offers developers an + easy way to handle code reviews. It scales well from small projects to large companies + and offers a variety of tools to take much of the stress and time out of the code + review process. + license: + module: + - MIT + dependencies: + - buildrequires: + django: [1.6] + platform: [] + requires: + django: [1.6] + platform: [] + references: + community: https://www.reviewboard.org + documentation: https://www.reviewboard.org/docs + tracker: https://hellosplat.com/s/beanbag/tickets/ + profiles: + default: + rpms: + - ReviewBoard + server: + rpms: + - ReviewBoard + api: + rpms: + - ReviewBoard + - python2-djblets + components: + rpms: + ReviewBoard: + rationale: The Review Board code review tool + ref: 2.5 + buildorder: 20 + python-django-evolution: + rationale: A database modification library used and maintained by the Review + Board upstream + ref: 0.7 + python-django-haystack: + rationale: An older version of the Haystack search library for Django, needed + for compatibility. + ref: 2.4 + python-django-multiselectfield: + rationale: An older version of a mult-select form field needed by Review Board. + ref: 0.1 + python-django-pipeline: + rationale: An older version of this asset-packaging library for Django that + is compatible with Review Board. + ref: 1.3 + python-djblets: + rationale: Review Board tool library + ref: 0.9 + buildorder: 10 + python-markdown: + rationale: An older version of this Markdown implementation that is compatible + with Review Board. + ref: 2.4 +... From 0e0a127ddc5acda2504c9d302afb9baef5506cdf Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 16 Aug 2018 11:15:08 -0400 Subject: [PATCH 09/21] Rebuild for F30 branch Signed-off-by: Stephen Gallagher From 0fc31243aa85666e4e584aebda7a74e430cd0698 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 28 Aug 2018 10:33:08 -0400 Subject: [PATCH 10/21] Rebuild for fixed Django 1.6 Signed-off-by: Stephen Gallagher From 21b07e558982632345b4853bba655ad2ee9d87e0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 18 Feb 2019 23:00:41 +0000 Subject: [PATCH 11/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 9de55a686d52e8d7e57eac291ebe7a666fc786e7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Mar 2019 19:22:16 +0000 Subject: [PATCH 12/21] Branching f30 from rawhide Signed-off-by: Fedora Release Engineering From 93900c42b9f2234bfe287be2059a46d0dc05aa82 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 4 Mar 2019 18:13:11 +0000 Subject: [PATCH 13/21] Branching f30 from rawhide, second attempt after platform:f31 enablement Signed-off-by: Fedora Release Engineering From 4bdb2252b4d7eb6558299853d63bb02d112f7d6a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 12 Aug 2019 15:06:29 +0000 Subject: [PATCH 14/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 96516fc68d5cfffb0b29a65ecff2574e197c3397 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 13 Aug 2019 20:03:56 +0000 Subject: [PATCH 15/21] Branching f31 from rawhide Signed-off-by: Fedora Release Engineering From e4f7312e514031f764422305daa7896400e8d611 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 26 Aug 2019 14:03:33 +0000 Subject: [PATCH 16/21] Branching f31 from rawhide, second attempt after platform:f32 enablement Signed-off-by: Fedora Release Engineering From 19e46faddac8af39e0b56a9efd6879ae1304bfd7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 4 Sep 2019 19:21:15 +0000 Subject: [PATCH 17/21] Branching f31 from rawhide, second attempt after platform:f31 enablement Signed-off-by: Fedora Release Engineering From ec5d7ea7751f98a8e0a1a7e236967c878d90d26d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 22 Sep 2019 06:28:41 +0000 Subject: [PATCH 18/21] Branching f31 from rawhide, fourth attempt after platform:f32 enablement due to https://pagure.io/releng/issue/8664 Signed-off-by: Fedora Release Engineering From 4fec3d71fd10e5dbd3f7404acfabf3a9f911ba90 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 6 Feb 2020 18:29:35 +0000 Subject: [PATCH 19/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 2c953efc45c95063fb4b90fe6c7dd04280021ce8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 14 Feb 2020 14:42:49 +0000 Subject: [PATCH 20/21] Branching f32 from rawhide Signed-off-by: Fedora Release Engineering From 96a3c0ab429cec1f589746605de6741e5dfb8370 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Aug 2020 01:51:34 +0000 Subject: [PATCH 21/21] Branching f33 from rawhide Signed-off-by: Fedora Release Engineering