git » debian:golang-blitiri-go-log » commit 5a496fd

Initial packaging

author Alberto Bertogli
2017-09-11 21:54:59 UTC
committer Alberto Bertogli
2017-09-11 22:55:52 UTC
parent 2b2e1b6c354fdf14182bd859b88420989fbed2c9

Initial packaging

debian/changelog +5 -0
debian/compat +1 -0
debian/control +28 -0
debian/copyright +31 -0
debian/gbp.conf +6 -0
debian/rules +4 -0
debian/source/format +1 -0

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a2e2436
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+golang-blitiri-go-log (0.0+git20170910.0.2b2e1b6-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: 875486)
+
+ -- Alberto Bertogli <albertito@blitiri.com.ar>  Mon, 11 Sep 2017 22:38:41 +0100
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..76b707d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: golang-blitiri-go-log
+Section: devel
+Priority: extra
+Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
+Uploaders: Alberto Bertogli <albertito@blitiri.com.ar>
+Build-Depends: debhelper (>= 10),
+               dh-golang,
+               golang-any
+Standards-Version: 4.0.0
+Homepage: https://blitiri.com.ar/git/r/log/
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-blitiri-go-log.git
+Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-blitiri-go-log.git
+XS-Go-Import-Path: blitiri.com.ar/go/log
+Testsuite: autopkgtest-pkg-go
+
+Package: golang-blitiri-go-log-dev
+Architecture: all
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
+Description: Simple logging library in Go
+ blitiri.com.ar/go/log is a Go package implementing a simple logger.
+ .
+ It implements an API somewhat similar to glog, with a focus towards simplicity
+ and integration with standard tools such as systemd.
+ .
+ There are command line flags (defined using the flag package) to control the
+ behaviour of the default logger. By default, it will write to stderr without
+ timestamps; this is suitable for systemd (or equivalent) logging.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..03e82ce
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: log
+Source: https://blitiri.com.ar/git/r/log/b/master/t/f=LICENSE.html
+
+Files: *
+Copyright: 2016 Alberto Bertogli <albertito@blitiri.com.ar>
+License: Expat
+
+Files: debian/*
+Copyright: 2017 Alberto Bertogli <albertito@blitiri.com.ar>
+License: Expat
+Comment: Debian packaging is licensed under the same terms as upstream
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a               
+ copy of this software and associated documentation files (the "Software"),            
+ to deal in the Software without restriction, including without limitation             
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,              
+ and/or sell copies of the Software, and to permit persons to whom the                 
+ Software is furnished to do so, subject to the following conditions:                  
+ .                                         
+ The above copyright notice and this permission notice shall be included               
+ in all copies or substantial portions of the Software.                                
+ .                                         
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS               
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF                            
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.                
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY                  
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,                  
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE                     
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                                
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..0aa6e18
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,6 @@
+[DEFAULT]
+
+debian-branch = master
+upstream-branch = upstream
+
+git-author = True
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)