Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ryantm -> nix-community #420

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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/).
2 changes: 1 addition & 1 deletion doc/batch-updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion doc/contact.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion doc/details.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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
```

Expand All @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion doc/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion doc/nixpkgs-maintainer-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion nixpkgs-update.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/nixpkgs-update.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions src/Skiplist.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/Update.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions test_data/expected_pr_description_1.md
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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).
4 changes: 2 additions & 2 deletions test_data/expected_pr_description_2.md
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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).