mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-09-05 08:37:14 -04:00
Prep for first release of sshyp
This commit is contained in:
@@ -1,23 +1,22 @@
|
|||||||
# Maintainer: Randall Winkhart <idgr at tutanota dot com>
|
# Maintainer: Randall Winkhart <idgr at tutanota dot com>
|
||||||
# The source package is no longer recieving updates past this version.
|
|
||||||
|
|
||||||
pkgname=rpass
|
pkgname=sshyp
|
||||||
pkgver=2021.11.01.mr5.1
|
pkgver=2021.11.05.fr1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc='An rsync-based password manager and alternative to GNU pass'
|
pkgdesc='A self-hosted, synchronized password manager'
|
||||||
url='https://github.com/rwinkhart/sshyp'
|
url='https://github.com/rwinkhart/sshyp'
|
||||||
arch=('x86_64' 'aarch64')
|
arch=('x86_64' 'aarch64')
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
depends=( python gnupg openssh rsync nano xclip wl-clipboard)
|
depends=( python gnupg openssh nano xclip wl-clipboard)
|
||||||
|
|
||||||
source_x86_64=('https://github.com/rwinkhart/sshyp/releases/download/v2021.11.01.mr5.1/rpass-2021.11.01.mr5.1.tar.xz')
|
source_x86_64=('https://github.com/rwinkhart/sshyp/releases/download/v2021.11.05.fr1/sshyp-2021.11.05.fr1.tar.xz')
|
||||||
source_aarch64=('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.05.fr1/sshyp-2021.11.05.fr1.tar.xz')
|
||||||
sha512sums_x86_64=('bf0c958721de1a13ca814d91bf74cbaaebe458198cba14b96b95fb1eeb72a1b901c8d3d00ea4c18ddff0d10d9ef6504a17a4caa345917412108df4787add61fd')
|
sha512sums_x86_64=('823913d64e757223826301481d92a866bcf66026d4eb869249963758046555525d8d629fa8f2a12fa539032e27d6eb75e08e66973d6f2f8d0735797df6da1a69')
|
||||||
sha512sums_aarch64=('bf0c958721de1a13ca814d91bf74cbaaebe458198cba14b96b95fb1eeb72a1b901c8d3d00ea4c18ddff0d10d9ef6504a17a4caa345917412108df4787add61fd')
|
sha512sums_aarch64=('823913d64e757223826301481d92a866bcf66026d4eb869249963758046555525d8d629fa8f2a12fa539032e27d6eb75e08e66973d6f2f8d0735797df6da1a69')
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
|
|
||||||
tar xf rpass-"$pkgver".tar.xz -C "${pkgdir}"
|
tar xf sshyp-"$pkgver".tar.xz -C "${pkgdir}"
|
||||||
chown -R "$USER" ${pkgdir}/var/lib/rpass
|
chown -R "$USER" ${pkgdir}/var/lib/sshyp
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
# TODO use partition command instead of split for separating paths
|
# TODO use partition command instead of split for separating paths
|
||||||
# TODO use classes!
|
# TODO use classes!
|
||||||
|
|
||||||
# sshync 2021.11.04.unreleased4
|
# sshync 2021.11.05.unreleased5
|
||||||
# sshync was created to solve a problem with rpass/sshyp, and as such, sshync will be bundled with sshyp until it is
|
# sshync was created to solve a problem with rpass/sshyp, and as such, sshync will be bundled with sshyp until it is
|
||||||
# polished enough for a standalone release
|
# polished enough for a standalone release
|
||||||
|
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ if argument == 'version' or argument == '-v':
|
|||||||
print('/ /')
|
print('/ /')
|
||||||
print('/ sshyp Copyright (C) 2021 Randall Winkhart /')
|
print('/ sshyp Copyright (C) 2021 Randall Winkhart /')
|
||||||
print('/ /')
|
print('/ /')
|
||||||
print('/ Version 2021.11.04.fr1 /')
|
print('/ Version 2021.11.05.fr1 /')
|
||||||
print('/ The sshync Update /')
|
print('/ The sshync Update /')
|
||||||
print('/ /')
|
print('/ /')
|
||||||
print('////////////////////////////////////////////////////////\n')
|
print('////////////////////////////////////////////////////////\n')
|
||||||
@@ -189,7 +189,7 @@ if argument == 'config':
|
|||||||
open("/var/lib/sshyp/sshyp-device", 'w').write(devicetype)
|
open("/var/lib/sshyp/sshyp-device", 'w').write(devicetype)
|
||||||
sshync.make_profile('/var/lib/sshyp/sshyp.sshync', '/home/' + environ.get('USER') + '/.password-pasture/',
|
sshync.make_profile('/var/lib/sshyp/sshyp.sshync', '/home/' + environ.get('USER') + '/.password-pasture/',
|
||||||
directoryssh, '/home/' + environ.get('USER') + '/.ssh/sshyp', ip, port, usernamessh)
|
directoryssh, '/home/' + environ.get('USER') + '/.ssh/sshyp', ip, port, usernamessh)
|
||||||
print('\nConfiguration complete!\n')
|
print('Configuration complete!\n')
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print('\n\nConfiguration cancelled.\n')
|
print('\n\nConfiguration cancelled.\n')
|
||||||
exit()
|
exit()
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
sshyp 2021.11.01.fr1
|
sshyp 2021.11.05.fr1
|
||||||
|
|
||||||
First public release of sshyp.
|
First public release of sshyp.
|
||||||
|
|
||||||
@@ -16,6 +16,8 @@ New features:
|
|||||||
Changes:
|
Changes:
|
||||||
|
|
||||||
- branding has been updated to reflect new project name and goals
|
- branding has been updated to reflect new project name and goals
|
||||||
|
- custom directories, custom ssh keys, and offline only mode are removed (may be temporary)
|
||||||
|
^ the configuration wizard is being re-written in the next major update
|
||||||
|
|
||||||
Planned for next update (The Fluffy Update):
|
Planned for next update (The Fluffy Update):
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
sshyp 2021.11.01.fr1
|
sshyp 2021.11.05.fr1
|
||||||
|
|
||||||
First public release of sshyp.
|
First public release of sshyp.
|
||||||
|
|
||||||
@@ -15,12 +15,7 @@ Changes:
|
|||||||
|
|
||||||
- branding has been updated to reflect new project name and goals
|
- branding has been updated to reflect new project name and goals
|
||||||
- custom directories, custom ssh keys, and offline only mode are removed (may be temporary)
|
- custom directories, custom ssh keys, and offline only mode are removed (may be temporary)
|
||||||
- server installation makes copy of sshync.py in home directory
|
^ the configuration wizard is being re-written in the next major update
|
||||||
|
|
||||||
Bugs to fix!!::
|
|
||||||
*error when syncing with no files in remote directory
|
|
||||||
*config warning not disappearing when using server config
|
|
||||||
*directory not generating with server config
|
|
||||||
|
|
||||||
Planned for next update (The Fluffy Update):
|
Planned for next update (The Fluffy Update):
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user