Skip to content

Commit

Permalink
Rebranding step 3 + final rpass version prep
Browse files Browse the repository at this point in the history
  • Loading branch information
rwinkhart committed Nov 1, 2021
1 parent 96161e8 commit 55b07eb
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
13 changes: 7 additions & 6 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
# Maintainer: Randall Winkhart <idgr at tutanota dot com>
# The source package is no longer recieving updates past this version.

pkgname=rpass
pkgver=2021.10.07.mr5
pkgver=2021.11.01.mr5.1
pkgrel=1
pkgdesc='An rsync-based password manager and alternative to GNU pass'
url='https://github.com/rwinkhart/rpass'
url='https://github.com/rwinkhart/sshyp'
arch=('x86_64' 'aarch64')
license=('GPL3')
depends=( python gnupg openssh rsync nano xclip wl-clipboard)

source_x86_64=('https://github.com/rwinkhart/rpass/releases/download/v2021.10.07.mr5/rpass-2021.10.07.mr5.tar.xz')
source_aarch64=('https://github.com/rwinkhart/rpass/releases/download/v2021.10.07.mr5/rpass-2021.10.07.mr5.tar.xz')
sha512sums_x86_64=('a1600816cd37fa7055f603dd9fa3f0a4d1f37505083ebb93d30270536f87666718c45bf995c89af6c425af5fcd93bba2ac3df12d83eea6dc3207c4030d55d46b')
sha512sums_aarch64=('a1600816cd37fa7055f603dd9fa3f0a4d1f37505083ebb93d30270536f87666718c45bf995c89af6c425af5fcd93bba2ac3df12d83eea6dc3207c4030d55d46b')
source_x86_64=('https://github.com/rwinkhart/sshyp/releases/download/v2021.11.01.mr5.1/rpass-2021.11.01.mr5.1.tar.xz')
source_aarch64=('https://github.com/rwinkhart/sshyp/releases/download/v2021.11.01.mr5.1/rpass-2021.11.01.mr5.1.tar.xz')
sha512sums_x86_64=('bf0c958721de1a13ca814d91bf74cbaaebe458198cba14b96b95fb1eeb72a1b901c8d3d00ea4c18ddff0d10d9ef6504a17a4caa345917412108df4787add61fd')
sha512sums_aarch64=('bf0c958721de1a13ca814d91bf74cbaaebe458198cba14b96b95fb1eeb72a1b901c8d3d00ea4c18ddff0d10d9ef6504a17a4caa345917412108df4787add61fd')

package() {

Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# NOTE
In the coming days, "rpass" will be renamed to "sshyp" and re-launched, starting with a new, custom syncing system (called sshync) based on sftp (rsync support is being abandoned, hence the project rename). "rpass" will recieve one more update to fix up the note copying feature, but after this patch, all efforts will be on "sshyp". "sshyp" will feature more reliable syncing (almost ready), a newly themed CLI interface, and a re-write of lots of the "rpass" code.
# sshyp
A very simple self-hosted, synchronized password manager. Alternative to GNU pass.

# rpass
A very simple password manager with rsync integration - alternative to GNU pass
# Mission Statement
sshyp aims to make it as simple as possible to manage passwords and notes via CLI across multiple devices in a self-hosted fashion.

# Installation
Arch Linux (x86_64, aarch64)

rpass releases are available in the Arch User Repository as 'rpass'.
sshyp releases are available in the Arch User Repository as 'sshyp'.

Install with your preferred AUR helper or use:

```
git clone https://aur.archlinux.org/rpass.git
cd rpass
git clone https://aur.archlinux.org/sshyp.git
cd sshyp
makepkg -si
```

Expand All @@ -23,7 +23,7 @@ Packaging for other distributions coming soon.
Upon initial installation, be sure to run:

```
rpass config
sshyp config
```

This command will allow you to configure the settings necessary for rpass to function.
Expand All @@ -32,16 +32,16 @@ As of right now, rpass is rapidly changing, and as such, it is a good idea to ru
All available options can be found with:

```
rpass --help
sshyp --help
```

# Roadmap
Short-term Goals:

- re-write bad, leftover "rpass" code
- create new file list w/color and w/o file extensions
- create a man page
- overhaul argument system
- add a system to mask names of entries from other programs/users
- fix lots of bugs!
- make lots of optimizations!

Expand All @@ -52,4 +52,4 @@ Medium-term Goals:

Long-term Goals:

- world domination
- seize the thrones, shear the humans
2 changes: 1 addition & 1 deletion bin/rpass
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def encryptfolder():
# argument - filter the argument to usable text

argument = str(argv).replace('[', '', 1).replace(']', '', 1).replace(',', '').replace("'", '') \
.replace(' ', '', 1)
.replace(' ', '', 1).replace('/usr/bin/', '', 1).replace('rpass', '', 1)

# help

Expand Down
1 change: 1 addition & 0 deletions share/doc/rpass/changelog-sshyp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Planned for next update (The Fluffy Update):

Planned for next update (The Sheep w/Shears Update):

- allow for copying entire notes (not just first line)
- allow for multi-client deletion... somehow
- ability to pass entries as arguments for more functions
- detatch sshync and make it a separate package
Expand Down

0 comments on commit 55b07eb

Please sign in to comment.