--- libbash-0.9.11.orig/debian/changelog +++ libbash-0.9.11/debian/changelog @@ -0,0 +1,24 @@ +libbash (0.9.11-2) unstable; urgency=low + + * QA upload. + * Maintainer field set to QA Group. + * Bump Standards-Version to 3.9.6. + * Remove broken Homepage field. + * Update synopsis according to Debian Developer's Reference section 6.2.2. + + -- Emanuele Rocca Sat, 28 Nov 2015 15:15:20 +0100 + +libbash (0.9.11-1) unstable; urgency=low + + * Packaging fixes (Closes: #544943) + * Sync to upstream version + * Updated standards version to 3.8.3 + + -- Hai Zaar Fri, 4 Sep 2009 02:05:00 +0300 + +libbash (0.9.10c-1) unstable; urgency=low + + * Initial release (Closes: #526739) + + -- Hai Zaar Sun, 10 May 2009 20:00:00 +0300 + --- libbash-0.9.11.orig/debian/compat +++ libbash-0.9.11/debian/compat @@ -0,0 +1 @@ +7 --- libbash-0.9.11.orig/debian/control +++ libbash-0.9.11/debian/control @@ -0,0 +1,27 @@ +Source: libbash +Section: libs +Priority: optional +Maintainer: Debian QA Group +Build-Depends: cdbs, debhelper (>= 7) +Build-Depends-Indep: doxygen +Standards-Version: 3.9.6 + +Package: libbash +Architecture: all +Depends: ${misc:Depends}, bash (>= 3) +Description: bash dynamic-like shared libraries + libbash is a tool for managing bash scripts that contain functions you may + want to use in various scripts. It provides mechanism to define dependencies + between scripts and facility for script loading. + +Package: libbash-doc +Section: doc +Architecture: all +Depends: ${misc:Depends} +Description: bash dynamic-like shared libraries - documentation + libbash is a tool for managing bash scripts that contain functions you may + want to use in various scripts. It provides mechanism to define dependencies + between scripts and facility for script loading. + . + This package contains user and developer docs libbash + --- libbash-0.9.11.orig/debian/copyright +++ libbash-0.9.11/debian/copyright @@ -0,0 +1,30 @@ +Name: libbash +Maintainer: Hai Zaar +Source: http://libbash.sf.net + +Copyright: 2005-2009 Hai Zaar , Gil Ran + +Files: * +Copyright: 2005-2009 Hai Zaar , Gil Ran +License: GPL-3 + +Files: lib/urlcoding.sh +Copyright: 2005 Alon Keren +License: GPL-3 + +License: GPL-3 + 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 program 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 . + + On Debian system, GPL v3 license can be found under + `/usr/share/common-licenses/GPL-3'. --- libbash-0.9.11.orig/debian/libbash-doc.doc-base +++ libbash-0.9.11/debian/libbash-doc.doc-base @@ -0,0 +1,11 @@ +Document: libbash-doc +Title: libbash User Manual +Author: Hai Zaar +Abstract: libbash is a tool for managing bash scripts that contain functions you may + want to use in various scripts. It provides mechanism to define dependencies + between scripts and facility for script loading. +Section: Programming + +Format: HTML +Index: /usr/share/doc/libbash-doc/html/index.html +Files: /usr/share/doc/libbash-doc/html/*.html --- libbash-0.9.11.orig/debian/libbash-doc.docs +++ libbash-0.9.11/debian/libbash-doc.docs @@ -0,0 +1 @@ +doc/html --- libbash-0.9.11.orig/debian/libbash.install +++ libbash-0.9.11/debian/libbash.install @@ -0,0 +1,7 @@ +usr/bin +usr/sbin +usr/lib +usr/share/man/man1 +usr/share/man/man3 +usr/share/man/man7 +usr/share/man/man8 --- libbash-0.9.11.orig/debian/postinst +++ libbash-0.9.11/debian/postinst @@ -0,0 +1,42 @@ +#!/bin/sh +# postinst script for libbash +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + ldbashconfig + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- libbash-0.9.11.orig/debian/postrm +++ libbash-0.9.11/debian/postrm @@ -0,0 +1,43 @@ +#!/bin/sh +# postrm script for libbash +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|abort-install|disappear) + rm -rf /etc/ldbash.cache + ;; + + remove|upgrade|failed-upgrade|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- libbash-0.9.11.orig/debian/rules +++ libbash-0.9.11/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk + +# Add here any variable or target overrides you need. --- libbash-0.9.11.orig/debian/watch +++ libbash-0.9.11/debian/watch @@ -0,0 +1,20 @@ +# 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 3 file +version=3 + +# Uncomment to examine a Webpage +# +#http://www.example.com/downloads.php libbash-(.*)\.tar\.gz + +# Uncomment to examine a Webserver directory +#http://www.example.com/pub/libbash-(.*)\.tar\.gz + +# Uncommment to examine a FTP server +#ftp://ftp.example.com/pub/libbash-(.*)\.tar\.gz debian uupdate + +# Uncomment to find new files on sourceforge, for devscripts >= 2.9 +http://sf.net/libbash/libbash-(.+)\.tar\.bz2