Skip to content

Commit

Permalink
Replace github.com/justwatchcom with github.com/gopasspw across all s…
Browse files Browse the repository at this point in the history
…ources & docs (gopasspw#806)
  • Loading branch information
muesli authored and dominikschulz committed May 29, 2018
1 parent ba281c4 commit 5975340
Show file tree
Hide file tree
Showing 13 changed files with 53 additions and 53 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ version: "{build}"

os: Windows Server 2012 R2

clone_folder: c:\gopath\src\github.com\justwatchcom\gopass
clone_folder: c:\gopath\src\github.com\gopasspw\gopass

environment:
GOPATH: c:\gopath
GOPASS_BINARY: c:\gopath\src\github.com\justwatchcom\gopass\gopass.exe
GOPASS_BINARY: c:\gopath\src\github.com\gopasspw\gopass\gopass.exe

install:
- echo %PATH%
Expand Down
10 changes: 5 additions & 5 deletions .goreleaser-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ archive:
wrap_in_directory: true
release:
github:
owner: justwatchcom
owner: gopasspw
name: gopass
draft: false
name_template: '{{ .Version }} / {{ time "2006-01-02" }}'
body_template: '{{ .ReleaseNotes }}'
brew:
github:
owner: justwatchcom
owner: gopasspw
name: homebrew-gopass
caveats: |
Gopass has been installed, have fun!
Expand All @@ -60,7 +60,7 @@ brew:
https://github.com/bobthecow/git-flow-completion/wiki/Install-Bash-git-completion
More information:
https://www.justwatch.com/gopass
https://github.com/justwatchcom/gopass/README.md
https://github.com/gopasspw/gopass/README.md
homepage: "https://www.justwatch.com/gopass/"
description: "The slightly more awesome Standard Unix Password Manager for Teams."
build_dependencies:
Expand All @@ -70,9 +70,9 @@ brew:
- gnupg
install: |
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/justwatchcom/gopass").install buildpath.children
(buildpath/"src/github.com/gopasspw/gopass").install buildpath.children
cd "src/github.com/justwatchcom/gopass" do
cd "src/github.com/gopasspw/gopass" do
ENV["PREFIX"] = prefix
system "make", "install"
end
Expand Down
10 changes: 5 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ archive:
- zsh.completion
release:
github:
owner: justwatchcom
owner: gopasspw
name: gopass
draft: false
brew:
github:
owner: justwatchcom
owner: gopasspw
name: homebrew-gopass
caveats: |
Gopass has been installed, have fun!
Expand All @@ -57,7 +57,7 @@ brew:
https://github.com/bobthecow/git-flow-completion/wiki/Install-Bash-git-completion
More information:
https://www.justwatch.com/gopass
https://github.com/justwatchcom/gopass/README.md
https://github.com/gopasspw/gopass/README.md
homepage: "https://www.justwatch.com/gopass/"
description: "The slightly more awesome Standard Unix Password Manager for Teams."
build_dependencies:
Expand All @@ -67,9 +67,9 @@ brew:
- gnupg
install: |
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/justwatchcom/gopass").install buildpath.children
(buildpath/"src/github.com/gopasspw/gopass").install buildpath.children
cd "src/github.com/justwatchcom/gopass" do
cd "src/github.com/gopasspw/gopass" do
ENV["PREFIX"] = prefix
system "make", "install"
end
Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Should you wish to work on an issue, please claim it first by commenting on the GitHub issue you want to work on it.
This will prevent duplicated efforts from contributors.

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.
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.
If you have questions about one of the issues please comment on them and one of the maintainers
will try to clarify it.

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

```bash
cd $GOPATH/src/github.com/justwatchcom/gopass
cd $GOPATH/src/github.com/gopasspw/gopass
make docker-test
```

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

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

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


Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ FROM golang:1.10-alpine AS builder

RUN apk add -U make git gnupg

ADD . /go/src/github.com/justwatchcom/gopass
WORKDIR /go/src/github.com/justwatchcom/gopass
ADD . /go/src/github.com/gopasspw/gopass
WORKDIR /go/src/github.com/gopasspw/gopass

RUN make install

RUN chown -R 1000:1000 /go/src/github.com/justwatchcom/gopass
ENV HOME /go/src/github.com/justwatchcom/gopass
RUN chown -R 1000:1000 /go/src/github.com/gopasspw/gopass
ENV HOME /go/src/github.com/gopasspw/gopass
USER 1000:1000

CMD [ "/go/src/github.com/justwatchcom/gopass/gopass" ]
CMD [ "/go/src/github.com/gopasspw/gopass/gopass" ]
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -207,12 +207,12 @@ fmt:

fuzz-gpg:
mkdir -p workdir/gpg-cli/corpus
go-fuzz-build github.com/justwatchcom/gopass/backend/gpg/cli
go-fuzz-build github.com/gopasspw/gopass/backend/gpg/cli
go-fuzz -bin=cli-fuzz.zip -workdir=workdir/gpg-cli

fuzz-jsonapi:
mkdir -p workdir/jsonapi/corpus
go-fuzz-build github.com/justwatchcom/gopass/utils/jsonapi
go-fuzz-build github.com/gopasspw/gopass/utils/jsonapi
go-fuzz -bin=jsonapi-fuzz.zip -workdir=workdir/jsonapi

docker-test:
Expand Down
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

# gopass

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

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

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

## Features

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

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

```bash
go get github.com/justwatchcom/gopass
go get github.com/gopasspw/gopass
```

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

## Development

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

* IRC: #gopass on [irc.freenode.net](https://freenode.net) ([join via Riot](https://riot.im/app/#/room/#freenode_#gopass:matrix.org))
* Usage mailing list: [gopass-users](https://groups.google.com/forum/#!forum/gopass-users), for discussions around gopass usage and community support
* 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.
* 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.

## Contributing

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

## Acknowledgements

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

## Further Documentation

* [Security, Known Limitations, and Caveats](https://github.com/justwatchcom/gopass/blob/master/docs/security.md)
* [Configuration](https://github.com/justwatchcom/gopass/blob/master/docs/config.md)
* [FAQ](https://github.com/justwatchcom/gopass/blob/master/docs/faq.md)
* [JSON API](https://github.com/justwatchcom/gopass/blob/master/docs/jsonapi.md)
* [Gopass as Summon provider](https://github.com/justwatchcom/gopass/blob/master/docs/summon-provider.md)
* [Security, Known Limitations, and Caveats](https://github.com/gopasspw/gopass/blob/master/docs/security.md)
* [Configuration](https://github.com/gopasspw/gopass/blob/master/docs/config.md)
* [FAQ](https://github.com/gopasspw/gopass/blob/master/docs/faq.md)
* [JSON API](https://github.com/gopasspw/gopass/blob/master/docs/jsonapi.md)
* [Gopass as Summon provider](https://github.com/gopasspw/gopass/blob/master/docs/summon-provider.md)
2 changes: 1 addition & 1 deletion docs/backends.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ using existing building blocks - we're a little wary to recommend it for broader
Also it requires it's own Keyring/Agent infrastructure as the keyformat is quite
different from what GPG is using.

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
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
backend still needs to written and will be added at a later point.

### Vault (vault)
Expand Down
2 changes: 1 addition & 1 deletion docs/entropy.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ sudo yum install rng-tools
## Further Information

* [RNG-Tools on the Arch Linux Wiki](https://wiki.archlinux.org/index.php/Rng-tools)
* [gopass Issue #486](https://github.com/justwatchcom/gopass/issues/486)
* [gopass Issue #486](https://github.com/gopasspw/gopass/issues/486)
4 changes: 2 additions & 2 deletions docs/faq.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FAQ

* *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)
* `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)
* *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)
* `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)
* *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`
* *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.
* *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.
Expand Down
2 changes: 1 addition & 1 deletion docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ The `edit` command uses the `$EDITOR` environment variable to start your preferr
### Adding OTP Secrets
*Note: Depending on your security needs, it may not behoove you to store your OTP secrets alongside your passwords! Look into [Multiple Stores](https://github.com/justwatchcom/gopass/blob/master/docs/features.md#multiple-stores) if you need things to be separate!*
*Note: Depending on your security needs, it may not behoove you to store your OTP secrets alongside your passwords! Look into [Multiple Stores](https://github.com/gopasspw/gopass/blob/master/docs/features.md#multiple-stores) if you need things to be separate!*
Typically sites will display a QR code containing a URL that starts with `oauth://`. This string contains information about generating your OTPs and can be directly added to your password file. For example:
Expand Down
2 changes: 1 addition & 1 deletion docs/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ trusting our credentials with. The first production release of GPG was on [Septe

With that said, GPG isn't known for being the most user-friendly software. We try to work around some of the usability limitations of GPG but we always do so keeping security in mind. This means that, in some cases, the project carefully makes some security trade-offs in order to achieve better usability.

Since gopass uses GPG to encrypt data, GPG needs to be properly set up beforehand. (GPG installation is covered in the [gopass installation documentation](https://github.com/justwatchcom/gopass/blob/master/docs/setup.md).) However, basic knowledge of how [public-key cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography) and the [web of trust model](https://en.wikipedia.org/wiki/Web_of_trust) is assumed and necessary.
Since gopass uses GPG to encrypt data, GPG needs to be properly set up beforehand. (GPG installation is covered in the [gopass installation documentation](https://github.com/gopasspw/gopass/blob/master/docs/setup.md).) However, basic knowledge of how [public-key cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography) and the [web of trust model](https://en.wikipedia.org/wiki/Web_of_trust) is assumed and necessary.

## Generating Passwords

Expand Down
Loading

0 comments on commit 5975340

Please sign in to comment.