diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2170d1353..7cd39c49d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -54,7 +54,7 @@ $ git push origin update-cool-package 1. Open the PR of interest. 2. Next to the green _**Open**_ badge, you should see something similar to: ``` -contributor-name wants to merge 1 commit into skycocker:master from contributor-name:update-cool-package +contributor-name wants to merge 1 commit into chromebrew:master from contributor-name:update-cool-package ``` 3. On the far right, take note of _**contributor-name:update-cool-package**_. This is the PR contributor along with the branch they want to merge. 4. Open a terminal, change to your cloned chromebrew directory and execute: @@ -101,4 +101,4 @@ If the package is a dependency for another package, test commands of the other p ## Learn more -- Visit the [wiki](https://github.com/skycocker/chromebrew/wiki) +- Visit the [wiki](https://github.com/chromebrew/chromebrew/wiki) diff --git a/Manual.md b/Manual.md index fdc999ae1..f56348766 100644 --- a/Manual.md +++ b/Manual.md @@ -92,7 +92,7 @@ Optional functions are as follows: The rundown of what each function and variable are/(can be) used for follows. -A simple example ruby script can be found on the [Wiki](https://github.com/skycocker/chromebrew/wiki/Creating-a-package). +A simple example ruby script can be found on the [Wiki](https://github.com/chromebrew/chromebrew/wiki/Creating-a-package). ```ruby require 'package' # must occur within each `.rb` # Notice the newline @@ -155,9 +155,9 @@ NOTE: All rules can have exceptions, if ***REQUIRED***, exceptions to the rules `CREW_OPTIONS`: Equal to `--prefix=/usr/local --libdir=/usr/local/lib --mandir=/usr/local/share/man --build=armv7l-cros-linux-gnueabihf --host=armv7l-cros-linux-gnueabihf --target=#{CREW_BUILD}` -Any additionally required resources for ChromeOS or ChromeBooks can be found [here](https://github.com/skycocker/chromebrew/wiki/Links) +Any additionally required resources for ChromeOS or ChromeBooks can be found [here](https://github.com/chromebrew/chromebrew/wiki/Links) -Still can't find something? Have a look in [`Issues`](https://github.com/skycocker/chromebrew/issues)Or post a issue +Still can't find something? Have a look in [`Issues`](https://github.com/chromebrew/chromebrew/issues)Or post a issue This Manual is heavily based off void-packages/Manual.md diff --git a/README.md b/README.md index b01ce7ba2..747990137 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Installation The beta, dev, and Canary channels are ***not*** supported and should ***not*** be used with Chromebrew. Failure to take notice of this will cause major issues with your Chromebrew installation. -See issue [#2890](https://github.com/skycocker/chromebrew/issues/2890) and the [FAQ](https://github.com/skycocker/chromebrew/wiki/FAQ) for more details. +See issue [#2890](https://github.com/chromebrew/chromebrew/issues/2890) and the [FAQ](https://github.com/chromebrew/chromebrew/wiki/FAQ) for more details. Open the terminal with Ctrl+Alt+T and type `shell`. @@ -81,7 +81,7 @@ On a rooted Google OnHub, the command needs to be run with the "chronos" user. I Help ---- -Please check out the [wiki](https://github.com/skycocker/chromebrew/wiki) to find out more information about Chromebrew including helpful tips, resource links and frequently asked questions. Also please check existing [issues](https://github.com/skycocker/chromebrew/issues) before submitting a new one. +Please check out the [wiki](https://github.com/chromebrew/chromebrew/wiki) to find out more information about Chromebrew including helpful tips, resource links and frequently asked questions. Also please check existing [issues](https://github.com/chromebrew/chromebrew/issues) before submitting a new one. Usage ----- @@ -110,7 +110,7 @@ Where available commands are: | upgrade | update all or specific package(s) | | whatprovides | regex search for package(s) that contains file(s) | -Available packages are listed in the [packages directory](https://github.com/skycocker/chromebrew/tree/master/packages). +Available packages are listed in the [packages directory](https://github.com/chromebrew/chromebrew/tree/master/packages). Chromebrew will wipe its `BREW_DIR` (`/usr/local/tmp/crew` by default) after installation unless you pass `-k` or `--keep` when running `crew install`. @@ -151,11 +151,11 @@ Latest Packages License ------- -Copyright 2013-2022 Michal Siwek and [all the awesome contributors](https://github.com/skycocker/chromebrew/graphs/contributors). +Copyright 2013-2022 Michal Siwek and [all the awesome contributors](https://github.com/chromebrew/chromebrew/graphs/contributors). This project including all of its source files is released under the terms of [GNU General Public License (version 3 or later)](http://www.gnu.org/licenses/gpl.txt). -This project embeds [docopt.rb](https://github.com/docopt/docopt.rb) at lib/docopt.rb. We retain its [MIT license](https://github.com/skycocker/chromebrew/blob/master/lib/docopt.LICENSE). +This project embeds [docopt.rb](https://github.com/docopt/docopt.rb) at lib/docopt.rb. We retain its [MIT license](https://github.com/chromebrew/chromebrew/blob/master/lib/docopt.LICENSE). GNU General Public License MIT License diff --git a/bin/crew b/bin/crew index 4f57a67db..5a3b86440 100755 --- a/bin/crew +++ b/bin/crew @@ -19,7 +19,7 @@ require_relative '../lib/deb_utils' $LOAD_PATH.unshift "#{CREW_LIB_PATH}lib" DOC = < /dev/null || true echo_info "\nCreating symlink to 'crew' in ${CREW_PREFIX}/bin/" echo -e "${GRAY}" diff --git a/lib/const.rb b/lib/const.rb index 2829a172d..fb85faa6d 100644 --- a/lib/const.rb +++ b/lib/const.rb @@ -1,6 +1,6 @@ # Defines common constants used in different parts of crew -CREW_VERSION = '1.23.20' +CREW_VERSION = '1.24.0' ARCH_ACTUAL = `uname -m`.chomp # This helps with virtualized builds on aarch64 machines diff --git a/packages/chromebeer.rb b/packages/chromebeer.rb index 6f4da6b7c..3db9118d9 100644 --- a/packages/chromebeer.rb +++ b/packages/chromebeer.rb @@ -2,7 +2,7 @@ require 'package' class Chromebeer < Package description 'An opinionated bundle of "essential" Chromebrew packages.' - homepage 'https://github.com/skycocker/chromebrew' + homepage 'https://github.com/chromebrew/chromebrew' version '1.1' license 'GPL-3+' compatibility 'all' diff --git a/packages/clear_cache.rb b/packages/clear_cache.rb index 50b063831..6ab2ca080 100644 --- a/packages/clear_cache.rb +++ b/packages/clear_cache.rb @@ -2,7 +2,7 @@ require 'package' class Clear_cache < Package description 'Script to remove system cache files' - homepage 'https://github.com/skycocker/chromebrew/wiki/FAQ' + homepage 'https://github.com/chromebrew/chromebrew/wiki/FAQ' version '1.0' license 'GPL-3+' compatibility 'all' diff --git a/packages/core.rb b/packages/core.rb index 55448735d..0b43905c7 100644 --- a/packages/core.rb +++ b/packages/core.rb @@ -2,7 +2,7 @@ require 'package' class Core < Package description 'Core Chromebrew Packages.' - homepage 'https://github.com/skycocker/chromebrew' + homepage 'https://github.com/chromebrew/chromebrew' version '1.5' license 'GPL-3+' compatibility 'all' diff --git a/packages/crew_launcher.rb b/packages/crew_launcher.rb index 5d64b219d..aae8c38ad 100644 --- a/packages/crew_launcher.rb +++ b/packages/crew_launcher.rb @@ -27,7 +27,7 @@ class Crew_launcher < Package end FileUtils.ln_s '../share/crew-launcher/main.rb', "#{CREW_DEST_PREFIX}/bin/crew-launcher" - system "curl -L https://github.com/skycocker/chromebrew/raw/gh-pages/images/brew-title.png -o #{CREW_DEST_PREFIX}/share/crew-launcher/icon/brew.png" + system "curl -L https://github.com/chromebrew/chromebrew/raw/gh-pages/images/brew-title.png -o #{CREW_DEST_PREFIX}/share/crew-launcher/icon/brew.png" File.write "#{CREW_DEST_PREFIX}/etc/env.d/crew_launcher", <<~EOF crew-launcher start-server diff --git a/packages/ld_default.rb b/packages/ld_default.rb index f0ed80eca..4f39901ad 100644 --- a/packages/ld_default.rb +++ b/packages/ld_default.rb @@ -2,7 +2,7 @@ require 'package' class Ld_default < Package description 'Select the default ld executable and check for libraries in #{CREW_LIB_PREFIX} first' - homepage 'https://github.com/skycocker/chromebrew/wiki/FAQ' + homepage 'https://github.com/chromebrew/chromebrew/wiki/FAQ' version '1.2' license 'GPL-3+' compatibility 'all' diff --git a/packages/musl_curl.rb b/packages/musl_curl.rb index 1cc2366c6..35cc9987c 100644 --- a/packages/musl_curl.rb +++ b/packages/musl_curl.rb @@ -95,7 +95,7 @@ class Musl_curl < Package # Fail if built curl is not statically built. system 'readelf -d src/curl | grep "Shared library" && exit 1 || true' # Fail if built curl unable to download files - system 'src/curl -Lf https://github.com/skycocker/chromebrew/raw/master/install.sh -o /dev/null || exit 1' + system 'src/curl -Lf https://github.com/chromebrew/chromebrew/raw/master/install.sh -o /dev/null || exit 1' end def self.install diff --git a/packages/ruby_rubocop.rb b/packages/ruby_rubocop.rb index 54193b923..f9db83159 100644 --- a/packages/ruby_rubocop.rb +++ b/packages/ruby_rubocop.rb @@ -42,7 +42,7 @@ class Ruby_rubocop < Package def self.install # system "gem install --build=#{CREW_DEST_DIR} pkg/rubocop-#{version}.gem" FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/.config/rubocop" - downloader 'https://github.com/skycocker/chromebrew/raw/master/.rubocop.yml', 'SKIP', "#{CREW_DEST_PREFIX}/.config/rubocop/config.yml" + downloader 'https://github.com/chromebrew/chromebrew/raw/master/.rubocop.yml', 'SKIP', "#{CREW_DEST_PREFIX}/.config/rubocop/config.yml" end def self.postinstall @@ -52,7 +52,7 @@ class Ruby_rubocop < Package puts "Installing Chromebrew rubocop config file at #{@xdg_config_home}/rubocop/config.yml".lightblue puts 'This can be overridden by a ~/.rubocop.yml'.lightblue FileUtils.mkdir_p "#{@xdg_config_home}/rubocop" - downloader 'https://github.com/skycocker/chromebrew/raw/master/.rubocop.yml', 'SKIP', "#{@xdg_config_home}/rubocop/config.yml" + downloader 'https://github.com/chromebrew/chromebrew/raw/master/.rubocop.yml', 'SKIP', "#{@xdg_config_home}/rubocop/config.yml" end def self.remove diff --git a/tools/upload_github_release.sh b/tools/upload_github_release.sh index 7dbc6127d..2acce12ad 100755 --- a/tools/upload_github_release.sh +++ b/tools/upload_github_release.sh @@ -6,7 +6,7 @@ # github-release (https://github.com/aktau/github-release) # golang -owner=skycocker +owner=chromebrew repo=chromebrew case x$1 in