Skip to content

Commit 74fe88f

Browse files
committed
Merge branch 'debian'
2 parents 4daad02 + 44049df commit 74fe88f

8 files changed

Lines changed: 82 additions & 0 deletions

File tree

debian/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
writeas-cli (1.0+git20171119.dc1ab5b-1) xenial; urgency=medium
2+
3+
* All logging and errors go to stderr, not stdout (Closes: #11)
4+
* Verbose logging requires `-v` or `--verbose` flag
5+
* Executable now lives in `cmd/` directory
6+
* All errors exit with status 1
7+
* Fixed `cli` library deprecation (Closes: #8)
8+
9+
-- Write.as <hello@write.as> Sun, 19 Nov 2017 09:36:28 -0500

debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10

debian/control

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Source: writeas-cli
2+
Section: utils
3+
Priority: optional
4+
Maintainer: Matt Baer <hello@write.as>
5+
Uploaders: Matt Baer <hello@write.as>
6+
Build-Depends: debhelper (>= 9),
7+
dh-golang,
8+
golang-any,
9+
golang-github-mitchellh-go-homedir-dev
10+
Standards-Version: 4.1.1
11+
Homepage: https://write.as/apps/cli
12+
Vcs-Browser: https://github.com/writeas/writeas-cli
13+
Vcs-Git: https://github.com/writeas/writeas-cli
14+
XS-Go-Import-Path: github.com/writeas/writeas-cli
15+
Testsuite: autopkgtest-pkg-go
16+
17+
Package: writeas-cli
18+
Architecture: any
19+
Built-Using: ${misc:Built-Using}
20+
Depends: ${shlibs:Depends},
21+
${misc:Depends}
22+
Description: Text publishing utility
23+
The Write.as CLI enables you to publish text to Write.as directly from the
24+
command-line.
25+
.
26+
Write.as is a simple writing and publishing tool that lets you share text on
27+
the web and keep your privacy in the process. There's no sign up required to
28+
use it, and whether you're on the web, a mobile device, or the command-line,
29+
you can start publishing instantly.

debian/copyright

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: writeas-cli
3+
Source: https://github.com/writeas/writeas-cli
4+
Files-Excluded: vendor Godeps/_workspace
5+
6+
Files: *
7+
Copyright: 2018 A Bunch Tell LLC <hello@write.as>
8+
License: MIT
9+
10+
License: MIT
11+
The MIT License (MIT)
12+
.
13+
Copyright (c) 2015 Write.as
14+
.
15+
Permission is hereby granted, free of charge, to any person obtaining a copy
16+
of this software and associated documentation files (the "Software"), to deal
17+
in the Software without restriction, including without limitation the rights
18+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19+
copies of the Software, and to permit persons to whom the Software is
20+
furnished to do so, subject to the following conditions:
21+
.
22+
The above copyright notice and this permission notice shall be included in all
23+
copies or substantial portions of the Software.
24+
.
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31+
SOFTWARE.
32+

debian/gbp.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[DEFAULT]
2+
pristine-tar = True

debian/rules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/make -f
2+
3+
%:
4+
dh $@ --buildsystem=golang --with=golang

debian/source/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (quilt)

debian/watch

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
version=3
2+
opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/writeas-cli-\$1\.tar\.gz/,\
3+
uversionmangle=s/(\d)[_\.\-\+]?(RC|rc|pre|dev|beta|alpha)[.]?(\d*)$/\$1~\$2\$3/ \
4+
https://github.com/writeas/writeas-cli/tags .*/v?(\d\S*)\.tar\.gz

0 commit comments

Comments
 (0)