passwordsafe-linux Mailing List for Password Safe (Page 2)
Popular easy-to-use and secure password manager
Brought to you by:
ronys
You can subscribe to this list here.
2011 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2012 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(4) |
Nov
|
Dec
(2) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(9) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
(2) |
Dec
|
2014 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(2) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
(4) |
Apr
(13) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2019 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(11) |
Aug
|
Sep
|
Oct
(8) |
Nov
|
Dec
|
2023 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2024 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: JP V. <jp...@jp...> - 2019-01-05 02:51:20
|
On 1/2/19 10:29 AM, pwsafe.org wrote: > PasswordSafe Linux 1.07 Beta is formally released. > > Packages for Debian, Ubuntu and Fedora may be downloaded from > https://github.com/pwsafe/pwsafe/releases/tag/1.07BETA > or > https://sourceforge.net/projects/passwordsafe/files/Linux-BETA/1.07BETA/ > > Let me know if you need a build for another distro, and I'll see what I > can do. It looks like at least passwordsafe-ubuntu18-1.07.0-BETA.amd64.deb has missing deps for libcurl.so.4 and locales (which I found out doing the Docker build below). I've still got some Mint 17 which is based on Ubuntu 14.04/Trusty...but never mind, I just noticed the EoL date is 2019-04. Sigh. I'll get those updated, Real Soon Now. Real Soon. That said, what about a Snap? https://en.wikipedia.org/wiki/Snappy_(package_manager) https://github.com/snapcore/snapcraft https://docs.snapcraft.io/creating-a-snap/6799 https://docs.snapcraft.io/pre-built-apps/6739 https://snapcraft.io/ And/or a Docker container? The Snap is probably a better way to go because (GUI) app dependencies & packaging is exactly why it exists, but I'm playing with Docker at the moment, so... This 'Dockerfile' builds and works! More or less. I haven't tested it much yet and I doubt the system tray will work. There won't be an icon outside of the container either. Note this is my very first Dockerfile and is the result of reading 2 books and about 3 hours of messing around, so you have been warned. My MTA is going to mess up line-breaks too... ---- # See: https://hub.docker.com/_/debian and https://hub.docker.com/_/ubuntu FROM ubuntu:18.04 # Build with: sudo docker build -t passwordsafe . # --or-- sudo docker build -t passwordsafe:1.07BETA . # Run with: sudo docker run --net=host --env="DISPLAY" --volume="$HOME/.Xauthority:/root/.Xauthority:rw" --volume="$HOME/.pwsafe:/root/.pwsafe:rw" passwordsafe LABEL "maintainer"="The Passwordsafe Project <Pas...@li...>" # Install deps for PWSafe (LOTS and LOTS!) # 0 upgraded, 173 newly installed, 0 to remove and 0 not upgraded. # Need to get 59.9 MB of archives. # After this operation, 363 MB of additional disk space will be used. # See https://docs.docker.com/develop/develop-images/dockerfile_best-practices#apt-get RUN apt-get update \ && apt-get install -qy libwxgtk3.0-0v5 libxtst6 libxerces-c3.2 libykpers-1-1 libqrencode3 libcurl4 locales \ && rm -rf /var/lib/apt/lists/* # Set the locale, per http://jaredmarkell.com/docker-and-locales/ RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV LANGUAGE en_US:en ENV LC_ALL en_US.UTF-8 # Avoid: (pwsafe:8): Gtk-WARNING **: *: Attempting to set the permissions of `/root/.local/share', but failed: No such file or directory RUN mkdir -p /root/.local/share # This is here to leave everything above UNCHANGED as much as possible # to allow layer caching to work at build time! ARG deb_file=passwordsafe-ubuntu18-1.07.0-BETA.amd64.deb LABEL "pwsafe"="$deb_file" ADD https://github.com/pwsafe/pwsafe/releases/download/1.07BETA/$deb_file \ /tmp/$deb_file RUN dpkg -i /tmp/$deb_file && rm /tmp/$deb_file CMD /usr/bin/pwsafe ---- A non-cached build that actually has to do the APT installs takes about 5 mins on my workstation, most of which is `apt-get` "Setting up...". Build: ---- [jp@ringo:T19:L1:C535:J0:2019-01-04_20:52:42_EST] /home/jp/working/docker/passwordsafe$ time sudo docker build -t passwordsafe:1.07BETA . Sending build context to Docker daemon 3.584kB Step 1/13 : FROM ubuntu:18.04 ---> 1d9c17228a9e Step 2/13 : LABEL "maintainer"="The Passwordsafe Project <Pas...@li...>" ---> Using cache ---> 7740484d49d6 Step 3/13 : RUN apt-get update && apt-get install -qy libwxgtk3.0-0v5 libxtst6 libxerces-c3.2 libykpers-1-1 libqrencode3 libcurl4 locales && rm -rf /var/lib/apt/lists/* ---> Using cache ---> a27408669b39 Step 4/13 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> 5a77b0e1353a Step 5/13 : ENV LANG en_US.UTF-8 ---> Using cache ---> 2f130971ca1f Step 6/13 : ENV LANGUAGE en_US:en ---> Using cache ---> 5e3b97476bcb Step 7/13 : ENV LC_ALL en_US.UTF-8 ---> Using cache ---> 3fab6d434cb1 Step 8/13 : RUN mkdir -p /root/.local/share ---> Using cache ---> 853a2a59033b Step 9/13 : ARG deb_file=passwordsafe-ubuntu18-1.07.0-BETA.amd64.deb ---> Using cache ---> b8c13697e68e Step 10/13 : LABEL "pwsafe"="$deb_file" ---> Using cache ---> a04a7de3ab67 Step 11/13 : ADD https://github.com/pwsafe/pwsafe/releases/download/1.07BETA/$deb_file /tmp/$deb_file Downloading 11.26MB/11.26MB ---> Using cache ---> d75d25d248ca Step 12/13 : RUN dpkg -i /tmp/$deb_file && rm /tmp/$deb_file ---> Using cache ---> 5d88cddbe9b4 Step 13/13 : CMD /usr/bin/pwsafe ---> Using cache ---> 00b895e642f0 Successfully built 00b895e642f0 Successfully tagged passwordsafe:1.07BETA real 0m3.823s user 0m0.120s sys 0m0.040 ---- Here is how to run it. It works, but is a tad ugly, I assume due to default GTK themes: ---- [jp@ringo:T19:L1:C526:J0:2019-01-04_20:07:03_EST] /home/jp/working/docker/passwordsafe$ sudo docker run --net=host --env="DISPLAY" --volume="$HOME/.Xauthority:/root/.Xauthority:rw" --volume="$HOME/.pwsafe:/root/.pwsafe:rw" passwordsafe ---- The image is not small because of the large amount of stuff that gets pulled in to meet the deps: ---- [jp@ringo:T19:L1:C537:J0:2019-01-04_20:55:03_EST] /home/jp/working/docker/passwordsafe$ sudo docker image list REPOSITORY TAG IMAGE ID CREATED SIZE passwordsafe 1.07BETA 00b895e642f0 2 minutes ago 359MB passwordsafe latest 00b895e642f0 2 minutes ago 359MB <none> <none> 852d5e907158 29 minutes ago 359MB <none> <none> 9d5272a16c46 About an hour ago 359MB ... ubuntu 18.04 1d9c17228a9e 7 days ago 86.7MB ---- Thanks, JP -- ------------------------------------------------------------------- JP Vossen, CISSP | http://www.jpsdomain.org/ | http://bashcookbook.com/ |
From: pwsafe.org <ro...@pw...> - 2019-01-02 15:30:17
|
Hi, PasswordSafe Linux 1.07 Beta is formally released. Packages for Debian, Ubuntu and Fedora may be downloaded from https://github.com/pwsafe/pwsafe/releases/tag/1.07BETA or https://sourceforge.net/projects/passwordsafe/files/Linux-BETA/1.07BETA/ Let me know if you need a build for another distro, and I'll see what I can do. Thanks to Rafael, Sauravg, pm_kan, and dskrvk for their contributions, and to all who submitted bug reports, suggestions and the occasional donation. Happy 2019 to all. Rony |
From: Todd L. <ut...@em...> - 2018-09-22 15:14:21
|
We've used Password Safe for years, but we just came through a hurricane where we lost power for several days. With all our passwords on computers at home without power, we were hard pressed to to do online stuff from other locations without those credentials. Sure would have been handy to have printed them out in advance. Printing in the Linux version of Password Safe just isn't there. But you can export as csv or xml. Turning those exports into a legible printout is still a bit of work though. To that end, I created an xsl stylesheet for converting exported xml into html that could be loaded into LibreOffice-writer, set to 3 columns, and printed for emergency use, like after hurricanes. I've attached my pwsafe.xsl. This is my first project using XSLT from scratch. I'd appreciate any constructive criticism you might have. -- Todd |
From: Peter Hillier-B. <ph...@hb...> - 2018-04-18 16:50:09
|
From: Bill B. <de...@bl...> - 2017-11-01 21:21:12
|
On Wed, Nov 01, 2017 at 09:47:06PM +0100, DJC wrote: > > The Linux version is still in beta and doesn't yet have feature parity > > with the Windows version. > > I just filed a feature request asking for flattened list view to be sorted > by default on title, and sortable ascending or descending on any column. > > It's quite clumsy not to be able to browse flattened list view easily. > Agreed. That functionality definitely needs to be there. Thanks for reporting the issue! Bill |
From: DJC <dj...@re...> - 2017-11-01 20:47:16
|
> The Linux version is still in beta and doesn't yet have feature parity > with the Windows version. I just filed a feature request asking for flattened list view to be sorted by default on title, and sortable ascending or descending on any column. It's quite clumsy not to be able to browse flattened list view easily. djc |
From: Bill B. <de...@bl...> - 2017-11-01 18:28:26
|
The Linux version is still in beta and doesn't yet have feature parity with the Windows version. I think (someone correct me if I'm wrong) that this is one of the features missing. On Wed, Nov 01, 2017 at 10:17:05AM +0100, DJC wrote: > In flattened list view, entries aren't sorted by title -- or anything else > that I can see -- which should be the default for that view, it seems to me, > as in the Windows version. > > Have I missed something? How does one sort entries by title in flattened > list view? And configure that as the default behavior for that view? > > djc > > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Passwordsafe-linux mailing list > Pas...@li... > https://lists.sourceforge.net/lists/listinfo/passwordsafe-linux |
From: DJC <dj...@re...> - 2017-11-01 09:34:13
|
In flattened list view, entries aren't sorted by title -- or anything else that I can see -- which should be the default for that view, it seems to me, as in the Windows version. Have I missed something? How does one sort entries by title in flattened list view? And configure that as the default behavior for that view? djc |
From: Bill B. <de...@bl...> - 2017-10-31 21:36:07
|
If you don't mind an older version, 0.98 should be in the 16.04 repository already. If you want something newer, then newer versions of Ubuntu have 1.00. 1.03 just hit Debian testing, so I expect it will be synced to Ubuntu soon. Otherwise, yes, you'll need to compile it yourself. On Tue, Oct 31, 2017 at 03:19:27PM +0000, Drew Einhorn wrote: > I don't see anything ready made. > > Would it simply be a matter of compiling the source on a Pi3 running ubuntuMATE > 16.04.2? Or, is there more to it than that? > -- > I don't remember, I don't recall > I got no memory of anything at all > -- Peter Gabriel > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Passwordsafe-linux mailing list > Pas...@li... > https://lists.sourceforge.net/lists/listinfo/passwordsafe-linux |
From: Drew E. <dre...@gm...> - 2017-10-31 15:19:47
|
I don't see anything ready made. Would it simply be a matter of compiling the source on a Pi3 running ubuntuMATE 16.04.2? Or, is there more to it than that? -- I don't remember, I don't recall I got no memory of anything at all -- Peter Gabriel |
From: Bill B. <de...@bl...> - 2017-07-22 04:40:49
|
On Sat, Jul 22, 2017 at 12:35:05AM +0000, Marco A. Parillo via Passwordsafe-linux wrote: > webkitgtk2 (a package required by passwordsafe) was 'demoted' to the AUR after > the last Manjaro stable update. Building it in my VM was taking hours before I > gave up. As far as I know, passwordsafe doesn't depend on webkitgtk, at least not directly. I think the issue you're seeing is that passwordsafe depends on wxgtk, and the version of wxgtk you're trying to use depends on webkitgtk. According to [1], wxgtk in Arch was updated to deal with webkitgtk getting dropped, so I think you just need to use the latest version of the appropriate wxgtk package from Arch, or wait for it to appear in Manjaro, or whatever that process is (sorry, I'm not that familiar with Arch or Manjaro). [1] https://git.archlinux.org/svntogit/packages.git/log/trunk?h=packages/wxgtk |
From: Marco A. P. <mpa...@ya...> - 2017-07-22 00:35:12
|
webkitgtk2 (a package required by passwordsafe) was 'demoted' to the AUR after the last Manjaro stable update. Building it in my VM was taking hours before I gave up. It was removed from Arch (https://lists.archlinux.org/pipermail/arch-dev-public/2017-June/028900.html). From that e-mail: webkitgtk{,2} has many CVEs[1][2], and was replaced by webkit2gtk. The lastapplication which still use it is GNUCash, which is still maintained byupstream, but unlikely to get ported to gtk3 soon, porting is not startedyet.[3] Packages to be removed:- freevo- gambas3-gb-db-sqlite2- gnucash- goffice0.8- kaa-imlib2- python2-beautifulsoup3- python2-pysqlite-legacy- sqlite2- webkitgtk- webkitgtk2 Packages that need to be rebuilt:- gambas3- libdbi-drivers- python-lxml- wxgtk (already in testing)- wxpython (already in community-testing) Is there any objections? [1] https://security.archlinux.org/AVG-171[2] https://security.archlinux.org/AVG-234[3] Bug 751635 – depends on deprecated libwebkitgtk-1.0-0 | | | Bug 751635 – depends on deprecated libwebkitgtk-1.0-0 | | | |
From: Reynir B. <re...@gm...> - 2017-04-18 13:25:13
|
Hi, I saw there's a 1.02BETA version of the linux build, but I cannot find any release announcement anywhere. Is there a release announcement or changelog somewhere? - Reynir |
From: Drew E. <dre...@gm...> - 2016-12-30 03:18:48
|
Thanks for the suggestion, 1.0 didn't work 0.94 seems to work, at least it starts up without an error. Will try that version for a while and see how it goes. Linux 12.2 was released in Apr 2014. pwsafe 0.94 was released on Dec 13, 2014 and is currently averaging over 100 downloads/week. Everything before 1.0 and after 0.94 is getting less than 10 downloads/week. So, they don't appear to be good candidates. Anyway that's how I picked a version to try. Hope this is helpful for other for folks facing trying to get something that works on a vintage platform. On Thu, Dec 29, 2016 at 1:29 PM Bill Blough <de...@bl...> wrote: > Looking at the dependencies in the package control files, they're all > pretty much the same up until 1.01. So try 1.0 and see what happens. > > > On Thu, Dec 29, 2016 at 02:54:33PM +0000, Drew Einhorn wrote: > > D'Oh!!! > > > > I was confused and installed 1.01 on my LinuxMint 17.2 box by mistake. > > I thought I was installing on the LinuxMint 18 laptop. Of course, it > failed > > with a different program/library incompatibility. Of course, the > solution is to > > go back to an earlier version. But, there's a lot of them to try. I'm > guessing > > I need to uninstall the currently installed version of pwsafe to be sure > the > > next version installs correctly. But installing with dpkg -i file.deb, > seems to > > work. It's no big deal if you know the right version to install. If you > are > > trying a lot of different versions adding an uninstall step makes it > take about > > twice as long. > > > > Running pwsafe from the command line results in: > > > > $ pwsafe > > pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.8' > not > > found (required by pwsafe) > > pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version > `GLIBCXX_3.4.20' not > > found (required by pwsafe) > > pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version > `GLIBCXX_3.4.21' not > > found (required by pwsafe) > > > > The laptop and pwsafe were installed many months, probably a couple of > years > > ago. > > > > What is the most recent version of pwsafe compatible with 17.2? > > > > > > > > On Wed, Dec 28, 2016 at 12:26 PM Charles Brockman < > cbr...@us...> > > wrote: > > > > > > I have downloaded and installed the > > passwordsafe-linuxmint-1.01.0-BETA.amd64.deb package on both of my > > computers. It works well. Thank you, Rony. > > > > > ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ > > > > [bugs:#1379] Linux Mint 1.00 PasswordSafe Does Not Start > > > > Status: closed > > Group: v1.0_(example) > > Labels: Linux Mint > > Created: Sat Oct 29, 2016 06:52 PM UTC by Charles Brockman > > > > Last Updated: Wed Dec 28, 2016 07:11 PM UTC > > Owner: nobody > > Attachments: > > > > □ passwordsafe bug report.txt (465 Bytes; text/plain) > > > > I have installed PasswordSafe using the > > passwordsafe-linuxmint-1.00.0-BETA.amd64.deb package on a Lenovo > Thinkpad > > running Linux Mint 18 Cinnamon 64-bit. PasswordSafe appears in the > menu but > > will not start. In the System Monitor, pwsafe does not appear. > > > > I started and traced the program from a root terminal with this > command: > > strace -o pwsafetraceout.txt pwsafe > > > > I have attached the output file to this message. > > > > > ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ > > > > Sent from sourceforge.net because you indicated interest in https:// > > sourceforge.net/p/passwordsafe/bugs/1379/ > > > > To unsubscribe from further messages, please visit > https://sourceforge.net/ > > auth/subscriptions/ > > > > -- > > I don't remember, I don't recall > > I got no memory of anything at all > > -- Peter Gabriel > > > > ------------------------------------------------------------------------------ > > Check out the vibrant tech community on one of the world's most > > engaging tech sites, SlashDot.org! http://sdm.link/slashdot > > > _______________________________________________ > > Passwordsafe-linux mailing list > > Pas...@li... > > https://lists.sourceforge.net/lists/listinfo/passwordsafe-linux > > -- I don't remember, I don't recall I got no memory of anything at all -- Peter Gabriel |
From: Bill B. <de...@bl...> - 2016-12-29 20:57:08
|
Looking at the dependencies in the package control files, they're all pretty much the same up until 1.01. So try 1.0 and see what happens. On Thu, Dec 29, 2016 at 02:54:33PM +0000, Drew Einhorn wrote: > D'Oh!!! > > I was confused and installed 1.01 on my LinuxMint 17.2 box by mistake. > I thought I was installing on the LinuxMint 18 laptop. Of course, it failed > with a different program/library incompatibility. Of course, the solution is to > go back to an earlier version. But, there's a lot of them to try. I'm guessing > I need to uninstall the currently installed version of pwsafe to be sure the > next version installs correctly. But installing with dpkg -i file.deb, seems to > work. It's no big deal if you know the right version to install. If you are > trying a lot of different versions adding an uninstall step makes it take about > twice as long. > > Running pwsafe from the command line results in: > > $ pwsafe > pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.8' not > found (required by pwsafe) > pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.20' not > found (required by pwsafe) > pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.21' not > found (required by pwsafe) > > The laptop and pwsafe were installed many months, probably a couple of years > ago. > > What is the most recent version of pwsafe compatible with 17.2? > > > > On Wed, Dec 28, 2016 at 12:26 PM Charles Brockman <cbr...@us...> > wrote: > > > I have downloaded and installed the > passwordsafe-linuxmint-1.01.0-BETA.amd64.deb package on both of my > computers. It works well. Thank you, Rony. > > ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ > > [bugs:#1379] Linux Mint 1.00 PasswordSafe Does Not Start > > Status: closed > Group: v1.0_(example) > Labels: Linux Mint > Created: Sat Oct 29, 2016 06:52 PM UTC by Charles Brockman > > Last Updated: Wed Dec 28, 2016 07:11 PM UTC > Owner: nobody > Attachments: > > □ passwordsafe bug report.txt (465 Bytes; text/plain) > > I have installed PasswordSafe using the > passwordsafe-linuxmint-1.00.0-BETA.amd64.deb package on a Lenovo Thinkpad > running Linux Mint 18 Cinnamon 64-bit. PasswordSafe appears in the menu but > will not start. In the System Monitor, pwsafe does not appear. > > I started and traced the program from a root terminal with this command: > strace -o pwsafetraceout.txt pwsafe > > I have attached the output file to this message. > > ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ > > Sent from sourceforge.net because you indicated interest in https:// > sourceforge.net/p/passwordsafe/bugs/1379/ > > To unsubscribe from further messages, please visit https://sourceforge.net/ > auth/subscriptions/ > > -- > I don't remember, I don't recall > I got no memory of anything at all > -- Peter Gabriel > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, SlashDot.org! http://sdm.link/slashdot > _______________________________________________ > Passwordsafe-linux mailing list > Pas...@li... > https://lists.sourceforge.net/lists/listinfo/passwordsafe-linux |
From: Drew E. <dre...@gm...> - 2016-12-29 14:54:51
|
D'Oh!!! I was confused and installed 1.01 on my LinuxMint 17.2 box by mistake. I thought I was installing on the LinuxMint 18 laptop. Of course, it failed with a different program/library incompatibility. Of course, the solution is to go back to an earlier version. But, there's a lot of them to try. I'm guessing I need to uninstall the currently installed version of pwsafe to be sure the next version installs correctly. But installing with dpkg -i file.deb, seems to work. It's no big deal if you know the right version to install. If you are trying a lot of different versions adding an uninstall step makes it take about twice as long. Running pwsafe from the command line results in: $ pwsafe pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by pwsafe) pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by pwsafe) pwsafe: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by pwsafe) The laptop and pwsafe were installed many months, probably a couple of years ago. What is the most recent version of pwsafe compatible with 17.2? On Wed, Dec 28, 2016 at 12:26 PM Charles Brockman <cbr...@us...> wrote: > I have downloaded and installed the > passwordsafe-linuxmint-1.01.0-BETA.amd64.deb package on both of my > computers. It works well. Thank you, Rony. > ------------------------------ > > * [bugs:#1379] <https://sourceforge.net/p/passwordsafe/bugs/1379/> Linux > Mint 1.00 PasswordSafe Does Not Start* > > *Status:* closed > *Group:* v1.0_(example) > *Labels:* Linux Mint > *Created:* Sat Oct 29, 2016 06:52 PM UTC by Charles Brockman > > *Last Updated:* Wed Dec 28, 2016 07:11 PM UTC > *Owner:* nobody > *Attachments:* > > - passwordsafe bug report.txt > <https://sourceforge.net/p/passwordsafe/bugs/1379/attachment/passwordsafe%20bug%20report.txt> > (465 Bytes; text/plain) > > I have installed PasswordSafe using the > *passwordsafe-linuxmint-1.00.0-BETA.amd64.deb* package on a Lenovo > Thinkpad running Linux Mint 18 Cinnamon 64-bit. PasswordSafe appears in the > menu but will not start. In the System Monitor, pwsafe does not appear. > > I started and traced the program from a root terminal with this command: *strace > -o pwsafetraceout.txt pwsafe* > > I have attached the output file to this message. > ------------------------------ > > Sent from sourceforge.net because you indicated interest in > https://sourceforge.net/p/passwordsafe/bugs/1379/ > > To unsubscribe from further messages, please visit > https://sourceforge.net/auth/subscriptions/ > -- I don't remember, I don't recall I got no memory of anything at all -- Peter Gabriel |
From: pwsafe.org <ro...@pw...> - 2016-12-28 19:48:59
|
1.01 builds are out for Linux Debian, Ubuntu, Mint and Fedora. https://github.com/pwsafe/pwsafe/releases/tag/1.01BETA https://sourceforge.net/projects/passwordsafe/files/Linux-BETA/1.01/ <https://sourceforge.net/projects/passwordsafe/files/Linux-BETA/1.01/> L <https://sourceforge.net/projects/passwordsafe/files/Linux-BETA/1.01/>et me know if there's interest for a specific distro (best via a Feature Request <https://sourceforge.net/p/passwordsafe/feature-requests/new/>). Don't forget to specify the architecture (32 or 64 bit). Cheers, Rony On Tue, Dec 27, 2016 at 7:38 AM, Drew Einhorn <dre...@gm...> wrote: > I just downloaded and installed the passwordsafe-linuxmint-1.00.0-BETA.amd64.deb > on my LinuxMint 18 box. > > When I tried running pwsafe I got the attached result. > > Last time I looked pwsafe was not in the LinuxMint repositories. But, this > time I looked again and found an older version in the repositories that is > compatible: 0.98.1+dfsg-3 > > So, I've worked around the problem. > > But, I thought reporting it would help you build a version that runs on > all LinuxMint variants. > -- > I don't remember, I don't recall > I got no memory of anything at all > -- Peter Gabriel > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, SlashDot.org! http://sdm.link/slashdot > _______________________________________________ > Passwordsafe-linux mailing list > Pas...@li... > https://lists.sourceforge.net/lists/listinfo/passwordsafe-linux > > |
From: Drew E. <dre...@gm...> - 2016-12-27 05:38:40
|
I just downloaded and installed the passwordsafe-linuxmint-1.00.0-BETA.amd64.deb on my LinuxMint 18 box. When I tried running pwsafe I got the attached result. Last time I looked pwsafe was not in the LinuxMint repositories. But, this time I looked again and found an older version in the repositories that is compatible: 0.98.1+dfsg-3 So, I've worked around the problem. But, I thought reporting it would help you build a version that runs on all LinuxMint variants. -- I don't remember, I don't recall I got no memory of anything at all -- Peter Gabriel |
From: Bill B. <de...@bl...> - 2016-04-03 18:53:22
|
On Sun, Apr 03, 2016 at 08:32:58PM +0300, pwsafe.org wrote: > Will look into the differences in the packages in detail later. Currently I'm > working on a broken regression test in the 32bit Linux builds (V4 format > related, so does not affect any V3 databases). Since you found the gmtime64_r issue about the same time I did, I expect the regression you're hunting is the same one I was trying to troubleshoot for the Debian builds. I have a workaround in place for the Debian builds, but I was going to post something to the dev list about it and try to fix it myself. I haven't had a chance to do that yet, though. So, if you already know what the problem is, then I suppose you're working on fixing it. If you don't already know what the problem is, I'd be happy to share my findings if it will save you some time. Regards, Bill |
From: pwsafe.org <ro...@pw...> - 2016-04-03 17:33:14
|
Hi JP, Some clarification seems in order: 1. For Linux, I'm moving from the toplevel Makefile to Cmake for the build and packaging process. This explains many of the differences in the package contents and naming, As I'm still getting up to speed on cmake. 2. As to the git repository: As SourceForge has suffered both in reputation and reliability, I've switch the main git repository for the project to github (https://github.com/pwsafe/pwsafe), with SF being a less often updated backup repository. For now I'm hosting binaries/packages on both SF and github. Will look into the differences in the packages in detail later. Currently I'm working on a broken regression test in the 32bit Linux builds (V4 format related, so does not affect any V3 databases). Cheers, Rony On Sat, Apr 2, 2016 at 8:54 PM, JP Vossen <jp...@jp...> wrote: > Hi Rony, > > Thanks for the 32 bit packages! passwordsafe-ubuntu-0.98.1BETA.i686.deb > installed and ran, but... > > On every Mint 17 (64-bit) and Ubuntu 14.04 LTS (32-bit) machine I've > installed 0.98 on, the icon has disappeared from the GUI menu... When I > revert to 0.97 it works as expected. I can consistently and reproducibly > swap versions and see that behavior on at least 4 machines. So I've > reverted all my machines to 0.97 for now. Yet when I extract and compare > the files in 97 and 98, "pwsafe.desktop" is identical. > > Side note: I'm using Ansible and (now) removing both "passwordsafe" and > "pwsafe" before I copy the deb to tmp and "apt: > deb=/tmp/passwordsafe-ubuntu-{{ passwordsafe_version }}.{{ deb_arch }}.deb > state=present". > > In addition to the GUI issue, something is very different with the > packages themselves. I think the changes are in the deb control file(s) but > I'm not finding the smoking gun on github. The package changed from > "passwordsafe" to "pwsafe", the "Conflicts" line went away and the > description is truncated, as follows. Seems like something stuck on the > buildhosts? (This is also in the "[Passwordsafe-linux] 0.98.x beta vs > Ubuntu 15.10" thread.) > > And this is a long shot, but could the GUI menu problem there be that the > "name" has changed yet the pwsafe.desktop file hasn't? > > Steps to reproduce (want this in a Github bug?) > > $ wget ' > https://github.com/pwsafe/pwsafe/releases/download/0.97BETA/passwordsafe-ubuntu-0.97BETA.amd64.deb' > ' > https://github.com/pwsafe/pwsafe/releases/download/0.97BETA/passwordsafe-ubuntu-0.97BETA.i686.deb' > ' > https://github.com/pwsafe/pwsafe/releases/download/0.98.1BETA/passwordsafe-ubuntu-0.98.1BETA.amd64.deb' > ' > https://github.com/pwsafe/pwsafe/releases/download/0.98.1BETA/passwordsafe-ubuntu-0.98.1BETA.i686.deb > ' > > $ for file in *; do echo $file; dpkg -I $file \ > | egrep '^ (Package|Conflicts):'; done > > passwordsafe-ubuntu-0.97BETA.amd64.deb > Package: passwordsafe > Conflicts: pwsafe > passwordsafe-ubuntu-0.97BETA.i686.deb > Package: passwordsafe > Conflicts: pwsafe > passwordsafe-ubuntu-0.98.1BETA.amd64.deb > Package: pwsafe > passwordsafe-ubuntu-0.98.1BETA.i686.deb > Package: pwsafe > > > $ dpkg -I passwordsafe-ubuntu-0.97BETA.amd64.deb > new debian package, version 2.0. > [...] > Description: Portable version of popular password manager program > pwsafe is the Linux version of the popular Windows PasswordSafe > password manager. > . > Features: > - Compatible with 1.x, 2.x and 3.x versions of the database format. > - Uses wxWidgets for portability. > - Supported by the maintainers of the original Win32 program. See > https://pwsafe.org/ > > $ dpkg -I passwordsafe-ubuntu-0.98.1BETA.amd64.deb > new debian package, version 2.0. > [...] > Description: Password Safe is a password database utility. > > > $ dpkg -I passwordsafe-ubuntu-0.97BETA.amd64.deb > 97.txt > $ dpkg -I passwordsafe-ubuntu-0.98.1BETA.amd64.deb > 98.txt > $ diff -u 9{7,8}.txt > --- 97.txt 2016-04-02 12:23:02.526515044 -0400 > +++ 98.txt 2016-04-02 12:23:07.558300712 -0400 > @@ -1,24 +1,16 @@ > new debian package, version 2.0. > - size 3180436 bytes: control archive=743 bytes. > - 750 bytes, 19 lines control > - 232 bytes, 6 lines * postinst #!/bin/bash > + size 11153514 bytes: control archive=1336 bytes. > + 410 bytes, 11 lines control > + 2041 bytes, 28 lines md5sums > 158 bytes, 5 lines * prerm #!/bin/bash > - Package: passwordsafe > - Version: 0.97BETA > + Package: pwsafe > + Version: 0.98.1-BETA > Section: utils > Priority: optional > - Conflicts: pwsafe > Architecture: amd64 > - Installed-Size: 5000 > - Maintainer: Rony Shapiro <ro...@us...> > + Depends: libc6 (>= 2.7-18lenny4), libuuid1 (>= 1.41.3-1), libwxgtk3.0-0 > (>= 3.0.0-2), libxtst6 (>= 2:1.0.3-1), libxerces-c3.1 (>= 3.1.1-1+b1), > libykpers-1-1 (>= 1.3.2-1squeeze1) > Homepage: https://pwsafe.org/ > - Depends: libc6 (>= 2.11.1-0ubuntu7.2), libuuid1 (>= 2.17.2-0ubuntu1), > libwxgtk3.0-0 (>= 3.0.0-2), libxtst6 (>= 2:1.1.0-2), libxerces-c3.1 (>= > 3.1.0-1), libykpers-1-1 (>= 1.7.0-1) > - Description: Portable version of popular password manager program > - pwsafe is the Linux version of the popular Windows PasswordSafe > - password manager. > - . > - Features: > - - Compatible with 1.x, 2.x and 3.x versions of the database format. > - - Uses wxWidgets for portability. > - - Supported by the maintainers of the original Win32 program. See > - https://pwsafe.org/ > + Installed-Size: 13919 > + Maintainer: ro...@pw... > + Description: Password Safe is a password database utility. > + > > > $ mkdir 97 98 > $ dpkg -x ../passwordsafe-ubuntu-0.97BETA.amd64.deb 97 > $ dpkg -x ../passwordsafe-ubuntu-0.98.1BETA.amd64.deb 98 > $ diff -qr 97 98 > Files 97/usr/bin/pwsafe and 98/usr/bin/pwsafe differ > Only in 97/usr/share/doc/passwordsafe: README.txt > Only in 97/usr/share/doc/passwordsafe: ReleaseNotes.txt > Only in 98/usr/share/doc/passwordsafe: changelog.Debian > Only in 97/usr/share/doc/passwordsafe: changelog.Debian.gz > Only in 97/usr/share/doc/passwordsafe: changelog.gz > Only in 97/usr/share/doc/passwordsafe: copyright > Only in 98/usr/share/doc/passwordsafe/help: helpDE.zip > Files 97/usr/share/doc/passwordsafe/help/helpEN.zip and > 98/usr/share/doc/passwordsafe/help/helpEN.zip differ > Only in 98/usr/share/doc/passwordsafe/help: helpES.zip > Only in 98/usr/share/doc/passwordsafe/help: helpFR.zip > Only in 98/usr/share/doc/passwordsafe/help: helpPL.zip > Only in 98/usr/share/doc/passwordsafe/help: helpRU.zip > Only in 98/usr/share/doc/passwordsafe/help: helpZH.zip > Files 97/usr/share/locale/da/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/da/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/de/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/de/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/es/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/es/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/fr/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/fr/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/it/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/it/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/ko/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/ko/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/nl/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/nl/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/pl/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/pl/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/ru/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/ru/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/sv/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/sv/LC_MESSAGES/pwsafe.mo differ > Files 97/usr/share/locale/zh/LC_MESSAGES/pwsafe.mo and > 98/usr/share/locale/zh/LC_MESSAGES/pwsafe.mo differ > Only in 98/usr/share/man/man1: pwsafe.1 > Only in 97/usr/share/man/man1: pwsafe.1.gz > Files 97/usr/share/pwsafe/xml/KPV1_to_PWS.xslt and > 98/usr/share/pwsafe/xml/KPV1_to_PWS.xslt differ > Only in 98/usr/share/pwsafe/xml: KPV2_to_PWS.xslt > Files 97/usr/share/pwsafe/xml/pwsafe.xsl and > 98/usr/share/pwsafe/xml/pwsafe.xsl differ > Files 97/usr/share/pwsafe/xml/pwsafe_filter.xsd and > 98/usr/share/pwsafe/xml/pwsafe_filter.xsd differ > > > https://github.com/pwsafe/pwsafe/tree/master/install/deb master seems to > be correct and I do not find a tag or branch for "0.98.1BETA" there. > > SF says "git-repo-deprecated" yet in > https://sourceforge.net/p/passwordsafe/git-code/ci/fb4e023d37dee8fcf91b4735c3a67f286c1043bb/log/?path=/install/deb/control-ubuntu.amd64 > I *do* see the tag for "0.98.1BETA". So a) I'm quite confused about what > repo is what in general and b) I don't see the broken control file I've > shown above (as noted this is discussed in the "[Passwordsafe-linux] 0.98.x > beta vs Ubuntu 15.10" thread too. > > > On 04/01/2016 12:48 AM, pwsafe.org wrote: > >> Hi, >> >> I've just uploaded 32 bit debs for Debian 8 and Ubuntu 14.04.4 LTS to >> both the github and SF repos. >> >> Cheers, >> >> Rony >> >> On Thu, Mar 31, 2016 at 5:49 AM, JP Vossen <jp...@jp... >> <mailto:jp...@jp...>> wrote: >> >> On 03/26/2016 03:27 PM, JP Vossen wrote: >> > On 03/22/2016 02:49 PM, Bill Blough wrote: >> >> On Thu, Mar 10, 2016 at 04:05:24PM -0800, Bill Wohler wrote: >> >>> I would be delighted if someone could upload a Debian >> distribution. >> >>> Thanks! >> >> >> >> 0.98.1 was uploaded to Debian this morning. It's currently in >> >> incoming and >> >> should be available in unstable soon, and then in testing a few >> days >> >> after >> >> that. >> > >> > I can't find a passwordsafe-ubuntu-0.98.1BETA.i686.deb file in >> > >> https://sourceforge.net/projects/passwordsafe/files/Linux-BETA/0.98.1/, >> > did I miss an announcement or something? Everything I have that >> can be >> > 64-bit is, but I have an old 32-bit Atom Dell Mini9 running Ubuntu >> 14.04 >> > LTS... >> > >> > I want to say I can't be the only one stuck with an old 32-bit OS, >> but >> > if no one else has noticed or mentioned it...may I am? >> > >> > Clues? >> >> It also looks like the 0.98 package changed in some significant ways. >> I'm seeing: >> >> $ dpkg-query --list | grep '^i' | egrep -i 'safe' | awk '{OFS = "-"; >> print $2,$3}' >> ... >> passwordsafe-0.97BETA >> pwsafe-0.98.1-BETA >> >> $ sudo aptitude full-upgrade >> ... >> The following packages have unmet dependencies: >> passwordsafe : Conflicts: pwsafe but 0.98.1-BETA is installed. >> The following actions will resolve these dependencies: >> Remove the following packages: >> 1) passwordsafe >> >> >> And when I removed 0.97 on one computer, the GUI menu entries vanished >> from the menu and panel (Mint 17). I haven't had time to look deeper >> yet. 0.98 still works, but only when run from the command line. >> >> Some of this may be self-inflicted, since I rolled it out using >> Ansible >> by copying the .deb and doing: >> apt: deb=/tmp/passwordsafe-ubuntu-{{ passwordsafe_version >> }}.{{ >> deb_arch }}.deb state=present force=yes >> > > > > Later, > > JP > -- ------------------------------------------------------------------- > JP Vossen, CISSP | http://www.jpsdomain.org/ | http://bashcookbook.com/ > |
From: JP V. <jp...@jp...> - 2016-04-02 17:55:00
|
Hi Rony, Thanks for the 32 bit packages! passwordsafe-ubuntu-0.98.1BETA.i686.deb installed and ran, but... On every Mint 17 (64-bit) and Ubuntu 14.04 LTS (32-bit) machine I've installed 0.98 on, the icon has disappeared from the GUI menu... When I revert to 0.97 it works as expected. I can consistently and reproducibly swap versions and see that behavior on at least 4 machines. So I've reverted all my machines to 0.97 for now. Yet when I extract and compare the files in 97 and 98, "pwsafe.desktop" is identical. Side note: I'm using Ansible and (now) removing both "passwordsafe" and "pwsafe" before I copy the deb to tmp and "apt: deb=/tmp/passwordsafe-ubuntu-{{ passwordsafe_version }}.{{ deb_arch }}.deb state=present". In addition to the GUI issue, something is very different with the packages themselves. I think the changes are in the deb control file(s) but I'm not finding the smoking gun on github. The package changed from "passwordsafe" to "pwsafe", the "Conflicts" line went away and the description is truncated, as follows. Seems like something stuck on the buildhosts? (This is also in the "[Passwordsafe-linux] 0.98.x beta vs Ubuntu 15.10" thread.) And this is a long shot, but could the GUI menu problem there be that the "name" has changed yet the pwsafe.desktop file hasn't? Steps to reproduce (want this in a Github bug?) $ wget 'https://github.com/pwsafe/pwsafe/releases/download/0.97BETA/passwordsafe-ubuntu-0.97BETA.amd64.deb' 'https://github.com/pwsafe/pwsafe/releases/download/0.97BETA/passwordsafe-ubuntu-0.97BETA.i686.deb' 'https://github.com/pwsafe/pwsafe/releases/download/0.98.1BETA/passwordsafe-ubuntu-0.98.1BETA.amd64.deb' 'https://github.com/pwsafe/pwsafe/releases/download/0.98.1BETA/passwordsafe-ubuntu-0.98.1BETA.i686.deb' $ for file in *; do echo $file; dpkg -I $file \ | egrep '^ (Package|Conflicts):'; done passwordsafe-ubuntu-0.97BETA.amd64.deb Package: passwordsafe Conflicts: pwsafe passwordsafe-ubuntu-0.97BETA.i686.deb Package: passwordsafe Conflicts: pwsafe passwordsafe-ubuntu-0.98.1BETA.amd64.deb Package: pwsafe passwordsafe-ubuntu-0.98.1BETA.i686.deb Package: pwsafe $ dpkg -I passwordsafe-ubuntu-0.97BETA.amd64.deb new debian package, version 2.0. [...] Description: Portable version of popular password manager program pwsafe is the Linux version of the popular Windows PasswordSafe password manager. . Features: - Compatible with 1.x, 2.x and 3.x versions of the database format. - Uses wxWidgets for portability. - Supported by the maintainers of the original Win32 program. See https://pwsafe.org/ $ dpkg -I passwordsafe-ubuntu-0.98.1BETA.amd64.deb new debian package, version 2.0. [...] Description: Password Safe is a password database utility. $ dpkg -I passwordsafe-ubuntu-0.97BETA.amd64.deb > 97.txt $ dpkg -I passwordsafe-ubuntu-0.98.1BETA.amd64.deb > 98.txt $ diff -u 9{7,8}.txt --- 97.txt 2016-04-02 12:23:02.526515044 -0400 +++ 98.txt 2016-04-02 12:23:07.558300712 -0400 @@ -1,24 +1,16 @@ new debian package, version 2.0. - size 3180436 bytes: control archive=743 bytes. - 750 bytes, 19 lines control - 232 bytes, 6 lines * postinst #!/bin/bash + size 11153514 bytes: control archive=1336 bytes. + 410 bytes, 11 lines control + 2041 bytes, 28 lines md5sums 158 bytes, 5 lines * prerm #!/bin/bash - Package: passwordsafe - Version: 0.97BETA + Package: pwsafe + Version: 0.98.1-BETA Section: utils Priority: optional - Conflicts: pwsafe Architecture: amd64 - Installed-Size: 5000 - Maintainer: Rony Shapiro <ro...@us...> + Depends: libc6 (>= 2.7-18lenny4), libuuid1 (>= 1.41.3-1), libwxgtk3.0-0 (>= 3.0.0-2), libxtst6 (>= 2:1.0.3-1), libxerces-c3.1 (>= 3.1.1-1+b1), libykpers-1-1 (>= 1.3.2-1squeeze1) Homepage: https://pwsafe.org/ - Depends: libc6 (>= 2.11.1-0ubuntu7.2), libuuid1 (>= 2.17.2-0ubuntu1), libwxgtk3.0-0 (>= 3.0.0-2), libxtst6 (>= 2:1.1.0-2), libxerces-c3.1 (>= 3.1.0-1), libykpers-1-1 (>= 1.7.0-1) - Description: Portable version of popular password manager program - pwsafe is the Linux version of the popular Windows PasswordSafe - password manager. - . - Features: - - Compatible with 1.x, 2.x and 3.x versions of the database format. - - Uses wxWidgets for portability. - - Supported by the maintainers of the original Win32 program. See - https://pwsafe.org/ + Installed-Size: 13919 + Maintainer: ro...@pw... + Description: Password Safe is a password database utility. + $ mkdir 97 98 $ dpkg -x ../passwordsafe-ubuntu-0.97BETA.amd64.deb 97 $ dpkg -x ../passwordsafe-ubuntu-0.98.1BETA.amd64.deb 98 $ diff -qr 97 98 Files 97/usr/bin/pwsafe and 98/usr/bin/pwsafe differ Only in 97/usr/share/doc/passwordsafe: README.txt Only in 97/usr/share/doc/passwordsafe: ReleaseNotes.txt Only in 98/usr/share/doc/passwordsafe: changelog.Debian Only in 97/usr/share/doc/passwordsafe: changelog.Debian.gz Only in 97/usr/share/doc/passwordsafe: changelog.gz Only in 97/usr/share/doc/passwordsafe: copyright Only in 98/usr/share/doc/passwordsafe/help: helpDE.zip Files 97/usr/share/doc/passwordsafe/help/helpEN.zip and 98/usr/share/doc/passwordsafe/help/helpEN.zip differ Only in 98/usr/share/doc/passwordsafe/help: helpES.zip Only in 98/usr/share/doc/passwordsafe/help: helpFR.zip Only in 98/usr/share/doc/passwordsafe/help: helpPL.zip Only in 98/usr/share/doc/passwordsafe/help: helpRU.zip Only in 98/usr/share/doc/passwordsafe/help: helpZH.zip Files 97/usr/share/locale/da/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/da/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/de/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/de/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/es/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/es/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/fr/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/fr/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/it/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/it/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/ko/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/ko/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/nl/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/nl/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/pl/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/pl/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/ru/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/ru/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/sv/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/sv/LC_MESSAGES/pwsafe.mo differ Files 97/usr/share/locale/zh/LC_MESSAGES/pwsafe.mo and 98/usr/share/locale/zh/LC_MESSAGES/pwsafe.mo differ Only in 98/usr/share/man/man1: pwsafe.1 Only in 97/usr/share/man/man1: pwsafe.1.gz Files 97/usr/share/pwsafe/xml/KPV1_to_PWS.xslt and 98/usr/share/pwsafe/xml/KPV1_to_PWS.xslt differ Only in 98/usr/share/pwsafe/xml: KPV2_to_PWS.xslt Files 97/usr/share/pwsafe/xml/pwsafe.xsl and 98/usr/share/pwsafe/xml/pwsafe.xsl differ Files 97/usr/share/pwsafe/xml/pwsafe_filter.xsd and 98/usr/share/pwsafe/xml/pwsafe_filter.xsd differ https://github.com/pwsafe/pwsafe/tree/master/install/deb master seems to be correct and I do not find a tag or branch for "0.98.1BETA" there. SF says "git-repo-deprecated" yet in https://sourceforge.net/p/passwordsafe/git-code/ci/fb4e023d37dee8fcf91b4735c3a67f286c1043bb/log/?path=/install/deb/control-ubuntu.amd64 I *do* see the tag for "0.98.1BETA". So a) I'm quite confused about what repo is what in general and b) I don't see the broken control file I've shown above (as noted this is discussed in the "[Passwordsafe-linux] 0.98.x beta vs Ubuntu 15.10" thread too. On 04/01/2016 12:48 AM, pwsafe.org wrote: > Hi, > > I've just uploaded 32 bit debs for Debian 8 and Ubuntu 14.04.4 LTS to > both the github and SF repos. > > Cheers, > > Rony > > On Thu, Mar 31, 2016 at 5:49 AM, JP Vossen <jp...@jp... > <mailto:jp...@jp...>> wrote: > > On 03/26/2016 03:27 PM, JP Vossen wrote: > > On 03/22/2016 02:49 PM, Bill Blough wrote: > >> On Thu, Mar 10, 2016 at 04:05:24PM -0800, Bill Wohler wrote: > >>> I would be delighted if someone could upload a Debian distribution. > >>> Thanks! > >> > >> 0.98.1 was uploaded to Debian this morning. It's currently in > >> incoming and > >> should be available in unstable soon, and then in testing a few days > >> after > >> that. > > > > I can't find a passwordsafe-ubuntu-0.98.1BETA.i686.deb file in > >https://sourceforge.net/projects/passwordsafe/files/Linux-BETA/0.98.1/, > > did I miss an announcement or something? Everything I have that can be > > 64-bit is, but I have an old 32-bit Atom Dell Mini9 running Ubuntu 14.04 > > LTS... > > > > I want to say I can't be the only one stuck with an old 32-bit OS, but > > if no one else has noticed or mentioned it...may I am? > > > > Clues? > > It also looks like the 0.98 package changed in some significant ways. > I'm seeing: > > $ dpkg-query --list | grep '^i' | egrep -i 'safe' | awk '{OFS = "-"; > print $2,$3}' > ... > passwordsafe-0.97BETA > pwsafe-0.98.1-BETA > > $ sudo aptitude full-upgrade > ... > The following packages have unmet dependencies: > passwordsafe : Conflicts: pwsafe but 0.98.1-BETA is installed. > The following actions will resolve these dependencies: > Remove the following packages: > 1) passwordsafe > > > And when I removed 0.97 on one computer, the GUI menu entries vanished > from the menu and panel (Mint 17). I haven't had time to look deeper > yet. 0.98 still works, but only when run from the command line. > > Some of this may be self-inflicted, since I rolled it out using Ansible > by copying the .deb and doing: > apt: deb=/tmp/passwordsafe-ubuntu-{{ passwordsafe_version }}.{{ > deb_arch }}.deb state=present force=yes Later, JP -- ------------------------------------------------------------------- JP Vossen, CISSP | http://www.jpsdomain.org/ | http://bashcookbook.com/ |
From: Bill B. <de...@bl...> - 2016-04-02 16:13:29
|
On Fri, Apr 01, 2016 at 04:57:50PM -0400, Bill Blough wrote: > On Fri, Apr 01, 2016 at 11:48:10AM -0400, Bill Blough wrote: > > On Fri, Apr 01, 2016 at 03:56:38PM +0200, DJC wrote: > > > >As far as I know, the dependency for 15.10 should be libwxgtk3.0-0v5, which > > > >according to packages.ubuntu.com is available in 15.10 for amd64. > > > >Can you post the error? > > > > > > For passwordsafe-ubuntu-0.98.1BETA.amd64.deb: > > > > > > Dependency is not satisfiable: libwxgtk3.0-0 (>= 3.0.0-2) > > > > > > 15.10 amd64 does have libwxgtk3.0-0v5. > > > > > > > Nothing in the control file jumps out at me as being wrong. I'll spin up a > > 15.10 box and see if I can figure out what's going on. > > The control files in the git repo are correct as of December, but it appears > that the ubuntu 64-bit deb (I didn't check the 32) is using the pre-December > version, even though 3.38/0.98 were released after that point. So, perhaps the > build environment didn't get updated completely. > > At any rate, as far as I know, the only fix other than a re-release with the > correct control file is to unpack/edit/repack the deb, or bypass the package > manager and compile a local version from source. > > Regards, > Bill Issue #92 has been opened to track this. https://github.com/pwsafe/pwsafe/issues/92 |
From: Bill B. <de...@bl...> - 2016-04-01 20:58:04
|
On Fri, Apr 01, 2016 at 11:48:10AM -0400, Bill Blough wrote: > On Fri, Apr 01, 2016 at 03:56:38PM +0200, DJC wrote: > > >As far as I know, the dependency for 15.10 should be libwxgtk3.0-0v5, which > > >according to packages.ubuntu.com is available in 15.10 for amd64. > > >Can you post the error? > > > > For passwordsafe-ubuntu-0.98.1BETA.amd64.deb: > > > > Dependency is not satisfiable: libwxgtk3.0-0 (>= 3.0.0-2) > > > > 15.10 amd64 does have libwxgtk3.0-0v5. > > > > Nothing in the control file jumps out at me as being wrong. I'll spin up a > 15.10 box and see if I can figure out what's going on. The control files in the git repo are correct as of December, but it appears that the ubuntu 64-bit deb (I didn't check the 32) is using the pre-December version, even though 3.38/0.98 were released after that point. So, perhaps the build environment didn't get updated completely. At any rate, as far as I know, the only fix other than a re-release with the correct control file is to unpack/edit/repack the deb, or bypass the package manager and compile a local version from source. Regards, Bill |
From: Bill B. <de...@bl...> - 2016-04-01 15:44:55
|
On Fri, Apr 01, 2016 at 03:56:38PM +0200, DJC wrote: > >As far as I know, the dependency for 15.10 should be libwxgtk3.0-0v5, which > >according to packages.ubuntu.com is available in 15.10 for amd64. > >Can you post the error? > > For passwordsafe-ubuntu-0.98.1BETA.amd64.deb: > > Dependency is not satisfiable: libwxgtk3.0-0 (>= 3.0.0-2) > > 15.10 amd64 does have libwxgtk3.0-0v5. > Nothing in the control file jumps out at me as being wrong. I'll spin up a 15.10 box and see if I can figure out what's going on. |
From: Bill D <bi...@du...> - 2016-04-01 13:58:45
|
On Fri, Apr 01, 2016 at 03:56:38PM +0200, DJC wrote: > > As far as I know, the dependency for 15.10 should be libwxgtk3.0-0v5, which > > according to packages.ubuntu.com is available in 15.10 for amd64. > > Can you post the error? > For passwordsafe-ubuntu-0.98.1BETA.amd64.deb: > Dependency is not satisfiable: libwxgtk3.0-0 (>= 3.0.0-2) > 15.10 amd64 does have libwxgtk3.0-0v5. This is the exact error I get when I try to install, as well. -- Bill Duetschler <bi...@du...> |