public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: app-crypt/firefox-decrypt/
@ 2024-08-25 11:02 Anna Vyalkova
  0 siblings, 0 replies; 3+ messages in thread
From: Anna Vyalkova @ 2024-08-25 11:02 UTC (permalink / raw
  To: gentoo-commits

commit:     7ec8859d33f7df2101030f9b23946c95bccac5ea
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Aug 25 10:29:34 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Aug 25 10:38:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7ec8859d

app-crypt/firefox-decrypt: new package, add 1.1.1

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 app-crypt/firefox-decrypt/Manifest                 |  1 +
 .../firefox-decrypt/firefox-decrypt-1.1.1.ebuild   | 41 ++++++++++++++++++++++
 app-crypt/firefox-decrypt/metadata.xml             | 14 ++++++++
 3 files changed, 56 insertions(+)

diff --git a/app-crypt/firefox-decrypt/Manifest b/app-crypt/firefox-decrypt/Manifest
new file mode 100644
index 000000000..16f0a3ad6
--- /dev/null
+++ b/app-crypt/firefox-decrypt/Manifest
@@ -0,0 +1 @@
+DIST firefox-decrypt-1.1.1.tar.gz 95537 BLAKE2B 778cef025b9a84e751bd1331b89d51a98b674aef82d768f789c8ae5ebbaf1c528a192e8d20111259e2eb33ef07de25da5e0126629ac2b65c2d5455610d7f4e7d SHA512 2604cd27d88520c8397524b2b6d12e02a2f9fe14211754f3111aec5d9f112c528b749f6c2a032c1a01fc5038edede01c45d54a4ba0ed2ee40fd411085c3e0052

diff --git a/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild b/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild
new file mode 100644
index 000000000..5031a8636
--- /dev/null
+++ b/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..12} )
+PYTHON_REQ_USE="sqlite"
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_IN_SOURCE_BUILD=
+inherit distutils-r1
+
+DESCRIPTION="Tool to extract passwords from Mozilla (Firefox, Thunderbird, etc.) profiles"
+HOMEPAGE="https://github.com/Unode/firefox_decrypt"
+SRC_URI="https://github.com/unode/${PN/-/_}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN/-/_}-${PV}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-libs/nss"
+BDEPEND="
+	$(python_gen_cond_dep 'dev-python/setuptools-scm[${PYTHON_USEDEP}]')
+"
+
+distutils_enable_tests setup.py
+
+src_prepare() {
+	rm tests/version.t || die
+	distutils-r1_src_prepare
+}
+
+python_prepare() {
+	python_fix_shebang "${S}"/tests
+}
+
+python_test() {
+	cd "${S}"/tests || die
+	${EPYTHON} run_all -v || die
+}

diff --git a/app-crypt/firefox-decrypt/metadata.xml b/app-crypt/firefox-decrypt/metadata.xml
new file mode 100644
index 000000000..f9b0f39a3
--- /dev/null
+++ b/app-crypt/firefox-decrypt/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>cyber+gentoo@sysrq.in</email>
+		<name>Anna</name>
+	</maintainer>
+	<upstream>
+		<maintainer>
+			<name>Renato Alves</name>
+		</maintainer>
+		<remote-id type="github">Unode/firefox_decrypt</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: app-crypt/firefox-decrypt/
@ 2024-10-10 22:22 Anna Vyalkova
  0 siblings, 0 replies; 3+ messages in thread
From: Anna Vyalkova @ 2024-10-10 22:22 UTC (permalink / raw
  To: gentoo-commits

commit:     561b63ad8702a15569e2215ae205f25226506008
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Oct 10 22:21:40 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Oct 10 22:22:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=561b63ad

app-crypt/firefox-decrypt: fix DeprecatedEclassVariable

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild b/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild
index 5031a8636..45ccda801 100644
--- a/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild
+++ b/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild
@@ -7,7 +7,6 @@ PYTHON_COMPAT=( python3_{11..12} )
 PYTHON_REQ_USE="sqlite"
 DISTUTILS_USE_PEP517=setuptools
 DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_IN_SOURCE_BUILD=
 inherit distutils-r1
 
 DESCRIPTION="Tool to extract passwords from Mozilla (Firefox, Thunderbird, etc.) profiles"
@@ -31,8 +30,9 @@ src_prepare() {
 	distutils-r1_src_prepare
 }
 
-python_prepare() {
+python_prepare_all() {
 	python_fix_shebang "${S}"/tests
+	distutils-r1_python_prepare_all
 }
 
 python_test() {


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: app-crypt/firefox-decrypt/
@ 2024-10-29 21:58 Anna Vyalkova
  0 siblings, 0 replies; 3+ messages in thread
From: Anna Vyalkova @ 2024-10-29 21:58 UTC (permalink / raw
  To: gentoo-commits

commit:     4fd10c4cebe73ea206b1482254703999af378ef3
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Oct 29 21:13:25 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Oct 29 21:13:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4fd10c4c

app-crypt/firefox-decrypt: enable py3.13

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild b/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild
index 45ccda801..aaacdb7d6 100644
--- a/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild
+++ b/app-crypt/firefox-decrypt/firefox-decrypt-1.1.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{11..12} )
+PYTHON_COMPAT=( python3_{11..13} )
 PYTHON_REQ_USE="sqlite"
 DISTUTILS_USE_PEP517=setuptools
 DISTUTILS_SINGLE_IMPL=1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-10-29 21:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-29 21:58 [gentoo-commits] repo/proj/guru:dev commit in: app-crypt/firefox-decrypt/ Anna Vyalkova
  -- strict thread matches above, loose matches on Subject: below --
2024-10-10 22:22 Anna Vyalkova
2024-08-25 11:02 Anna Vyalkova

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox