public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/passwordsafe/
Date: Sun, 12 Jun 2022 08:04:12 +0000 (UTC)	[thread overview]
Message-ID: <1655021037.550866451036f3228a7c3c47a02013745e96c4d9.juippis@gentoo> (raw)

commit:     550866451036f3228a7c3c47a02013745e96c4d9
Author:     Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Thu Jun  2 22:19:09 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 08:03:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55086645

app-admin/passwordsafe: version bump to 1.15.0

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/25734
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-admin/passwordsafe/Manifest                   |  1 +
 app-admin/passwordsafe/passwordsafe-1.15.0.ebuild | 90 +++++++++++++++++++++++
 2 files changed, 91 insertions(+)

diff --git a/app-admin/passwordsafe/Manifest b/app-admin/passwordsafe/Manifest
index 27a57771a878..334320ca6a62 100644
--- a/app-admin/passwordsafe/Manifest
+++ b/app-admin/passwordsafe/Manifest
@@ -1,2 +1,3 @@
 DIST passwordsafe-1.13.0.tar.gz 15022877 BLAKE2B 353976c22365fc98c034eac339f067061ee659043ab8507bbec174483414619b8442ba4fd7671e888127b83e9865d21587529c7821bd706a55da951c300425d4 SHA512 eb8ae46e9f3e8287b2ad781ed6d6e13026096a35fadc1fd1da1116e5e6b65e16e76090d8e7d1c64be387229ccd1053dcc820acbe7ee97914e46c311ee8ff03b8
 DIST passwordsafe-1.14.0.tar.gz 15303935 BLAKE2B 977386e5c469772753173bd46f608e9fb77e462706fbe6bf80a18cf8e5f3b89cc7300f92298b2b45885dafbef323a0ba59d67ddcea20c229f4f9520a54800653 SHA512 958ab87ac6a9066a0359890facd509c1085646eddcefc33f89b934a9375df51bcbc78213298d165d354c64618c8fb753c2588e386e886fa4c1c478e0a27d3d27
+DIST passwordsafe-1.15.0.tar.gz 15354159 BLAKE2B 699f80325884cba9bc6e5ffb33bea5c0b2c01f12ed7e4ea1226c4a64c761a8f20b8272e771261ca59aeeb49bfaa4ea83edc9af6c0aa9ae853e537b0f76f28aaa SHA512 803572afc479d608899e1166ef032a2a660fce122e03f89f59f8e9da9f7439e0eb1d602f77283200626f49d7e146e82edf8edee40060ff4cf6163e81bdf5f738

diff --git a/app-admin/passwordsafe/passwordsafe-1.15.0.ebuild b/app-admin/passwordsafe/passwordsafe-1.15.0.ebuild
new file mode 100644
index 000000000000..209366001f8a
--- /dev/null
+++ b/app-admin/passwordsafe/passwordsafe-1.15.0.ebuild
@@ -0,0 +1,90 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+WX_GTK_VER="3.0-gtk3"
+
+inherit cmake desktop flag-o-matic optfeature wxwidgets xdg
+
+MY_PV="${PV/_beta/BETA}"
+DESCRIPTION="Password manager with wxGTK based frontend"
+HOMEPAGE="https://pwsafe.org/ https://github.com/pwsafe/pwsafe/"
+SRC_URI="https://github.com/pwsafe/pwsafe/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="qr test +xml yubikey"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	dev-libs/openssl:0=
+	net-misc/curl
+	sys-apps/file
+	sys-apps/util-linux
+	x11-libs/libXt
+	x11-libs/libXtst
+	x11-libs/wxGTK:${WX_GTK_VER}[X]
+	qr? ( media-gfx/qrencode )
+	xml? ( dev-libs/xerces-c )
+	yubikey? ( sys-auth/ykpers )"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	app-arch/zip
+	sys-devel/gettext
+	test? ( dev-cpp/gtest )"
+
+S="${WORKDIR}/pwsafe-${MY_PV}"
+
+pkg_pretend() {
+	einfo "Checking for -std=c++11 support in compiler"
+	test-flags-CXX -std=c++11 > /dev/null || die
+}
+
+src_configure() {
+	setup-wxwidgets
+
+	local mycmakeargs=(
+		-DNO_QR=$(usex !qr)
+		-DNO_GTEST=$(usex !test)
+		-DGTEST_BUILD=OFF
+		-DXML_XERCESC=$(usex xml)
+		-DNO_YUBI=$(usex !yubikey)
+	)
+
+	cmake_src_configure
+}
+
+src_install() {
+	pushd "${BUILD_DIR}" || die
+
+	dobin pwsafe
+	dobin cli/pwsafe-cli
+	dosym pwsafe /usr/bin/${PN}
+	dosym pwsafe-cli /usr/bin/${PN}-cli
+
+	insinto /usr/share/locale
+	doins -r src/ui/wxWidgets/I18N/mos/*
+
+	insinto /usr/share/${PN}/help
+	doins help/*.zip
+
+	popd || die
+
+	newman docs/pwsafe.1 ${PN}.1
+
+	dodoc README.md README.LINUX.* SECURITY.md docs/{ReleaseNotes.md,ChangeLog.txt}
+
+	insinto /usr/share/${PN}
+	doins -r xml
+
+	doicon -s 48 install/graphics/pwsafe.png
+	newmenu install/desktop/pwsafe.desktop ${PN}.desktop
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+	optfeature "on-screen keyboard for password entry" x11-misc/xvkbd
+}


             reply	other threads:[~2022-06-12  8:04 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-12  8:04 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-24  6:52 [gentoo-commits] repo/gentoo:master commit in: app-admin/passwordsafe/ Joonas Niilola
2024-06-16  9:37 Pacho Ramos
2024-04-22 10:56 Sam James
2024-02-15 13:17 Joonas Niilola
2023-12-24 17:21 Arthur Zamarin
2023-06-20  3:18 Sam James
2023-06-18 12:08 Joonas Niilola
2023-05-27 10:13 Sam James
2023-05-19  5:36 Joonas Niilola
2023-05-19  5:36 Joonas Niilola
2023-05-18 10:49 Joonas Niilola
2023-05-18 10:49 Joonas Niilola
2022-08-27  8:27 Agostino Sarubbo
2022-03-14 18:32 Agostino Sarubbo
2021-11-16  8:16 Florian Schmaus
2021-11-16  8:16 Florian Schmaus
2021-10-20  2:42 Sam James
2021-05-08 18:41 Sam James
2021-04-30 16:00 Mikle Kolyada
2021-03-06 13:32 Joonas Niilola
2021-02-10 14:48 Sam James
2021-01-03  1:18 Sam James
2020-12-15  7:18 Joonas Niilola
2020-12-15  7:18 Joonas Niilola
2020-11-23 13:29 Joonas Niilola
2020-11-23 13:29 Joonas Niilola
2020-08-24 14:39 Joonas Niilola
2019-05-15 12:04 Andreas Sturmlechner
2019-05-15 12:04 Andreas Sturmlechner
2019-02-13 22:07 Patrice Clement
2019-02-13 22:07 Patrice Clement
2018-09-21 15:46 Michał Górny
2018-08-19 22:52 Patrice Clement
2018-08-19 22:52 Patrice Clement
2018-01-25 22:52 Patrice Clement
2018-01-25 22:52 Patrice Clement
2017-07-30 10:54 David Seifert
2017-07-23 12:01 Michael Palimaka
2017-07-23 11:58 Manuel Rüger
2017-07-16 10:06 Manuel Rüger
2017-05-14 20:20 Manuel Rüger
2017-05-14 20:20 Manuel Rüger
2016-12-25 12:47 Manuel Rüger
2016-12-25 12:42 Manuel Rüger
2016-09-26 19:23 Manuel Rüger
2016-09-26 19:23 Manuel Rüger
2016-07-07 12:01 Manuel Rüger
2016-03-07  7:55 Patrice Clement
2016-03-06 16:56 Manuel Rüger
2016-03-06 15:18 Manuel Rüger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1655021037.550866451036f3228a7c3c47a02013745e96c4d9.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox