Subversion Repositories libtar

Compare Revisions

Ignore whitespace Rev 3 → Rev 4

/trunk/debian/libtar-dev.examples
File deleted
/trunk/debian/source/format
File deleted
/trunk/debian/watch
File deleted
/trunk/debian/patches/libtool.patch
File deleted
/trunk/debian/patches/autoreconf.patch
File deleted
/trunk/debian/patches/bad_ptrtoint.patch
File deleted
/trunk/debian/patches/memleak.patch
File deleted
/trunk/debian/patches/series
File deleted
/trunk/debian/patches/memleak2.patch
File deleted
/trunk/debian/control
1,15 → 1,14
Source: libtar
Section: libs
Priority: optional
Maintainer: Magnus Holmgren <holmgren@debian.org>
Build-Depends: debhelper (>= 7), dh-autoreconf, autoconf, libtool
Standards-Version: 3.9.1
Homepage: http://www.feep.net/libtar/
Maintainer: Julien Danjou <acid@debian.org>
Build-Depends: debhelper (>> 5.0.0), autoconf, libtool
Standards-Version: 3.8.1
 
Package: libtar-dev
Architecture: any
Section: libdevel
Depends: libtar (= ${binary:Version}), ${misc:Depends}
Depends: libtar (= ${binary:Version})
Description: C library for manipulating tar archives
Contains static library, headers, example code and development manpages
for libtar
17,7 → 16,7
Package: libtar
Architecture: any
Section: libs
Depends: ${shlibs:Depends}, ${misc:Depends}
Depends: ${shlibs:Depends}
Description: C library for manipulating tar archives
libtar allows programs to create, extract and test tar archives.
It supports both the strict POSIX tar format and many of the commonly-used
/trunk/debian/compat
1,0 → 0,0
7
5
/trunk/debian/changelog
1,24 → 1,3
libtar (1.2.11-7) unstable; urgency=low
 
* New maintainer (Closes: #526618).
* Change source format to 3.0 (quilt), clean up Debian diff and split
into several patches:
* libtool.patch: Using libtool to build dynamic library;
* autoreconf.patch: Changes needed to call autoreconf (bug 511741);
* memleak.patch: Fix memory leaks;
* bad_ptrtoint.patch: Document stupidity of tartype_t in libtar.c
(bug 309945).
* Increase Debhelper compat level to 7.
* Use dh_autoreconf to avoid having to keep track of files to clean.
* memleak2.patch (new): Applied instead of memleak.patch. Fix memory
leak by making th_get_pathname() return a pointer to a static buffer
instead of a pointer to a copy of a local buffer (LP: #41804).
* Add homepage field and watch file (in case there is ever a new
upstream release).
* Upgrade to Standards-Version 3.9.1.
 
-- Magnus Holmgren <holmgren@debian.org> Sat, 26 Mar 2011 23:10:25 +0100
 
libtar (1.2.11-6) unstable; urgency=low
 
* Fix autotools usage (Closes: #511741)
111,3 → 90,6
 
-- Glenn McGrath <bug1@debian.org> Sat, 5 Jan 2002 13:24:37 +1100
 
Local variables:
mode: debian-changelog
End:
/trunk/debian/libtar-dev.dirs
0,0 → 1,2
usr/lib
usr/include
/trunk/debian/libtar-dev.files
0,0 → 1,4
usr/include/libtar.h
usr/include/libtar_listhash.h
usr/lib/lib*.a
usr/lib/lib*so
/trunk/debian/rules
1,18 → 1,21
#!/usr/bin/make -f
 
export LIBTOOLIZE = libtoolize --install
export DH_VERBOSE=1
 
configure: configure-stamp
configure-stamp:
configure:
dh_testdir
[ -f debian/autoreconf.before ] || dh_autoreconf
cp /usr/share/misc/config.* autoconf
autoreconf -f -v -i
./configure \
--prefix=/usr \
--mandir=\$${prefix}/share/man
touch configure-stamp
 
build: build-stamp
build-stamp: configure-stamp
configure-stamp: configure
 
build-stamp: build
 
build: configure-stamp
dh_testdir
$(MAKE)
touch build-stamp
21,15 → 24,16
dh_testdir
dh_testroot
# Stale build files
[ ! -f Makefile ] || $(MAKE) clean
[ ! -f Makefile ] || $(MAKE) distclean
-rm -f build-stamp configure-stamp
dh_autoreconf_clean
dh_clean libtool configure
-rm -rf config.log autoconf/config.guess autoconf/config.sub autoconf/depcomp autoconf/ltmain.sh autoconf/missing autoconf/mkinstalldirs autom4te.cache libtool
dh_clean
 
install: build-stamp
dh_testdir
dh_testroot
dh_prep
dh_installdirs
 
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
 
41,7 → 45,7
dh_install --sourcedir=debian/tmp
 
dh_installdocs
dh_installexamples
dh_installexamples -p libtar-dev libtar/libtar.c libtar/Makefile
dh_installman
dh_installchangelogs ChangeLog
dh_link
/trunk/debian/libtar.dirs
0,0 → 1,0
usr/lib
/trunk/debian/libtar.files
0,0 → 1,0
usr/lib/lib*.so.*