From 9227815fdbc25e0583b0ab2de713abc91b225815 Mon Sep 17 00:00:00 2001 From: Maijin Date: Mon, 7 Oct 2019 10:48:31 +0200 Subject: [PATCH] Change radare->radareorg links --- DEVELOPERS.md | 4 ++-- Dockerfile | 2 +- doc/crosscompile | 2 +- doc/freebsd.md | 2 +- doc/openbsd.md | 2 +- doc/pdb/package.json | 4 ++-- doc/sdb_ordinal.md | 4 ++-- doc/termux.md | 2 +- libr/core/canal.c | 2 +- libr/io/io.c | 2 +- package.json | 4 ++-- shlr/ptrace-wrap/README.md | 2 +- snapcraft.yaml | 2 +- sys/alpine/APKBUILD | 2 +- sys/android-release.sh | 2 +- sys/docker_build_alpine_image.sh | 2 +- sys/extras.sh | 2 +- sys/sync.sh | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/DEVELOPERS.md b/DEVELOPERS.md index 9915a2bec8..8c8420fab9 100644 --- a/DEVELOPERS.md +++ b/DEVELOPERS.md @@ -238,7 +238,7 @@ r_core_wrap.cxx:32103:61: error: assigning to 'RDebugReasonType' from incompatib * Do not use bashisms `[[`, `$'...'` etc. -* Use our [shellcheck.sh](https://github.com/radare/radare2/blob/master/sys/shellcheck.sh) script to check for problems and for bashisms +* Use our [shellcheck.sh](https://github.com/radareorg/radare2/blob/master/sys/shellcheck.sh) script to check for problems and for bashisms # Manage Endianness @@ -457,7 +457,7 @@ don't know how to do something which is supposed to be covered by this framework. You should report it into the github issues page. - https://github.com/radare/radare2/issues + https://github.com/radareorg/radare2/issues Otherwise, if you are looking for some more feedback, I will encourage you to send an email to any of the emails enumerated diff --git a/Dockerfile b/Dockerfile index 5060490b5d..e5144319d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -78,7 +78,7 @@ RUN DEBIAN_FRONTEND=noninteractive dpkg --add-architecture i386 && \ pip install r2pipe=="$R2_PIPE_PY_VERSION" && \ npm install --unsafe-perm -g "r2pipe@$R2_PIPE_NPM_VERSION" && \ cd /mnt && \ - git clone -b "$R2_VERSION" -q --depth 1 https://github.com/radare/radare2.git && \ + git clone -b "$R2_VERSION" -q --depth 1 https://github.com/radareorg/radare2.git && \ cd radare2 && \ ./sys/install.sh && \ make install && \ diff --git a/doc/crosscompile b/doc/crosscompile index 7c3aed94e9..d1419ce03a 100644 --- a/doc/crosscompile +++ b/doc/crosscompile @@ -34,5 +34,5 @@ $ dockcross make Here is some more context and references: -https://github.com/radare/radare2/pull/5060 +https://github.com/radareorg/radare2/pull/5060 http://blogs.nopcode.org/brainstorm/2016/07/26/cross-compiling-with-docker diff --git a/doc/freebsd.md b/doc/freebsd.md index 86f63e5c89..3ccc2ef83a 100644 --- a/doc/freebsd.md +++ b/doc/freebsd.md @@ -30,7 +30,7 @@ Python Swig Bindings Dependencies: Building Python Swig Bindings: ------------------------------ - git clone https://github.com/radare/radare2-bindings + git clone https://github.com/radareorg/radare2-bindings cd radare2-bindings export CC=cc export CXX=c++ diff --git a/doc/openbsd.md b/doc/openbsd.md index ba760c06a4..59857664a3 100644 --- a/doc/openbsd.md +++ b/doc/openbsd.md @@ -30,7 +30,7 @@ Python Swig Bindings Dependencies: Building Python Swig Bindings: ------------------------------ - git clone https://github.com/radare/radare2-bindings + git clone https://github.com/radareorg/radare2-bindings cd radare2-bindings export CC=cc export CXX=c++ diff --git a/doc/pdb/package.json b/doc/pdb/package.json index 7d3ef2dfe6..73845d13a4 100644 --- a/doc/pdb/package.json +++ b/doc/pdb/package.json @@ -5,7 +5,7 @@ "main": "index.js", "repository": { "type": "git", - "url": "https://github.com/radare/radare2.git" + "url": "https://github.com/radareorg/radare2.git" }, "dependencies": { "node-curl": "*" @@ -31,7 +31,7 @@ }, "license": "LGPLv3", "bugs": { - "url": "https://github.com/radare/radare2/issues" + "url": "https://github.com/radareorg/radare2/issues" }, "homepage": "http://www.radare.org" } diff --git a/doc/sdb_ordinal.md b/doc/sdb_ordinal.md index 7e298ce369..c0803f8ed0 100644 --- a/doc/sdb_ordinal.md +++ b/doc/sdb_ordinal.md @@ -1,6 +1,6 @@ # Cannot find R2PATH/format/dll/DLLNAME.sdb 1. Execute `rabin2 -rs DLLNAME.dll | grep -i DLLNAME | grep -v Ordi |grep ^k| cut -d / -f 4- > DLLNAME.sdb.txt` -2. Upload file `DLLNAME.sdb.txt` in https://github.com/radare/radare2/tree/master/libr/bin/d/dll -3. Change the following [Makefile](https://github.com/radare/radare2/blob/master/libr/bin/d/Makefile#L14) +2. Upload file `DLLNAME.sdb.txt` in https://github.com/radareorg/radare2/tree/master/libr/bin/d/dll +3. Change the following [Makefile](https://github.com/radareorg/radare2/blob/master/libr/bin/d/Makefile#L14) 4. Create a Pull Request to Master diff --git a/doc/termux.md b/doc/termux.md index e7d13b1067..5c7c6452be 100644 --- a/doc/termux.md +++ b/doc/termux.md @@ -24,7 +24,7 @@ The packages required to build are: Now you can clone the repo and build: - git clone --depth 1 https://github.com/radare/radare2 + git clone --depth 1 https://github.com/radareorg/radare2 cd radare2 sys/termux.sh diff --git a/libr/core/canal.c b/libr/core/canal.c index 8965195328..f7b2f23ae3 100644 --- a/libr/core/canal.c +++ b/libr/core/canal.c @@ -5018,7 +5018,7 @@ repeat: char *str2 = sdb_fmt ("esilref: '%s'", str); // HACK avoid format string inside string used later as format // string crashes disasm inside agf under some conditions. - // https://github.com/radare/radare2/issues/6937 + // https://github.com/radareorg/radare2/issues/6937 r_str_replace_char (str2, '%', '&'); r_meta_set_string (core->anal, R_META_TYPE_COMMENT, cur, str2); free (str); diff --git a/libr/io/io.c b/libr/io/io.c index 1e08937872..49301cd78f 100644 --- a/libr/io/io.c +++ b/libr/io/io.c @@ -214,7 +214,7 @@ R_API bool r_io_reopen(RIO* io, int fd, int perm, int mode) { } //does this really work, or do we have to handler debuggers ugly uri = old->referer? old->referer: old->uri; -#if __WINDOWS__ //TODO: workaround, see https://github.com/radare/radare2/issues/8840 +#if __WINDOWS__ //TODO: workaround, see https://github.com/radareorg/radare2/issues/8840 if (!r_io_desc_close (old)) { return false; // TODO: this is an unrecoverable scenario } diff --git a/package.json b/package.json index 29f2a2682b..6165b7d045 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "homepage": "https://www.radare.org", "repository": { "type": "git", - "url": "git+https://github.com/radare/radare2.git" + "url": "git+https://github.com/radareorg/radare2.git" }, "keywords": [ "radare2" @@ -23,6 +23,6 @@ "name": "radare2-git", "version": "1.6.0-git", "bugs": { - "url": "https://github.com/radare/radare2/issues" + "url": "https://github.com/radareorg/radare2/issues" } } diff --git a/shlr/ptrace-wrap/README.md b/shlr/ptrace-wrap/README.md index 316e3c70d3..5ecb8752d9 100644 --- a/shlr/ptrace-wrap/README.md +++ b/shlr/ptrace-wrap/README.md @@ -65,7 +65,7 @@ If you need thread-safety, you must synchronize the access yourself. ## About -Created by Florian Märkl for [radare2](https://github.com/radare/radare2) and [Cutter](https://github.com/radareorg/cutter/). +Created by Florian Märkl for [radare2](https://github.com/radareorg/radare2) and [Cutter](https://github.com/radareorg/cutter/). ``` ptrace-wrap is free software: you can redistribute it and/or modify diff --git a/snapcraft.yaml b/snapcraft.yaml index 1a5a118a12..fd38bb1515 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -50,7 +50,7 @@ apps: parts: radare2: - source: https://github.com/radare/radare2.git + source: https://github.com/radareorg/radare2.git source-tag: '2.6.0' plugin: meson meson-parameters: [--prefix=/usr] diff --git a/sys/alpine/APKBUILD b/sys/alpine/APKBUILD index bd9ade073d..b396b5b50d 100644 --- a/sys/alpine/APKBUILD +++ b/sys/alpine/APKBUILD @@ -13,7 +13,7 @@ makedepends="git make patch gcc libc-dev" install="" subpackages="$pkgname-dev $pkgname-doc" -# source="https://github.com/radare/radare2/archive/3.1.3.tar.gz" +# source="https://github.com/radareorg/radare2/archive/3.1.3.tar.gz" source="https://radare.mikelloc.com/get/3.1.3/radare2-3.1.3.tar.gz" builddir="$srcdir/$pkgname-$pkgver" diff --git a/sys/android-release.sh b/sys/android-release.sh index 64fc438a17..1daa25511f 100755 --- a/sys/android-release.sh +++ b/sys/android-release.sh @@ -51,7 +51,7 @@ makeReadme() { if [ ! -d "${R2B}" ]; then mkdir -p "${R2B}" cd "${R2B}/.." - git clone https://github.com/radare/radare2-bin + git clone https://github.com/radareorg/radare2-bin fi cd "$R2B" diff --git a/sys/docker_build_alpine_image.sh b/sys/docker_build_alpine_image.sh index a1122c2406..c19f61f70c 100755 --- a/sys/docker_build_alpine_image.sh +++ b/sys/docker_build_alpine_image.sh @@ -92,7 +92,7 @@ EOF args="" unset help r2pipe_npm r2pipe_py -github="https://github.com/radare/radare2.git" +github="https://github.com/radareorg/radare2.git" r2branch="master" # Check for missing dependencies diff --git a/sys/extras.sh b/sys/extras.sh index ca3e4c8bf0..eb029f9810 100755 --- a/sys/extras.sh +++ b/sys/extras.sh @@ -1,6 +1,6 @@ #!/bin/sh -git clone https://github.com/radare/radare2-extras +git clone https://github.com/radareorg/radare2-extras cd radare2-extras ./configure --prefix=/usr make diff --git a/sys/sync.sh b/sys/sync.sh index 9d75673edd..75b1d4390c 100755 --- a/sys/sync.sh +++ b/sys/sync.sh @@ -2,6 +2,6 @@ if ! git remote | grep upstream > /dev/null then - git remote add upstream https://github.com/radare/radare2.git + git remote add upstream https://github.com/radareorg/radare2.git fi test -d radare2 && git fetch upstream && git rebase --onto master upstream/master