diff options
Diffstat (limited to 'python-cloudcomponents-cdk-dependency-check.spec')
-rw-r--r-- | python-cloudcomponents-cdk-dependency-check.spec | 412 |
1 files changed, 412 insertions, 0 deletions
diff --git a/python-cloudcomponents-cdk-dependency-check.spec b/python-cloudcomponents-cdk-dependency-check.spec new file mode 100644 index 0000000..fc1e0f6 --- /dev/null +++ b/python-cloudcomponents-cdk-dependency-check.spec @@ -0,0 +1,412 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cloudcomponents.cdk-dependency-check +Version: 2.1.0 +Release: 1 +Summary: OWASP dependency-check for codecommit repositories +License: MIT +URL: https://github.com/cloudcomponents/cdk-constructs +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/56/e0/5dfe72dc6af8a8d329a54df8b6a9ed69438ffd1cbfdfafe3911b4fdd0564/cloudcomponents.cdk-dependency-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-dependency-check + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-dependency-check) +[](https://pypi.org/project/cloudcomponents.cdk-dependency-check/) + +> [OWASP dependency-check](https://owasp.org/www-project-dependency-check/) for codecommit repositories + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-dependency-check +``` + +Python: + +```bash +pip install cloudcomponents.cdk-dependency-check +``` + +## How to use + +```python +import { CodeCommitDependencyCheck } from '@cloudcomponents/cdk-dependency-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Schedule } from 'aws-cdk-lib/aws-events'; +import { SnsTopic } from 'aws-cdk-lib/aws-events-targets'; +import { Bucket } from 'aws-cdk-lib/aws-s3'; +import { Topic } from 'aws-cdk-lib/aws-sns'; +import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions'; +import { Construct } from 'constructs'; + +export class DependencyCheckStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + if (typeof process.env.REPOSITORY_NAME === 'undefined') { + throw new Error('environment variable REPOSITORY_NAME undefined'); + } + + const repository = Repository.fromRepositoryName(this, 'Repository', process.env.REPOSITORY_NAME); + + const reportsBucket = new Bucket(this, 'Bucket'); + + // The following example runs a task every day at 4am + const check = new CodeCommitDependencyCheck(this, 'CodeCommitDependencyCheck', { + repository, + reportsBucket, + preCheckCommand: 'npm i', + schedule: Schedule.cron({ + minute: '0', + hour: '4', + }), + }); + + const checkTopic = new Topic(this, 'CheckTopic'); + + if (process.env.DEVSECOPS_TEAM_EMAIL) { + checkTopic.addSubscription(new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL)); + } + + check.onCheckStarted('started', { + target: new SnsTopic(checkTopic), + }); + + check.onCheckSucceeded('succeeded', { + target: new SnsTopic(checkTopic), + }); + + check.onCheckFailed('failed', { + target: new SnsTopic(checkTopic), + }); + } +} +``` + +## Upload HTML Reports + +```python +const reportsBucket = new Bucket(this, 'Bucket'); + +// The following example runs a task every day at 4am +const check = new CodeCommitDependencyCheck(this, 'CodeCommitDependencyCheck', { + repository, + reportsBucket, + preCheckCommand: 'npm i', + schedule: Schedule.cron({ + minute: '0', + hour: '4', + }), +}); +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dependency-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-dependency-check/LICENSE) + + + + +%package -n python3-cloudcomponents.cdk-dependency-check +Summary: OWASP dependency-check for codecommit repositories +Provides: python-cloudcomponents.cdk-dependency-check +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-cloudcomponents.cdk-dependency-check +[](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-dependency-check + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-dependency-check) +[](https://pypi.org/project/cloudcomponents.cdk-dependency-check/) + +> [OWASP dependency-check](https://owasp.org/www-project-dependency-check/) for codecommit repositories + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-dependency-check +``` + +Python: + +```bash +pip install cloudcomponents.cdk-dependency-check +``` + +## How to use + +```python +import { CodeCommitDependencyCheck } from '@cloudcomponents/cdk-dependency-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Schedule } from 'aws-cdk-lib/aws-events'; +import { SnsTopic } from 'aws-cdk-lib/aws-events-targets'; +import { Bucket } from 'aws-cdk-lib/aws-s3'; +import { Topic } from 'aws-cdk-lib/aws-sns'; +import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions'; +import { Construct } from 'constructs'; + +export class DependencyCheckStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + if (typeof process.env.REPOSITORY_NAME === 'undefined') { + throw new Error('environment variable REPOSITORY_NAME undefined'); + } + + const repository = Repository.fromRepositoryName(this, 'Repository', process.env.REPOSITORY_NAME); + + const reportsBucket = new Bucket(this, 'Bucket'); + + // The following example runs a task every day at 4am + const check = new CodeCommitDependencyCheck(this, 'CodeCommitDependencyCheck', { + repository, + reportsBucket, + preCheckCommand: 'npm i', + schedule: Schedule.cron({ + minute: '0', + hour: '4', + }), + }); + + const checkTopic = new Topic(this, 'CheckTopic'); + + if (process.env.DEVSECOPS_TEAM_EMAIL) { + checkTopic.addSubscription(new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL)); + } + + check.onCheckStarted('started', { + target: new SnsTopic(checkTopic), + }); + + check.onCheckSucceeded('succeeded', { + target: new SnsTopic(checkTopic), + }); + + check.onCheckFailed('failed', { + target: new SnsTopic(checkTopic), + }); + } +} +``` + +## Upload HTML Reports + +```python +const reportsBucket = new Bucket(this, 'Bucket'); + +// The following example runs a task every day at 4am +const check = new CodeCommitDependencyCheck(this, 'CodeCommitDependencyCheck', { + repository, + reportsBucket, + preCheckCommand: 'npm i', + schedule: Schedule.cron({ + minute: '0', + hour: '4', + }), +}); +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dependency-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-dependency-check/LICENSE) + + + + +%package help +Summary: Development documents and examples for cloudcomponents.cdk-dependency-check +Provides: python3-cloudcomponents.cdk-dependency-check-doc +%description help +[](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-dependency-check + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-dependency-check) +[](https://pypi.org/project/cloudcomponents.cdk-dependency-check/) + +> [OWASP dependency-check](https://owasp.org/www-project-dependency-check/) for codecommit repositories + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-dependency-check +``` + +Python: + +```bash +pip install cloudcomponents.cdk-dependency-check +``` + +## How to use + +```python +import { CodeCommitDependencyCheck } from '@cloudcomponents/cdk-dependency-check'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Schedule } from 'aws-cdk-lib/aws-events'; +import { SnsTopic } from 'aws-cdk-lib/aws-events-targets'; +import { Bucket } from 'aws-cdk-lib/aws-s3'; +import { Topic } from 'aws-cdk-lib/aws-sns'; +import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions'; +import { Construct } from 'constructs'; + +export class DependencyCheckStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + if (typeof process.env.REPOSITORY_NAME === 'undefined') { + throw new Error('environment variable REPOSITORY_NAME undefined'); + } + + const repository = Repository.fromRepositoryName(this, 'Repository', process.env.REPOSITORY_NAME); + + const reportsBucket = new Bucket(this, 'Bucket'); + + // The following example runs a task every day at 4am + const check = new CodeCommitDependencyCheck(this, 'CodeCommitDependencyCheck', { + repository, + reportsBucket, + preCheckCommand: 'npm i', + schedule: Schedule.cron({ + minute: '0', + hour: '4', + }), + }); + + const checkTopic = new Topic(this, 'CheckTopic'); + + if (process.env.DEVSECOPS_TEAM_EMAIL) { + checkTopic.addSubscription(new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL)); + } + + check.onCheckStarted('started', { + target: new SnsTopic(checkTopic), + }); + + check.onCheckSucceeded('succeeded', { + target: new SnsTopic(checkTopic), + }); + + check.onCheckFailed('failed', { + target: new SnsTopic(checkTopic), + }); + } +} +``` + +## Upload HTML Reports + +```python +const reportsBucket = new Bucket(this, 'Bucket'); + +// The following example runs a task every day at 4am +const check = new CodeCommitDependencyCheck(this, 'CodeCommitDependencyCheck', { + repository, + reportsBucket, + preCheckCommand: 'npm i', + schedule: Schedule.cron({ + minute: '0', + hour: '4', + }), +}); +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dependency-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-dependency-check/LICENSE) + + + + +%prep +%autosetup -n cloudcomponents.cdk-dependency-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-dependency-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 |