aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVG <vg@devys.org>2015-03-11 21:22:17 +0100
committerVG <vg@devys.org>2015-03-11 21:22:17 +0100
commit889e1a40a00324d47544d69bbf6f33afe4faeef7 (patch)
tree9fc2d9265110a63f9890169f81ec19f21ccd210a
downloaddebian-meh-889e1a40a00324d47544d69bbf6f33afe4faeef7.tar.gz
debian-meh-889e1a40a00324d47544d69bbf6f33afe4faeef7.tar.bz2
debian-meh-889e1a40a00324d47544d69bbf6f33afe4faeef7.zip
First commit
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control19
-rw-r--r--debian/copyright53
-rw-r--r--debian/meh.manpages1
-rwxr-xr-xdebian/rules20
-rw-r--r--debian/source/format1
7 files changed, 100 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e86cac5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+meh (0-1) trusty; urgency=low
+
+ * Initial release (Closes: #0)
+
+ -- VG <vg@devys.org> Tue, 20 Jan 2015 16:19:44 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..3c98a5c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: meh
+Section: universe/x11
+Priority: optional
+Maintainer: VG <vg@devys.org>
+Build-Depends: debhelper (>=9),
+ libxext-dev, libpng12-dev, libgif-dev,
+ libjpeg62-turbo-dev | libjpeg-turbo8-dev
+Standards-Version: 3.9.5
+Homepage: https://github.com/jhawthorn/meh/
+#Vcs-Git: git://git.debian.org/collab-maint/meh.git
+#Vcs-Browser: http://git.debian.org/?p=collab-maint/meh.git;a=summary
+
+Package: meh
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends},
+ libxext6, libpng12-0, libgif4, libjpeg62-turbo | libjpeg-turbo8
+Description: Lightweight image viewer for X11
+ Fast, lightweight image viewer. In its control mode, it can read next image
+ to be displayed from stdin. Uses xlib.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..533a261
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,53 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: meh
+Source: https://github.com/jhawthorn/meh/
+
+Files: *
+Copyright: 2008-2009 John Hawthorn <john.hawthorn@gmail.com>
+License: MIT License
+ 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.
+
+# If you want to use GPL v2 or later for the /debian/* files use
+# the following clauses, or change it to suit. Delete these two lines
+Files: debian/*
+Copyright: 2015 VG <vg@devys.org>
+License: GPL-2+
+ This package 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 2 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 <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
+# Please avoid to pick license terms that are more restrictive than the
+# packaged work, as it may make Debian's contributions unacceptable upstream.
diff --git a/debian/meh.manpages b/debian/meh.manpages
new file mode 100644
index 0000000..8266dc8
--- /dev/null
+++ b/debian/meh.manpages
@@ -0,0 +1 @@
+doc/meh.1
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6222c9b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PREFIX:=/usr
+
+%:
+ dh $@
+
+# Delete manpages installed from upstream since not gzipped, and let debian
+# helper do it instead.
+override_dh_installman:
+ rm debian/meh/usr/share/man/man1/meh.1
+ dh_installman
+
+
+override_dh_auto_test:
+ echo "bypass test because it fails on amd64 build"
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)