<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[HyperForum — keepassx]]></title>
	<link rel="self" href="https://forums.hyperbola.info/extern.php?action=feed&amp;tid=334&amp;type=atom" />
	<updated>2020-02-07T19:19:40Z</updated>
	<generator>PunBB</generator>
	<id>https://forums.hyperbola.info/viewtopic.php?id=334</id>
		<entry>
			<title type="html"><![CDATA[Re: keepassx]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=1754#p1754" />
			<content type="html"><![CDATA[<p>That&#039;s a good one. I&#039;ve started with Libreboot three years ago and after that never got back to UEFI or default BIOS. Instead also used / using Coreboot as absolute minimum!</p>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2020-02-07T19:19:40Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=1754#p1754</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: keepassx]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=1753#p1753" />
			<content type="html"><![CDATA[<p>i dont mind off topics <img src="https://forums.hyperbola.info/img/smilies/smile.png" width="15" height="15" alt="smile" /> <br />ur absolutely right no time for compromises in those days strict principles and hard work is needed to keep whats left of our privacy and freedom,<br />iv become extremely cautious knowing bits of the truth made me buy a librebooted x200 installing hyperbola <img src="https://forums.hyperbola.info/img/smilies/smile.png" width="15" height="15" alt="smile" /> and planing to learn C language for my own freedom and maybe helping others if i learn how to play with UNIX systems.</p>]]></content>
			<author>
				<name><![CDATA[rachad]]></name>
			</author>
			<updated>2020-02-07T19:01:51Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=1753#p1753</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: keepassx]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=1752#p1752" />
			<content type="html"><![CDATA[<p>No problem: That&#039;s the reason I like pacman very much and the base of Hyperbola GNU/Linux-libre also. The major problem is that Arch has changed the ruleset with accepting <strong>zstd</strong> for compression so Arch Linux is definitely out when talking about free, libre software besides their way to pack software itself with mixed hash-values and not like Hyperbola trying to use sha512 as absolute default.</p><p>So at last <strong>Parabola</strong> is also using that in the future, same way as <strong>Trisquel</strong> using free packages from Ubuntu and being therefore absolute dependent from Canonical. Sorry a bit off-topic but I think we need strict principles for free, libre soft- and hardware. No time for compromises! <img src="https://forums.hyperbola.info/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2020-02-07T18:40:41Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=1752#p1752</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: keepassx]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=1750#p1750" />
			<content type="html"><![CDATA[<p>thanks a lot <strong>throgh</strong> i didn&#039;t know it was that easy to get rid of http and autotype</p>]]></content>
			<author>
				<name><![CDATA[rachad]]></name>
			</author>
			<updated>2020-02-07T18:32:39Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=1750#p1750</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: keepassx]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=1748#p1748" />
			<content type="html"><![CDATA[<p>No problem: Creating an own package! <img src="https://forums.hyperbola.info/img/smilies/smile.png" width="15" height="15" alt="smile" /><br />Try this:</p><div class="codebox"><pre><code># $Id$
# Maintainer: Balló György &lt;ballogyor+arch at gmail dot com&gt;

pkgname=keepassxc
pkgver=2.1.4
pkgrel=1.hyperbola1
pkgdesc=&quot;Cross-platform community-driven port of Keepass password manager&quot;
arch=(x86_64 i686)
url=&quot;https://keepassxc.org/&quot;
license=(GPL)
depends=(hicolor-icon-theme libxtst qt5-x11extras)
makedepends=(cmake qt5-tools)
source=(&quot;https://github.com/keepassxreboot/$pkgname/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz&quot;)
sha512sums=(&#039;b5cd69c26ec394c2ea6e68a9b91017ba8b681d0205c8127ebd8a8dbfcc0b2fffb674637236249fe0eee629102b3b97014e0708e26ec63800ed408276a14d6bbf&#039;)

prepare() {
    mkdir -p build
}

build() {
    cd build
    cmake ../$pkgname-$pkgver \
        -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_INSTALL_LIBDIR=lib \
        -DWITH_XC_AUTOTYPE=OFF \
        -DWITH_XC_HTTP=OFF
    make
}

check() {
    cd build
    # Fails on i686 - [url]https://github.com/keepassxreboot/keepassxc/issues/327[/url]
    if [ $CARCH == x86_64 ]; then
        make test
    fi
}

package() {
    cd build
    make DESTDIR=&quot;$pkgdir&quot; install
}</code></pre></div><p>Using <strong>makepkg</strong> within console!</p>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2020-02-07T18:08:46Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=1748#p1748</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[keepassx]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=1747#p1747" />
			<content type="html"><![CDATA[<p>i saw that keepassx was not in this list <a href="https://www.hyperbola.info/todo/remove-unused-packages/">https://www.hyperbola.info/todo/remove-unused-packages/</a><br />so is there any plans to maintain its development and is it safe to use right now?</p><p>im asking cause i dont like what they did with keepassxc so it would be great to use keepassx just to store passwords in a safe way<br />i dont even want that autotype nowadays it could be used to trick the password manager to give keys</p>]]></content>
			<author>
				<name><![CDATA[rachad]]></name>
			</author>
			<updated>2020-02-07T17:53:38Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=1747#p1747</id>
		</entry>
</feed>
