public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/passwordsafe/
Date: Fri, 01 Aug 2025 04:26:54 +0000 (UTC)	[thread overview]
Message-ID: <1754022330.6df65dba4889529205693cbb2adc2994fe268c00.sam@gentoo> (raw)

commit:     6df65dba4889529205693cbb2adc2994fe268c00
Author:     Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Sun Jul 27 16:04:37 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug  1 04:25:30 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df65dba

app-admin/passwordsafe: drop 1.18.2-r2, 1.19.1-r2

Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Part-of: https://github.com/gentoo/gentoo/pull/43185
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-admin/passwordsafe/Manifest                    |  2 -
 .../passwordsafe/passwordsafe-1.18.2-r2.ebuild     | 85 ----------------------
 .../passwordsafe/passwordsafe-1.19.1-r2.ebuild     | 68 -----------------
 3 files changed, 155 deletions(-)

diff --git a/app-admin/passwordsafe/Manifest b/app-admin/passwordsafe/Manifest
index 7f356775ec1e..f5b3ff071ac9 100644
--- a/app-admin/passwordsafe/Manifest
+++ b/app-admin/passwordsafe/Manifest
@@ -1,3 +1 @@
-DIST passwordsafe-1.18.2.tar.gz 15613801 BLAKE2B e4ad44fe3aae6230c6a1d07e644b7b02831ec5bc815decd85050099c6f43e83bc09cd7d8f88ddfa5b63e5636db774f4b295bb34739e15115ba55c5142d3b08ae SHA512 09fb19133ff325832fa5d284aa1b1e7eda1788c4298424701132ede27fbb17956d874c0007ac00a2b9367d279175666744e192523ec79786baf626fb461abec7
-DIST passwordsafe-1.19.1.tar.gz 15756663 BLAKE2B a6e9d4407dc845e889278dcc7a5ea1931461ae18ccb87155214ae93f1c48c4ecb88d8c8ae1be29a97053c61915694d69d83dc8fb9bf92edf3e532982ab3fa684 SHA512 04918d2a2155b6650f24da5883dd2ef3158d7c772ca0910912e3ab08687e06acdf2a3c83216f721699f5dec859aba7392dc5fecb74d2c8dc0a75cb7ee4be4993
 DIST passwordsafe-1.20.0.tar.gz 15752332 BLAKE2B 519437928d402790b4db72e251355479341fdf0fb49f2dd5705357cce7051f12ab952d7da7c23b5b304b7ab0da0cbd9a0a26c2a13a18db8e5472c834026a5e3d SHA512 5cfc2f497747fbdf69f6d7a1b96b0309ff87e9ca32a92d012de68d51b1e93df527b11968466c1834a17a815917023fe3e36b7ec7ae1aeb372070f86af96e782d

diff --git a/app-admin/passwordsafe/passwordsafe-1.18.2-r2.ebuild b/app-admin/passwordsafe/passwordsafe-1.18.2-r2.ebuild
deleted file mode 100644
index 747f7bbe9295..000000000000
--- a/app-admin/passwordsafe/passwordsafe-1.18.2-r2.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 2021-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-WX_GTK_VER="3.2-gtk3"
-
-inherit cmake desktop 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"
-S="${WORKDIR}/pwsafe-${MY_PV}"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="qr test +xml yubikey"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	net-misc/curl
-	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 )"
-DEPEND="${RDEPEND}
-	x11-base/xorg-proto"
-BDEPEND="
-	app-arch/zip
-	dev-lang/perl
-	sys-devel/gettext
-	virtual/pkgconfig
-	test? ( dev-cpp/gtest )"
-
-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
-}

diff --git a/app-admin/passwordsafe/passwordsafe-1.19.1-r2.ebuild b/app-admin/passwordsafe/passwordsafe-1.19.1-r2.ebuild
deleted file mode 100644
index 7a34fe479076..000000000000
--- a/app-admin/passwordsafe/passwordsafe-1.19.1-r2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2021-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-WX_GTK_VER="3.2-gtk3"
-
-inherit cmake 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"
-S="${WORKDIR}/pwsafe-${MY_PV}"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="qr test +xml yubikey"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	net-misc/curl
-	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 )"
-DEPEND="${RDEPEND}
-	x11-base/xorg-proto"
-BDEPEND="
-	app-arch/zip
-	dev-lang/perl
-	sys-devel/gettext
-	virtual/pkgconfig
-	test? ( dev-cpp/gtest )"
-
-PATCHES=( "${FILESDIR}/CMake.patch" )
-
-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() {
-	cmake_src_install
-
-	pushd "${BUILD_DIR}" || die
-	dosym pwsafe /usr/bin/${PN}
-	dosym pwsafe-cli /usr/bin/${PN}-cli
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-	optfeature "on-screen keyboard for password entry" x11-misc/xvkbd
-}


             reply	other threads:[~2025-08-01  4:27 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-01  4:26 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-20  9:19 [gentoo-commits] repo/gentoo:master commit in: app-admin/passwordsafe/ Sam James
2025-09-17 22:23 Sam James
2025-08-01  4:26 Sam James
2025-06-04  2:13 Sam James
2025-03-14  3:37 Sam James
2025-01-24  6:52 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-06-12  8:04 Joonas Niilola
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=1754022330.6df65dba4889529205693cbb2adc2994fe268c00.sam@gentoo \
    --to=sam@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