summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Shadura <andrewsh@debian.org>2018-07-28 13:59:10 +0100
committerAndrej Shadura <andrew.shadura@collabora.co.uk>2018-07-28 14:26:23 +0100
commitf44fdc2b40bfccb5e2bd100f43570aaf71fc5bed (patch)
treec3ff1bac5ba5c3fa50bab674e3e0e5165ceea6e6
parentfb56a9bf3146869923b63ac7f842104136ded796 (diff)
Initial packaging
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control46
-rw-r--r--debian/copyright36
-rw-r--r--debian/libtickit-perl.examples1
-rwxr-xr-xdebian/rules6
-rw-r--r--debian/source/format1
-rw-r--r--debian/upstream/metadata4
-rw-r--r--debian/watch2
9 files changed, 102 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6eaca84
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libtickit-perl (0.65-1) UNRELEASED; urgency=low
+
+ * Initial release.
+
+ -- Andrej Shadura <andrewsh@debian.org> Sat, 28 Jul 2018 13:59:10 +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..b237bb0
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,46 @@
+Source: libtickit-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Andrej Shadura <andrewsh@debian.org>
+Build-Depends: debhelper (>= 10),
+ libtermkey-dev,
+ libunibilium-dev,
+ libextutils-pkgconfig-perl,
+ libmodule-build-perl (>= 0.4004),
+ libstruct-dumb-perl,
+ libtest-fatal-perl,
+ libtest-hexstring-perl,
+ libtest-identity-perl,
+ libtest-refcount-perl,
+ libtest-pod-perl,
+ perl
+Standards-Version: 4.1.4
+Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libtickit-perl
+Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libtickit-perl.git
+Homepage: https://metacpan.org/release/Tickit
+Testsuite: autopkgtest-pkg-perl
+
+Package: libtickit-perl
+Architecture: any
+Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends},
+ libstruct-dumb-perl
+Description: Terminal Interface Construction KIT
+ Tickit is a high-level toolkit for creating full-screen terminal-based
+ interactive programs. It allows programs to be written in an abstracted way,
+ working with a tree of widget objects, to represent the layout of the
+ interface and implement its behaviours.
+ .
+ Its supported terminal features includes a rich set of rendering attributes
+ (bold, underline, italic, 256-colours, etc), support for mouse including
+ wheel and position events above the 224th column and arbitrary modified key
+ input via libtermkey (all of these will require a supporting terminal as
+ well). It also supports having multiple instances and non-blocking or
+ asynchronous control.
+ .
+ At the current version, this is a Perl distribution which contains and XS and
+ C implementation of the lower levels (Tickit::Term and Tickit::Pen), and
+ implements the higher levels (Tickit::Window and Tickit::Widget) in pure
+ perl. The XS parts are supported by libtickit, either from the installed
+ library, or using a bundled copy compiled at build time. It is intended that
+ eventually the Window layer will be rewritten in XS and C instead.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..69a6e9c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://metacpan.org/release/Tickit
+Upstream-Contact: Paul Evans <leonerd@leonerd.org.uk>
+Upstream-Name: Tickit
+DISCLAIMER: This copyright info was automatically extracted
+ from the perl module. It may not be accurate, so you better
+ check the module sources in order to ensure the module for its
+ inclusion in Debian or for general legal information. Please,
+ if licensing information is incorrectly generated, file a bug
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: Paul Evans <leonerd@leonerd.org.uk>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2018, Andrej Shadura <andrewsh@debian.org>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ 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 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.
diff --git a/debian/libtickit-perl.examples b/debian/libtickit-perl.examples
new file mode 100644
index 0000000..e39721e
--- /dev/null
+++ b/debian/libtickit-perl.examples
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..1d60712
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export TERM := dumb
+
+%:
+ 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/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..34af206
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,4 @@
+---
+Archive: CPAN
+Contact: Paul Evans <leonerd@leonerd.org.uk>
+Name: Tickit
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..5280b72
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://metacpan.org/release/Tickit .*/Tickit-v?(\d[\d.-]*)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$