debian/0000775000000000000000000000000012044711401007162 5ustar debian/compat0000664000000000000000000000000212023621303010356 0ustar 9 debian/changelog0000664000000000000000000000567212044711401011046 0ustar lintex (1.13-1ubuntu1) raring; urgency=low * debian/patches/06_ld-as-needed.diff: Move the libraries to link with from CFLAGS to LIBS (fixes FTBFS with ld --as-needed). -- Michael Bienia Fri, 02 Nov 2012 10:27:24 +0100 lintex (1.13-1) UNRELEASED; urgency=low * Imported Upstream version 1.13 * Added .pc to .gitignore * Switch to @debian.org and drop DMUA * Bump standards to 3.9.3 * Bump debhelper to >= 9 and compat to 9 * Build-depend on libconfig-dev and pkg-config * Don't force the use of gcc, 03_dont_force_gcc.diff * Fixed typo in manpage, 04_man_typo.diff * Use dh's CFLAGS/CPPFLAGS/LDFLAGS, 05_CFLAGS.diff * Install lintexrc as an example * Fix watchfile to properly name tarball -- Ryan Kavanagh Mon, 10 Sep 2012 19:14:35 +0100 lintex (1.11-1) unstable; urgency=low * Imported Upstream version 1.11 - Removes .synctex.gz files (Closes: #647691) * Bump standards version to 3.9.2 -- Ryan Kavanagh Mon, 07 Nov 2011 13:40:55 -0500 lintex (1.10-1) unstable; urgency=low * Imported Upstream version 1.10 - Adds list of removal extensions to manpage and removes .thm files, (Closes: #611523) * Updated copyright holders' years -- Ryan Kavanagh Sun, 30 Jan 2011 14:11:08 -0500 lintex (1.09-1) unstable; urgency=low * Imported Upstream version 1.09 - Adds support for removing files older than their source, (Closes: #604989, #604985) * Added git-buildpackage config file (debian/gbp.conf) * Unapply patches after build to keep git quiet * Added DEP3 headers to 02_install_dir.diff * Bump debhelper to version 8 * Bump compat accordingly -- Ryan Kavanagh Tue, 30 Nov 2010 19:51:05 -0500 lintex (1.08-1) unstable; urgency=low * New upstream release - Has various verbosity levels, defaults to only printing the files that are removed instead of printing both those which get removed and those which don't (Closes: #597271) * Updated watch file so that uscan doesn't think there's a slash in front of the version * Turned on DM-Upload-Allowed -- Ryan Kavanagh Fri, 01 Oct 2010 19:40:20 -0400 lintex (1.07-1) unstable; urgency=low * New upstream release - Doesn't delete read only files (Closes: #588777) - Includes option to only delete intermediary files (Closes: #588779) * Drop 01_update_manpage.diff, no longer needed * Drop 03_hyphen-minus-sign.diff, applied upstream * Added new upstream author / download location to copyright * Added watch file * Bumped standards version to 3.9.1, no changes required * Updated Homepage: field * Added Vcs-* tags * Fix typo in long description -- Ryan Kavanagh Wed, 11 Aug 2010 19:41:24 -0400 lintex (1.06-1) unstable; urgency=low * Initial release (Closes: #581881) -- Ryan Kavanagh Mon, 21 Jun 2010 17:30:15 -0400 debian/watch0000664000000000000000000000017112023620550010213 0ustar version=3 opts=filenamemangle=s@.*/(.*)@lintex-$1@ \ http://githubredir.debian.net/github/ryanakca/lintex /(.*).tar.gz debian/lintex.dirs0000664000000000000000000000001012023620023011333 0ustar usr/bin debian/lintex.examples0000664000000000000000000000001112023621303012213 0ustar lintexrc debian/lintex.manpages0000664000000000000000000000001112023620023012166 0ustar lintex.1 debian/copyright0000664000000000000000000000320312023620023011107 0ustar This work was packaged for Debian by: Ryan Kavanagh on Mon, 21 Jun 2010 17:30:15 -0400 It was downloaded from: http://wwwcdf.pd.infn.it/MLO/ (version 1.06) http://github.com/ryanakca/lintex (version 1.07+) Upstream Authors: Maurizio Loreti Ryan Kavanagh Copyright: Copyright (C) 1996–2002 Maurizio Loreti Copyright (C) 2010–2011 Ryan Kavanagh License: 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. The Debian packaging is: Copyright (C) 2010–2011 Ryan Kavanagh 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. debian/rules0000775000000000000000000000006212023620023010234 0ustar #!/usr/bin/make -f # -*- makefile -*- %: dh $@ debian/patches/0000775000000000000000000000000012044711357010623 5ustar debian/patches/06_ld-as-needed.diff0000664000000000000000000000144012044710757014206 0ustar Index: lintex-1.13/Makefile =================================================================== --- lintex-1.13.orig/Makefile 2012-11-02 10:22:55.000000000 +0100 +++ lintex-1.13/Makefile 2012-11-02 10:27:01.000000000 +0100 @@ -1,14 +1,15 @@ # $Id: Makefile,v 1.3 2001/12/02 11:00:05 loreti Exp $ -CFLAGS += -ansi -pedantic -Wall `pkg-config --libs --cflags libconfig` +CFLAGS += -ansi -pedantic -Wall `pkg-config --cflags libconfig` #CFLAGS = -ansi -Wall -g `pkg-config --libs --cflags libconfig` +LIBS += `pkg-config --libs libconfig` ROOT = debian/lintex/usr .PHONY: install clean lintex: lintex.c Makefile - $(CC) $(CXXFLAGS) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ lintex.c + $(CC) $(CXXFLAGS) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ lintex.c $(LIBS) install: lintex strip lintex debian/patches/series0000664000000000000000000000005112044711357012034 0ustar 02_install_dir.diff 06_ld-as-needed.diff debian/patches/02_install_dir.diff0000664000000000000000000000163112023621303014247 0ustar # Description: Don't install in the build system's /usr/local. # # Don't install in the build system's /usr/local. Install somewhere # sane. Like in the package. # Forwarded: not-needed # Author: Ryan Kavanagh # Last-Update: 2010-11-30 Index: lintex/Makefile =================================================================== --- lintex.orig/Makefile 2012-09-11 12:38:18.846005521 +0100 +++ lintex/Makefile 2012-09-11 12:38:22.346073131 +0100 @@ -3,7 +3,7 @@ CFLAGS += -ansi -pedantic -Wall `pkg-config --libs --cflags libconfig` #CFLAGS = -ansi -Wall -g `pkg-config --libs --cflags libconfig` -ROOT = /usr/local +ROOT = debian/lintex/usr .PHONY: install clean @@ -13,7 +13,8 @@ install: lintex strip lintex mv lintex $(ROOT)/bin - cp lintex.1 $(ROOT)/man/man1 + # Handle this in packaging + #cp lintex.1 $(ROOT)/man/man1 lintex.pdf: lintex.1 groff -man -Tps $< | ps2pdf - $@ debian/control0000664000000000000000000000152312044711171010572 0ustar Source: lintex Section: tex Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Ryan Kavanagh Build-Depends: debhelper (>= 9) , libconfig-dev , pkg-config Standards-Version: 3.9.3 Homepage: http://github.com/ryanakca/lintex Vcs-Browser: http://git.debian.org/?p=collab-maint/lintex.git Vcs-Git: git://git.debian.org/collab-maint/lintex.git Package: lintex Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Suggests: texlive-base Description: automatic cleanup of old TeX-related files Removes unneeded files after a (La)TeX run: .aux, .log, .dvi, etc, if their timestamp is more recent than the TeX file's. Also removes the backup files created by your text editor. This keeps a directory containing multiple (La)TeX documents from becoming unmanageable. debian/gbp.conf0000664000000000000000000000024512023620023010576 0ustar [DEFAULT] upstream-branch = upstream debian-branch = master upstream-tag = upstream/%(version)s debian-tag = debian/%(version)s pristine-tar = True sign-tags = True debian/docs0000664000000000000000000000000712023620023010026 0ustar README debian/source/0000775000000000000000000000000012023620023010456 5ustar debian/source/format0000664000000000000000000000001412023620023011664 0ustar 3.0 (quilt)