Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/buildbot/buildbot/test/mail/syncmail.5
blob: 82ba45108abd93743ab5f21b27a6a220310d90ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
From thomas@otto.amantes Mon Feb 21 17:46:45 2005
Return-Path: <thomas@otto.amantes>
Received: from otto.amantes (otto.amantes [127.0.0.1]) by otto.amantes
	(8.13.1/8.13.1) with ESMTP id j1LGkjr3011986 for <thomas@localhost>; Mon,
	21 Feb 2005 17:46:45 +0100
Message-Id: <200502211646.j1LGkjr3011986@otto.amantes>
From: Thomas Vander Stichele <thomas@otto.amantes>
To: thomas@otto.amantes
Subject: test1    s
Date: Mon, 21 Feb 2005 16:46:45 +0000
X-Mailer: Python syncmail $Revision: 1.1 $
	<http://sf.net/projects/cvs-syncmail>
Content-Transfer-Encoding: 8bit
Mime-Version: 1.0

Update of /home/cvs/test/test1
In directory otto.amantes:/home/thomas/dev/tests/cvs/test1

Added Files:
      Tag: BRANCH-DEVEL
	MANIFEST Makefile.am autogen.sh configure.in 
Log Message:
stuff on the branch

--- NEW FILE: Makefile.am ---
SUBDIRS = src

# normally I wouldn't distribute autogen.sh and friends with a tarball
# but this one is specifically distributed for demonstration purposes

EXTRA_DIST = autogen.sh

# target for making the "import this into svn" tarball
test:
	mkdir test
	for a in `cat MANIFEST`; do \
		cp -pr $$a test/$$a; done
	tar czf test.tar.gz test
	rm -rf test

--- NEW FILE: MANIFEST ---
MANIFEST
autogen.sh
configure.in
Makefile.am
src
src/Makefile.am
src/test.c

--- NEW FILE: autogen.sh ---
#!/bin/sh

set -x

aclocal && \
autoheader && \
autoconf && \
automake -a --foreign && \
./configure $@

--- NEW FILE: configure.in ---
dnl configure.ac for version macro
AC_INIT

AM_CONFIG_HEADER(config.h)

AM_INIT_AUTOMAKE(test, 0.0.0)
AC_PROG_CC

AC_OUTPUT(Makefile src/Makefile)