mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-20 14:21:25 +00:00
Change radare->radareorg links
This commit is contained in:
parent
4587fa13b5
commit
9227815fdb
@ -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
|
||||
|
@ -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 && \
|
||||
|
@ -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
|
||||
|
@ -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++
|
||||
|
@ -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++
|
||||
|
@ -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"
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -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]
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user