Update homepage URL in packages from skycocker/chromebrew to chromebrew/chromebrew (#7146)

* Change homepage URL from skycocker/chromebrew to chromebrew/chromebrew

* Use https

* Bump version
This commit is contained in:
supechicken
2022-06-16 01:49:40 +08:00
committed by GitHub
parent 1ae5bf415a
commit 0e532bef6d
14 changed files with 23 additions and 23 deletions

View File

@@ -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)

View File

@@ -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
<a name="eq">`CREW_OPTIONS`</a>: 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)<sup>Or post a issue</sup>
Still can't find something? Have a look in [`Issues`](https://github.com/chromebrew/chromebrew/issues)<sup>Or post a issue</sup>
This Manual is heavily based off <a hrel="https://github.com/void-linux/void-packages/blob/master/Manual.md"><code>void-packages/Manual.md</code></a>

View File

@@ -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).
<a rel="license-software" href="https://www.gnu.org/licenses/gpl-3.0.en.html"><img alt="GNU General Public License" style="border-width:0" src="https://www.gnu.org/graphics/gplv3-127x51.png" height="31" /></a>
<a rel="license-docopt" href="https://mit-license.org/"><img alt="MIT License" style="border-width:0" src="https://upload.wikimedia.org/wikipedia/commons/0/0c/MIT_logo.svg" height="31" /></a>

View File

@@ -19,7 +19,7 @@ require_relative '../lib/deb_utils'
$LOAD_PATH.unshift "#{CREW_LIB_PATH}lib"
DOC = <<DOCOPT
Chromebrew - Package manager for Chrome OS http://skycocker.github.io/chromebrew/
Chromebrew - Package manager for Chrome OS https://chromebrew.github.io
Usage:
crew autoremove [options]

View File

@@ -4,7 +4,7 @@
set -e
#chromebrew directories
: "${OWNER:=skycocker}"
: "${OWNER:=chromebrew}"
: "${REPO:=chromebrew}"
: "${BRANCH:=master}"
URL="https://raw.githubusercontent.com/${OWNER}/${REPO}/${BRANCH}"
@@ -261,7 +261,7 @@ for i in $(seq 0 $((${#urls[@]} - 1))); do
update_device_json "${name}" "${version}"
done
## workaround https://github.com/skycocker/chromebrew/issues/3305
## workaround https://github.com/chromebrew/chromebrew/issues/3305
sudo ldconfig &> /dev/null || true
echo_info "\nCreating symlink to 'crew' in ${CREW_PREFIX}/bin/"
echo -e "${GRAY}"

View File

@@ -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

View File

@@ -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'

View File

@@ -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'

View File

@@ -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'

View File

@@ -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

View File

@@ -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'

View File

@@ -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

View File

@@ -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

View File

@@ -6,7 +6,7 @@
# github-release (https://github.com/aktau/github-release)
# golang
owner=skycocker
owner=chromebrew
repo=chromebrew
case x$1 in