public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2021-06-04 10:52 Vadim Misbakh-Soloviov
  0 siblings, 0 replies; 9+ messages in thread
From: Vadim Misbakh-Soloviov @ 2021-06-04 10:52 UTC (permalink / raw
  To: gentoo-commits

commit:     fbc0773cff15d6c4c85936d6fa1be3bbd612c382
Author:     Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  4 10:52:20 2021 +0000
Commit:     Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
CommitDate: Fri Jun  4 10:52:20 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc0773c

www-plugins/gosuslugi-plugin: new package

Signed-off-by: Vadim Misbakh-Soloviov <mva <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/Manifest              |  3 ++
 .../gosuslugi-plugin-3.1.1.0.ebuild                | 57 ++++++++++++++++++++++
 www-plugins/gosuslugi-plugin/metadata.xml          | 11 +++++
 3 files changed, 71 insertions(+)

diff --git a/www-plugins/gosuslugi-plugin/Manifest b/www-plugins/gosuslugi-plugin/Manifest
new file mode 100644
index 00000000000..2b0615a2eb6
--- /dev/null
+++ b/www-plugins/gosuslugi-plugin/Manifest
@@ -0,0 +1,3 @@
+DIST gosuslugi-plugin-3.1.1.0_amd64.deb 5264616 BLAKE2B 0aadd08a26ae70e9a73611de3faccceb8bb53f8f36df34398d72f2a3d34ad5d0efa6a9bc0b05daf6b4a1fe7e2a498506df7a8bc094eae002ae7e7f532b24f98f SHA512 7152b08b22d93dee63aaed61012ed53f07a52beee113a0fbd639a435d57f251885947c2e874fb1e799f5db36340093024641f504f95d5ef788bfc30c4e9030aa
+DIST gosuslugi-plugin-3.1.1.0_mac.pkg 9712969 BLAKE2B f9234cb5283f27e680d448f6c4edf298495451c4b1af6bb6cdf5cf9e016877ce587a9dbfa9f78631d28f9d9fb1bb5d1aa505ecd947549bf0818e2662be6197c8 SHA512 e22530e72ce769fdee10fc63e140d7b294a3a9067e3ae113de1267745c16f0eb1c526f2a9f9d693263de92230c0e132362e3ed6c8653903addff47920f5632e0
+DIST gosuslugi-plugin-3.1.1.0_x86.deb 5198728 BLAKE2B 68bcd5745e14a13fe13cc0dbcf3c66c6471a405a5a6957f112b843fa935cefc27fd60effdffba86593175deed1eb66a091558c2766b3fb5a2f7b8c860e61ee09 SHA512 2a49778f94421b5827d52725a72745482eaafb825dbadb2696a1bccbcf491a775ff1b1eefebba565906c7c7bce8d7106003999a1e0dc69e69781e5a639597223

diff --git a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
new file mode 100644
index 00000000000..b326ccd6ca2
--- /dev/null
+++ b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils unpacker
+
+DESCRIPTION="Crypto-provider browser plugin for russian e-gov site https://gosuslugi.ru/"
+
+SRC_URI="
+	amd64? ( https://ds-plugin.gosuslugi.ru/plugin/upload/assets/distrib/IFCPlugin-x86_64.deb -> ${P}_amd64.deb )
+	x86? ( https://ds-plugin.gosuslugi.ru/plugin/upload/assets/distrib/IFCPlugin-i386.deb -> ${P}_x86.deb )
+	x64-macos? ( https://ds-plugin.gosuslugi.ru/plugin/upload/assets/distrib/IFCPlugin.pkg -> ${P}_mac.pkg )
+"
+#	x86-macos? ( https://ds-plugin.gosuslugi.ru/plugin/upload/assets/distrib/IFCPlugin.pkg -> ${P}_mac.pkg )
+#	x86-winnt? ( https://ds-plugin.gosuslugi.ru/plugin/htdocs/plugin/IFCPlugin.msi )
+#	x64-winnt? ( https://ds-plugin.gosuslugi.ru/plugin/htdocs/plugin/IFCPlugin-x64.msi )
+
+HOMEPAGE="http://gosuslugi.ru/"
+LICENSE="EULA"
+RESTRICT="mirror"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 x64-macos x86-macos"
+IUSE="multilib"
+
+REQUIRED_USE="amd64? ( multilib )"
+
+# TODO: minimal useflag (I can't do it now, since
+# it seems like I brake my token and it is uninitialized now)
+RDEPEND="
+	dev-libs/libxml2:2
+	sys-apps/pcsc-lite:0
+	virtual/libusb:0
+"
+DEPEND="${RDEPEND}"
+
+QA_PREBUILT="*"
+QA_SONAME_NO_SYMLINK="usr/lib32/.* usr/lib64/.*"
+
+S="${WORKDIR}"
+
+src_unpack() {
+	unpack_deb ${A}
+}
+
+src_install() {
+	insinto /
+	doins -r usr etc opt
+	dobin usr/bin/ifc_chrome_host
+	keepdir /var/log/ifc
+	fperms 777 /var/log/ifc
+}
+
+pkg_postinst() {
+	cd /etc/update_ccid_boundle
+	sh ./update_ccid_boundle.sh
+}

diff --git a/www-plugins/gosuslugi-plugin/metadata.xml b/www-plugins/gosuslugi-plugin/metadata.xml
new file mode 100644
index 00000000000..7579a29b5ee
--- /dev/null
+++ b/www-plugins/gosuslugi-plugin/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>mva@gentoo.org</email>
+    <description>Also, you can find me on IRC (FreeNode) as mva, or in Telegram as @mva_name</description>
+    <name>Vadim A. Misbakh-Soloviov</name>
+  </maintainer>
+  <longdescription>FIXME</longdescription>
+  <use/>
+</pkgmetadata>
\ No newline at end of file


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

* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2021-06-04 15:32 Vadim Misbakh-Soloviov
  0 siblings, 0 replies; 9+ messages in thread
From: Vadim Misbakh-Soloviov @ 2021-06-04 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     f902e81ac507596b122d4e606ffb13159e377103
Author:     Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  4 15:30:42 2021 +0000
Commit:     Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
CommitDate: Fri Jun  4 15:31:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f902e81a

www-plugins/gosuslugi-plugin: fix QA issue

 (kludgy way for now, while I trying to contact upstream for proper fix)

Signed-off-by: Vadim Misbakh-Soloviov <mva <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
index b326ccd6ca2..c3b258570dc 100644
--- a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
+++ b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
@@ -41,6 +41,7 @@ S="${WORKDIR}"
 
 src_unpack() {
 	unpack_deb ${A}
+	rm usr/lib/mozilla/plugins/lib/libcapi_engine_linux.so
 }
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2021-06-20 16:16 Sergei Trofimovich
  0 siblings, 0 replies; 9+ messages in thread
From: Sergei Trofimovich @ 2021-06-20 16:16 UTC (permalink / raw
  To: gentoo-commits

commit:     f976e20fa9b0dfd2552423f6d7f0bd6592dfa274
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 20 16:12:11 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jun 20 16:16:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f976e20f

www-plugins/gosuslugi-plugin: drop non-existent x86-macos

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
index c3b258570dc..50dea87274b 100644
--- a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
+++ b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="http://gosuslugi.ru/"
 LICENSE="EULA"
 RESTRICT="mirror"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 x64-macos x86-macos"
+KEYWORDS="~amd64 ~x86 x64-macos"
 IUSE="multilib"
 
 REQUIRED_USE="amd64? ( multilib )"


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

* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2021-06-20 16:16 Sergei Trofimovich
  0 siblings, 0 replies; 9+ messages in thread
From: Sergei Trofimovich @ 2021-06-20 16:16 UTC (permalink / raw
  To: gentoo-commits

commit:     53ad0e4447311709b27de86904f79af735ae9609
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 20 16:12:52 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jun 20 16:16:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ad0e44

www-plugins/gosuslugi-plugin: destabilize x64-macos

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
index 50dea87274b..6a6d2750db4 100644
--- a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
+++ b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="http://gosuslugi.ru/"
 LICENSE="EULA"
 RESTRICT="mirror"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 x64-macos"
+KEYWORDS="~amd64 ~x86 ~x64-macos"
 IUSE="multilib"
 
 REQUIRED_USE="amd64? ( multilib )"


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

* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2021-06-20 17:38 Vadim Misbakh-Soloviov
  0 siblings, 0 replies; 9+ messages in thread
From: Vadim Misbakh-Soloviov @ 2021-06-20 17:38 UTC (permalink / raw
  To: gentoo-commits

commit:     79a1bfb5fbf4afddb9dc5bff0d9c0791c5c8609d
Author:     Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 20 17:37:53 2021 +0000
Commit:     Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
CommitDate: Sun Jun 20 17:37:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79a1bfb5

www-plugins/gosuslugi-plugin: Fix license naming (EULA->all-rights-reserved)

Bug: https://bugs.gentoo.org/796950
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Vadim Misbakh-Soloviov <mva <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
index 6a6d2750db4..d474dcb0b70 100644
--- a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
+++ b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 #	x64-winnt? ( https://ds-plugin.gosuslugi.ru/plugin/htdocs/plugin/IFCPlugin-x64.msi )
 
 HOMEPAGE="http://gosuslugi.ru/"
-LICENSE="EULA"
+LICENSE="all-rights-reserved"
 RESTRICT="mirror"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~x64-macos"


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

* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2021-07-10  7:38 Vadim Misbakh-Soloviov
  0 siblings, 0 replies; 9+ messages in thread
From: Vadim Misbakh-Soloviov @ 2021-07-10  7:38 UTC (permalink / raw
  To: gentoo-commits

commit:     798d2904e0cfd736bc056c5caa36e67cd3a98a4f
Author:     Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 10 07:37:27 2021 +0000
Commit:     Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
CommitDate: Sat Jul 10 07:38:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=798d2904

www-plugins/gosuslugi-plugin: drop maintainer desc and fix pkg longdesc

Bug: https://bugs.gentoo.org/801349
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Vadim Misbakh-Soloviov <mva <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/metadata.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/www-plugins/gosuslugi-plugin/metadata.xml b/www-plugins/gosuslugi-plugin/metadata.xml
index 7579a29b5ee..564ed5783bb 100644
--- a/www-plugins/gosuslugi-plugin/metadata.xml
+++ b/www-plugins/gosuslugi-plugin/metadata.xml
@@ -3,9 +3,8 @@
 <pkgmetadata>
   <maintainer type="person">
     <email>mva@gentoo.org</email>
-    <description>Also, you can find me on IRC (FreeNode) as mva, or in Telegram as @mva_name</description>
     <name>Vadim A. Misbakh-Soloviov</name>
   </maintainer>
-  <longdescription>FIXME</longdescription>
+  <longdescription>Browsers (Firefox/Chrome-and-forks) plugin that allow to use GOST cryptography on Russian E-Government site</longdescription>
   <use/>
-</pkgmetadata>
\ No newline at end of file
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2021-09-21  8:10 Michał Górny
  0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2021-09-21  8:10 UTC (permalink / raw
  To: gentoo-commits

commit:     bdbad73aaa5a5fa4cbd1afa0c525f1b94c8e1e49
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 21 08:00:59 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Sep 21 08:00:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdbad73a

www-plugins/gosuslugi-plugin: Remove empty <use/>

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/www-plugins/gosuslugi-plugin/metadata.xml b/www-plugins/gosuslugi-plugin/metadata.xml
index 2a2e4ffa708..19c58d84981 100644
--- a/www-plugins/gosuslugi-plugin/metadata.xml
+++ b/www-plugins/gosuslugi-plugin/metadata.xml
@@ -6,5 +6,4 @@
     <name>Vadim A. Misbakh-Soloviov</name>
   </maintainer>
   <longdescription>Browsers (Firefox/Chrome-and-forks) plugin that allow to use GOST cryptography on Russian E-Government site</longdescription>
-  <use/>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2022-10-08 19:21 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-10-08 19:21 UTC (permalink / raw
  To: gentoo-commits

commit:     548cc92c506f2ff818cad78f044c7f63363b217c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  8 19:17:35 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  8 19:17:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=548cc92c

www-plugins/gosuslugi-plugin: drop use of deprecated eutils

Signed-off-by: Sam James <sam <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
index d474dcb0b701..d7b25028a097 100644
--- a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
+++ b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit eutils unpacker
+inherit unpacker
 
 DESCRIPTION="Crypto-provider browser plugin for russian e-gov site https://gosuslugi.ru/"
 


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

* [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/
@ 2023-05-29 18:21 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-05-29 18:21 UTC (permalink / raw
  To: gentoo-commits

commit:     fee0f673f678617dafe98761c2c21f290b7828b9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 16:58:48 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 29 18:19:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee0f673

www-plugins/gosuslugi-plugin: drop dead prefix targets

The removal was already done, so this is just cleanup afterwards.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
index d7b25028a097..e156c7fb2b01 100644
--- a/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
+++ b/www-plugins/gosuslugi-plugin/gosuslugi-plugin-3.1.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,9 +12,6 @@ SRC_URI="
 	x86? ( https://ds-plugin.gosuslugi.ru/plugin/upload/assets/distrib/IFCPlugin-i386.deb -> ${P}_x86.deb )
 	x64-macos? ( https://ds-plugin.gosuslugi.ru/plugin/upload/assets/distrib/IFCPlugin.pkg -> ${P}_mac.pkg )
 "
-#	x86-macos? ( https://ds-plugin.gosuslugi.ru/plugin/upload/assets/distrib/IFCPlugin.pkg -> ${P}_mac.pkg )
-#	x86-winnt? ( https://ds-plugin.gosuslugi.ru/plugin/htdocs/plugin/IFCPlugin.msi )
-#	x64-winnt? ( https://ds-plugin.gosuslugi.ru/plugin/htdocs/plugin/IFCPlugin-x64.msi )
 
 HOMEPAGE="http://gosuslugi.ru/"
 LICENSE="all-rights-reserved"


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

end of thread, other threads:[~2023-05-29 18:21 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-20 16:16 [gentoo-commits] repo/gentoo:master commit in: www-plugins/gosuslugi-plugin/ Sergei Trofimovich
  -- strict thread matches above, loose matches on Subject: below --
2023-05-29 18:21 Sam James
2022-10-08 19:21 Sam James
2021-09-21  8:10 Michał Górny
2021-07-10  7:38 Vadim Misbakh-Soloviov
2021-06-20 17:38 Vadim Misbakh-Soloviov
2021-06-20 16:16 Sergei Trofimovich
2021-06-04 15:32 Vadim Misbakh-Soloviov
2021-06-04 10:52 Vadim Misbakh-Soloviov

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