summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2014-12-09 11:10:17 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2014-12-09 11:10:17 +0100
commite9c7b6eeacb9e1474d7938bcc3f539afc6eb6b1c (patch)
tree934f1dd4dc47d8a7d667d6b6dcdb3883c0aae4f8
parentbbdd6b3ff977b54cb56cc46350c1cfe2d73d3941 (diff)
parent2a88bf85e33e8768c5f8c2f033ee7aa9ce2e4d53 (diff)
downloadATCD-e9c7b6eeacb9e1474d7938bcc3f539afc6eb6b1c.tar.gz
Merge branch 'master' into rite-jwi-bugzilla-4192
-rw-r--r--ACE/bin/coverity_model.cpp11
-rwxr-xr-xACE/bin/package_copy_script.sh8
-rwxr-xr-xACE/bin/svn_props.py49
-rwxr-xr-xACE/bin/update-ace+tao.sh39
-rw-r--r--ACE/debian/debian.control2
-rw-r--r--ACE/docs/svn/config160
-rw-r--r--ACE/docs/svn/svn-prefs.reg109
-rw-r--r--ACE/rpmbuild/ace-tao.spec2
8 files changed, 2 insertions, 378 deletions
diff --git a/ACE/bin/coverity_model.cpp b/ACE/bin/coverity_model.cpp
deleted file mode 100644
index 144c0c81487..00000000000
--- a/ACE/bin/coverity_model.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-// $Id$
-
-namespace CORBA
-{
- typedef bool Boolean;
-
- static CORBA::Boolean is_nil (void* x)
- {
- return x == 0;
- }
-}
diff --git a/ACE/bin/package_copy_script.sh b/ACE/bin/package_copy_script.sh
deleted file mode 100755
index b366196fc0e..00000000000
--- a/ACE/bin/package_copy_script.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-# $Id$
-
-for i in *.gz *.bz2 *.zip; do
- d=`echo $i | sed 's/\.[tz][ai][rp]/-5.5.10&/'`
- echo "Copying $i to $d"
- cp -ip $i /export/www/download.dre/previous_versions/$d
-done
diff --git a/ACE/bin/svn_props.py b/ACE/bin/svn_props.py
deleted file mode 100755
index 10e48ba6964..00000000000
--- a/ACE/bin/svn_props.py
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/python
-#$Id$
-
-import sys
-import re
-import os
-import string
-
-print """WARNING: this script is dumb. I mean, really, really dumb. Every file is treated
-as a text file, so if you are checking in any binary files, YOU MUST set a non-text
-MIME type by hand, otherwise it WILL be corrupted by the checkout process.
-A better approach will be to add the unmatched files to the config file in
-ACE/docs/svn/config (and update yours!) so others won't have to put up with them
-in the future.
-
-To use this program, copy and paste the output from the svn command into standard
-input.
-"""
-
-foo = raw_input("That being said, if you want to continue, press enter")
-
-sin, sout = os.popen2 ("svn info")
-sin.close ()
-os.wait ()
-
-url = ""
-root = ""
-path = ""
-
-for line in sout.readlines ():
- if line.startswith ("URL: "):
- url = line.replace ("URL: ", "")[:-1]
- if line.startswith ("Repository Root: "):
- root = line.replace ("Repository Root: ", "")[:-1]
-
-path = url.replace (root, "")[1:] + '/'
-files = ""
-
-eol_style = " svn ps svn:eol-style native "
-keywords = " svn ps svn:keywords 'Author Date Id Revision' "
-
-for line in sys.stdin.readlines ():
- ln = line[0:line.find (':')] + ' '
- ln = ln.replace (path,"")
- os.system (eol_style + ln)
- os.system (keywords + ln)
-
-
-
diff --git a/ACE/bin/update-ace+tao.sh b/ACE/bin/update-ace+tao.sh
deleted file mode 100755
index 9081750d181..00000000000
--- a/ACE/bin/update-ace+tao.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-# Update ACE/TAO source tree to the latest numeric-assigned version.
-# $Id$
-
-# Define helper function to extract version number into tag format
-d='\([0-9]*\)'
-version() { sed -n -e "s,.*$1 version $d\.$d\.$d.*,$1-\1_\2_\3,p" \
- -e "s,.*$1 version $d\.$d.*,$1-\1_\2,p"; }
-
-# Use ccvs instead of cvs since it supports SOCKS5, if that environment found.
-if [ ! -z "$SOCKS5_USER" ]; then cvs () { ccvs $*; } fi
-
-old_ace_version=`version <VERSION ACE`
-old_tao_version=`version <TAO/VERSION TAO`
-
-# Abort with message if no values in variables
-if [ -z $old_ace_version ]; then echo No existing ACE version; exit 1; fi
-if [ -z $old_tao_version ]; then echo No existing TAO version; exit 1; fi
-
-cvs update -A VERSION TAO/VERSION GNUmakefile
-
-ace_version=`version <VERSION ACE`
-tao_version=`version <TAO/VERSION TAO`
-
-# Abort with message if no values in variables
-if [ -z $ace_version ]; then echo No ACE version after update; exit 1; fi
-if [ -z $tao_version ]; then echo No TAO version after update; exit 1; fi
-
-echo Old software version tags: $old_ace_version $old_tao_version
-echo New software version tags: $ace_version $tao_version
-
-# Conserve net bandwidth if no change was observed
-if [ $old_ace_version != $ace_version ] || [ x"$1"x = x"force"x ]; then
- cvs -q update -Pd -r $ace_version `make -s show_controlled_files`
-fi
-if [ $old_tao_version != $tao_version ] || [ x"$1"x = x"force"x ]; then
- cvs -q update -Pd -r $tao_version TAO
-fi
-
diff --git a/ACE/debian/debian.control b/ACE/debian/debian.control
index f2800d3d8e8..7fcacddc0e5 100644
--- a/ACE/debian/debian.control
+++ b/ACE/debian/debian.control
@@ -7,7 +7,7 @@ DM-Upload-Allowed: yes
Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.16.2), libssl-dev (>= 0.9.7d), libxt-dev (>= 4.3.0), libfltk1.1-dev (>= 1.1.4), libqt4-dev (>= 4.4~rc1-4), tk-dev (>= 8.5), libfox-1.6-dev, zlib1g-dev, libzzip-dev, liblzo2-dev, docbook-to-man, bzip2, libbz2-dev, libxerces-c-dev
Build-Depends-Indep: doxygen, graphviz
Standards-Version: 3.9.5.0
-Vcs-Browser: https://svn.dre.vanderbilt.edu/viewvc/Middleware/trunk/ACE/debian/
+Vcs-Browser: https://github.com/DOCGroup/ATCD/tree/master/ACE/debian
Homepage: http://www.dre.vanderbilt.edu/~schmidt/ACE.html
Package: mpc-ace
diff --git a/ACE/docs/svn/config b/ACE/docs/svn/config
deleted file mode 100644
index 1d343062030..00000000000
--- a/ACE/docs/svn/config
+++ /dev/null
@@ -1,160 +0,0 @@
-### This file configures various client-side behaviors.
-###
-### The commented-out examples below are intended to demonstrate
-### how to use this file.
-
-### Section for authentication and authorization customizations.
-### Set store-auth-creds to no to avoid storing your subversion
-### credentials in the auth/ area of your config directory.
-### It defaults to yes. Note that this option only prevents
-### saving of *new* credentials; it doesnt invalidate existing
-### caches. (To do that, remove the cache files by hand.)
-# [auth]
-# store-auth-creds = no
-
-### Section for configuring external helper applications.
-### Set editor to the command used to invoke your text editor.
-### This will override the environment variables that Subversion
-### examines by default to find this information ($EDITOR,
-### et al).
-### Set diff-cmd to the absolute path of your diff program.
-### This will override the compile-time default, which is to use
-### Subversions internal diff implementation.
-### Set diff3-cmd to the absolute path of your diff3 program.
-### This will override the compile-time default, which is to use
-### Subversions internal diff3 implementation.
-### Set diff3-has-program-arg to true or yes if your diff3
-### program accepts the --diff-program option.
-# [helpers]
-# editor-cmd = editor (vi, emacs, notepad, etc.)
-# diff-cmd = diff_program (diff, gdiff, etc.)
-# diff3-cmd = diff3_program (diff3, gdiff3, etc.)
-# diff3-has-program-arg = [true | false]
-
-### Section for configuring tunnel agents.
-# [tunnels]
-### Configure svn protocol tunnel schemes here. By default, only
-### the ssh scheme is defined. You can define other schemes to
-### be used with svn+scheme://hostname/path URLs. A scheme
-### definition is simply a command, optionally prefixed by an
-### environment variable name which can override the command if it
-### is defined. The command (or environment variable) may contain
-### arguments, using standard shell quoting for arguments with
-### spaces. The command will be invoked as:
-### <command> <hostname> svnserve -t
-### (If the URL includes a username, then the hostname will be
-### passed to the tunnel agent as <user>@<hostname>.) If the
-### built-in ssh scheme were not predefined, it could be defined
-### as:
-# ssh = $SVN_SSH ssh
-### If you wanted to define a new rsh scheme, to be used with
-### svn+rsh: URLs, you could do so as follows:
-# rsh = rsh
-### Or, if you wanted to specify a full path and arguments:
-# rsh = /path/to/rsh -l myusername
-### On Windows, if you are specifying a full path to a command,
-### use a forward slash (/) or a paired backslash (\\) as the
-### path separator. A single backslash will be treated as an
-### escape for the following character.
-
-### Section for configuring miscelleneous Subversion options.
-[miscellany]
-### Set global-ignores to a set of whitespace-delimited globs
-### which Subversion will ignore in its status output.
-global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store *.class *C.i *C.inl *S.i *S.inl *C.h *S.h *C.cpp *S.cpp *C.hh *S.hh *S_T.i *S_T.inl *S_T.h *S_T.cpp .obj .pure .shobj config.h Templates.DB Thumbs.db ir.out *.aux *.lof *.lot *.log *.dvi *.blg *.bbl *.ior *Cli.* *Ser.* *Ser_T.* *.vcl *.vcb *.vcl *.vco *.SUP .depend.* GNUmake* [Mm]akefile *.mak *.a *.so* *.idb *.obj *.exe *_svnt.* *_svnt_T.* *.user *.vcproj *.dsw *.dsp *.sln *.suo *.dep *.tlb *.pch *.ocx *.dll *.exp *.ilk *.lib *.ncb *.opt *.pdb *.plg *.bsc *.res LIB DLL Debug Release Static_Debug Static_Release *.bak *.trg *.mga *.mta ComponentLib.h *_[ip].c dlldata.c *.tds *.vxe *.bmak
-### Set log-encoding to the default encoding for log messages
-# log-encoding = latin1
-### Set use-commit-times to make checkout/update/switch/revert
-### put last-committed timestamps on every file touched.
-use-commit-times = yes
-### Set enable-auto-props to yes to enable automatic properties
-### for svn add and svn import, it defaults to no.
-### Automatic properties are defined in the section auto-props.
-enable-auto-props = yes
-
-### Section for configuring automatic properties.
-### The format of the entries is:
-### file-name-pattern = propname[=value][;propname[=value]...]
-### The file-name-pattern can contain wildcards (such as * and
-### ?). All entries which match will be applied to the file.
-### Note that auto-props functionality must be enabled, which
-### is typically done by setting the enable-auto-props option.
-[auto-props]
-*.aspx=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.install=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.docs=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.sgml=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.manpages=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cpp=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cxx=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.patch=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.dpatch=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cc=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.C=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.c=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.l=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.y=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.h=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.hpp=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.inl=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.i=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cs=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.java=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.idl=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.idl3=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.idl3p=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.pidl=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cidl=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.html=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.sh=svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable
-*.py=svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable
-*.pl=svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable
-*.bat=svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable
-*.ini=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.mwc=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.mwb=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.mpc=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.mpb=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.mpt=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.ns=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cdp=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.pcd=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cdd=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cid=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cpd=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.ccd=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.iad=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.xsd=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.xml=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.txt=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.am=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.ac=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.lst=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.pm=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.sty=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.cls=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.clo=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.tex=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.tioa=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.bib=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.bst=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.eps=svn:mime-type=application/postscript
-*.ps=svn:mime-type=application/postscript
-*.pdf=svn:mime-type=application/pdf
-*.tab=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.doxygen=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.pc.in=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.GNU=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.rc=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.gplot=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.ll=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.yy=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.conf=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.pem=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.xme=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.features=svn:eol-style=native;svn:keywords=Author Date Id Revision
-*.lintian-overrides=svn:eol-style=native;svn:keywords=Author Date Id Revision
-Change?og*=svn:eol-style=native;svn:keywords=Author Date Id Revision
-README=svn:eol-style=native;svn:keywords=Author Date Id Revision
-"Makefile"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"makefile"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
diff --git a/ACE/docs/svn/svn-prefs.reg b/ACE/docs/svn/svn-prefs.reg
deleted file mode 100644
index bf019f83256..00000000000
--- a/ACE/docs/svn/svn-prefs.reg
+++ /dev/null
@@ -1,109 +0,0 @@
-REGEDIT4
-
-[HKEY_LOCAL_MACHINE\Software\Tigris.org\Subversion\Servers\groups]
-
-[HKEY_LOCAL_MACHINE\Software\Tigris.org\Subversion\Servers\global]
-"#http-proxy-host"=""
-"#http-proxy-port"=""
-"#http-proxy-username"=""
-"#http-proxy-password"=""
-"#http-proxy-exceptions"=""
-"#http-timeout"="0"
-"#http-compression"="yes"
-"#neon-debug-mask"=""
-"#ssl-authority-files"=""
-"#ssl-trust-default-ca"=""
-"#ssl-client-cert-file"=""
-"#ssl-client-cert-password"=""
-
-[HKEY_CURRENT_USER\Software\Tigris.org\Subversion\Config\auth]
-"#store-auth-creds"="no"
-
-[HKEY_CURRENT_USER\Software\Tigris.org\Subversion\Config\helpers]
-"#editor-cmd"="notepad"
-"#diff-cmd"=""
-"#diff3-cmd"=""
-"#diff3-has-program-arg"=""
-
-[HKEY_CURRENT_USER\Software\Tigris.org\Subversion\Config\miscellany]
-"global-ignores"="*.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store *.class *C.i *C.inl *S.i *S.inl *C.h *S.h *C.cpp *S.cpp *C.hh *S.hh *S_T.i *S_T.inl *S_T.h *S_T.cpp .obj .pure .shobj config.h Templates.DB Thumbs.db ir.out *.aux *.lof *.lot *.log *.dvi *.blg *.bbl *.ior *Cli.* *Ser.* *Ser_T.* *.vcl *.vcb *.vcl *.vco *.SUP .depend.* GNUmake* [Mm]akefile *.mak *.a *.so* *.idb *.obj *.exe *_svnt.* *.user *.vcproj *.dsw *.dsp *.sln *.suo *.dep *.tlb *.pch *.ocx *.dll *.exp *.ilk *.lib *.ncb *.opt *.pdb *.plg *.bsc *.res LIB DLL Debug Release Static_Debug Static_Release *.bak *.trg *.mga *.mta ComponentLib.h *_[ip].c dlldata.c *.tds *.vxe *.bmak"
-"#log-encoding"=""
-"use-commit-times"="yes"
-"#template-root"=""
-"enable-auto-props"="yes"
-[HKEY_CURRENT_USER\Software\Tigris.org\Subversion\Config\tunnels]
-
-[HKEY_CURRENT_USER\Software\Tigris.org\Subversion\Config\auto-props]
-"*.aspx"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.conf"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cpp"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.patch"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.dpatch"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cxx"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cc"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.C"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.c"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.l"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.y"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.h"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.hpp"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.inl"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.i"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cs"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.java"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.idl"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.idl3"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.idl3p"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.idl3+"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.pidl"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cidl"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.html"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.pem"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.sh"="svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable"
-"*.py"="svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable"
-"*.pl"="svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable"
-"*.bat"="svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable"
-"*.ini"="svn:eol-style=native;svn:keywords=Author Date Id Revision;svn:executable"
-"*.mwc"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.mwb"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.mpc"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.mpb"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.mpt"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.ns"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cdp"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.pcd"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cdd"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cid"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cpd"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.ccd"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cid"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.xsd"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.xml"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.txt"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.am"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.ac"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.lst"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.pm"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.sty"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.cls"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.clo"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.tex"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.tioa"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.bib"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.bst"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.eps"="svn:mime-type=application/postscript"
-"*.ps"="svn:mime-type=application/postscript"
-"*.pdf"="svn:mime-type=application/pdf"
-"*.ps"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.tab"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.doxygen"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.pc.in"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.GNU"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.rc"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.gplot"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.diff"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"*.xme"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"Change?og*"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"README"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"Makefile"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
-"makefile"="svn:eol-style=native;svn:keywords=Author Date Id Revision"
diff --git a/ACE/rpmbuild/ace-tao.spec b/ACE/rpmbuild/ace-tao.spec
index ab89cb1f320..7642db984d8 100644
--- a/ACE/rpmbuild/ace-tao.spec
+++ b/ACE/rpmbuild/ace-tao.spec
@@ -72,7 +72,7 @@ Release: 1%{?OPTTAG}%{?dist}
%endif
Group: Development/Libraries/C and C++
-URL: http://www.cs.wustl.edu/~schmidt/ACE.html
+URL: http://www.dre.vanderbilt.edu/~schmidt/ACE.html
License: DOC License
%if 0%{?_with_tao:1}%{?_without_tao:0}
Source0: http://download.dre.vanderbilt.edu/previous_versions/ACE+TAO+CIAO-src-%{ACEVER}.tar.gz