summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 11:10:25 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 11:10:25 +0000
commitc142f06cfe1fbf3a6c7560434e79811949c32467 (patch)
tree95a84e84565602f4657720eb2960a7b6f7527469
parenta13b210ad1c8fb73bb67666e67ce43303c645bc6 (diff)
automatic import of python-cloudcomponents-cdk-container-registryopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-cloudcomponents-cdk-container-registry.spec286
-rw-r--r--sources1
3 files changed, 288 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..a8e749d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/cloudcomponents.cdk-container-registry-2.1.0.tar.gz
diff --git a/python-cloudcomponents-cdk-container-registry.spec b/python-cloudcomponents-cdk-container-registry.spec
new file mode 100644
index 0000000..855bdb2
--- /dev/null
+++ b/python-cloudcomponents-cdk-container-registry.spec
@@ -0,0 +1,286 @@
+%global _empty_manifest_terminate_build 0
+Name: python-cloudcomponents.cdk-container-registry
+Version: 2.1.0
+Release: 1
+Summary: Registry for container images
+License: MIT
+URL: https://github.com/cloudcomponents/cdk-constructs
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/03/78/18a1e2c7e03aac54a2e12dec0a10e9dfb69217efa371aa1d61a2f28c60be/cloudcomponents.cdk-container-registry-2.1.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-aws-cdk-lib
+Requires: python3-constructs
+Requires: python3-jsii
+Requires: python3-publication
+
+%description
+[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs)
+
+# @cloudcomponents/cdk-container-registry
+
+[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build)
+[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx)
+[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-container-registry)
+[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-container-registry/)
+
+> Registry for container images
+
+## Install
+
+TypeScript/JavaScript:
+
+```bash
+npm i @cloudcomponents/cdk-container-registry
+```
+
+Python:
+
+```bash
+pip install cloudcomponents.cdk-container-registry
+```
+
+## How to use
+
+```python
+import { ImageRepository, Severity } from '@cloudcomponents/cdk-container-registry';
+import { Stack, StackProps } from 'aws-cdk-lib';
+import { Topic } from 'aws-cdk-lib/aws-sns';
+import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions';
+import { Construct } from 'constructs';
+
+export class ImageRepositoryStack extends Stack {
+ constructor(scope: Construct, id: string, props?: StackProps) {
+ super(scope, id, props);
+
+ const alarmTopic = new Topic(this, 'Topic');
+
+ alarmTopic.addSubscription(
+ new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL as string),
+ );
+
+ const imageRepository = new ImageRepository(this, 'ImageRepository', {
+ forceDelete: true, //Only for tests
+ imageScanOnPush: true,
+ });
+
+ imageRepository.onFinding('finding', {
+ severity: Severity.HIGH,
+ alarmTopic,
+ });
+ }
+}
+```
+
+## API Reference
+
+See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-container-registry/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-container-registry/LICENSE)
+
+
+
+
+%package -n python3-cloudcomponents.cdk-container-registry
+Summary: Registry for container images
+Provides: python-cloudcomponents.cdk-container-registry
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-cloudcomponents.cdk-container-registry
+[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs)
+
+# @cloudcomponents/cdk-container-registry
+
+[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build)
+[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx)
+[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-container-registry)
+[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-container-registry/)
+
+> Registry for container images
+
+## Install
+
+TypeScript/JavaScript:
+
+```bash
+npm i @cloudcomponents/cdk-container-registry
+```
+
+Python:
+
+```bash
+pip install cloudcomponents.cdk-container-registry
+```
+
+## How to use
+
+```python
+import { ImageRepository, Severity } from '@cloudcomponents/cdk-container-registry';
+import { Stack, StackProps } from 'aws-cdk-lib';
+import { Topic } from 'aws-cdk-lib/aws-sns';
+import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions';
+import { Construct } from 'constructs';
+
+export class ImageRepositoryStack extends Stack {
+ constructor(scope: Construct, id: string, props?: StackProps) {
+ super(scope, id, props);
+
+ const alarmTopic = new Topic(this, 'Topic');
+
+ alarmTopic.addSubscription(
+ new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL as string),
+ );
+
+ const imageRepository = new ImageRepository(this, 'ImageRepository', {
+ forceDelete: true, //Only for tests
+ imageScanOnPush: true,
+ });
+
+ imageRepository.onFinding('finding', {
+ severity: Severity.HIGH,
+ alarmTopic,
+ });
+ }
+}
+```
+
+## API Reference
+
+See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-container-registry/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-container-registry/LICENSE)
+
+
+
+
+%package help
+Summary: Development documents and examples for cloudcomponents.cdk-container-registry
+Provides: python3-cloudcomponents.cdk-container-registry-doc
+%description help
+[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs)
+
+# @cloudcomponents/cdk-container-registry
+
+[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build)
+[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx)
+[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-container-registry)
+[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-container-registry/)
+
+> Registry for container images
+
+## Install
+
+TypeScript/JavaScript:
+
+```bash
+npm i @cloudcomponents/cdk-container-registry
+```
+
+Python:
+
+```bash
+pip install cloudcomponents.cdk-container-registry
+```
+
+## How to use
+
+```python
+import { ImageRepository, Severity } from '@cloudcomponents/cdk-container-registry';
+import { Stack, StackProps } from 'aws-cdk-lib';
+import { Topic } from 'aws-cdk-lib/aws-sns';
+import { EmailSubscription } from 'aws-cdk-lib/aws-sns-subscriptions';
+import { Construct } from 'constructs';
+
+export class ImageRepositoryStack extends Stack {
+ constructor(scope: Construct, id: string, props?: StackProps) {
+ super(scope, id, props);
+
+ const alarmTopic = new Topic(this, 'Topic');
+
+ alarmTopic.addSubscription(
+ new EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL as string),
+ );
+
+ const imageRepository = new ImageRepository(this, 'ImageRepository', {
+ forceDelete: true, //Only for tests
+ imageScanOnPush: true,
+ });
+
+ imageRepository.onFinding('finding', {
+ severity: Severity.HIGH,
+ alarmTopic,
+ });
+ }
+}
+```
+
+## API Reference
+
+See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-container-registry/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-container-registry/LICENSE)
+
+
+
+
+%prep
+%autosetup -n cloudcomponents.cdk-container-registry-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-container-registry -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
diff --git a/sources b/sources
new file mode 100644
index 0000000..2022021
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+ed7b87912700d5dcccdfbd43223b5278 cloudcomponents.cdk-container-registry-2.1.0.tar.gz