Skip to content

Commit 5975340

Browse files
mueslidominikschulz
authored andcommitted
Replace github.com/justwatchcom with github.com/gopasspw across all sources & docs (gopasspw#806)
1 parent ba281c4 commit 5975340

13 files changed

+53
-53
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ version: "{build}"
22

33
os: Windows Server 2012 R2
44

5-
clone_folder: c:\gopath\src\github.com\justwatchcom\gopass
5+
clone_folder: c:\gopath\src\github.com\gopasspw\gopass
66

77
environment:
88
GOPATH: c:\gopath
9-
GOPASS_BINARY: c:\gopath\src\github.com\justwatchcom\gopass\gopass.exe
9+
GOPASS_BINARY: c:\gopath\src\github.com\gopasspw\gopass\gopass.exe
1010

1111
install:
1212
- echo %PATH%

.goreleaser-upstream.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ archive:
3939
wrap_in_directory: true
4040
release:
4141
github:
42-
owner: justwatchcom
42+
owner: gopasspw
4343
name: gopass
4444
draft: false
4545
name_template: '{{ .Version }} / {{ time "2006-01-02" }}'
4646
body_template: '{{ .ReleaseNotes }}'
4747
brew:
4848
github:
49-
owner: justwatchcom
49+
owner: gopasspw
5050
name: homebrew-gopass
5151
caveats: |
5252
Gopass has been installed, have fun!
@@ -60,7 +60,7 @@ brew:
6060
https://github.com/bobthecow/git-flow-completion/wiki/Install-Bash-git-completion
6161
More information:
6262
https://www.justwatch.com/gopass
63-
https://github.com/justwatchcom/gopass/README.md
63+
https://github.com/gopasspw/gopass/README.md
6464
homepage: "https://www.justwatch.com/gopass/"
6565
description: "The slightly more awesome Standard Unix Password Manager for Teams."
6666
build_dependencies:
@@ -70,9 +70,9 @@ brew:
7070
- gnupg
7171
install: |
7272
ENV["GOPATH"] = buildpath
73-
(buildpath/"src/github.com/justwatchcom/gopass").install buildpath.children
73+
(buildpath/"src/github.com/gopasspw/gopass").install buildpath.children
7474
75-
cd "src/github.com/justwatchcom/gopass" do
75+
cd "src/github.com/gopasspw/gopass" do
7676
ENV["PREFIX"] = prefix
7777
system "make", "install"
7878
end

.goreleaser.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ archive:
3838
- zsh.completion
3939
release:
4040
github:
41-
owner: justwatchcom
41+
owner: gopasspw
4242
name: gopass
4343
draft: false
4444
brew:
4545
github:
46-
owner: justwatchcom
46+
owner: gopasspw
4747
name: homebrew-gopass
4848
caveats: |
4949
Gopass has been installed, have fun!
@@ -57,7 +57,7 @@ brew:
5757
https://github.com/bobthecow/git-flow-completion/wiki/Install-Bash-git-completion
5858
More information:
5959
https://www.justwatch.com/gopass
60-
https://github.com/justwatchcom/gopass/README.md
60+
https://github.com/gopasspw/gopass/README.md
6161
homepage: "https://www.justwatch.com/gopass/"
6262
description: "The slightly more awesome Standard Unix Password Manager for Teams."
6363
build_dependencies:
@@ -67,9 +67,9 @@ brew:
6767
- gnupg
6868
install: |
6969
ENV["GOPATH"] = buildpath
70-
(buildpath/"src/github.com/justwatchcom/gopass").install buildpath.children
70+
(buildpath/"src/github.com/gopasspw/gopass").install buildpath.children
7171
72-
cd "src/github.com/justwatchcom/gopass" do
72+
cd "src/github.com/gopasspw/gopass" do
7373
ENV["PREFIX"] = prefix
7474
system "make", "install"
7575
end

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Should you wish to work on an issue, please claim it first by commenting on the GitHub issue you want to work on it.
1818
This will prevent duplicated efforts from contributors.
1919

20-
Please check the [`help-wanted`](https://github.com/justwatchcom/gopass/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) label to find issues that need help.
20+
Please check the [`help-wanted`](https://github.com/gopasspw/gopass/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) label to find issues that need help.
2121
If you have questions about one of the issues please comment on them and one of the maintainers
2222
will try to clarify it.
2323

@@ -55,7 +55,7 @@ gopass ships a ready to use Dockerfile based on Alpine. It allows to run tests
5555
and build gopass without having to setup a Go stack on the host.
5656

5757
```bash
58-
cd $GOPATH/src/github.com/justwatchcom/gopass
58+
cd $GOPATH/src/github.com/gopasspw/gopass
5959
make docker-test
6060
```
6161

@@ -69,7 +69,7 @@ It is also possible mount a local directory into the container to copy files in
6969
and out of it, but please pay attention to permissions.
7070

7171
```bash
72-
docker run -it -v "$PWD":/go/src/github.com/justwatchcom/gopass -w /go/src/github.com/justwatchcom/gopass gopass sh
72+
docker run -it -v "$PWD":/go/src/github.com/gopasspw/gopass -w /go/src/github.com/gopasspw/gopass gopass sh
7373
```
7474

7575
Please note that it is not recommended to actually *use* gopass inside Docker
@@ -83,11 +83,11 @@ as there are issues with random number generation in general and GnuPG.
8383
Quick Start:
8484
- `mkdir -p $HOME/go/src`
8585
- `export GOPATH=$HOME/go`
86-
- `go get -u github.com/justwatchcom/gopass`
86+
- `go get -u github.com/gopasspw/gopass`
8787
- Set `$GOROOT` depending on your OS and Go installation method:
8888
- MacOS, Go installed via brew: `export GOROOT=/usr/local/opt/go/libexec/`
8989
- Now you should be able to build from the gopass dir:
90-
- `cd $GOPATH/src/github.com/justwatchcom/`
90+
- `cd $GOPATH/src/github.com/gopasspw/`
9191
- `go build -v`
9292

9393

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ FROM golang:1.10-alpine AS builder
22

33
RUN apk add -U make git gnupg
44

5-
ADD . /go/src/github.com/justwatchcom/gopass
6-
WORKDIR /go/src/github.com/justwatchcom/gopass
5+
ADD . /go/src/github.com/gopasspw/gopass
6+
WORKDIR /go/src/github.com/gopasspw/gopass
77

88
RUN make install
99

10-
RUN chown -R 1000:1000 /go/src/github.com/justwatchcom/gopass
11-
ENV HOME /go/src/github.com/justwatchcom/gopass
10+
RUN chown -R 1000:1000 /go/src/github.com/gopasspw/gopass
11+
ENV HOME /go/src/github.com/gopasspw/gopass
1212
USER 1000:1000
1313

14-
CMD [ "/go/src/github.com/justwatchcom/gopass/gopass" ]
14+
CMD [ "/go/src/github.com/gopasspw/gopass/gopass" ]

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ fmt:
207207

208208
fuzz-gpg:
209209
mkdir -p workdir/gpg-cli/corpus
210-
go-fuzz-build github.com/justwatchcom/gopass/backend/gpg/cli
210+
go-fuzz-build github.com/gopasspw/gopass/backend/gpg/cli
211211
go-fuzz -bin=cli-fuzz.zip -workdir=workdir/gpg-cli
212212

213213
fuzz-jsonapi:
214214
mkdir -p workdir/jsonapi/corpus
215-
go-fuzz-build github.com/justwatchcom/gopass/utils/jsonapi
215+
go-fuzz-build github.com/gopasspw/gopass/utils/jsonapi
216216
go-fuzz -bin=jsonapi-fuzz.zip -workdir=workdir/jsonapi
217217

218218
docker-test:

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
# gopass
66

7-
[![Build Status](https://travis-ci.org/justwatchcom/gopass.svg?branch=master)](https://travis-ci.org/justwatchcom/gopass)
8-
[![Go Report Card](https://goreportcard.com/badge/github.com/justwatchcom/gopass)](https://goreportcard.com/report/github.com/justwatchcom/gopass)
9-
[![Code Climate](https://codeclimate.com/github/justwatchcom/gopass/badges/gpa.svg)](https://codeclimate.com/github/justwatchcom/gopass)
10-
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/justwatchcom/gopass/blob/master/LICENSE)
11-
[![Github All Releases](https://img.shields.io/github/downloads/justwatchcom/gopass/total.svg)](https://github.com/justwatchcom/gopass/releases)
12-
[![codecov](https://codecov.io/gh/justwatchcom/gopass/branch/master/graph/badge.svg)](https://codecov.io/gh/justwatchcom/gopass)
7+
[![Build Status](https://travis-ci.org/gopasspw/gopass.svg?branch=master)](https://travis-ci.org/gopasspw/gopass)
8+
[![Go Report Card](https://goreportcard.com/badge/github.com/gopasspw/gopass)](https://goreportcard.com/report/github.com/gopasspw/gopass)
9+
[![Code Climate](https://codeclimate.com/github/gopasspw/gopass/badges/gpa.svg)](https://codeclimate.com/github/gopasspw/gopass)
10+
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/gopasspw/gopass/blob/master/LICENSE)
11+
[![Github All Releases](https://img.shields.io/github/downloads/gopasspw/gopass/total.svg)](https://github.com/gopasspw/gopass/releases)
12+
[![codecov](https://codecov.io/gh/gopasspw/gopass/branch/master/graph/badge.svg)](https://codecov.io/gh/gopasspw/gopass)
1313

1414
The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.
1515

@@ -38,7 +38,7 @@ The slightly more awesome Standard Unix Password Manager for Teams. Written in G
3838

3939
## Features
4040

41-
Please see [docs/features.md](https://github.com/justwatchcom/gopass/blob/master/docs/features.md) for an extensive list of all features along with several usage examples.
41+
Please see [docs/features.md](https://github.com/gopasspw/gopass/blob/master/docs/features.md) for an extensive list of all features along with several usage examples.
4242

4343
| **Feature** | *pass* | *gopass* | **State** | **Description** |
4444
| --------------------------- | ------ | -------- | --------- | ----------------------------------------------------------------- |
@@ -63,10 +63,10 @@ Please see [docs/features.md](https://github.com/justwatchcom/gopass/blob/master
6363
If you have [Go](https://golang.org/) 1.10 (or greater) installed:
6464

6565
```bash
66-
go get github.com/justwatchcom/gopass
66+
go get github.com/gopasspw/gopass
6767
```
6868

69-
Otherwise, please see [docs/setup.md](https://github.com/justwatchcom/gopass/blob/master/docs/setup.md).
69+
Otherwise, please see [docs/setup.md](https://github.com/gopasspw/gopass/blob/master/docs/setup.md).
7070

7171
## Development
7272

@@ -92,20 +92,20 @@ gopass is developed in the open. Here are some of the channels we use to communi
9292

9393
* IRC: #gopass on [irc.freenode.net](https://freenode.net) ([join via Riot](https://riot.im/app/#/room/#freenode_#gopass:matrix.org))
9494
* Usage mailing list: [gopass-users](https://groups.google.com/forum/#!forum/gopass-users), for discussions around gopass usage and community support
95-
* Issue tracker: Use the [GitHub issue tracker](https://github.com/justwatchcom/gopass/issues) to file bugs and feature requests. If you need support, please send your questions to [gopass-user](https://groups.google.com/forum/#!forum/gopass-users) or ask on IRC rather than filing a GitHub issue.
95+
* Issue tracker: Use the [GitHub issue tracker](https://github.com/gopasspw/gopass/issues) to file bugs and feature requests. If you need support, please send your questions to [gopass-user](https://groups.google.com/forum/#!forum/gopass-users) or ask on IRC rather than filing a GitHub issue.
9696

9797
## Contributing
9898

99-
We welcome any contributions. Please see the [CONTRIBUTING.md](https://github.com/justwatchcom/gopass/blob/master/CONTRIBUTING.md) file for instructions on how to submit changes. If your are planning on making more elaborate or controversial changes, please discuss them on the [gopass-developers mailing list](https://groups.google.com/forum/#!forum/gopass-developers) or on IRC before sending a pull request.
99+
We welcome any contributions. Please see the [CONTRIBUTING.md](https://github.com/gopasspw/gopass/blob/master/CONTRIBUTING.md) file for instructions on how to submit changes. If your are planning on making more elaborate or controversial changes, please discuss them on the [gopass-developers mailing list](https://groups.google.com/forum/#!forum/gopass-developers) or on IRC before sending a pull request.
100100

101101
## Acknowledgements
102102

103103
gopass was initially started by Matthias Loibl and Dominik Schulz. The majority of its development has been sponsored by [JustWatch](https://www.justwatch.com/).
104104

105105
## Further Documentation
106106

107-
* [Security, Known Limitations, and Caveats](https://github.com/justwatchcom/gopass/blob/master/docs/security.md)
108-
* [Configuration](https://github.com/justwatchcom/gopass/blob/master/docs/config.md)
109-
* [FAQ](https://github.com/justwatchcom/gopass/blob/master/docs/faq.md)
110-
* [JSON API](https://github.com/justwatchcom/gopass/blob/master/docs/jsonapi.md)
111-
* [Gopass as Summon provider](https://github.com/justwatchcom/gopass/blob/master/docs/summon-provider.md)
107+
* [Security, Known Limitations, and Caveats](https://github.com/gopasspw/gopass/blob/master/docs/security.md)
108+
* [Configuration](https://github.com/gopasspw/gopass/blob/master/docs/config.md)
109+
* [FAQ](https://github.com/gopasspw/gopass/blob/master/docs/faq.md)
110+
* [JSON API](https://github.com/gopasspw/gopass/blob/master/docs/jsonapi.md)
111+
* [Gopass as Summon provider](https://github.com/gopasspw/gopass/blob/master/docs/summon-provider.md)

docs/backends.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ using existing building blocks - we're a little wary to recommend it for broader
123123
Also it requires it's own Keyring/Agent infrastructure as the keyformat is quite
124124
different from what GPG is using.
125125

126-
Please see the backend [Readme](https://github.com/justwatchcom/gopass/blob/master/pkg/backend/crypto/xc/README.md) for more details. Proper documentation for this
126+
Please see the backend [Readme](https://github.com/gopasspw/gopass/blob/master/pkg/backend/crypto/xc/README.md) for more details. Proper documentation for this
127127
backend still needs to written and will be added at a later point.
128128

129129
### Vault (vault)

docs/entropy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ sudo yum install rng-tools
4040
## Further Information
4141

4242
* [RNG-Tools on the Arch Linux Wiki](https://wiki.archlinux.org/index.php/Rng-tools)
43-
* [gopass Issue #486](https://github.com/justwatchcom/gopass/issues/486)
43+
* [gopass Issue #486](https://github.com/gopasspw/gopass/issues/486)

docs/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# FAQ
22

3-
* *How does gopass relate to HashiCorp vault?* - While [Vault](https://www.vaultproject.io/) is for machines, gopass is for humans [#7](https://github.com/justwatchcom/gopass/issues/7)
4-
* `gopass show secret` displays `Error: Failed to decrypt` - This issue may happen if your GPG setup if broken. On MacOS try `brew link --overwrite gnupg`. You also may need to set `export GPG_TTY=$(tty)` in your `.bashrc` [#208](https://github.com/justwatchcom/gopass/issues/208), [#209](https://github.com/justwatchcom/gopass/issues/209)
3+
* *How does gopass relate to HashiCorp vault?* - While [Vault](https://www.vaultproject.io/) is for machines, gopass is for humans [#7](https://github.com/gopasspw/gopass/issues/7)
4+
* `gopass show secret` displays `Error: Failed to decrypt` - This issue may happen if your GPG setup if broken. On MacOS try `brew link --overwrite gnupg`. You also may need to set `export GPG_TTY=$(tty)` in your `.bashrc` [#208](https://github.com/gopasspw/gopass/issues/208), [#209](https://github.com/gopasspw/gopass/issues/209)
55
* *gopass recipients add fails with Warning: No matching valid key found* - If the key you're trying to add is already in your key ring you may need to trust it. If this is your key run `gpg --edit-key [KEYID]; trust (set to ultimate); quit`, if this is not your key run `gpg --edit-key [KEYID]; lsign; save; quit`
66
* *How can gopass handle binary data?* - gopass is designed not to change to content of the secrets in any way except that it will add a final newline at the end of the secret if it does not have one already and the output is going to a terminal. This means that the output may mess up your terminal if it's not only text. In this case you should either encoded the secret to text (e.g. base64) before inserting or use the special `gopass binary` sub command that does that for you.
77
* *Why does gopass delete my whole KDE klipper history?* - KDEs klipper provides a clipboard history for your convenience. Since we currently can't figure out which entry may contain a secret copied to the clipboard, we just clear the whole history once the clipboard timer expires.

0 commit comments

Comments
 (0)