[27059] in Source-Commits

home help back first fref pref prev next nref lref last post

/svn/athena r25920 - in trunk/athena/bin/athrun: . debian debian/source

daemon@ATHENA.MIT.EDU (Alexander Chernyakhovsky)
Mon Apr 15 17:37:35 2013

Date: Mon, 15 Apr 2013 17:37:29 -0400
From: Alexander Chernyakhovsky <achernya@MIT.EDU>
Message-Id: <201304152137.r3FLbTSG026963@drugstore.mit.edu>
To: source-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Author: achernya
Date: 2013-04-15 17:37:28 -0400 (Mon, 15 Apr 2013)
New Revision: 25920

Added:
   trunk/athena/bin/athrun/athrun
   trunk/athena/bin/athrun/debian/bash-completion
   trunk/athena/bin/athrun/debian/install
   trunk/athena/bin/athrun/debian/manpages
   trunk/athena/bin/athrun/debian/source/
   trunk/athena/bin/athrun/debian/source/format
Removed:
   trunk/athena/bin/athrun/Makefile.in
   trunk/athena/bin/athrun/athrun.sh
   trunk/athena/bin/athrun/configure.in
Modified:
   trunk/athena/bin/athrun/debian/changelog
   trunk/athena/bin/athrun/debian/control
   trunk/athena/bin/athrun/debian/rules
Log:
In athrun:
  * Bump upstream version
  * Switch to dh7
  * Remove autoconf and Makefile
  * Switch to source format 3.0 (quilt)


Copied: trunk/athena/bin/athrun/athrun (from rev 25919, trunk/athena/bin/athrun/athrun.sh)
===================================================================
--- trunk/athena/bin/athrun/athrun	                        (rev 0)
+++ trunk/athena/bin/athrun/athrun	2013-04-15 21:37:28 UTC (rev 25920)
@@ -0,0 +1,22 @@
+#!/bin/sh
+# $Id: athrun.sh,v 1.1 2000-03-25 19:05:26 ghudson Exp $
+
+# A user front end to attachandrun.
+# "athrun moira" runs moira from the moira locker.
+# "athrun gnu gls -l" runs gls -l from the gnu locker.
+
+case $# in
+0)
+  echo "Usage: athrun locker [program] [args ...]" >&2
+  exit 1
+  ;;
+1)
+  exec /bin/attachandrun "$1" "$1" "$1"
+  ;;
+*)
+  locker=$1
+  program=$2
+  shift 2;
+  exec /bin/attachandrun "$locker" "$program" "$program" "$@"
+  ;;
+esac

Added: trunk/athena/bin/athrun/debian/bash-completion
===================================================================
--- trunk/athena/bin/athrun/debian/bash-completion	                        (rev 0)
+++ trunk/athena/bin/athrun/debian/bash-completion	2013-04-15 21:37:28 UTC (rev 25920)
@@ -0,0 +1 @@
+bash_completion athrun

Modified: trunk/athena/bin/athrun/debian/changelog
===================================================================
--- trunk/athena/bin/athrun/debian/changelog	2013-04-15 04:09:22 UTC (rev 25919)
+++ trunk/athena/bin/athrun/debian/changelog	2013-04-15 21:37:28 UTC (rev 25920)
@@ -1,10 +1,17 @@
-debathena-athrun (10.0.1-0debathena3) UNRELEASED; urgency=low
+debathena-athrun (10.1-0debathena1) UNRELEASED; urgency=low
 
+  [ Jonathan Reed ] 
   * Bump debian/compat to 6
   * Switch from control.in to control (Trac: #561)
   * Bump Standards-Version to 3.9.3
   * Bump compat level to 7
 
+  [ Alexander Chernyakhovsky ]
+  * Bump upstream version
+  * Switch to dh7
+  * Remove autoconf and Makefile
+  * Switch to source format 3.0 (quilt)
+
  -- Jonathan Reed <jdreed@mit.edu>  Wed, 03 Apr 2013 13:59:28 -0400
 
 debathena-athrun (10.0.1-0debathena2) unstable; urgency=low

Modified: trunk/athena/bin/athrun/debian/control
===================================================================
--- trunk/athena/bin/athrun/debian/control	2013-04-15 04:09:22 UTC (rev 25919)
+++ trunk/athena/bin/athrun/debian/control	2013-04-15 21:37:28 UTC (rev 25920)
@@ -2,7 +2,7 @@
 Section: debathena/net
 Priority: extra
 Maintainer: Debathena Project <debathena@mit.edu>
-Build-Depends: cdbs, debhelper, dh-buildinfo, autoconf
+Build-Depends: debhelper (>= 7), bash-completion
 Standards-Version: 3.9.3
 
 Package: debathena-athrun

Added: trunk/athena/bin/athrun/debian/install
===================================================================
--- trunk/athena/bin/athrun/debian/install	                        (rev 0)
+++ trunk/athena/bin/athrun/debian/install	2013-04-15 21:37:28 UTC (rev 25920)
@@ -0,0 +1 @@
+athrun usr/bin/

Added: trunk/athena/bin/athrun/debian/manpages
===================================================================
--- trunk/athena/bin/athrun/debian/manpages	                        (rev 0)
+++ trunk/athena/bin/athrun/debian/manpages	2013-04-15 21:37:28 UTC (rev 25920)
@@ -0,0 +1 @@
+athrun.1

Modified: trunk/athena/bin/athrun/debian/rules
===================================================================
--- trunk/athena/bin/athrun/debian/rules	2013-04-15 04:09:22 UTC (rev 25919)
+++ trunk/athena/bin/athrun/debian/rules	2013-04-15 21:37:28 UTC (rev 25920)
@@ -1,8 +1,3 @@
 #!/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
-
-clean::
-	rm -f configure
+%:
+	dh $@ --with bash-completion

Added: trunk/athena/bin/athrun/debian/source/format
===================================================================
--- trunk/athena/bin/athrun/debian/source/format	                        (rev 0)
+++ trunk/athena/bin/athrun/debian/source/format	2013-04-15 21:37:28 UTC (rev 25920)
@@ -0,0 +1 @@
+3.0 (quilt)


home help back first fref pref prev next nref lref last post