debian/0000755000000000000000000000000012263101206007157 5ustar debian/control0000644000000000000000000000217512262032776010605 0ustar Source: licenseutils Section: devel Priority: optional Maintainer: Mattia Rizzolo Build-Depends: debhelper (>=9), dh-autoreconf, libcurl4-nss-dev, libpng12-dev, libglib2.0-dev, help2man, texinfo, autoconf Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/collab-maint/licenseutils.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/licenseutils.git Homepage: http://sv.gnu.org/p/licenseutils Package: licenseutils Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Put copyright and license notices at the head of source code files licenseutils is for creating copyright and license notices at the beginning of source code files. It can be a pain to put copyright and license notices in a collection of source code files. This software will help you accomplish this in a standard-looking way, for a variety of different programming languages. . licenseutils consists of a program called `licensing', a bash-like shell called `lu-sh', and a wrapper `notice'. debian/watch0000644000000000000000000000013412253103523010211 0ustar version=3 http://download.savannah.gnu.org/releases/licenseutils/licenseutils-(.*)\.tar\.gz debian/changelog0000644000000000000000000000171212263100554011037 0ustar licenseutils (0.0.7-3) unstable; urgency=medium * debian/patches/skip-test-if-network-is-not-available.patch: add to fix ftbfs on some arches. -- Mattia Rizzolo Tue, 07 Jan 2014 22:33:50 +0100 licenseutils (0.0.7-2) unstable; urgency=medium * Apply upstream patch to remove unnecessary liblicenseutils library and fix FTBFS (Closes: 733314): - debian/patches/remove-library.patch: add. - debian/control: drop liblicenseutils{0,-dev} binary stanzas. - debian/rules: update accordingly. - debian/*.{install,symbols,links}: remove, not needed anymore. - debian/patches/fix-autoreconf-error.patch: add to fix FTBFS. * debian/control: update Vcs-* fields (moved to collab-maint). -- Mattia Rizzolo Sun, 05 Jan 2014 11:15:17 +0100 licenseutils (0.0.7-1) unstable; urgency=low * Initial release (Closes: #728169). -- Mattia Rizzolo Wed, 25 Dec 2013 17:59:49 +0100 debian/patches/0000755000000000000000000000000012263100717010614 5ustar debian/patches/skip-test-if-network-is-not-available.patch0000644000000000000000000000321012263100717020764 0ustar Description: skip the test choose/0002, png-apply/0001 and preview/0001 if there is no network. Forwarded: no Author: Mattia Rizzolo Last-Update: 2014-01-07 diff --git a/tests/choose/0002 b/tests/choose/0002 index f3e5649..ff01bcf 100755 --- a/tests/choose/0002 +++ b/tests/choose/0002 @@ -6,6 +6,12 @@ # notice and this notice are preserved. This file is offered as-is, # without any warranty. +# if there is no network available during the build, skip the test +ping -q -c 1 gnu.org 2>&1 /dev/null +if [ ! $? -eq 0 ] ; then + exit 77 +fi + #here is what we expect expected=`mktemp $builddir/licensing.XXXXXX` echo -n "lgplv3+" > $expected diff --git a/tests/png-apply/0001 b/tests/png-apply/0001 index b04a547..abb9033 100755 --- a/tests/png-apply/0001 +++ b/tests/png-apply/0001 @@ -6,6 +6,12 @@ # notice and this notice are preserved. This file is offered as-is, # without any warranty. +# if there is no network available during the build, skip the test +ping -q -c 1 gnu.org 2>&1 /dev/null +if [ ! $? -eq 0 ] ; then + exit 77 +fi + result=`mktemp $builddir/licensing.XXXXXX` cp $srcdir/0001.png $result 2>/dev/null >/dev/null diff --git a/tests/preview/0001 b/tests/preview/0001 index 60ad106..5dd1757 100755 --- a/tests/preview/0001 +++ b/tests/preview/0001 @@ -6,6 +6,12 @@ # notice and this notice are preserved. This file is offered as-is, # without any warranty. +# if there is no network available during the build, skip the test +ping -q -c 1 gnu.org 2>&1 /dev/null +if [ ! $? -eq 0 ] ; then + exit 77 +fi + #here is what we expect expected=`mktemp $builddir/licensing.XXXXXX` cat << EOF > $expected debian/patches/choose-fdl-fail.patch0000644000000000000000000000142512261757042014602 0ustar Description: Fix a choose FDL* licenses Origin: http://git.savannah.gnu.org/cgit/licenseutils.git/patch/?id=66a3d9a94ddbe5d3ddd0d43dc42e888f70117cad Author: Ben Asselstine Last-Update: 2013-12-06 --- a/src/fdl.c +++ b/src/fdl.c @@ -213,12 +213,12 @@ struct lu_command_t fdl = .parser = lu_fdl_parse_argp, .licenses = { - "fdlv13+ fdl --v3", - "fdlv13 fdl --v3 --jerkwad", - "fdlv12+ fdl --v2", - "fdlv12 fdl --v2 --jerkwad", - "fdlv11+ fdl --v1", - "fdlv11 fdl --v1 --jerkwad", + "fdlv13+ fdl --v1.3", + "fdlv13 fdl --v1.3 --jerkwad", + "fdlv12+ fdl --v1.2", + "fdlv12 fdl --v1.2 --jerkwad", + "fdlv11+ fdl --v1.1", + "fdlv11 fdl --v1.1 --jerkwad", NULL } }; debian/patches/series0000644000000000000000000000030112263100554012022 0ustar choose-fdl-fail.patch moving-scripts-from-pkglibexec-to-bindir.patch hyphen-used-as-minus-sign.patch remove-library.patch fix-autoreconf-error.patch skip-test-if-network-is-not-available.patch debian/patches/remove-library.patch0000644000000000000000000001214512262006614014577 0ustar Description: remove unnecessary liblicenseutils0 library Author: Ben Asselstine Origin: http://git.savannah.gnu.org/cgit/licenseutils.git/commit/?id=102d6f93a2b62f7c36e3100fc55eda3b70f0a8b9 Last-Update: 2014-01-03 diff --git a/src/Makefile.am b/src/Makefile.am index 1ec814f..3fc29bd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (C) 2013 Ben Asselstine +# Copyright (C) 2013, 2014 Ben Asselstine # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -10,30 +10,23 @@ bin_SCRIPTS=lu-sh notice bin_PROGRAMS=licensing DEFS += -DLOCALEDIR=\"$(localedir)\" -DPROGRAM=\"$(PROGRAM)\" -DBINDIR=\"$(bindir)\" -DINTERPRETER=\"$(INTERPRETER)\" -DINTERPRETER_PATH=\"$(bindir)/$(INTERPRETER)\" @DEFS@ AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_builddir)/lib -lib_LTLIBRARIES=liblicenseutils.la - -pkginclude_HEADERS=licensing.h gpl.h lgpl.h agpl.h fdl.h boilerplate.h help.h \ - warranty.h welcome.h copyright.h cbb.h comment.h \ - uncomment.h choose.h top.h project.h apply.h \ - all-permissive.h bsd.h apache.h mit.h extra.h \ - png-boilerplate.h png-apply.h isc.h prepend.h \ - new-boilerplate.h preview.h - -liblicenseutils_la_SOURCES=licensing.c gettext-more.h licensing_priv.h \ - gpl.c lgpl.c agpl.c fdl.c boilerplate.c help.c \ - warranty.c welcome.c util.c util.h copyright.c \ - cbb.c comment.c uncomment.c choose.c top.c project.c \ - apply.c all-permissive.c bsd.c apache.c mit.c extra.c \ - png-boilerplate.c png-apply.c isc.c styles.c styles.h \ - comment-style.h prepend.c new-boilerplate.c preview.c include styles.am -liblicenseutils_la_LIBADD = @LIBINTL@ $(top_builddir)/lib/libgnu.la $(GLIB_LIBS) $(LIBPNG_LIBS) -liblicenseutils_la_LDFLAGS = -version-info 0:0:0 -export-dynamic -no-undefined - -licensing_SOURCES=main.c opts.c opts.h +licensing_SOURCES=main.c opts.c opts.h licensing.c gettext-more.h \ + licensing_priv.h gpl.c lgpl.c agpl.c fdl.c boilerplate.c \ + help.c warranty.c welcome.c util.c util.h copyright.c \ + cbb.c comment.c uncomment.c choose.c top.c project.c \ + apply.c all-permissive.c bsd.c apache.c mit.c extra.c \ + png-boilerplate.c png-apply.c isc.c styles.c styles.h \ + comment-style.h prepend.c new-boilerplate.c preview.c\ + licensing.h gpl.h lgpl.h agpl.h fdl.h boilerplate.h help.h \ + warranty.h welcome.h copyright.h cbb.h comment.h \ + uncomment.h choose.h top.h project.h apply.h \ + all-permissive.h bsd.h apache.h mit.h extra.h \ + png-boilerplate.h png-apply.h isc.h prepend.h \ + new-boilerplate.h preview.h -licensing_LDADD=liblicenseutils.la +licensing_LDADD= @LIBINTL@ $(top_builddir)/lib/libgnu.la $(GLIB_LIBS) $(LIBPNG_LIBS) LIBTOOL_DEPS = @LIBTOOL_DEPS@ libtool: $(LIBTOOL_DEPS) diff --git a/src/styles.am b/src/styles.am index 2462c8c..221351c 100644 --- a/src/styles.am +++ b/src/styles.am @@ -1,4 +1,4 @@ -# Copyright (C) 2013 Ben Asselstine +# Copyright (C) 2013, 2014 Ben Asselstine # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -8,55 +8,55 @@ if SUPPORT_C_STYLE DEFS+=-DSUPPORT_C_STYLE - liblicenseutils_la_SOURCES+=c-style.c c-style.h + licensing_SOURCES+=c-style.c c-style.h endif if SUPPORT_CPLUSPLUS_STYLE DEFS+=-DSUPPORT_CPLUSPLUS_STYLE - liblicenseutils_la_SOURCES+=c++-style.c c++-style.h + licensing_SOURCES+=c++-style.c c++-style.h endif if SUPPORT_FORTRAN_STYLE DEFS+=-DSUPPORT_FORTRAN_STYLE - liblicenseutils_la_SOURCES+=fortran-style.c fortran-style.h + licensing_SOURCES+=fortran-style.c fortran-style.h endif if SUPPORT_GETTEXT_STYLE DEFS+=-DSUPPORT_GETTEXT_STYLE - liblicenseutils_la_SOURCES+=gettext-style.c gettext-style.h + licensing_SOURCES+=gettext-style.c gettext-style.h endif if SUPPORT_GROFF_STYLE DEFS+=-DSUPPORT_GROFF_STYLE - liblicenseutils_la_SOURCES+=groff-style.c groff-style.h + licensing_SOURCES+=groff-style.c groff-style.h endif if SUPPORT_HASKELL_STYLE DEFS+=-DSUPPORT_HASKELL_STYLE - liblicenseutils_la_SOURCES+=haskell-style.c haskell-style.h + licensing_SOURCES+=haskell-style.c haskell-style.h endif if SUPPORT_M4_STYLE DEFS+=-DSUPPORT_M4_STYLE - liblicenseutils_la_SOURCES+=m4-style.c m4-style.h + licensing_SOURCES+=m4-style.c m4-style.h endif if SUPPORT_PASCAL_STYLE DEFS+=-DSUPPORT_PASCAL_STYLE - liblicenseutils_la_SOURCES+=pascal-style.c pascal-style.h + licensing_SOURCES+=pascal-style.c pascal-style.h endif if SUPPORT_SCHEME_STYLE DEFS+=-DSUPPORT_SCHEME_STYLE - liblicenseutils_la_SOURCES+=scheme-style.c scheme-style.h + licensing_SOURCES+=scheme-style.c scheme-style.h endif if SUPPORT_SHELL_STYLE DEFS+=-DSUPPORT_SHELL_STYLE - liblicenseutils_la_SOURCES+=shell-style.c shell-style.h + licensing_SOURCES+=shell-style.c shell-style.h endif if SUPPORT_TEXINFO_STYLE DEFS+=-DSUPPORT_TEXINFO_STYLE - liblicenseutils_la_SOURCES+=texinfo-style.c texinfo-style.h + licensing_SOURCES+=texinfo-style.c texinfo-style.h endif debian/patches/moving-scripts-from-pkglibexec-to-bindir.patch0000644000000000000000000001416712261757035021604 0ustar Description: move /usr/lib/licenseutls/notice to /usr/bin and added manpage for the notice command Author: Ben Asselstine Origin: http://git.savannah.gnu.org/cgit/licenseutils.git/commit/?id=4d5377a431465b4717697bc6445dcf20111d9bd6 http://git.savannah.gnu.org/cgit/licenseutils.git/commit/?id=17ee25cb55ea45d8de3d0ba9e861acdb4f7d4b54 Last-Update: 2013-12-18 diff --git a/Makefile.am b/Makefile.am index cbdcb11..ebc9f14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,13 +4,13 @@ # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. This file is offered as-is, # without any warranty. ACLOCAL_AMFLAGS = -I lib/m4 -I m4 SUBDIRS=lib src po tests doc EXTRA_DIST = bootstrap bootstrap.conf TODO build-aux/config.rpath \ - HACKING completion/licensing lu-sh.1 styles.ac + HACKING completion/licensing lu-sh.1 notice.1 styles.ac if USE_BASH_COMPLETION bash_completion_DATA = completion/licensing else bash_completion_DATA = endif @@ -29,12 +29,13 @@ $(srcdir)/COPYING \ $(srcdir)/NEWS \ $(srcdir)/TODO \ $(srcdir)/HACKING \ $(srcdir)/INSTALL \ $(srcdir)/ChangeLog \ $(srcdir)/lu-sh.1 \ +$(srcdir)/notice.1 \ $(srcdir)/po/POTFILES.in \ $(srcdir)/po/LINGUAS \ $(srcdir)/doc/Makefile.am \ $(srcdir)/doc/licenseutils.texi \ $(srcdir)/doc/version.texi.in \ $(srcdir)/doc/gendocs \ @@ -131,12 +132,12 @@ predist: tar --dereference --directory=.. -zcvf ${PACKAGE}.tar.gz `cat ${builddir}/.manifest` && rm ${builddir}/.manifest CLEANFILES=.manifest licensing.1 #this chunk of makery is about getting a man page to build, #despite a horribly broken help2man, and a non-standard --help in licensing. -man1_MANS=licensing.1 lu-sh.1 +man1_MANS=licensing.1 lu-sh.1 notice.1 licensing.1: $(builddir)/src/licensing $(HELP2MAN) --output=$(builddir)/$@ --name='a program for adding license notices to files' --source licenseutils --libtool $(builddir)/src/licensing diff --git a/notice.1 b/notice.1 new file mode 100644 index 0000000..6fbcb33 --- a/dev/null +++ b/notice.1 @@ -0,0 +1,70 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.43.3. +.TH NOTICE "1" "December 2013" "lu-sh" "User Commands" +.SH NAME +notice \- a utility for writing license notices to source files. +.SH SYNOPSIS +.B notice +[\fIOPTION\fR...] [\fIFILE\fR...] +.SH DESCRIPTION +The notice command is a simple way to add a boilerplate to a set of source-code files. It is a wrapper script for the +.B licensing +program. + +.SH "EXAMPLES" + +The notice command is most often used like so: + +.IP +.B +$ licensing notice -c 'Yoyo,\ Inc.\ 2001' -l gpl -s c -n *.[ch] +.br +.B +apply: foo.c -> Boilerplate applied. +.br +.B +apply: bar.c -> Boilerplate applied. +.br +.B +apply: qux.c -> Boilerplate applied. +.br +.B +apply: foo.h -> Boilerplate applied. +.br + +.TP +This example applies the license notice for the latest version of the GPL in the C-commenting style to all of the .c and .h files in the current directory. The copyright holder is Yoyo, Inc, in the year 2001. + + +.SH "OPTIONS" + +.TP +\-n\fR +Don't retain .bak backup files. +.TP +\-c \fINAME-AND-YEAR\fR +Specify the copyright holder and years. The syntax for copyright years allows for years separated by a comma, and also ranges of years separated by a hyphen. In most shells, the argument for this option must be enclosed in single quotes. +.TP +\-l \fILICENSE\fR +Specify the license notice to apply to the source-code files. The supported licenses are: gpl, gplv3+, gplv3, gplv2+, gplv2, gplv1+, gplv1, lgpl, lgplv3+, lgplv3, lgplv2+, lgplv2, lgplv1+, lgplv1, agpl, agplv3+, agplv3, fdl, fdlv13+, fdlv13, fdlv12+, fdlv12, fdlv11+, fdlv11, all-permissive, bsd, bsd3clause, bsd2clause, apache, apachev2, mit, isc, and openbsd. +.TP +\-s \fICOMMENTING-STYLE\fR +Specify the commenting style. The supported commenting styles are: c, c++, shell, scheme, texinfo, m4, haskell, groff, gettext, fortran, and pascal. +.TP +\-?, \fB\-\-help\fR +Give a list the available options. + +.SH "REPORTING BUGS" +Report bugs to . + +.SH "SEE ALSO" +The full documentation for +.B notice +is maintained as a Texinfo manual. If the +.B info +and +.B licensing +programs are properly installed at your site, the command +.IP +.B info licenseutils notice +.PP +will give you access to the complete documentation for the notice command. diff --git a/src/Makefile.am b/src/Makefile.am index 6c0aaa2..1ec814f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,16 +3,15 @@ # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. This file is offered as-is, # without any warranty. localedir = $(datadir)/locale EXTRA_DIST=styles.am -bin_SCRIPTS=lu-sh +bin_SCRIPTS=lu-sh notice bin_PROGRAMS=licensing -pkglibexec_SCRIPTS=notice -DEFS += -DLOCALEDIR=\"$(localedir)\" -DPROGRAM=\"$(PROGRAM)\" -DPKGLIBEXECDIR=\"$(pkglibexecdir)\" -DINTERPRETER=\"$(INTERPRETER)\" -DINTERPRETER_PATH=\"$(bindir)/$(INTERPRETER)\" @DEFS@ +DEFS += -DLOCALEDIR=\"$(localedir)\" -DPROGRAM=\"$(PROGRAM)\" -DBINDIR=\"$(bindir)\" -DINTERPRETER=\"$(INTERPRETER)\" -DINTERPRETER_PATH=\"$(bindir)/$(INTERPRETER)\" @DEFS@ AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_builddir)/lib lib_LTLIBRARIES=liblicenseutils.la pkginclude_HEADERS=licensing.h gpl.h lgpl.h agpl.h fdl.h boilerplate.h help.h \ warranty.h welcome.h copyright.h cbb.h comment.h \ uncomment.h choose.h top.h project.h apply.h \ diff --git a/src/licensing.c b/src/licensing.c index 34eb30f..cf3f5e7 100644 --- a/src/licensing.c +++ b/src/licensing.c @@ -185,13 +185,13 @@ lu_parse_command (struct lu_state_t *state, char *line) char **argv = NULL; make_command_line (line, &argc, &argv); if (cmd->parser) err = cmd->parser(state, argc, argv); else { - char *c = xasprintf ("%s/%s", PKGLIBEXECDIR, line); + char *c = xasprintf ("%s/%s", BINDIR, line); err = system (c); free (c); } for (int i = 0; i < argc; i++) free (argv[i]); free (argv); debian/patches/hyphen-used-as-minus-sign.patch0000644000000000000000000000137712256057716016602 0ustar Description: Use minus sign instead of a hyphen one Fix hyphen-used-as-minus-sign lintian note. Forwarded: Yes, privately Author: Mattia Rizzolo Last-Update: 2013-12-04 --- a/lu-sh.1 +++ b/lu-sh.1 @@ -78,7 +78,7 @@ Selected. .br .B -/* gplv3+ */> copyright Yoyodyne Inc. 2005-2013 -a +/* gplv3+ */> copyright Yoyodyne Inc. 2005-2013 \-a .br Copyright (C) 2005-2013 Yoyodyne Inc. .br --- a/notice.1 2013-12-23 16:23:35.377995318 +0100 +++ b/notice.1 2013-12-23 16:23:54.953994805 +0100 @@ -16,7 +16,7 @@ The notice command is most often used li .IP .B -$ licensing notice -c 'Yoyo,\ Inc.\ 2001' -l gpl -s c -n *.[ch] +$ licensing notice \-c 'Yoyo,\ Inc.\ 2001' \-l gpl \-s c \-n *.[ch] .br .B apply: foo.c -> Boilerplate applied. debian/patches/fix-autoreconf-error.patch0000644000000000000000000000156312261767143015734 0ustar Description: Fix an autoreconf error caused by the removed-library patch Forwarded: Yes, privately Author: Mattia Rizzolo Last-Update: 2014-01-04 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -10,7 +10,7 @@ bin_PROGRAMS=licensing DEFS += -DLOCALEDIR=\"$(localedir)\" -DPROGRAM=\"$(PROGRAM)\" -DBINDIR=\"$(bindir)\" -DINTERPRETER=\"$(INTERPRETER)\" -DINTERPRETER_PATH=\"$(bindir)/$(INTERPRETER)\" @DEFS@ AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_builddir)/lib -include styles.am +#include styles.am licensing_SOURCES=main.c opts.c opts.h licensing.c gettext-more.h \ licensing_priv.h gpl.c lgpl.c agpl.c fdl.c boilerplate.c \ @@ -28,6 +28,8 @@ licensing_LDADD= @LIBINTL@ $(top_builddir)/lib/libgnu.la $(GLIB_LIBS) $(LIBPNG_LIBS) +include styles.am + LIBTOOL_DEPS = @LIBTOOL_DEPS@ libtool: $(LIBTOOL_DEPS) $(SHELL) ./config.status --recheck debian/compat0000644000000000000000000000000212253103523010360 0ustar 9 debian/copyright0000644000000000000000000001041612262007316011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: licenseutils Upstream-Contact: Ben Asselstine Source: http://sv.gnu.org/p/licenseutils Files: * Copyright: 2011, 2013 Ben Asselstine License: GPL-3+ Files: bootstrap* Copyright: 2003-2011 Free Software Foundation, Inc License: GPL-3+ Files: configure.ac HACKING Makefile.am README styles.ac src/*.am tests/* Copyright: 2013 Ben Asselstine License: Permissive Files: INSTALL Copyright: 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. License: Permissive Files: build-aux/config.rpath Copyright: 1996-2013 Free Software Foundation, Inc. License: Other Files: build-aux/gendocs.sh Copyright: 2003-2013 Free Software Foundation, Inc. License: GPL-3+ Files: build-aux/install-sh Copyright: 1994 X Consortium License: MIT Files: doc/licenseutils.texi Copyright: 2013 Ben Asselstine License: GFDL-NIV-1.3+ Files: lib/* Copyright: 1987-2013 Free Software Foundation, Inc. License: GPL-3+ Files: lib/alloca.c Copyright: Public Domain License: Public Domain Files: lib/m4/* m4/* Copyright: 1992-2013 Free Software Foundation, Inc. License: Other Files: debian/* Copyright: 2013 Mattia Rizzolo 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 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 . . On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". License: MIT 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 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. . Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other deal- ings in this Software without prior written authorization from the X Consor- tium. License: GFDL-NIV-1.3+ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the ``GNU Free Documentation License'' file as part of this distribution. . On Debian systems, the complete text of the GNU Free Documentation License, version 1.3 can be found in "/usr/share/common-licenses/GFDL-1.3". License: Other This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. License: Permissive Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty. debian/source/0000755000000000000000000000000012253103523010462 5ustar debian/source/format0000644000000000000000000000001412253103523011670 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000026212262004713010243 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 override_dh_installchangelogs: dh_installchangelogs NEWS override_dh_install: dh_install --list-missing %: dh $@ --with autoreconf debian/licenseutils.docs0000644000000000000000000000001712253120526012537 0ustar AUTHORS README