--- zsh-lovers-0.8.3.orig/debian/control +++ zsh-lovers-0.8.3/debian/control @@ -0,0 +1,23 @@ +Source: zsh-lovers +Section: doc +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Michael Prokop +Uploaders: Reinhard Tartler +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: ghostscript, troffcvt, asciidoc, fop, docbook-xsl, + xsltproc, libxml2-utils, dblatex +Standards-Version: 3.8.3 +Homepage: http://grml.org/zsh/ +Vcs-Git: git://git.grml.org/zsh-lovers.git +Vcs-Browser: http://git.grml.org/?p=zsh-lovers.git + +Package: zsh-lovers +Architecture: all +Description: tips, tricks and examples for the zsh + Whenever you look at the zsh manual you might wonder + why there are no examples for those simple things in + (shell) life. The zsh contains many features, but + there was no manpage with some examples (like + procmailex(5)). That's why the package zsh-lovers + exists. See man zsh-lovers and included documentation. --- zsh-lovers-0.8.3.orig/debian/docs +++ zsh-lovers-0.8.3/debian/docs @@ -0,0 +1,7 @@ +zsh_people/ +refcard.* +zsh-lovers.ps +zsh-lovers.pdf +zsh-lovers.html +zsh.vim +README --- zsh-lovers-0.8.3.orig/debian/compat +++ zsh-lovers-0.8.3/debian/compat @@ -0,0 +1 @@ +5 --- zsh-lovers-0.8.3.orig/debian/rules +++ zsh-lovers-0.8.3/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f + +DEBIAN_DIR := $(shell echo ${MAKEFILE_LIST} | awk '{print $$1}' | xargs dirname ) +UPSTREAM_VERSION ?=$(shell uscan --dehs | sed -n 's/.*\(.*\)<\/upstream-version>.*/\1/p') + +build: build-stamp + +build-stamp: + dh_testdir + + # html: + asciidoc zsh-lovers.1.txt + mv zsh-lovers.1.html zsh-lovers.html + + # manpage: + a2x -f manpage zsh-lovers.1.txt + + # pdf: + a2x -f pdf zsh-lovers.1.txt + mv zsh-lovers.1.pdf zsh-lovers.pdf + + # ps: + groff -Tps -mandoc zsh-lovers.1 > zsh-lovers.ps + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f zsh-lovers.1 zsh-lovers.1.fo zsh-lovers.1.xml zsh-lovers.html \ + zsh-lovers.pdf zsh-lovers.ps + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + install -m 644 $(CURDIR)/zsh.vim $(CURDIR)/debian/zsh-lovers/usr/share/vim/syntax/zsh.vim + +binary-arch: build install + # We have nothing to do + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installman zsh-lovers.1 + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +get-orig-source: + cd $(DEBIAN_DIR)/.. && uscan --force-download + cd $(DEBIAN_DIR)/../.. && \ + tar xf zsh-lovers_$(UPSTREAM_VERSION).tar.gz + rm ../zsh-lovers_$(UPSTREAM_VERSION).tar.gz + rm ../zsh-lovers_$(UPSTREAM_VERSION).orig.tar.gz + mv ../zsh-lovers ../zsh-lovers-$(UPSTREAM_VERSION) + tar -cf ../zsh-lovers_$(UPSTREAM_VERSION).orig.tar \ + ../zsh-lovers-$(UPSTREAM_VERSION) --exclude=debian + gzip -9fn ../zsh-lovers_$(UPSTREAM_VERSION).orig.tar + rm -r ../zsh-lovers-$(UPSTREAM_VERSION) + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- zsh-lovers-0.8.3.orig/debian/copyright +++ zsh-lovers-0.8.3/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Michael Prokop on +Wed, 18 Aug 2004 12:19:12 +0200. + +It was downloaded from http://grml.org/zsh/ + +Upstream Author: Michael Prokop + +Copyright: + + This software is copyright (c) 2004-2005 by Michael Prokop. + + 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; version 2 dated June, 1991. + + 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 package; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. --- zsh-lovers-0.8.3.orig/debian/postrm +++ zsh-lovers-0.8.3/debian/postrm @@ -0,0 +1,36 @@ +#!/bin/sh +# Filename: postrm +# Purpose: postrm script for package zsh-lovers +# Authors: grml-team (grml.org), (c) Michael Prokop +# Bug-Reports: see http://grml.org/bugs/ +# License: This file is licensed under the GPL v2. +# Latest change: Sam Jun 18 19:34:53 CEST 2005 [mika] +################################################################################ + +set -e +TO_UNDIVERT="zsh.vim" +undivert_gen() { + DEXT=${3:-original} + dpkg-divert --remove --rename --package zsh-lovers \ + --divert $2/$1.$DEXT $2/$1 #> /dev/null +} + +case "$1" in + remove|purge) + for cmd in $TO_UNDIVERT; do + undivert_gen $cmd /usr/share/vim/syntax + done + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 +esac + +exit 0 + +## END OF FILE ################################################################# + +#DEBHELPER# --- zsh-lovers-0.8.3.orig/debian/preinst +++ zsh-lovers-0.8.3/debian/preinst @@ -0,0 +1,33 @@ +#!/bin/sh +# Filename: preinst +# Purpose: preinst script for package zsh-lovers +# Authors: grml-team (grml.org), (c) Michael Prokop +# Bug-Reports: see http://grml.org/bugs/ +# License: This file is licensed under the GPL v2. +# Latest change: Sam Jun 18 19:34:55 CEST 2005 [mika] +################################################################################ + +set -e +TO_DIVERT="zsh.vim" +divert_gen() { + DEXT=${3:-original} + dpkg-divert --add --rename --package zsh-lovers \ + --divert $2/$1.$DEXT $2/$1 > /dev/null +} + +case "$1" in + install|upgrade) + for cmd in $TO_DIVERT; do + divert_gen $cmd /usr/share/vim/syntax + done + ;; + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 +esac + +exit 0 + +## END OF FILE ################################################################# + +#DEBHELPER# --- zsh-lovers-0.8.3.orig/debian/dirs +++ zsh-lovers-0.8.3/debian/dirs @@ -0,0 +1,2 @@ +usr/share/doc/zsh-lovers/zsh_people +usr/share/vim/syntax/ --- zsh-lovers-0.8.3.orig/debian/watch +++ zsh-lovers-0.8.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://deb.grml.org/pool/main/z/zsh-lovers/zsh-lovers_(.*)\.tar\.gz --- zsh-lovers-0.8.3.orig/debian/changelog +++ zsh-lovers-0.8.3/debian/changelog @@ -0,0 +1,126 @@ +zsh-lovers (0.8.3-0ubuntu2) lucid; urgency=low + + * Add missing Build-Depends-Indep: libxml2-utils, dblatex. + * Bump Standards-Version to 3.8.3. + + -- Ilya Barygin Sun, 17 Jan 2010 01:44:42 +0300 + +zsh-lovers (0.8.3-0ubuntu1) karmic; urgency=low + + * New upstream release. + * debian/rules: + - Add get-orig-source target to repack the tarball, we need to remove the + debian directory provided by upstream. + - Drop dh_installdirs args, use debian/dirs instead. + - Add binary-arch target to make lintian happy. + * debian/dirs: + - We don't need to create manpages path. + * Add debian/watch. + * debian/control: + - Bump Standards. + - Change Build-Depends: + + gs-common -> ghostscript + + Remove unnecessary man-db, groff-base + + Add asciidoc, fop, docbook-xsl, xsltproc + + Bump debhelper + - Add Vcs-*, Homepage fields. + * Bump debian/compat. + * debian/copyright: + - Refer to the right-versioned license file. + - Fix FSF address. + + -- Alessio Treglia Sat, 20 Jun 2009 15:41:22 +0200 + +zsh-lovers (0.5-0ubuntu4) jaunty; urgency=low + + * Change typo error in debian/control. (LP: #323031) + + -- Gabriel Ruiz Manzano Fri, 30 Jan 2009 13:02:46 -0300 + +zsh-lovers (0.5-0ubuntu3) hardy; urgency=low + + * debian/control: + - Modify Maintainer value to match the DebianMaintainerField + specification (LP: #176994). + - Move debhelper dependency to Build-Depends to satisfy the + clean rule. + - Bump standards version to 3.7.3. + * debian/rules: + - Move binary-arch stuff to binary-indep (keep lintian happy). + + -- Siegfried-Angel Gevatter Pujals (RainCT) Mon, 17 Dec 2007 20:04:29 +0100 + +zsh-lovers (0.5-0ubuntu2) feisty; urgency=low + + * Correct error in man page (Closes Ubuntu #74202). + + -- Lionel Le Folgoc (mr_pouit) Sun, 3 Dec 2006 20:59:25 +0100 + +zsh-lovers (0.5-0ubuntu1) breezy; urgency=low + + Changes by Mika: + * Some small improvements in manpage 'zsh-lovers'. + * Updated README. + * Updated zsh_people/grml/. + + Rebuild for breezy + + -- Reinhard Tartler Sun, 19 Jun 2005 19:59:55 +0200 + +zsh-lovers (0.5) unstable; urgency=low + + * Reworked debian package with help of Reinhard Tartler + [thanks!]. + * Let's ship manpage in nroff-format without any modification (removed + 'nroff -man zsh-lovers.nroff > zsh-lovers.1'). + + -- Michael Prokop Sat, 18 Jun 2005 15:42:39 +0200 + +zsh-lovers (0.4) unstable; urgency=low + + * Replaced $PAGER with $READNULLCMD [thanks, wuehlmaus!]. + * Replaced http://w9y.de/ with http://w9y.de/zsh/zshrc + [thanks, wuehlmaus!]. + * Added section "Variables can be modified by + modifiers, too." [thanks, wuehlmaus!]. + + -- Michael Prokop Mon, 9 May 2005 01:45:03 +0200 + +zsh-lovers (0.3) unstable; urgency=low + + * Updated zsh_people/stchaz/mouse.zsh (thanks Stephane Chazelas). + * Updated zsh_people/grml/zshrc and added zsh_people/grml/.zshrc. + * The "grml 0.3 hustenstopper"-release. + + -- Michael Prokop Mon, 21 Feb 2005 09:19:12 +0100 + +zsh-lovers (0.2-2) unstable; urgency=low + + * Some small updates (fixed URL and date). + + -- Michael Prokop Sat, 19 Feb 2005 16:28:30 +0100 + +zsh-lovers (0.2-1) unstable; urgency=low + + * Added zsh-lovers manpage in html format. + + -- Michael Prokop Thu, 27 Jan 2005 23:53:45 +0100 + +zsh-lovers (0.2) unstable; urgency=low + + * Updated manpage zsh-lovers. + * Updated zsh.vim by Nikolai Weibull to version 2004-12-12. + * Added README. + * Added ZWS, stchaz/mouse.zsh, grml/zshrc. + * Added thomas_koehler -> klammer.zsh uhr.zsh + * Added configuration files of Christian 'strcat' Schneider. + * Added configuration files of Stephen 'caphuso' Rueger. + + -- Michael Prokop Tue, 21 Dec 2004 21:08:51 +0100 + +zsh-lovers (0.1) unstable; urgency=low + + * Initial Release. + + -- Michael Prokop Wed, 18 Aug 2004 12:19:12 +0200 +