[27062] in Source-Commits
/svn/athena r25923 - in trunk/athena/bin/athinfo: . debian debian/source
daemon@ATHENA.MIT.EDU (Victor Vasiliev)
Tue Apr 16 12:45:58 2013
Date: Tue, 16 Apr 2013 12:45:50 -0400
From: Victor Vasiliev <vasilvv@MIT.EDU>
Message-Id: <201304161645.r3GGjoaU000421@drugstore.mit.edu>
To: source-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: vasilvv
Date: 2013-04-16 12:45:50 -0400 (Tue, 16 Apr 2013)
New Revision: 25923
Added:
trunk/athena/bin/athinfo/MANIFEST.in
trunk/athena/bin/athinfo/debian/debathena-athinfo.bash-completion
trunk/athena/bin/athinfo/debian/debathena-athinfo.manpages
trunk/athena/bin/athinfo/debian/source/
trunk/athena/bin/athinfo/debian/source/format
trunk/athena/bin/athinfo/setup.py
Removed:
trunk/athena/bin/athinfo/Makefile.in
trunk/athena/bin/athinfo/configure.in
Modified:
trunk/athena/bin/athinfo/debian/changelog
trunk/athena/bin/athinfo/debian/control
trunk/athena/bin/athinfo/debian/rules
Log:
In athinfo:
* Use Python distutils instead of autoconf
* Use debhelper7
* Use source format 3.0 (quilt)
Added: trunk/athena/bin/athinfo/MANIFEST.in
===================================================================
--- trunk/athena/bin/athinfo/MANIFEST.in (rev 0)
+++ trunk/athena/bin/athinfo/MANIFEST.in 2013-04-16 16:45:50 UTC (rev 25923)
@@ -0,0 +1,4 @@
+include *.1
+include bash_completion
+include MANIFEST.in
+
Modified: trunk/athena/bin/athinfo/debian/changelog
===================================================================
--- trunk/athena/bin/athinfo/debian/changelog 2013-04-15 22:18:39 UTC (rev 25922)
+++ trunk/athena/bin/athinfo/debian/changelog 2013-04-16 16:45:50 UTC (rev 25923)
@@ -1,9 +1,14 @@
debathena-athinfo (10.1-0debathena2) UNRELEASED; urgency=low
+ [ Jonathan Reed ]
* Switch from control.in to control (Trac: #561)
* Bump Standards-Version to 3.9.3
* Bump compat level to 7
+ [ Victor Vasiliev ]
+ * Use Python distutils instead of autoconf
+ * Use debhelper7
+
-- Jonathan Reed <jdreed@mit.edu> Wed, 03 Apr 2013 13:59:27 -0400
debathena-athinfo (10.1-0debathena1) unstable; urgency=low
Modified: trunk/athena/bin/athinfo/debian/control
===================================================================
--- trunk/athena/bin/athinfo/debian/control 2013-04-15 22:18:39 UTC (rev 25922)
+++ trunk/athena/bin/athinfo/debian/control 2013-04-16 16:45:50 UTC (rev 25923)
@@ -2,7 +2,9 @@
Section: debathena/net
Priority: extra
Maintainer: Debathena Project <debathena@mit.edu>
-Build-Depends: cdbs, debhelper, dh-buildinfo, autoconf
+# FIXME: python-support should be replaced with dh_python2 once lucid
+# is no longer supported.
+Build-Depends: debhelper (>= 7), dh-buildinfo, bash-completion, python-support
Standards-Version: 3.9.3
Package: debathena-athinfo
Added: trunk/athena/bin/athinfo/debian/debathena-athinfo.bash-completion
===================================================================
--- trunk/athena/bin/athinfo/debian/debathena-athinfo.bash-completion (rev 0)
+++ trunk/athena/bin/athinfo/debian/debathena-athinfo.bash-completion 2013-04-16 16:45:50 UTC (rev 25923)
@@ -0,0 +1 @@
+bash_completion athinfo
Added: trunk/athena/bin/athinfo/debian/debathena-athinfo.manpages
===================================================================
--- trunk/athena/bin/athinfo/debian/debathena-athinfo.manpages (rev 0)
+++ trunk/athena/bin/athinfo/debian/debathena-athinfo.manpages 2013-04-16 16:45:50 UTC (rev 25923)
@@ -0,0 +1 @@
+athinfo.1
Modified: trunk/athena/bin/athinfo/debian/rules
===================================================================
--- trunk/athena/bin/athinfo/debian/rules 2013-04-15 22:18:39 UTC (rev 25922)
+++ trunk/athena/bin/athinfo/debian/rules 2013-04-16 16:45:50 UTC (rev 25923)
@@ -1,8 +1,5 @@
#!/usr/bin/make -f
-DEB_AUTO_UPDATE_AUTOCONF = 2.50
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/autotools.mk
+%:
+ dh $@ --with bash-completion
-clean::
- rm -f configure
Added: trunk/athena/bin/athinfo/debian/source/format
===================================================================
--- trunk/athena/bin/athinfo/debian/source/format (rev 0)
+++ trunk/athena/bin/athinfo/debian/source/format 2013-04-16 16:45:50 UTC (rev 25923)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: trunk/athena/bin/athinfo/setup.py
===================================================================
--- trunk/athena/bin/athinfo/setup.py (rev 0)
+++ trunk/athena/bin/athinfo/setup.py 2013-04-16 16:45:50 UTC (rev 25923)
@@ -0,0 +1,10 @@
+#!/usr/bin/python
+
+from distutils.core import setup
+
+setup(name='athinfo',
+ version='10.1',
+ description='Retrieve information about Athena workstations',
+ author='Evan Broder',
+ scripts=['athinfo']
+ )