Ticket #1326: athinfo-distutils.patch
File athinfo-distutils.patch, 4.2 KB (added by vasilvv, 10 years ago) |
---|
-
configure.in
1 dnl Process this file with autoconf to produce a configure script.2 AC_INIT(athinfo)3 4 AC_PROG_INSTALL5 6 AC_OUTPUT(Makefile) -
setup.py
1 #!/usr/bin/python 2 3 from distutils.core import setup 4 5 setup(name='athinfo', 6 version='10.1', 7 description='Retrieve information about Athena workstations', 8 author='Evan Broder', 9 scripts=['athinfo'] 10 ) -
MANIFEST.in
1 include *.1 2 include bash_completion 3 include MANIFEST.in 4 -
Makefile.in
1 # $Id: Makefile.in,v 1.3 1999-09-15 23:56:32 danw Exp $2 3 SHELL=/bin/sh4 VPATH=@srcdir@5 INSTALL=@INSTALL@6 INSTALL_PROGRAM=@INSTALL_PROGRAM@7 srcdir=@srcdir@8 top_srcdir=@top_srcdir@9 prefix=@prefix@10 exec_prefix=@exec_prefix@11 bindir=@bindir@12 mandir=@mandir@13 sysconfdir=@sysconfdir@14 15 CC=@CC@16 DEFS=@DEFS@17 CPPFLAGS=@CPPFLAGS@18 CFLAGS=@CFLAGS@ ${WARN_CFLAGS} ${ERROR_CFLAGS}19 LDFLAGS=@LDFLAGS@20 LIBS=@LIBS@21 ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} ${DEFS}22 23 all:24 25 check:26 27 install:28 ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir}29 ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man130 ${top_srcdir}/mkinstalldirs ${DESTDIR}${sysconfdir}/bash_completion.d31 ${INSTALL_PROGRAM} athinfo ${DESTDIR}${bindir}32 ${INSTALL} -m 444 ${srcdir}/athinfo.1 ${DESTDIR}${mandir}/man133 ${INSTALL} -m 644 ${srcdir}/bash_completion ${DESTDIR}${sysconfdir}/bash_completion.d/athinfo34 35 clean:36 37 distclean: clean38 rm -f config.cache config.log config.status Makefile -
debian/control
2 2 Section: debathena/net 3 3 Priority: extra 4 4 Maintainer: Debathena Project <debathena@mit.edu> 5 Build-Depends: cdbs, debhelper, dh-buildinfo, autoconf 5 # FIXME: python-support should be replaced with dh_python2 once lucid 6 # is no longer supported. 7 Build-Depends: debhelper (>= 7), dh-buildinfo, bash-completion, python-support 6 8 Standards-Version: 3.9.3 7 9 8 10 Package: debathena-athinfo -
debian/debathena-athinfo.bash-completion
1 bash_completion athinfo -
debian/changelog
1 1 debathena-athinfo (10.1-0debathena2) UNRELEASED; urgency=low 2 2 3 [ Jonathan Reed ] 3 4 * Switch from control.in to control (Trac: #561) 4 5 * Bump Standards-Version to 3.9.3 5 6 * Bump compat level to 7 6 7 8 [ Victor Vasiliev ] 9 * Use Python distutils instead of autoconf 10 * Use debhelper7 11 7 12 -- Jonathan Reed <jdreed@mit.edu> Wed, 03 Apr 2013 13:59:27 -0400 8 13 9 14 debathena-athinfo (10.1-0debathena1) unstable; urgency=low -
debian/rules
1 1 #!/usr/bin/make -f 2 2 3 DEB_AUTO_UPDATE_AUTOCONF = 2.50 4 include /usr/share/cdbs/1/rules/debhelper.mk 5 include /usr/share/cdbs/1/class/autotools.mk 3 %: 4 dh $@ --with bash-completion 6 5 7 clean::8 rm -f configure -
debian/debathena-athinfo.manpages
1 athinfo.1 -
debian/source/format
1 3.0 (quilt)