• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..16-Feb-2021-

auth/H16-Feb-2021-3,7092,473

oauth2/H16-Feb-2021-792553

protobuf/H16-Feb-2021-43,33237,061

rpc/H16-Feb-2021-1,3331,168

README.swarmingH A D16-Feb-20211.4 KiB5443

__init__.pyH A D16-Feb-20211.8 KiB406

README.swarming

1
2Name: Google Authentication
3Short Name: google-auth
4Version: 1.0.1
5Revision: 9bea1b15105d6851b315bd622702e0b201e4e874 (presumed; this is release 1.0.1)
6Home-page: https://github.com/GoogleCloudPlatform/google-auth-library-python
7License: Apache 2.0
8
9Local modifications: none beyond removing .pyc files and the modifications made
10for protobufs shown below (e.g. adding this file).
11
12----
13
14Name: Protocol Buffers
15Short Name: protobuf
16Version: 3.6.1
17Revision: 48cb18e5c419ddd23d9badcfe4e9df7bde1979b2
18Home-page: https://github.com/protocolbuffers/protobuf
19License: New BSD License
20
21Description:
22Protocol Buffers are Google's data interchange format.
23
24Reproduce:
25
26```
27curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.6.1/protobuf-python-3.6.1.zip
28unzip protobuf-python-3.6.1.zip
29cd protobuf-3.6.1/python
30# You need protoc in $PATH from infra.git:
31python setup.py build
32rm -rf ../..
33git rm -rf protobuf
34mv protobuf-3.6.1/python/build/lib/google/protobuf .
35find protobuf -name "*_test.py" -delete
36git add protobuf
37rm -rf protobuf-3.6.1 protobuf-python-3.6.1.zip
38```
39
40---
41
42Name: Google RPC protocol buffers
43Revision: 943102cfb5fa8811a15a4c21bd12421aadb423b5
44Source: https://github.com/googleapis/googleapis/tree/943102cfb5fa8811a15a4c21bd12421aadb423b5/google/rpc
45Home-page: https://grpc.io/
46License: Apache License 2.0
47
48Local modifications in ./rpc
49```
50touch __init__.py
51cd ../..
52protoc --python_out=. google/rpc/*.proto
53```
54