Commit ba8def48 authored by Adam Lewenberg's avatar Adam Lewenberg
Browse files

first commit

parents
Loading
Loading
Loading
Loading

README.md

0 → 100644
+29 −0
Original line number Diff line number Diff line
1. Download the latest cloud_sql_proxy executable (64-bit Linux):

        wget https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64 -O cloud_sql_proxy

1. Clone this repository.

1. Change directory into the repository:

        cd cloudsql-proxy

1. Determine the version of the new release. For example, "1.16".

1. Prepare tar-ball

        ./prepare-tar-ball ../cloud_sql_proxy 1.16

1. Add a new changelog entry indicating the upstream version
terraform. For example, if the new version of the cloudsql-proxy binary is
"1.16", then run

        debchange -v 1.16-1 -D unstable
Note that the "-1" indicates this is the first Debian packaging of version
"1.16". Also, change "UNRELEASED" to "unstable".

1. Build the Debian package:

        pbuild sid

1. After a successful build, git commit the change to `changelog` and push.

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
cloudsql-proxy (1.16-1) unstable; urgency=medium

  * New version 1.16.

 -- Adam Henry Lewenberg <adamhl@stanford.edu>  Tue, 14 Apr 2020 07:27:44 -0700
+1 −0
Original line number Diff line number Diff line
cloud_sql_proxy   usr/bin

debian/compat

0 → 100644
+1 −0
Original line number Diff line number Diff line
9

debian/control

0 → 100644
+14 −0
Original line number Diff line number Diff line
Source: cloudsql-proxy
Section: web
Priority: optional
Homepage: https://github.com/GoogleCloudPlatform/cloudsql-proxy
Build-Depends: rsync, debhelper (>= 8)
Maintainer: Adam Henry Lewenberg <adamhl@stanford.edu>
Standards-Version: 4.3.0

Package: cloudsql-proxy
Architecture: amd64
Depends:  ${misc:Depends}
Description: GCP Cloud SQL proxy
 The GCP Cloud SQL proxy. See also
 https://cloud.google.com/sql/docs/mysql/sql-proxy
Loading