diff options
Diffstat (limited to 'python-cloudcomponents-cdk-pull-request-check.spec')
-rw-r--r-- | python-cloudcomponents-cdk-pull-request-check.spec | 547 |
1 files changed, 547 insertions, 0 deletions
diff --git a/python-cloudcomponents-cdk-pull-request-check.spec b/python-cloudcomponents-cdk-pull-request-check.spec new file mode 100644 index 0000000..261ff26 --- /dev/null +++ b/python-cloudcomponents-cdk-pull-request-check.spec @@ -0,0 +1,547 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cloudcomponents.cdk-pull-request-check +Version: 2.1.0 +Release: 1 +Summary: Cdk component that automatically check pull requests +License: MIT +URL: https://github.com/cloudcomponents/cdk-constructs +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/37/f8/89eaacb6f3dc70360c247a38d773fdfbeb59d32d89ab1069875cd1a2a863/cloudcomponents.cdk-pull-request-check-2.1.0.tar.gz +BuildArch: noarch + +Requires: python3-aws-cdk-lib +Requires: python3-constructs +Requires: python3-jsii +Requires: python3-publication + +%description +[](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-pull-request-check + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-pull-request-check) +[](https://pypi.org/project/cloudcomponents.cdk-pull-request-check/) +[](https://github.com/kolomied/awesome-cdk) + +> Cdk component that automatically check pull requests + +## Install + +TypeScript/JavaScript: + +```bash +npm install --save @cloudcomponents/cdk-pull-request-check +``` + +Python: + +```bash +pip install cloudcomponents.cdk-pull-request-check +``` + +## How to use + +```python +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Construct } from 'constructs'; + +export class CodePipelineStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'MyRepositoryName', + }); + + // CodePipeline etc. + + new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('prcheck.yml'), + }); + } +} +``` + +## Approval Template Rules + +```python +import { ApprovalRuleTemplate, ApprovalRuleTemplateRepositoryAssociation } from '@cloudcomponents/cdk-pull-request-approval-rule'; +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Construct } from 'constructs'; + +export class PullRequestStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'pr-check-repository', + }); + + const { approvalRuleTemplateName } = new ApprovalRuleTemplate(this, 'ApprovalRuleTemplate', { + approvalRuleTemplateName: 'template-name', + template: { + approvers: { + numberOfApprovalsNeeded: 1, + }, + }, + }); + + new ApprovalRuleTemplateRepositoryAssociation(this, 'ApprovalRuleTemplateRepositoryAssociation', { + approvalRuleTemplateName, + repository, + }); + + new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('prcheck.yml'), + }); + } +} +``` + +## Custom notifications + +The component comments the pull request and sets the approval state by default. Custom notifications can be set up this way + +```python +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { SnsTopic } from 'aws-cdk-lib/aws-events-targets'; +import { Topic } from 'aws-cdk-lib/aws-sns'; +import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions'; +import { Construct } from 'constructs'; + +export class CodePipelineStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'MyRepositoryName', + description: 'Some description.', // optional property + }); + + // Your CodePipeline... + + const prCheck = new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('buildspecs/prcheck.yml'), + }); + + const prTopic = new Topic(this, 'PullRequestTopic'); + + prTopic.addSubscription( + new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL as string), + ); + + prCheck.onCheckStarted('started', { + target: new SnsTopic(prTopic), + }); + + prCheck.onCheckSucceeded('succeeded', { + target: new SnsTopic(prTopic), + }); + + prCheck.onCheckFailed('failed', { + target: new SnsTopic(prTopic), + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-pull-request-check/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-pull-request-check/LICENSE) + + + + +%package -n python3-cloudcomponents.cdk-pull-request-check +Summary: Cdk component that automatically check pull requests +Provides: python-cloudcomponents.cdk-pull-request-check +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-cloudcomponents.cdk-pull-request-check +[](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-pull-request-check + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-pull-request-check) +[](https://pypi.org/project/cloudcomponents.cdk-pull-request-check/) +[](https://github.com/kolomied/awesome-cdk) + +> Cdk component that automatically check pull requests + +## Install + +TypeScript/JavaScript: + +```bash +npm install --save @cloudcomponents/cdk-pull-request-check +``` + +Python: + +```bash +pip install cloudcomponents.cdk-pull-request-check +``` + +## How to use + +```python +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Construct } from 'constructs'; + +export class CodePipelineStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'MyRepositoryName', + }); + + // CodePipeline etc. + + new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('prcheck.yml'), + }); + } +} +``` + +## Approval Template Rules + +```python +import { ApprovalRuleTemplate, ApprovalRuleTemplateRepositoryAssociation } from '@cloudcomponents/cdk-pull-request-approval-rule'; +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Construct } from 'constructs'; + +export class PullRequestStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'pr-check-repository', + }); + + const { approvalRuleTemplateName } = new ApprovalRuleTemplate(this, 'ApprovalRuleTemplate', { + approvalRuleTemplateName: 'template-name', + template: { + approvers: { + numberOfApprovalsNeeded: 1, + }, + }, + }); + + new ApprovalRuleTemplateRepositoryAssociation(this, 'ApprovalRuleTemplateRepositoryAssociation', { + approvalRuleTemplateName, + repository, + }); + + new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('prcheck.yml'), + }); + } +} +``` + +## Custom notifications + +The component comments the pull request and sets the approval state by default. Custom notifications can be set up this way + +```python +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { SnsTopic } from 'aws-cdk-lib/aws-events-targets'; +import { Topic } from 'aws-cdk-lib/aws-sns'; +import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions'; +import { Construct } from 'constructs'; + +export class CodePipelineStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'MyRepositoryName', + description: 'Some description.', // optional property + }); + + // Your CodePipeline... + + const prCheck = new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('buildspecs/prcheck.yml'), + }); + + const prTopic = new Topic(this, 'PullRequestTopic'); + + prTopic.addSubscription( + new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL as string), + ); + + prCheck.onCheckStarted('started', { + target: new SnsTopic(prTopic), + }); + + prCheck.onCheckSucceeded('succeeded', { + target: new SnsTopic(prTopic), + }); + + prCheck.onCheckFailed('failed', { + target: new SnsTopic(prTopic), + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-pull-request-check/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-pull-request-check/LICENSE) + + + + +%package help +Summary: Development documents and examples for cloudcomponents.cdk-pull-request-check +Provides: python3-cloudcomponents.cdk-pull-request-check-doc +%description help +[](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-pull-request-check + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-pull-request-check) +[](https://pypi.org/project/cloudcomponents.cdk-pull-request-check/) +[](https://github.com/kolomied/awesome-cdk) + +> Cdk component that automatically check pull requests + +## Install + +TypeScript/JavaScript: + +```bash +npm install --save @cloudcomponents/cdk-pull-request-check +``` + +Python: + +```bash +pip install cloudcomponents.cdk-pull-request-check +``` + +## How to use + +```python +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Construct } from 'constructs'; + +export class CodePipelineStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'MyRepositoryName', + }); + + // CodePipeline etc. + + new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('prcheck.yml'), + }); + } +} +``` + +## Approval Template Rules + +```python +import { ApprovalRuleTemplate, ApprovalRuleTemplateRepositoryAssociation } from '@cloudcomponents/cdk-pull-request-approval-rule'; +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Construct } from 'constructs'; + +export class PullRequestStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'pr-check-repository', + }); + + const { approvalRuleTemplateName } = new ApprovalRuleTemplate(this, 'ApprovalRuleTemplate', { + approvalRuleTemplateName: 'template-name', + template: { + approvers: { + numberOfApprovalsNeeded: 1, + }, + }, + }); + + new ApprovalRuleTemplateRepositoryAssociation(this, 'ApprovalRuleTemplateRepositoryAssociation', { + approvalRuleTemplateName, + repository, + }); + + new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('prcheck.yml'), + }); + } +} +``` + +## Custom notifications + +The component comments the pull request and sets the approval state by default. Custom notifications can be set up this way + +```python +import { PullRequestCheck } from '@cloudcomponents/cdk-pull-request-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { BuildSpec } from 'aws-cdk-lib/aws-codebuild'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { SnsTopic } from 'aws-cdk-lib/aws-events-targets'; +import { Topic } from 'aws-cdk-lib/aws-sns'; +import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions'; +import { Construct } from 'constructs'; + +export class CodePipelineStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'MyRepositoryName', + description: 'Some description.', // optional property + }); + + // Your CodePipeline... + + const prCheck = new PullRequestCheck(this, 'PullRequestCheck', { + repository, + buildSpec: BuildSpec.fromSourceFilename('buildspecs/prcheck.yml'), + }); + + const prTopic = new Topic(this, 'PullRequestTopic'); + + prTopic.addSubscription( + new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL as string), + ); + + prCheck.onCheckStarted('started', { + target: new SnsTopic(prTopic), + }); + + prCheck.onCheckSucceeded('succeeded', { + target: new SnsTopic(prTopic), + }); + + prCheck.onCheckFailed('failed', { + target: new SnsTopic(prTopic), + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-pull-request-check/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-pull-request-check/LICENSE) + + + + +%prep +%autosetup -n cloudcomponents.cdk-pull-request-check-2.1.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-cloudcomponents.cdk-pull-request-check -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 2.1.0-1 +- Package Spec generated |