summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Sateler <fsateler@debian.org>2018-10-03 09:10:06 -0300
committerFelipe Sateler <fsateler@gmail.com>2018-10-03 12:54:58 -0300
commit678f3da6bf0fab62c9027e6b7c840b4db1824d17 (patch)
tree093fe1c241105c7eb4979f820eb473ea54ca9cec
parenta473b6ad5a0f8d9374d9f7daa114ff6321d4672a (diff)
-rw-r--r--debian/changelog5
-rw-r--r--debian/control24
-rw-r--r--debian/copyright29
-rw-r--r--debian/gbp.conf8
-rwxr-xr-xdebian/rules10
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch13
7 files changed, 90 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a0d2897
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+wl-clipboard (0.0.20181003-1) unstable; urgency=medium
+
+ * Initial release (Closes: #910185)
+
+ -- Felipe Sateler <fsateler@debian.org> Wed, 03 Oct 2018 05:06:20 -0300
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..045f744
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: wl-clipboard
+Section: x11
+Priority: optional
+Maintainer: Felipe Sateler <fsateler@debian.org>
+Build-Depends: debhelper-compat (= 11),
+ meson (>= 0.44),
+ pkg-config,
+ libwayland-dev,
+ libwayland-bin,
+ wayland-protocols (>= 1.12)
+Standards-Version: 4.2.1
+Homepage: https://github.com/bugaevc/wl-clipboard
+Vcs-Browser: https://salsa.debian.org/fsateler/wl-clipboard
+Vcs-Git: https://salsa.debian.org/fsateler/wl-clipboard.git
+Rules-Requires-Root: no
+
+Package: wl-clipboard
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Recommends: xdg-utils
+Description: command line interface to the wayland clipboard
+ wl-clipboard implements two little Wayland clipboard
+ utilities, wl-copy and wl-paste, that let you easily copy data
+ between the clipboard and Unix pipes, sockets or files.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..be59425
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: wl-clipboard
+Source: https://github.com/bugaevc/wl-clipboard
+
+Files: *
+Copyright: 2018 Sergey Bugaev <bugaevc@gmail.com>
+License: GPL-3.0+
+
+Files: debian/*
+Copyright: 2018 Felipe Sateler <fsateler@debian.org>
+License: GPL-3.0+
+
+License: GPL-3.0+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
+
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..0899e4a
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,8 @@
+[DEFAULT]
+pristine-tar = False
+patch-numbers = False
+debian-branch = debian/master
+
+[dch]
+full = True
+multimaint-merge = True
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..cd57f11
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+
+# see FEATURE AREAS in dpkg-buildflags(1)
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+%:
+ dh $@
+
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)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..20c65e9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,13 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# See uscan(1) for format
+
+# Compulsory line, this is a version 4 file
+version=4
+
+# GitHub hosted projects
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%<project>-$1.tar.gz%" \
+ https://github.com/bugaevc/wl-clipboard/tags \
+ (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate
+