--- abicheck-1.2.orig/Makefile +++ abicheck-1.2/Makefile @@ -23,5 +23,7 @@ tar -cvf abicheck.tar `find $(DIR)/* -type f | egrep -v 'SCCS|CKPT|abicheck.tar'` rm -f $(DIR) +install: + cp abicheck $(DESTDIR)/usr/bin/abicheck FRC: --- abicheck-1.2.orig/abicheck.pl +++ abicheck-1.2/abicheck.pl @@ -1,6 +1,4 @@ - #!/bin/sh -- # A comment mentioning perl. -eval 'exec perl -S $0 ${1+"$@"}' - if 0; +#!/usr/bin/perl # # Copyright (c) 2001-2003 by Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. --- abicheck-1.2.orig/debian/changelog +++ abicheck-1.2/debian/changelog @@ -0,0 +1,70 @@ +abicheck (1.2-6) unstable; urgency=medium + + * QA upload. + * Set maintainer to Debian QA Group. (Closes: #979325) (see #981674) + + -- Adrian Bunk Wed, 03 Feb 2021 13:29:04 +0200 + +abicheck (1.2-5.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Tue, 05 Jan 2021 11:58:07 +0100 + +abicheck (1.2-5) unstable; urgency=low + + * New maintainer (Closes: #453671) + + -- Angel Ramos Wed, 6 May 2009 16:15:00 +0100 + +abicheck (1.2-4) unstable; urgency=low + + * QA upload. + * Move DH_COMPAT from rules to debian/compat and set to 5. + * Update debhelper build-dep version to >= 5.0.0. + * Fix up copyright file. + * Fix and update watch file. + * Make clean not ignore errors. + * Move perl to B-D-I. + * Bump Standards Version to 3.8.1. (No changes needed). + + -- Barry deFreese Fri, 24 Apr 2009 11:41:04 -0400 + +abicheck (1.2-3) unstable; urgency=low + + * Orphaning - maintainer set to QA group + + -- Thom May Fri, 30 Nov 2007 14:25:48 +0000 + +abicheck (1.2-2) unstable; urgency=low + + * Fix shebang line (Closes: #305320) + * Change section to devel (Closes: #140847) + + -- Thom May Tue, 19 Apr 2005 22:38:18 +0000 + +abicheck (1.2-1) unstable; urgency=low + + * New upstream release (Closes: #247181) + Acknowledge NMU, thanks Rene (Closes: #161220, #170355) + This fixes the problem where results were always NO_BINDINGS + (Closes: #146736) + + -- Thom May Mon, 18 Apr 2005 11:01:10 +0000 + +abicheck (1.0-1.1) unstable; urgency=low + + * Non-maintainer upload (BSP) + * change Architecture: any to Architecture: all because this only is + a plain .pl script and move the dh_* commands to binary-indep + (closes: #161220) + + -- Rene Engelhard Fri, 22 Nov 2002 17:59:56 +0100 + +abicheck (1.0-1) unstable; urgency=low + + * Initial Release. (Closes: #139060) + + -- Thom May Tue, 19 Mar 2002 14:15:25 +0000 + --- abicheck-1.2.orig/debian/compat +++ abicheck-1.2/debian/compat @@ -0,0 +1 @@ +5 --- abicheck-1.2.orig/debian/control +++ abicheck-1.2/debian/control @@ -0,0 +1,16 @@ +Source: abicheck +Section: devel +Priority: optional +Maintainer: Debian QA Group +Build-Depends: debhelper (>> 5.0.0) +Build-Depends-Indep: perl +Standards-Version: 3.8.1 + +Package: abicheck +Architecture: all +Depends: perl +Description: binary compatibility checking tool + ABIcheck is a tool for checking an application's compliance with a + library's defined Application Binary Interface (ABI). It relies on + ABI definition information contained in the library. Example + definitions are given for GNOME and glibc. --- abicheck-1.2.orig/debian/copyright +++ abicheck-1.2/debian/copyright @@ -0,0 +1,14 @@ +This package was debianized by Thom May on +Tue, 19 Mar 2002 14:15:25 +0000. + +It was downloaded from abicheck.sourceforge.net + +Upstream Author: Karl Runge + +Copyright: Copyright (C) 2001-2003 Sun Microsystems, Inc. + +License: + +The GNU LGPLv2 +On Debian GNU/Linux systems, the complete text of the LGPL License +can be found in `/usr/share/common-licenses/LGPL-2'. --- abicheck-1.2.orig/debian/dirs +++ abicheck-1.2/debian/dirs @@ -0,0 +1 @@ +usr/bin --- abicheck-1.2.orig/debian/docs +++ abicheck-1.2/debian/docs @@ -0,0 +1 @@ +README --- abicheck-1.2.orig/debian/rules +++ abicheck-1.2/debian/rules @@ -0,0 +1,69 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +build: build-stamp + +build-stamp: + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/abicheck. + $(MAKE) install DESTDIR=$(CURDIR)/debian/abicheck + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installman abicheck.1 + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- abicheck-1.2.orig/debian/watch +++ abicheck-1.2/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/abicheck/abicheck-([\d.]+)\.tar\.gz