From a6899ecb6cf5119197b1f759cc347967b8b8a771 Mon Sep 17 00:00:00 2001 From: anki-code Date: Wed, 4 Mar 2020 12:42:43 +0300 Subject: [PATCH 1/2] xxh repo --- LICENSE | 2 +- README.md | 14 +++++++------- setup.py | 10 +++++----- xonssh_xxh/settings.py | 2 +- xxh | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/LICENSE b/LICENSE index 9e41694..6eaf401 100644 --- a/LICENSE +++ b/LICENSE @@ -22,4 +22,4 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed -or implied, of the stakeholders of the xonssh project or the employers of xonssh developers. \ No newline at end of file +or implied, of the stakeholders of the xxh project or the employers of xxh developers. \ No newline at end of file diff --git a/README.md b/README.md index fb21738..e612f20 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ The xxh is for using the xonsh shell wherever you go through the ssh. ____ __________ @ @ ______ / \ \__/ ____ / ______ \ / \ contribution - _____ / / __ \ \ / _/ https://github.com/xonssh/xxh + _____ / / __ \ \ / _/ https://github.com/xxh/xxh ___ ( / / / \ \ / \ \___/ / / / plugins ____\ /__/ / https://github.com/search?q=xxh-plugin @@ -45,13 +45,13 @@ The xxh is for using the xonsh shell wherever you go through the ssh. 🔎 [Search xxh plugins on Github](https://github.com/search?q=xxh-plugin&type=Repositories) or [Bitbucket](https://bitbucket.org/repo/all?name=xxh-plugin) -💡 [Create xxh plugin](https://github.com/xonssh/xxh-plugin-sample) +💡 [Create xxh plugin](https://github.com/xxh/xxh-plugin-sample) -📌 [xxh-plugin-pipe-liner](https://github.com/xonssh/xxh-plugin-pipe-liner) — processing the lines easy with python and classic shell pipes +📌 [xxh-plugin-pipe-liner](https://github.com/xxh/xxh-plugin-pipe-liner) — processing the lines easy with python and classic shell pipes -📌 [xxh-plugin-theme-bar](https://github.com/xonssh/xxh-plugin-theme-bar) — theme to stay focused +📌 [xxh-plugin-theme-bar](https://github.com/xxh/xxh-plugin-theme-bar) — theme to stay focused -📌 [xxh-plugin-autojump](https://github.com/xonssh/xxh-plugin-autojump) — save time on moving thru directories +📌 [xxh-plugin-autojump](https://github.com/xxh/xxh-plugin-autojump) — save time on moving thru directories ## Notes @@ -66,10 +66,10 @@ To install [xontribs](https://xon.sh/xontribs.html) in xxh session use `xpip ins When you run `xxh myhost` command xxh download portable xonsh and store locally to future use. Then if it needed xxh upload the portable xonsh, init scripts and plugins to the host. Finally xxh make ssh connection to the host and run portable xonsh shell without any system installs and affection on the target host. ## Development -🛠️ In the [xxh-dev](https://github.com/xonssh/xxh-dev) repo there is full [docker](https://www.docker.com/)ised environment for development, testing and contribution. The process of testing and development is orchestrated by `xde` tool and as easy as possible. +🛠️ In the [xxh-dev](https://github.com/xxh/xxh-dev) repo there is full [docker](https://www.docker.com/)ised environment for development, testing and contribution. The process of testing and development is orchestrated by `xde` tool and as easy as possible. ## Spread the word -If you like the idea of xxh help spread the word about xxh! Click ⭐ on the repo and tweet the link! +If you like the idea of xxh help spread the word about xxh! Click ⭐ on the repo and tweet the link! ## Thanks * @scopatz for https://github.com/xonsh/xonsh diff --git a/setup.py b/setup.py index c44b2c4..d5cf5dd 100644 --- a/setup.py +++ b/setup.py @@ -5,11 +5,11 @@ setuptools.setup( name="xonssh-xxh", version=global_settings['XXH_VERSION'], description="xxh is for using portable xonsh shell wherever you go through the ssh", - url="https://github.com/xonssh/xxh", + url="https://github.com/xxh/xxh", project_urls={ - "Documentation": "https://github.com/xonssh/xxh/blob/master/README.md", - "Code": "https://github.com/xonssh/xxh", - "Issue tracker": "https://github.com/xonssh/xxh/issues", + "Documentation": "https://github.com/xxh/xxh/blob/master/README.md", + "Code": "https://github.com/xxh/xxh", + "Issue tracker": "https://github.com/xxh/xxh/issues", }, python_requires='>=3.6', install_requires=[ @@ -30,6 +30,6 @@ setuptools.setup( "License :: OSI Approved :: BSD License" ], license="BSD", - author="xonssh", + author="xxh", author_email="author@example.com" ) \ No newline at end of file diff --git a/xonssh_xxh/settings.py b/xonssh_xxh/settings.py index 389bc2b..0c1f0c5 100644 --- a/xonssh_xxh/settings.py +++ b/xonssh_xxh/settings.py @@ -1,7 +1,7 @@ import sys, os global_settings = { - 'XXH_VERSION': '0.3.5' + 'XXH_VERSION': '0.3.6' } if __name__ == "__main__": diff --git a/xxh b/xxh index 8048f71..8805844 100755 --- a/xxh +++ b/xxh @@ -21,7 +21,7 @@ def eeprint(*args, **kwargs): class Xxh: def __init__(self): self.package_dir_path = pf"{xonssh_xxh.__file__}".parent - self.url_xxh_github = 'https://github.com/xonssh/xxh' + self.url_xxh_github = 'https://github.com/xxh/xxh' self.url_xxh_plugins_search = 'https://github.com/search?q=xxh-plugin' self.url_appimage = 'https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/xonsh-x86_64.AppImage' self.local_xxh_version = global_settings['XXH_VERSION'] From c1d3e3a203adba5bc494e2d0f60211385771206e Mon Sep 17 00:00:00 2001 From: anki-code Date: Wed, 4 Mar 2020 17:21:02 +0300 Subject: [PATCH 2/2] rename plugin repos --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e612f20..4cac1ff 100644 --- a/README.md +++ b/README.md @@ -45,13 +45,13 @@ The xxh is for using the xonsh shell wherever you go through the ssh. 🔎 [Search xxh plugins on Github](https://github.com/search?q=xxh-plugin&type=Repositories) or [Bitbucket](https://bitbucket.org/repo/all?name=xxh-plugin) -💡 [Create xxh plugin](https://github.com/xxh/xxh-plugin-sample) +💡 [Create xxh plugin](https://github.com/xxh/xxh-plugin-xonsh-sample) -📌 [xxh-plugin-pipe-liner](https://github.com/xxh/xxh-plugin-pipe-liner) — processing the lines easy with python and classic shell pipes +📌 [xxh-plugin-xonsh-pipe-liner](https://github.com/xxh/xxh-plugin-xonsh-pipe-liner) — processing the lines easy with python and classic shell pipes -📌 [xxh-plugin-theme-bar](https://github.com/xxh/xxh-plugin-theme-bar) — theme to stay focused +📌 [xxh-plugin-xonsh-theme-bar](https://github.com/xxh/xxh-plugin-xonsh-theme-bar) — theme to stay focused -📌 [xxh-plugin-autojump](https://github.com/xxh/xxh-plugin-autojump) — save time on moving thru directories +📌 [xxh-plugin-xonsh-autojump](https://github.com/xxh/xxh-plugin-xonsh-autojump) — save time on moving thru directories ## Notes