ryantm -> nix-community

This commit is contained in:
zowoq 2024-04-28 18:34:55 +10:00
parent df23e62c33
commit e586398418
14 changed files with 22 additions and 22 deletions

View File

@ -9,4 +9,4 @@ I hereby license my contributions to this repository under:
Creative Commons Zero v1.0 Universal (SPDX Short Identifier: CC0-1.0)
```
in this [Pull Request thread](https://github.com/ryantm/nixpkgs-update/pull/116).
in this [Pull Request thread](https://github.com/nix-community/nixpkgs-update/pull/116).

View File

@ -1,6 +1,6 @@
# nixpkgs-update
[![Build Status](https://github.com/ryantm/nixpkgs-update/workflows/CI/badge.svg)](https://github.com/ryantm/nixpkgs-update/actions)
[![Build Status](https://github.com/nix-community/nixpkgs-update/workflows/CI/badge.svg)](https://github.com/nix-community/nixpkgs-update/actions)
[![Patreon](https://img.shields.io/badge/patreon-donate-blue.svg)](https://www.patreon.com/nixpkgsupdate)
Please read the [documentation](https://nix-community.github.io/nixpkgs-update/).

View File

@ -16,7 +16,7 @@ subcommand.
2. Clone this repository and build `nixpkgs-update`:
```bash
git clone https://github.com/ryantm/nixpkgs-update && cd nixpkgs-update
git clone https://github.com/nix-community/nixpkgs-update && cd nixpkgs-update
nix-build
```

View File

@ -1,5 +1,5 @@
# Contact {#contact}
Github: [https://github.com/ryantm/nixpkgs-update](https://github.com/ryantm/nixpkgs-update)
Github: [https://github.com/nix-community/nixpkgs-update](https://github.com/nix-community/nixpkgs-update)
Matrix: [https://matrix.to/#/#nixpkgs-update:nixos.org](https://matrix.to/#/#nixpkgs-update:nixos.org)

View File

@ -34,7 +34,7 @@ update, and CVEs present in both version.
If you would like to report a problem with the security report, please
use the [nixpkgs-update GitHub
issues](https://github.com/ryantm/nixpkgs-update/issues).
issues](https://github.com/nix-community/nixpkgs-update/issues).
The initial development of the security report was made possible by a
partnership with [Serokell](https://serokell.io/) and the [NLNet

View File

@ -11,7 +11,7 @@ Run without installing on stable Nix:
$ nix run \
--option extra-substituters 'https://nix-community.cachix.org/' \
--option extra-trusted-public-keys 'nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=' \
-f https://github.com/ryantm/nixpkgs-update/archive/main.tar.gz \
-f https://github.com/nix-community/nixpkgs-update/archive/main.tar.gz \
-c nixpkgs-update --help
```
@ -21,7 +21,7 @@ Run without installing on unstable Nix with nix command enabled:
$ nix shell \
--option extra-substituters 'https://nix-community.cachix.org/' \
--option extra-trusted-public-keys 'nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=' \
-f https://github.com/ryantm/nixpkgs-update/archive/main.tar.gz \
-f https://github.com/nix-community/nixpkgs-update/archive/main.tar.gz \
-c nixpkgs-update --help
```
@ -31,7 +31,7 @@ Run without installing on unstable Nix with nix flakes enabled:
$ nix run \
--option extra-substituters 'https://nix-community.cachix.org/' \
--option extra-trusted-public-keys 'nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=' \
github:ryantm/nixpkgs-update -- --help
github:nix-community/nixpkgs-update -- --help
```
Install into your Nix profile:
@ -40,13 +40,13 @@ Install into your Nix profile:
$ nix-env \
--option extra-substituters 'https://nix-community.cachix.org/' \
--option extra-trusted-public-keys 'nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=' \
-if https://github.com/ryantm/nixpkgs-update/archive/main.tar.gz
-if https://github.com/nix-community/nixpkgs-update/archive/main.tar.gz
```
Declaratively with [niv](https://github.com/nmattia/niv):
```ShellSession
$ niv add ryantm/nixpkgs-update
$ niv add nix-community/nixpkgs-update
```
NixOS config with Niv:

View File

@ -2,7 +2,7 @@
> The future is here; let's evenly distribute it!
The [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) mission
The [nixpkgs-update](https://github.com/nix-community/nixpkgs-update) mission
is to make [nixpkgs](https://github.com/nixos/nixpkgs) the most
up-to-date repository of software in the world by the most ridiculous
margin possible. [Here's how we are doing so far](https://repology.org/repositories/graphs).

View File

@ -34,7 +34,7 @@ Updates can be disabled by adding a comment to the package:
### Skiplist
We maintain a [Skiplist](https://github.com/ryantm/nixpkgs-update/blob/main/src/Skiplist.hs) of different things not to update. It is possible your package is triggering one of the skip criteria.
We maintain a [Skiplist](https://github.com/nix-community/nixpkgs-update/blob/main/src/Skiplist.hs) of different things not to update. It is possible your package is triggering one of the skip criteria.
Python updates are skipped if they cause more than 100 rebuilds.

View File

@ -46,7 +46,7 @@ mkDerivation {
zlib
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/ryantm/nixpkgs-update#readme";
homepage = "https://github.com/nix-community/nixpkgs-update#readme";
description = "Tool for semi-automatic updating of nixpkgs repository";
license = lib.licenses.cc0;
mainProgram = "nixpkgs-update";

View File

@ -46,7 +46,7 @@ mkDerivation {
zlib
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/ryantm/nixpkgs-update#readme";
homepage = "https://github.com/nix-community/nixpkgs-update#readme";
description = "Tool for semi-automatic updating of nixpkgs repository";
license = lib.licenses.cc0;
mainProgram = "nixpkgs-update";

View File

@ -30,7 +30,7 @@ attrPath = skiplister attrPathList
packageName :: TextSkiplister m
packageName name =
if name == "elementary-xfce-icon-theme" -- https://github.com/ryantm/nixpkgs-update/issues/63
if name == "elementary-xfce-icon-theme" -- https://github.com/nix-community/nixpkgs-update/issues/63
then return ()
else skiplister nameList name
@ -123,7 +123,7 @@ nameList =
"checkbashism"
"needs to be fixed, see https://github.com/NixOS/nixpkgs/pull/39552",
eq "isl" "multi-version long building package",
infixOf "qscintilla" "https://github.com/ryantm/nixpkgs-update/issues/51",
infixOf "qscintilla" "https://github.com/nix-community/nixpkgs-update/issues/51",
eq "itstool" "https://github.com/NixOS/nixpkgs/pull/41339",
infixOf
"virtualbox"

View File

@ -499,7 +499,7 @@ prMessage updateEnv isBroken metaDescription metaHomepage metaChangelog rewriteM
rewriteMsgsLine = foldl (\ms m -> ms <> T.pack "\n- " <> m) "\n###### Updates performed" rewriteMsgs
maintainersCc =
if not (T.null maintainers)
then "cc " <> maintainers <> " for [testing](https://github.com/ryantm/nixpkgs-update/blob/main/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do)."
then "cc " <> maintainers <> " for [testing](https://github.com/nix-community/nixpkgs-update/blob/main/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do)."
else ""
releaseUrlMessage =
if releaseUrl == T.empty
@ -529,7 +529,7 @@ prMessage updateEnv isBroken metaDescription metaHomepage metaChangelog rewriteM
batch = batchUpdate . options $ updateEnv
automatic = if batch then "Automatic" else "Semi-automatic"
in [interpolate|
$automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. $sourceLinkInfo
$automatic update generated by [nixpkgs-update](https://github.com/nix-community/nixpkgs-update) tools. $sourceLinkInfo
$brokenMsg
$metaDescriptionLine

View File

@ -1,4 +1,4 @@
Semi-automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://update-site.com.
Semi-automatic update generated by [nixpkgs-update](https://github.com/nix-community/nixpkgs-update) tools. This update was made based on information from https://update-site.com.
meta.description for foobar is: "Foobar package description"
@ -84,4 +84,4 @@ nixpkgs-review comment body
###### Maintainer pings
cc @maintainer1 for [testing](https://github.com/ryantm/nixpkgs-update/blob/main/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do).
cc @maintainer1 for [testing](https://github.com/nix-community/nixpkgs-update/blob/main/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do).

View File

@ -1,4 +1,4 @@
Semi-automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://update-site.com.
Semi-automatic update generated by [nixpkgs-update](https://github.com/nix-community/nixpkgs-update) tools. This update was made based on information from https://update-site.com.
meta.description for foobar is: "Foobar package description"
@ -77,4 +77,4 @@ NixPkgs review skipped
###### Maintainer pings
cc @maintainer1 for [testing](https://github.com/ryantm/nixpkgs-update/blob/main/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do).
cc @maintainer1 for [testing](https://github.com/nix-community/nixpkgs-update/blob/main/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do).