Skip to content

Commit

Permalink
Update github.com/vaticle urls to github.com/typedb in circleci, fact…
Browse files Browse the repository at this point in the history
…ory, & distribution configs; repositories.bzl, and BUILD files
  • Loading branch information
krishnangovindraj committed Jul 26, 2024
1 parent fd8d04e commit 7ec95be
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ jobs:
- run: |
apt update -y
apt install -y git
git push --delete https://[email protected]/vaticle/typedb-driver.git $CIRCLE_BRANCH
git push --delete https://[email protected]/typedb/typedb-driver.git $CIRCLE_BRANCH
workflows:
typedb-driver-snapshot:
Expand Down
2 changes: 1 addition & 1 deletion c/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ filegroup(
output_group = "header"
)

# TODO: Not hermetic - requires doxygen on the host (https://github.com/vaticle/bazel-distribution/issues/412)
# TODO: Not hermetic - requires doxygen on the host (https://github.com/typedb/bazel-distribution/issues/412)
doxygen_docs(
name = "docs_html",
project_name = "TypeDB C Driver",
Expand Down
2 changes: 1 addition & 1 deletion cpp/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ alias(
})
)

# TODO: Not hermetic - requires doxygen on the host (https://github.com/vaticle/bazel-distribution/issues/412)
# TODO: Not hermetic - requires doxygen on the host (https://github.com/typedb/bazel-distribution/issues/412)
doxygen_docs(
name = "docs_html",
project_name = "TypeDB C++ Driver",
Expand Down
2 changes: 1 addition & 1 deletion csharp/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ filegroup(
srcs = [":Drivers.cs"],
)

# TODO: Not hermetic - requires doxygen on the host (https://github.com/vaticle/bazel-distribution/issues/412)
# TODO: Not hermetic - requires doxygen on the host (https://github.com/typedb/bazel-distribution/issues/412)
doxygen_docs(
name = "docs_html",
project_name = "TypeDB C# Driver",
Expand Down
2 changes: 1 addition & 1 deletion csharp/Test/Deployment/NugetApplicationTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ under the License.
<PackageProjectUrl>https://typedb.com</PackageProjectUrl>
<PackageTags>Database TypeDB TypeQL Test</PackageTags>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/vaticle/typedb-driver</RepositoryUrl>
<RepositoryUrl>https://github.com/typedb/typedb-driver</RepositoryUrl>
<Version>1.0.0</Version>
<PackageReleaseNotes>No</PackageReleaseNotes>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand Down
4 changes: 2 additions & 2 deletions csharp/TypeDB.Driver.Pinvoke.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ under the License.
Check all the available platform-dependent runtime libraries here: https://www.nuget.org/packages?q=TypeDB.Driver.Pinvoke.
</description>
<projectUrl>https://typedb.com</projectUrl>
<repository type="GitHub" url="https://github.com/vaticle/typedb-driver" />
<repository type="GitHub" url="https://github.com/typedb/typedb-driver" />
<license type="expression">Apache-2.0</license>
<iconUrl>https://typedb.com/favicon.ico</iconUrl>
<tags>Database TypeDB TypeQL Runtime</tags>
<releaseNotes>
See the latest changes, included in this release, at https://github.com/vaticle/typedb-driver/releases.
See the latest changes, included in this release, at https://github.com/typedb/typedb-driver/releases.
</releaseNotes>
<readme>docs/README.md</readme>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions csharp/TypeDB.Driver.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ under the License.
It is also possible to reference a number of runtime packages for the driver in order to build a platform-independent application.
</description>
<projectUrl>https://typedb.com</projectUrl>
<repository type="GitHub" url="https://github.com/vaticle/typedb-driver" />
<repository type="GitHub" url="https://github.com/typedb/typedb-driver" />
<license type="expression">Apache-2.0</license>
<iconUrl>https://typedb.com/favicon.ico</iconUrl>
<tags>Database TypeDB TypeQL</tags>
<releaseNotes>
See the latest changes, included in this release, at https://github.com/vaticle/typedb-driver/releases.
See the latest changes, included in this release, at https://github.com/typedb/typedb-driver/releases.
</releaseNotes>
<readme>docs/README.md</readme>
<dependencies>
Expand Down
8 changes: 4 additions & 4 deletions dependencies/vaticle/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,28 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
def vaticle_dependencies():
git_repository(
name = "vaticle_dependencies",
remote = "https://github.com/vaticle/dependencies",
remote = "https://github.com/typedb/dependencies",
commit = "0b52d5d6dc5906d6a5dd6444ad2849466363ec6b", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
)

def vaticle_typeql():
git_repository(
name = "vaticle_typeql",
remote = "https://github.com/vaticle/typeql",
remote = "https://github.com/typedb/typeql",
commit = "4061e355cb3b52a0f82ab58cc2f4f599182ef7cb", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql
)

def vaticle_typedb_protocol():
git_repository(
name = "vaticle_typedb_protocol",
remote = "https://github.com/vaticle/typedb-protocol",
remote = "https://github.com/typedb/typedb-protocol",
# NOTE: the sync-marker is also used for workspace status by Bazel!
tag = "2.28.4", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_protocol
)

def vaticle_typedb_behaviour():
git_repository(
name = "vaticle_typedb_behaviour",
remote = "https://github.com/vaticle/typedb-behaviour",
remote = "https://github.com/typedb/typedb-behaviour",
commit = "8353423079b33f885ed3716bade90b0e05e49f2d", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_behaviour
)
8 changes: 4 additions & 4 deletions java/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ assemble_maven(
name = "assemble-maven",
project_description = "TypeDB Java Driver",
project_name = "TypeDB Java Driver",
project_url = "https://github.com/vaticle/typedb-driver-java",
scm_url = "https://github.com/vaticle/typedb-driver-java",
project_url = "https://github.com/typedb/typedb-driver-java",
scm_url = "https://github.com/typedb/typedb-driver-java",
target = ":driver-java",
version_overrides = version(artifacts_org, artifacts_repo),
workspace_refs = "@vaticle_typedb_driver_workspace_refs//:refs.json",
Expand Down Expand Up @@ -91,8 +91,8 @@ assemble_maven(
name = "assemble-maven-jni",
project_description = "Java TypeDB Driver JNI",
project_name = "Java TypeDB Driver JNI",
project_url = "https://github.com/vaticle/typedb-driver-java",
scm_url = "https://github.com/vaticle/typedb-driver-java",
project_url = "https://github.com/typedb/typedb-driver-java",
scm_url = "https://github.com/typedb/typedb-driver-java",
target = ":typedb_driver_jni",
version_overrides = version(artifacts_org, artifacts_repo),
workspace_refs = "@vaticle_typedb_driver_workspace_refs//:refs.json",
Expand Down
2 changes: 1 addition & 1 deletion nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/vaticle/typedb-driver-nodejs"
"url": "https://github.com/typedb/typedb-driver-nodejs"
},
"scripts": {
"clean": "rimraf dist",
Expand Down
2 changes: 1 addition & 1 deletion python/rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def native_driver_versioned(python_versions):
"Environment :: Console",
"Topic :: Database :: Front-Ends"
],
url = "https://github.com/vaticle/typedb-driver-python/",
url = "https://github.com/typedb/typedb-driver-python/",
author = "TypeDB Community",
author_email = "[email protected]",
license = "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions rust/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ rust_test(
assemble_crate(
name = "assemble_crate",
description = "TypeDB Rust Driver",
homepage = "https://github.com/vaticle/typedb-driver",
homepage = "https://github.com/typedb/typedb-driver",
license = "Apache-2.0",
license_file = "//:LICENSE",
readme_file = ":README.md",
repository = "https://github.com/vaticle/typedb-driver",
repository = "https://github.com/typedb/typedb-driver",
target = ":typedb_driver",
universe_manifests = ["@vaticle_dependencies//library/crates:Cargo.toml"],
crate_features = { "sync": [] },
Expand Down

0 comments on commit 7ec95be

Please sign in to comment.