[Pkg-wmaker-commits] [wmcliphist] 02/49: Imported Debian patch 0.6-2

Doug Torrance dtorrance-guest at moszumanska.debian.org
Tue Aug 18 01:51:33 UTC 2015


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch master
in repository wmcliphist.

commit 07849448f37c8ccc0b4cec3b1a47894f9025a55b
Author: Sebastian Ley <ley at debian.org>
Date:   Fri Apr 16 19:25:27 2004 +0200

    Imported Debian patch 0.6-2
---
 debian/changelog       |  40 ++++++++++++
 debian/compat          |   1 +
 debian/control         |  14 ++++
 debian/copyright       |  18 ++++++
 debian/dirs            |   1 +
 debian/docs            |   2 +
 debian/menu            |   2 +
 debian/rules           |  77 ++++++++++++++++++++++
 debian/wmcliphist.sgml | 172 +++++++++++++++++++++++++++++++++++++++++++++++++
 9 files changed, 327 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..01b3bbb
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,40 @@
+wmcliphist (0.6-2) unstable; urgency=low
+
+  * Add -s option to manpage (Closes: #244082)
+
+ -- Sebastian Ley <ley at debian.org>  Fri, 16 Apr 2004 19:25:27 +0200
+
+wmcliphist (0.6-1) unstable; urgency=low
+
+  * New upstream Release
+    - Upstream applied Micheal Beattie's patch for better execution handling
+    (Closes: #204151)
+  * Changed maintainer field to my debian.org address
+  * Update Standards version to 3.6.1.0 (no changes)
+
+ -- Sebastian Ley <ley at debian.org>  Tue,  2 Sep 2003 00:46:48 +0200
+
+wmcliphist (0.5-1) unstable; urgency=low
+
+  * New upstream release
+  * Remove patch for the Makefile. Upstream has incorporated this.
+
+ -- Sebastian Ley <sebastian.ley at mmweg.rwth-aachen.de>  Mon, 30 Jun 2003 00:05:10 +0200
+
+wmcliphist (0.4-1) unstable; urgency=low
+
+  * New upstream release.
+  * Removed patch to generate an rc file. Upstream has incorporated this.
+  * Corrected copyright information. wmcliphist is published under the GPL.
+  * Updated standard version to 3.5.10 (no changes)
+  * Install a sample wmcliphistrc file into /usr/share/doc/wmcliphist and post
+    a note about this in the manpage. (Closes: #198972)
+
+ -- Sebastian Ley <sebastian.ley at mmweg.rwth-aachen.de>  Thu, 12 Jun 2003 15:26:23 +0200
+
+wmcliphist (0.3-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #187438)
+
+ -- Sebastian Ley <sebastian at coyote.mmweg.rwth-aachen.de>  Tue,  8 Apr 2003 23:45:20 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8399579
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
+Source: wmcliphist
+Section: x11
+Priority: extra
+Maintainer: Sebastian Ley <ley at debian.org>
+Build-Depends: dpatch, debhelper (>= 4), libglib1.2-dev, libgtk1.2-dev, xlibs-dev (>> 4.1.0), docbook-to-man
+Standards-Version: 3.6.1.0
+
+Package: wmcliphist
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Dockapp which provides a history for X11 selections
+ wmcliphist is a dockable application for Window Maker. It keeps a
+ history of clipboard operations and allows you to put previously
+ copied items back to clipboard for pasting to other applications.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2f7934e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,18 @@
+This package was debianized by Sebastian Ley <sebastian.ley at mmweg.rwth-aachen.de> on
+Thu,  3 Apr 2003 11:45:27 +0200.
+
+It was downloaded from http://linux.nawebu.cz/wmcliphist/
+
+Upstream Authors:
+Michal Krause <michal at krause.cz>
+Alexey Vyskubov <alexey at pepper.spb.ru>
+
+Copyright:
+
+ 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 2 of the License, or (at your
+ option) any later version.
+
+ See /usr/share/common-licenses/GPL-2 on your debian system.
+	     
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..e772481
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+usr/bin
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..192e5cb
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+README
+debian/wmcliphistrc
diff --git a/debian/menu b/debian/menu
new file mode 100644
index 0000000..487abe2
--- /dev/null
+++ b/debian/menu
@@ -0,0 +1,2 @@
+?package(wmcliphist):needs=X11 section=Apps/Tools\
+  title="wmcliphist" command="/usr/bin/wmcliphist"
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ee62aa6
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,77 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+include /usr/share/dpatch/dpatch.make
+
+build: build-stamp
+
+build-stamp: patch-stamp
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	/usr/bin/docbook-to-man debian/wmcliphist.sgml > debian/wmcliphist.1
+
+	touch build-stamp
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+
+	rm -f debian/wmcliphist.1
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) clean
+	-$(MAKE) -C foodock clean
+	rm -f debian/wmcliphistrc
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/wmcliphist.
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/wmcliphist/usr/bin
+	cp .wmcliphistrc debian/wmcliphistrc
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installmenu
+	dh_installman debian/wmcliphist.1
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/debian/wmcliphist.sgml b/debian/wmcliphist.sgml
new file mode 100644
index 0000000..01a0a3f
--- /dev/null
+++ b/debian/wmcliphist.sgml
@@ -0,0 +1,172 @@
+<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
+
+<!-- Process this file with docbook-to-man to generate an nroff manual
+     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
+     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
+     less'.  A typical entry in a Makefile or Makefile.am is:
+
+manpage.1: manpage.sgml
+	docbook-to-man $< > $@
+
+    
+	The docbook-to-man binary is found in the docbook-to-man package.
+	Please remember that if you create the nroff version in one of the
+	debian/rules file targets (such as build), you will need to include
+	docbook-to-man in your Build-Depends control field.
+
+  -->
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "<firstname>Sebastian</firstname>">
+  <!ENTITY dhsurname   "<surname>Ley</surname>">
+  <!-- Please adjust the date whenever revising the manpage. -->
+  <!ENTITY dhdate      "<date>April  3, 2003</date>">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1). -->
+  <!ENTITY dhsection   "<manvolnum>1</manvolnum>">
+  <!ENTITY dhemail     "<email>sebastian.ley at mmweg.rwth-aachen.de</email>">
+  <!ENTITY dhusername  "Sebastian Ley">
+  <!ENTITY dhucpackage "<refentrytitle>WMCLIPHIST</refentrytitle>">
+  <!ENTITY dhpackage   "wmcliphist">
+
+  <!ENTITY debian      "<productname>Debian</productname>">
+  <!ENTITY gnu         "<acronym>GNU</acronym>">
+  <!ENTITY gpl         "&gnu; <acronym>GPL</acronym>">
+]>
+
+<refentry>
+  <refentryinfo>
+    <address>
+      &dhemail;
+    </address>
+    <author>
+      &dhfirstname;
+      &dhsurname;
+    </author>
+    <copyright>
+      <year>2003</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    &dhdate;
+  </refentryinfo>
+  <refmeta>
+    &dhucpackage;
+
+    &dhsection;
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+
+    <refpurpose>provides a history to X11 selections</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+
+      <arg><option>-h</option></arg>
+      <arg><option>-n <replaceable>num</replaceable></option></arg>
+      <arg><option>-c <replaceable>col</replaceable></option></arg>
+      <arg><option>-i <replaceable>num</replaceable></option></arg>
+      <arg><option>-s <replaceable>size</replaceable></option></arg>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1>
+    <title>DESCRIPTION</title>
+
+    <para>This manual page documents briefly the program
+      <command>&dhpackage;</command>.</para>
+
+    <para>This manual page was written for the &debian; distribution
+      because the original program does not have a manual page.</para>
+
+    <para><command>&dhpackage;</command> is a dockable application
+    which provides a history for the last few selections made in the
+    X11 Window System.
+    </para>
+    
+    <para>Note, that most of <command>&dhpackage;</command>'s features 
+    are accessed by installing a configuration file .wmcliphistrc into
+    your $HOME. Find a well documented example in /usr/share/doc/wmcliphist.
+    </para>
+
+  </refsect1>
+  <refsect1>
+    <title>OPTIONS</title>
+
+    <variablelist>
+      <varlistentry>
+        <term><option>-h</option>
+        </term>
+        <listitem>
+          <para>Show summary of options.</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>-n num</option>
+        </term>
+        <listitem>
+          <para>Set the number of items to keep in the history.
+	  Default is 10.</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>-c col</option>
+        </term>
+        <listitem>
+          <para>Set the color for locked items. Default is red.</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>-i num</option>
+        </term>
+        <listitem>
+          <para>Choose wmcliphist icon antialiasing: If you have a
+	  midtone background provide num=0, for dark backgrounds
+        choose num=1 and for light backgrounds num=2.
+	</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>-s size</option>
+        </term>
+        <listitem>
+          <para>Choose wmcliphist icon size, must be one of 16, 30,
+	  40 or 60 (default).
+	</para>
+        </listitem>
+      </varlistentry>
+       
+    </variablelist>
+  </refsect1>
+  <refsect1>
+    <title>AUTHOR</title>
+
+    <para>This manual page was written by &dhusername; &dhemail; for
+      the &debian; system (but may be used by others).  Permission is
+      granted to copy, distribute and/or modify this document under
+      the terms of the &gnu; Free Documentation
+      License, Version 1.1 or any later version published by the Free
+      Software Foundation; with no Invariant Sections, no Front-Cover
+      Texts and no Back-Cover Texts.</para>
+
+  </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:2
+sgml-indent-data:t
+sgml-parent-document:nil
+sgml-default-dtd-file:nil
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+-->
+
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmcliphist.git



More information about the Pkg-wmaker-commits mailing list