aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--METADATA18
-rw-r--r--MODULE_LICENSE_BSD0
l---------NOTICE1
-rw-r--r--OWNERS4
-rw-r--r--TEST_MAPPING8
-rw-r--r--pyasn1/Android.bp36
6 files changed, 67 insertions, 0 deletions
diff --git a/METADATA b/METADATA
new file mode 100644
index 0000000..b640262
--- /dev/null
+++ b/METADATA
@@ -0,0 +1,18 @@
+name: "pyasn1"
+description: "ASN.1 types and codecs"
+third_party {
+ url {
+ type: HOMEPAGE
+ value: "https://pypi.python.org/project/pyasn1"
+ }
+ url {
+ type: GIT
+ value: "https://github.com/etingof/pyasn1"
+ }
+ version: "v0.4.7"
+ last_upgrade_date {
+ year: 2019
+ month: 9
+ day: 3
+ }
+}
diff --git a/MODULE_LICENSE_BSD b/MODULE_LICENSE_BSD
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MODULE_LICENSE_BSD
diff --git a/NOTICE b/NOTICE
new file mode 120000
index 0000000..bf2a4e0
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1 @@
+LICENSE.rst \ No newline at end of file
diff --git a/OWNERS b/OWNERS
new file mode 100644
index 0000000..9e955c2
--- /dev/null
+++ b/OWNERS
@@ -0,0 +1,4 @@
+# Default owners are top 3 or more active developers of the past 1 or 2 years
+# or people with more than 10 commits last year.
+# Please update this list if you find better owner candidates.
+chojoyce@google.com
diff --git a/TEST_MAPPING b/TEST_MAPPING
new file mode 100644
index 0000000..61a80b2
--- /dev/null
+++ b/TEST_MAPPING
@@ -0,0 +1,8 @@
+{
+ "presubmit" : [
+ {
+ "name" : "acloud_test",
+ "host" : true
+ }
+ ]
+}
diff --git a/pyasn1/Android.bp b/pyasn1/Android.bp
new file mode 100644
index 0000000..b46e8f2
--- /dev/null
+++ b/pyasn1/Android.bp
@@ -0,0 +1,36 @@
+// Copyright 2018 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+python_library {
+ name: "py-pyasn1",
+ host_supported: true,
+ srcs: [
+ "*.py",
+ "codec/*.py",
+ "codec/ber/*.py",
+ "codec/cer/*.py",
+ "codec/der/*.py",
+ "codec/native/*.py",
+ "compat/*.py",
+ "type/*.py",
+ ],
+ version: {
+ py2: {
+ enabled: true,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+ pkg_path: "pyasn1",
+}