summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2003-08-28 22:44:04 +0000
committerLennart Poettering <lennart@poettering.net>2003-08-28 22:44:04 +0000
commit0d7460e9592c501b48fe9ab05d8e7fd52cb5bb4d (patch)
tree3066f62aa144813a53f675dcdf22f573b4fdd424 /src
parentced5a6e5b32026dbe9dc7ae7e2c38eb9cb621639 (diff)
added copyright notice
git-svn-id: file:///home/lennart/svn/public/syrep/trunk@12 07ea20a6-d2c5-0310-9e02-9ef735347d72
Diffstat (limited to 'src')
-rw-r--r--src/cache.c20
-rw-r--r--src/cache.h20
-rw-r--r--src/context.c20
-rw-r--r--src/context.h20
-rw-r--r--src/dbstruct.h2
-rw-r--r--src/dbutil.c20
-rw-r--r--src/dbutil.h20
-rw-r--r--src/diff.c20
-rw-r--r--src/diff.h20
-rw-r--r--src/dump.c22
-rw-r--r--src/dump.h20
-rw-r--r--src/extract.c20
-rw-r--r--src/extract.h20
-rw-r--r--src/history.c20
-rw-r--r--src/history.h20
-rw-r--r--src/info.c20
-rw-r--r--src/info.h20
-rw-r--r--src/list.c20
-rw-r--r--src/list.h20
-rw-r--r--src/makepatch.c20
-rw-r--r--src/makepatch.h20
-rw-r--r--src/md5util.c2
-rw-r--r--src/md5util.h21
-rw-r--r--src/merge.c20
-rw-r--r--src/merge.h20
-rw-r--r--src/package.c20
-rw-r--r--src/package.h20
-rw-r--r--src/syrep.c20
-rw-r--r--src/syrep.ggo18
-rw-r--r--src/syrep.h20
-rw-r--r--src/update.c20
-rw-r--r--src/update.h20
-rw-r--r--src/util.c20
-rw-r--r--src/util.h20
34 files changed, 635 insertions, 10 deletions
diff --git a/src/cache.c b/src/cache.c
index 860b4fb..2e893f2 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <db.h>
#include <stdlib.h>
#include <assert.h>
diff --git a/src/cache.h b/src/cache.h
index 7087b03..27d0421 100644
--- a/src/cache.h
+++ b/src/cache.h
@@ -1,6 +1,26 @@
#ifndef foomdcachehfoo
#define foomdcachehfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <stdint.h>
struct syrep_md_cache;
diff --git a/src/context.c b/src/context.c
index 6512f0d..f64040a 100644
--- a/src/context.c
+++ b/src/context.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <stdlib.h>
#include <string.h>
#include <assert.h>
diff --git a/src/context.h b/src/context.h
index 6e51b1c..e4617c9 100644
--- a/src/context.h
+++ b/src/context.h
@@ -1,6 +1,26 @@
#ifndef foocontexthfoo
#define foocontexthfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <db.h>
#include <stdint.h>
diff --git a/src/dbstruct.h b/src/dbstruct.h
index 2555cc1..1b7a9be 100644
--- a/src/dbstruct.h
+++ b/src/dbstruct.h
@@ -1,6 +1,8 @@
#ifndef foodbstructhfoo
#define foodbstructhfoo
+/* $Id$ */
+
#include <limits.h>
#include <stdint.h>
diff --git a/src/dbutil.c b/src/dbutil.c
index b7b44b9..407593a 100644
--- a/src/dbutil.c
+++ b/src/dbutil.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <string.h>
#include <assert.h>
#include <time.h>
diff --git a/src/dbutil.h b/src/dbutil.h
index 8f6a95a..f267e50 100644
--- a/src/dbutil.h
+++ b/src/dbutil.h
@@ -1,6 +1,26 @@
#ifndef foodbutilhfoo
#define foodbutilhfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "dbstruct.h"
#include "context.h"
diff --git a/src/diff.c b/src/diff.c
index 100d4f9..a9a20bd 100644
--- a/src/diff.c
+++ b/src/diff.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <assert.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/diff.h b/src/diff.h
index b4a8295..a746092 100644
--- a/src/diff.h
+++ b/src/diff.h
@@ -1,6 +1,26 @@
#ifndef foodiffhfoo
#define foodiffhfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
#include "dbstruct.h"
diff --git a/src/dump.c b/src/dump.c
index 06d8e28..c2e555b 100644
--- a/src/dump.c
+++ b/src/dump.c
@@ -1,3 +1,25 @@
+/* $Id$ */
+
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <stdio.h>
#include <assert.h>
#include <string.h>
diff --git a/src/dump.h b/src/dump.h
index b0690a5..b43aa27 100644
--- a/src/dump.h
+++ b/src/dump.h
@@ -1,6 +1,26 @@
#ifndef foodumphfoo
#define foodumphfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
int dump(struct syrep_db_context *c);
diff --git a/src/extract.c b/src/extract.c
index 5ba7869..011e108 100644
--- a/src/extract.c
+++ b/src/extract.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
diff --git a/src/extract.h b/src/extract.h
index e16674b..ea4800a 100644
--- a/src/extract.h
+++ b/src/extract.h
@@ -1,6 +1,26 @@
#ifndef fooextracthfoo
#define fooextracthfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
int extract(struct syrep_db_context *context);
diff --git a/src/history.c b/src/history.c
index f8fbe63..4da91d5 100644
--- a/src/history.c
+++ b/src/history.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <assert.h>
#include <string.h>
#include <time.h>
diff --git a/src/history.h b/src/history.h
index 2082a0c..4ef0260 100644
--- a/src/history.h
+++ b/src/history.h
@@ -1,6 +1,26 @@
#ifndef foohistoryfoo
#define foohistoryfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
int history(struct syrep_db_context *c);
diff --git a/src/info.c b/src/info.c
index 1475f37..698088b 100644
--- a/src/info.c
+++ b/src/info.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <stdio.h>
#include <assert.h>
diff --git a/src/info.h b/src/info.h
index 93a38b8..e551170 100644
--- a/src/info.h
+++ b/src/info.h
@@ -1,6 +1,26 @@
#ifndef fooinfohfoo
#define fooinfohfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
int info(struct syrep_db_context *c);
diff --git a/src/list.c b/src/list.c
index c5c8b90..5f1e5e2 100644
--- a/src/list.c
+++ b/src/list.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <string.h>
#include <assert.h>
#include <stdlib.h>
diff --git a/src/list.h b/src/list.h
index c66fe75..2a2e8ed 100644
--- a/src/list.h
+++ b/src/list.h
@@ -1,6 +1,26 @@
#ifndef foolisthfoo
#define foolisthfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
int list(struct syrep_db_context *c);
diff --git a/src/makepatch.c b/src/makepatch.c
index 1ddeb93..01af65e 100644
--- a/src/makepatch.c
+++ b/src/makepatch.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <assert.h>
#include <unistd.h>
#include <string.h>
diff --git a/src/makepatch.h b/src/makepatch.h
index f6836ae..792c0a9 100644
--- a/src/makepatch.h
+++ b/src/makepatch.h
@@ -1,6 +1,26 @@
#ifndef foomakepatchhfoo
#define foomakepatchhfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
int makepatch(struct syrep_db_context *c1, struct syrep_db_context *c2, const char *dir);
diff --git a/src/md5util.c b/src/md5util.c
index fcbf440..e4c3269 100644
--- a/src/md5util.c
+++ b/src/md5util.c
@@ -1,3 +1,5 @@
+/* $Id$ */
+
/***
This file is part of syrep.
diff --git a/src/md5util.h b/src/md5util.h
index 83f4bb7..f5a342a 100644
--- a/src/md5util.h
+++ b/src/md5util.h
@@ -1,23 +1,24 @@
#ifndef foomd5utilhfoo
#define foomd5utilhfoo
+/* $Id$ */
+
/***
- This file is part of pam_dotfile.
+ This file is part of syrep.
- pam_dotfile is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
- pam_dotfile is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
You should have received a copy of the GNU General Public License
- along with pam_dotfile; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- USA
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
***/
#include <sys/types.h>
diff --git a/src/merge.c b/src/merge.c
index a0d9f8d..c37cb53 100644
--- a/src/merge.c
+++ b/src/merge.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <stdio.h>
#include <assert.h>
#include <string.h>
diff --git a/src/merge.h b/src/merge.h
index 17d3fc0..4e5b766 100644
--- a/src/merge.h
+++ b/src/merge.h
@@ -1,6 +1,26 @@
#ifndef foomergehfoo
#define foomergehfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
int merge(struct syrep_db_context *c1, struct syrep_db_context *c2, const char* root);
diff --git a/src/package.c b/src/package.c
index 8f8bd23..464918c 100644
--- a/src/package.c
+++ b/src/package.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
diff --git a/src/package.h b/src/package.h
index da9b571..57b2daf 100644
--- a/src/package.h
+++ b/src/package.h
@@ -1,6 +1,26 @@
#ifndef foopackagehfoo
#define foopackagehfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#define PACKAGE_ITEM_NAME_LEN 32
struct package;
diff --git a/src/syrep.c b/src/syrep.c
index e68e2f1..fadb7e5 100644
--- a/src/syrep.c
+++ b/src/syrep.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <stdint.h>
#include <limits.h>
#include <db.h>
diff --git a/src/syrep.ggo b/src/syrep.ggo
index 970cc82..e0a5f02 100644
--- a/src/syrep.ggo
+++ b/src/syrep.ggo
@@ -1,3 +1,21 @@
+# $Id$
+
+# This file is part of syrep.
+#
+# syrep is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# syrep is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with syrep; if not, write to the Free Software Foundation,
+# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
purpose "Synchronize Repositories"
package "syrep"
version "0.1"
diff --git a/src/syrep.h b/src/syrep.h
index 2011c8a..29b709d 100644
--- a/src/syrep.h
+++ b/src/syrep.h
@@ -1,6 +1,26 @@
#ifndef foosyrephfoo
#define foosyrephfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "cmdline.h"
#define SYREP_SNAPSHOTFILENAME "current.syrep"
diff --git a/src/update.c b/src/update.c
index 2104217..f063686 100644
--- a/src/update.c
+++ b/src/update.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <dirent.h>
#include <sys/stat.h>
#include <string.h>
diff --git a/src/update.h b/src/update.h
index f176e05..81e26d0 100644
--- a/src/update.h
+++ b/src/update.h
@@ -1,6 +1,26 @@
#ifndef fooupdatehfoo
#define fooupdatehfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "context.h"
#include "cache.h"
diff --git a/src/util.c b/src/util.c
index 56be93c..2a4eb59 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1,3 +1,23 @@
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#define USE_SENDFILE
#include <stdio.h>
diff --git a/src/util.h b/src/util.h
index 23004f0..2aa7215 100644
--- a/src/util.h
+++ b/src/util.h
@@ -1,6 +1,26 @@
#ifndef fooutilhfoo
#define fooutilhfoo
+/* $Id$ */
+
+/***
+ This file is part of syrep.
+
+ syrep is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ syrep is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with syrep; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <db.h>
#include <stdint.h>