summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Duvall <dduvall@wikimedia.org>2017-09-13 10:44:26 -0700
committerDan Duvall <dduvall@wikimedia.org>2017-09-14 12:42:25 -0700
commit8ff4d41552d527eec484a07b76d764e52559e340 (patch)
tree37d3b772d56bba38dcff7dfad035fb0d33bbd603
parentf52923fb5bce36a42ef571fedc743b7ed2e4f785 (diff)
downloadblubber-8ff4d41552d527eec484a07b76d764e52559e340.tar.gz
Provide Debian packaging files
Summary: Initial files generated by `dh-make-golang` have been modified. Fixes T175609 Depends on D780, D782 Test Plan: Build the package with `gbp buildpackage -us -uc`. Reviewers: thcipriani, Joe, #release-engineering-team Reviewed By: thcipriani, #release-engineering-team Tags: #release-engineering-team Maniphest Tasks: T175609 Differential Revision: https://phabricator.wikimedia.org/D778
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control25
-rw-r--r--debian/copyright19
-rw-r--r--debian/gbp.conf2
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
7 files changed, 57 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..69d52bc
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+blubber (0.0~git20170911.0.4e5c728-1) unstable; urgency=medium
+
+ * Initial release
+
+ -- Dan Duvall <dduvall@wikimedia.org> Mon, 11 Sep 2017 12:06:16 -0700
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..51c796e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: blubber
+Section: devel
+Priority: optional
+Maintainer: Wikimedia Foundation Release Engineering <releng@wikimedia.org>
+Uploaders: Dan Duvall <dduvall@wikimedia.org>,
+ Tyler Cipriani <tcipriani@wikimedia.org>
+Build-Depends: debhelper (>= 10),
+ dh-golang,
+ golang-any,
+ golang-github-stretchr-testify-dev,
+ golang-gopkg-yaml.v2-dev
+Standards-Version: 3.9.8
+Homepage: https://phabricator.wikimedia.org/source/blubber
+XS-Go-Import-Path: phabricator.wikimedia.org/source/blubber
+
+Package: blubber
+Architecture: any
+Built-Using: ${misc:Built-Using}
+Depends: ${shlibs:Depends},
+ ${misc:Depends}
+Description: Compiles simple container image configuration into Dockerfiles
+ Blubber aims to help developers describe the requirements of their container
+ images and runtimes for various environments (development, staging,
+ production) while still satisfying the necessary constraints on the build and
+ release process for security and parity.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..17b3dd3
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,19 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+Copyright: Copyright © 2017 Wikimedia Foundation and contributors
+License: Apache-2
+ 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.
+ .
+ On Debian systems, the complete text of the Apache License 2.0 can
+ be found in "/usr/share/common-licenses/Apache-2.0"
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..0bbcd55
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[buildpackage]
+upstream-tag = HEAD
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..8cce5e0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --buildsystem=golang --with=golang
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)