From 0ffb06a46cb1833c7a571fd10de132b5fd0fd1e0 Mon Sep 17 00:00:00 2001 From: jeffail Date: Thu, 28 Jun 2018 10:26:45 +0100 Subject: [PATCH] s/datasift/meltwater/g --- BUILD | 8 ++++---- CMakeLists.txt | 6 +++--- README.md | 6 +++--- WORKSPACE | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/BUILD b/BUILD index 984f8ca..8ad1752 100644 --- a/BUILD +++ b/BUILD @@ -103,10 +103,10 @@ echo '#define APPLICATION_NAME \"Served HTTP REST Library\"' >> $@ echo '#define APPLICATION_CODENAME \"served\"' >> $@ echo '#define APPLICATION_COPYRIGHT_YEARS \"2014\"' >> $@ echo '#define APPLICATION_VERSION_STRING \"1.4.3-DS1\"' >> $@ -echo '#define APPLICATION_VENDOR_ID \"com.datasift\"' >> $@ -echo '#define APPLICATION_VENDOR_NAME \"DataSift\"' >> $@ -echo '#define APPLICATION_VENDOR_URL \"datasift.com\"' >> $@ -echo '#define APPLICATION_ID = \"com.datasift.served\"' >> $@ +echo '#define APPLICATION_VENDOR_ID \"com.meltwater\"' >> $@ +echo '#define APPLICATION_VENDOR_NAME \"Meltwater\"' >> $@ +echo '#define APPLICATION_VENDOR_URL \"meltwater.com\"' >> $@ +echo '#define APPLICATION_ID = \"com.meltwater.served\"' >> $@ echo '#endif' >> $@ """, ) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed64f1d..b520055 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,9 +31,9 @@ SET (APPLICATION_VERSION_MINOR 4) SET (APPLICATION_VERSION_PATCH 3) SET (APPLICATION_VERSION_TYPE DS1) SET (APPLICATION_VERSION_STRING "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}-${APPLICATION_VERSION_TYPE}") -SET (APPLICATION_VENDOR_ID "com.datasift") -SET (APPLICATION_VENDOR_NAME "DataSift") -SET (APPLICATION_VENDOR_URL "datasift.com") +SET (APPLICATION_VENDOR_ID "com.meltwater") +SET (APPLICATION_VENDOR_NAME "Meltwater") +SET (APPLICATION_VENDOR_URL "meltwater.com") SET (APPLICATION_ID "${APPLICATION_VENDOR_ID}.${PROJECT_NAME}") # diff --git a/README.md b/README.md index ab3903e..4a6f88d 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Features: ### Building ```bash -$ git clone git@github.com:datasift/served.git +$ git clone git@github.com:meltwater/served.git $ mkdir served.build && cd served.build $ cmake ../served && make ``` @@ -35,7 +35,7 @@ $ cmake ../served && make Or, using [bazel](https://bazel.build/): ```bash -$ git clone git@github.com:datasift/served.git +$ git clone git@github.com:meltwater/served.git $ cd served $ bazel build :served $ bazel test :served-test @@ -154,7 +154,7 @@ Pull requests are welcome. ## Authors -* [@bigdatadev](https://github.com/bigdatadev) +* [@cjgdev](https://github.com/cjgdev) * [@Jeffail](https://github.com/Jeffail) ## Copyright diff --git a/WORKSPACE b/WORKSPACE index 6ac08ea..ffe0ed4 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -1,4 +1,4 @@ -workspace(name = "com_github_datasift_served") +workspace(name = "com_github_meltwater_served") git_repository( name = "com_github_nelhage_rules_boost",