[26789] in Source-Commits
/svn/athena r25758 - in trunk/athena/bin/discuss: . debian dsgrep server
daemon@ATHENA.MIT.EDU (Jonathan D Reed)
Fri Sep 7 15:52:29 2012
Date: Fri, 7 Sep 2012 15:52:21 -0400
From: Jonathan D Reed <jdreed@MIT.EDU>
Message-Id: <201209071952.q87JqLL7016716@drugstore.mit.edu>
To: source-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: jdreed
Date: 2012-09-07 15:52:21 -0400 (Fri, 07 Sep 2012)
New Revision: 25758
Added:
trunk/athena/bin/discuss/create_mtg_dir.1
trunk/athena/bin/discuss/discussd.8
trunk/athena/bin/discuss/disserve.8
Modified:
trunk/athena/bin/discuss/Makefile.in
trunk/athena/bin/discuss/debian/changelog
trunk/athena/bin/discuss/debian/control.in
trunk/athena/bin/discuss/debian/debathena-discuss-server.install
trunk/athena/bin/discuss/discuss.1
trunk/athena/bin/discuss/dsgrep/dsgrep.1
trunk/athena/bin/discuss/server/Makefile.in
Log:
In discuss:
* Package discuss server utilities (Trac: #881)
Modified: trunk/athena/bin/discuss/Makefile.in
===================================================================
--- trunk/athena/bin/discuss/Makefile.in 2012-09-07 18:40:03 UTC (rev 25757)
+++ trunk/athena/bin/discuss/Makefile.in 2012-09-07 19:52:21 UTC (rev 25758)
@@ -23,9 +23,13 @@
install::
${MKDIR_P} ${DESTDIR}${mandir}/man1
+ ${MKDIR_P} ${DESTDIR}${mandir}/man8
${INSTALL_DATA} ${srcdir}/discuss.1 ${DESTDIR}${mandir}/man1
+ ${INSTALL_DATA} ${srcdir}/create_mtg_dir.1 ${DESTDIR}${mandir}/man1
+ ${INSTALL_DATA} ${srcdir}/discussd.8 ${DESTDIR}${mandir}/man8
+ ${INSTALL_DATA} ${srcdir}/disserve.8 ${DESTDIR}${mandir}/man8
# Doesn't depend on clean because that would run clean target in
# subdirectories more than once
distclean::
- rm -rf config.cache config.log config.status Makefile
\ No newline at end of file
+ rm -rf config.cache config.log config.status Makefile
Added: trunk/athena/bin/discuss/create_mtg_dir.1
===================================================================
--- trunk/athena/bin/discuss/create_mtg_dir.1 (rev 0)
+++ trunk/athena/bin/discuss/create_mtg_dir.1 2012-09-07 19:52:21 UTC (rev 25758)
@@ -0,0 +1,14 @@
+.\" This is an -*- nroff -*- source file.
+.\"
+.TH CREATE_MTG_DIR 1 "9 September 2012" "Discuss" "deabthena-discuss-server"
+.SH NAME
+create_mtg_dir \- Create a discuss meeting directory
+.SH SYNOPSIS
+.B create_mtg_dir \fIdirectory\fP
+.SH DESCRIPTION
+The
+.B create_mtg_dir
+utility creates a directory for a discuss meeting. The directory must
+be an absolute pathname, and the \fIdiscuss\fP user must exist.
+.SH SEE ALSO
+.BR discuss (1)
Modified: trunk/athena/bin/discuss/debian/changelog
===================================================================
--- trunk/athena/bin/discuss/debian/changelog 2012-09-07 18:40:03 UTC (rev 25757)
+++ trunk/athena/bin/discuss/debian/changelog 2012-09-07 19:52:21 UTC (rev 25758)
@@ -1,8 +1,9 @@
-debathena-discuss (10.0.15-0debathena2) UNRELEASED; urgency=low
+debathena-discuss (10.0.15-0debathena2) unstable; urgency=low
* Bump debian/compat to 6
+ * Package discuss server utilities (Trac: #881)
- -- Jonathan Reed <jdreed@mit.edu> Sun, 01 Jul 2012 12:21:30 -0400
+ -- Jonathan Reed <jdreed@mit.edu> Fri, 07 Sep 2012 15:47:43 -0400
debathena-discuss (10.0.15-0debathena1) unstable; urgency=low
Modified: trunk/athena/bin/discuss/debian/control.in
===================================================================
--- trunk/athena/bin/discuss/debian/control.in 2012-09-07 18:40:03 UTC (rev 25757)
+++ trunk/athena/bin/discuss/debian/control.in 2012-09-07 19:52:21 UTC (rev 25758)
@@ -3,13 +3,13 @@
Priority: extra
Maintainer: Debathena Project <debathena@mit.edu>
Build-Depends: @cdbs@, autotools-dev, automake1.9, debathena-aclocal, comerr-dev, ss-dev, libkrb5-dev, libzephyr-dev, bison
-Standards-Version: 3.7.2
+Standards-Version: 3.9.1
Package: debathena-discuss
Architecture: any
Provides: discuss
Depends: ${shlibs:Depends}, ${misc:Depends}, netbase
-Description: A conferencing and mail archiving system
+Description: Conferencing and mail archiving system
Discuss is a user-interface front end to a networked conferencing
system.
@@ -28,11 +28,13 @@
Provides: discuss-server
Pre-Depends: adduser
Depends: ${shlibs:Depends}, ${misc:Depends}, debathena-discuss (= ${binary:Version}), libzephyr4-krb5 | libzephyr3-krb, netbase, openbsd-inetd | inet-superserver
-Description: A conferencing and mail archiving system
+Description: Conferencing and mail archiving system (server)
Discuss is a user-interface front end to a networked conferencing
system.
.
- This package contains the discuss server.
+ This package contains the discuss server and associated utilities.
+ Note that the 'byteswap' utility is no longer needed and is not
+ included, as modern discuss servers do this automatically.
Package: debathena-libdsk-dev
Section: debathena/libdevel
Modified: trunk/athena/bin/discuss/debian/debathena-discuss-server.install
===================================================================
--- trunk/athena/bin/discuss/debian/debathena-discuss-server.install 2012-09-07 18:40:03 UTC (rev 25757)
+++ trunk/athena/bin/discuss/debian/debathena-discuss-server.install 2012-09-07 19:52:21 UTC (rev 25758)
@@ -1,3 +1,6 @@
usr/bin/create_mtg_dir
usr/sbin/discussd
usr/sbin/disserve
+usr/lib/debathena-discuss/recover
+usr/lib/debathena-discuss/expunge
+usr/lib/debathena-discuss/disdebug
Modified: trunk/athena/bin/discuss/discuss.1
===================================================================
--- trunk/athena/bin/discuss/discuss.1 2012-09-07 18:40:03 UTC (rev 25757)
+++ trunk/athena/bin/discuss/discuss.1 2012-09-07 19:52:21 UTC (rev 25758)
@@ -4,8 +4,7 @@
.\"
.\"
.\"
-.TH DISCUSS 1 "14 April 1987"
-.FM quote "MIT SIPB"
+.TH DISCUSS 1 "14 April 1987" "debathena-discuss" "MIT SIPB"
.SH NAME
discuss \- Conferencing system
.SH SYNOPSIS
Added: trunk/athena/bin/discuss/discussd.8
===================================================================
--- trunk/athena/bin/discuss/discussd.8 (rev 0)
+++ trunk/athena/bin/discuss/discussd.8 2012-09-07 19:52:21 UTC (rev 25758)
@@ -0,0 +1,14 @@
+.\" This is an -*- nroff -*- source file.
+.\"
+.TH DISCUSSD 8 "9 September 2012" "Discuss" "deabthena-discuss-server"
+.SH NAME
+discussd \- Component of discuss server
+.SH SYNOPSIS
+.B discussd
+.SH DESCRIPTION
+The
+.B discussd
+program is a component of the discuss server. Is it not intended to be
+run by hand.
+.SH SEE ALSO
+.BR discuss (1)
Added: trunk/athena/bin/discuss/disserve.8
===================================================================
--- trunk/athena/bin/discuss/disserve.8 (rev 0)
+++ trunk/athena/bin/discuss/disserve.8 2012-09-07 19:52:21 UTC (rev 25758)
@@ -0,0 +1,14 @@
+.\" This is an -*- nroff -*- source file.
+.\"
+.TH DISSERVE 8 "9 September 2012" "Discuss" "deabthena-discuss-server"
+.SH NAME
+disserve \- Component of discuss server
+.SH SYNOPSIS
+.B disserve
+.SH DESCRIPTION
+The
+.B disserve
+program is a component of the discuss server. Is it not intended to be
+run by hand.
+.SH SEE ALSO
+.BR discuss (1)
Modified: trunk/athena/bin/discuss/dsgrep/dsgrep.1
===================================================================
--- trunk/athena/bin/discuss/dsgrep/dsgrep.1 2012-09-07 18:40:03 UTC (rev 25757)
+++ trunk/athena/bin/discuss/dsgrep/dsgrep.1 2012-09-07 19:52:21 UTC (rev 25758)
@@ -1,6 +1,6 @@
-...
-... $Id: dsgrep.1,v 1.5 2001-02-28 20:43:54 ghudson Exp $
-...
+.\"
+.\" $Id: dsgrep.1,v 1.5 2001-02-28 20:43:54 ghudson Exp $
+.\"
.TH DSGREP 1 "18 Jun 1990"
.ds ]W MIT Project Athena
.SH NAME
Modified: trunk/athena/bin/discuss/server/Makefile.in
===================================================================
--- trunk/athena/bin/discuss/server/Makefile.in 2012-09-07 18:40:03 UTC (rev 25757)
+++ trunk/athena/bin/discuss/server/Makefile.in 2012-09-07 19:52:21 UTC (rev 25758)
@@ -13,6 +13,7 @@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
+libexecdir=@libexecdir@
CC=@CC@
DEFS=@DEFS@
@@ -44,8 +45,12 @@
install:
${MKDIR_P} ${DESTDIR}${sbindir}
+ ${MKDIR_P} ${DESTDIR}${libexecdir}
${INSTALL_PROGRAM} discussd ${DESTDIR}${sbindir}
${INSTALL_PROGRAM} disserve ${DESTDIR}${sbindir}
+ ${INSTALL_PROGRAM} recover ${DESTDIR}${libexecdir}
+ ${INSTALL_PROGRAM} expunge ${DESTDIR}${libexecdir}
+ ${INSTALL_PROGRAM} disdebug ${DESTDIR}${libexecdir}
discussd: $(DISCUSSD_OBJS)
${CC} ${LDFLAGS} -o $@ $(DISCUSSD_OBJS) ${LIBS}