debian/0000775000000000000000000000000011474157034007176 5ustar debian/rules0000775000000000000000000000256511370544523010264 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 build: build-stamp build-stamp: dh_testdir # Add here commands to compile the package. $(MAKE) -C src touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp # Add here commands to clean up after the build process. $(MAKE) -C src clean dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/cldump. cp src/cldump debian/cldump/usr/bin # 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_installchangelogs dh_installdocs dh_installexamples magic # dh_install dh_installman src/cldump.1 dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/source/0000775000000000000000000000000011370545053010473 5ustar debian/source/format0000664000000000000000000000001411370545053011701 0ustar 3.0 (quilt) debian/README.Debian0000664000000000000000000000061311370544523011235 0ustar cldump for Debian ----------------- cldump was written using some Technical Bulletins from Clarion I found on the web, but they cannot be redistributed in Debian as they have no license attached. Visit http://technologeek.org/projects/cldump and grab the tarball if you need them; you'll find them in the doc directory. -- Julien BLACHE , Tue, 19 Apr 2005 11:59:27 +0200 debian/changelog0000664000000000000000000000347711474156774011075 0ustar cldump (0.11~dfsg-1) unstable; urgency=low * New upstream release. + Adds decryption feature for encrypted databases. * debian/control: + Bump Standards-Version to 3.9.1 (no changes). -- Julien BLACHE Sat, 27 Nov 2010 11:30:49 +0100 cldump (0.10-6) unstable; urgency=low * Moved to source format 3.0 (quilt). * debian/control: + Bump Standards-Version to 3.8.4 (no changes). -- Julien BLACHE Thu, 06 May 2010 18:34:29 +0200 cldump (0.10-5) unstable; urgency=low * debian/control: + Bump Standards-Version to 3.8.0 (no changes). * src/cldump.1: + Fix hyphen vs. minus sign. -- Julien BLACHE Thu, 10 Jul 2008 10:33:54 +0200 cldump (0.10-4) unstable; urgency=low * debian/control: + Bump Standards-Version to 3.7.3 (no changes). -- Julien BLACHE Sat, 01 Mar 2008 16:36:56 +0100 cldump (0.10-3) unstable; urgency=low * debian/rules: + Do not ignore errors from make clean. * debian/compat, debian/control: + Upgrade to DH_COMPAT 5. -- Julien BLACHE Thu, 02 Aug 2007 18:21:04 +0200 cldump (0.10-2) unstable; urgency=low * debian/control: + Fix override disparity (Priority: optional -> extra). -- Julien BLACHE Sun, 8 Oct 2006 16:33:28 +0200 cldump (0.10-1) unstable; urgency=low * New upstream release. -- Julien BLACHE Sat, 16 Sep 2006 15:31:53 +0200 cldump (0.9-1) unstable; urgency=low * New upstream release. * debian/control: + Bumped Standards-Version to 3.7.2 (no changes). -- Julien BLACHE Sun, 10 Sep 2006 11:41:57 +0200 cldump (0.8-1) unstable; urgency=low * Initial Release (closes: #305326). -- Julien BLACHE Tue, 19 Apr 2005 12:08:00 +0200 debian/compat0000664000000000000000000000000211370544523010372 0ustar 5 debian/copyright0000664000000000000000000000070211370544523011126 0ustar This package was debianized by Julien BLACHE on Tue, 19 Apr 2005 11:59:27 +0200. It was downloaded from: http://technologeek.org/projects/cldump Copyright Holder: Copyright (C) 2004-2005 Julien BLACHE License: cldump is released under the terms of the GNU General Public License version 2; on Debian systems, the complete text of the the GNU GPL v2 can be found in the /usr/share/common-licenses/GPL-2 file. debian/dirs0000664000000000000000000000001011370544523010047 0ustar usr/bin debian/control0000664000000000000000000000164711474156722010614 0ustar Source: cldump Section: misc Priority: extra Maintainer: Julien BLACHE Build-Depends: debhelper (>= 5) Standards-Version: 3.9.1 Package: cldump Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Clarion database files extractor The cldump utility allows you to extract the content of a Clarion database; Clarion is a Windows IDE similar to Delphi and others, and has its own (simple) database format. . cldump can export the content of the database to CSV or SQL, plus its own "format" which dumps all the meta data along with the data contained in the database. When using the SQL output, you'll get a nearly ready-to-go dump of the database that will create the table and the indexes and insert the data into the table. . Note that cldump doesn't support all the datatypes yet; patches welcome. . You may be interested in the dbview package too, which can dump dBase files.