dslinux/user/rl/debian changelog compat control copyright docs rules

stsp stsp at user.in-berlin.de
Sun Oct 15 12:21:41 CEST 2006


Update of /cvsroot/dslinux/dslinux/user/rl/debian
In directory antilope:/tmp/cvs-serv6893/debian

Added Files:
	changelog compat control copyright docs rules 
Log Message:
Adding pristine copy of rl so I can branch from it.


--- NEW FILE: control ---
Source: randomize-lines
Section: utils
Priority: optional
Maintainer: Arthur de Jong <adejong at debian.org>
Build-Depends: debhelper (>> 4.0.0)
Standards-Version: 3.7.2

Package: randomize-lines
Architecture: any
Depends: ${shlibs:Depends}
Description: randomize lines of input text
 rl is a command-line tool that reads lines from an input file or stdin,
 randomizes the lines and outputs a specified number of lines. It does this
 with only a single pass over the input while trying to use as little memory
 as possible.
 .
 Currently randomize-lines is under development and command-line arguments
 may change slightly until a 1.0 release is made.
 .
  Homepage: http://ch.tudelft.nl/~arthur/rl

--- NEW FILE: compat ---
4

--- NEW FILE: copyright ---
This is rl, a command-line tool to randomize lines.

Arthur de Jong is both the upstream and Debian package maintainer, so
there are no differences between the Debian package and the upstream
version. rl can be downloaded at
http://ch.tudelft.nl/~arthur/rl/.

Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Arthur de Jong.

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, 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.

On Debian GNU/Linux systems, the complete text of
the GNU General Public License can be found in
/usr/share/common-licenses/GPL.

--- NEW FILE: changelog ---
randomize-lines (0.2.5) unstable; urgency=low

  * implemented --line-number option to dump line numbers
  * changed email address and homepage location, new homepage is at
    http://ch.tudelft.nl/~arthur/rl/
  * some spelling fixes (closes: #390098)
  * upgrade to standards-version 3.7.2 (no changes needed)

 -- Arthur de Jong <adejong at debian.org>  Sat, 30 Jul 2005 10:00:00 +0200

randomize-lines (0.2.4) unstable; urgency=low

  * add checks for correct reading and writing of lines (closes: #305782)

 -- Arthur de Jong <adejong at debian.org>  Sat, 23 Apr 2005 17:00:00 +0200

randomize-lines (0.2.3) unstable; urgency=low

  * improved documentation
  * update to newer autoconf and automake
  * make it possible to choose random number source at configure time
  * added extra tests to configure script
  * start package short description with lower case letter (thanks lintian)

 -- Arthur de Jong <adejong at debian.org>  Fri,  2 Apr 2005 13:30:00 +0200

randomize-lines (0.2.2) unstable; urgency=low

  * added debian/compat to source tarball (closes: #215488)
  * removed ChangeLog from binary packages since it contains only information
    relevant if you have the sources, it is generated from cvs logs. for a
    list of changes see this changelog or the NEWS file (which are almost
    identical)

 -- Arthur de Jong <adejong at debian.org>  Mon, 13 Oct 2003 21:00:00 +0200

randomize-lines (0.2.1) unstable; urgency=low

  * some small documentation improvements
  * improvements to header includes
  * removed maximum to --count command line option
  * changed maintainer address to adejong at debian.org
  * upgrade to standards-version 3.6.1 (no changes needed)
  * changed package description slightly

 -- Arthur de Jong <adejong at debian.org>  Sun, 12 Oct 2003 21:38:00 +0200

randomize-lines (0.2.0) unstable; urgency=low

  * this time really released for debian/unstable (closes: #163528)
  * add --reselect option to replace --uniq option and change
    default behaviour to select lines only once instead of
    multiple times (incompatible change)
  * added --output, --delimiter and --null command line options
  * added examples to manual page
  * organized code better
  * added --enable-warnings in configure and enable by default in
    debian package building

 -- Arthur de Jong <arthur at tiefighter.et.tudelft.nl>  Sun, 27 Oct 2002 17:57:23 +0100

randomize-lines (0.1.7) unstable; urgency=low

  * first release for debian/unstable (closes: #163528)

 -- Arthur de Jong <arthur at tiefighter.et.tudelft.nl>  Sun,  6 Oct 2002 16:56:49 +0200

randomize-lines (0.1.6) unstable; urgency=low

  * Initial Release.

 -- Arthur de Jong <arthur at tiefighter.et.tudelft.nl>  Mon, 01 Oct 2001 22:23:00 +0200

--- NEW FILE: rules ---
#!/usr/bin/make -f

export DH_VERBOSE=1

export DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
  confflags += --build $(DEB_HOST_GNU_TYPE)
else
  confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
endif

configure: configure-stamp
configure-stamp:
	dh_testdir
	./configure $(confflags) \
	    --prefix=/usr \
	    --mandir=\$${prefix}/share/man \
	    --infodir=\$${prefix}/share/info \
	    --enable-warnings
	touch configure-stamp

build: configure-stamp build-stamp
build-stamp:
	dh_testdir
	$(MAKE)
	touch build-stamp

clean:
	-test -r /usr/share/misc/config.sub && \
	  cp -f /usr/share/misc/config.sub config.sub
	-test -r /usr/share/misc/config.guess && \
	  cp -f /usr/share/misc/config.guess config.guess
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp
	-$(MAKE) distclean
	dh_clean

install: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs
	$(MAKE) install DESTDIR=$(CURDIR)/debian/randomize-lines

# 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_installdebconf	
	dh_installdocs
#	dh_installexamples
#	dh_installmenu
#	dh_installlogrotate
#	dh_installemacsen
#	dh_installpam
#	dh_installmime
#	dh_installinit
#	dh_installcron
	dh_installman
#	dh_installinfo
#	dh_undocumented
	dh_installchangelogs
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
#	dh_makeshlibs
	dh_installdeb
#	dh_perl
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure

--- NEW FILE: docs ---
README
TODO
AUTHORS
NEWS




More information about the dslinux-commit mailing list