* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2021-09-01 20:52 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2021-09-01 20:52 UTC (permalink / raw
To: gentoo-commits
commit: 72d1236def4d535921b89ab33546c492e4910987
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 1 20:46:38 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Sep 1 20:52:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72d1236d
www-apps/xpra-html5: New package
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 +
www-apps/xpra-html5/metadata.xml | 16 ++++++++++++
www-apps/xpra-html5/xpra-html5-4.3.ebuild | 43 +++++++++++++++++++++++++++++++
3 files changed, 60 insertions(+)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
new file mode 100644
index 00000000000..98b74200243
--- /dev/null
+++ b/www-apps/xpra-html5/Manifest
@@ -0,0 +1 @@
+DIST xpra-html5-4.3.tar.gz 1520768 BLAKE2B f02cd4d751a9f929301199753d9ccc1c8da71378aedfece2ef248676525383b2fa6b0440fefee3c6c292449de9cafc38281d202237fcc1c96353b84bc0b2fbf6 SHA512 5bca4d8bf59b81c34dfc75b6b15475ff2a898015dac07d609d08efba0484d2eea5e31a50de45ffbf1e5c1701fe212dc4e964a177119990a2d39f486b8944b8f2
diff --git a/www-apps/xpra-html5/metadata.xml b/www-apps/xpra-html5/metadata.xml
new file mode 100644
index 00000000000..7ea60186d2d
--- /dev/null
+++ b/www-apps/xpra-html5/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>chewi@gentoo.org</email>
+ <name>James Le Cuirot</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">Xpra-org/xpra-html5</remote-id>
+ </upstream>
+ <use>
+ <flag name="brotli">Install assets compressed with brotli</flag>
+ <flag name="gzip">Install assets compressed with gzip</flag>
+ <flag name="minify">Minify JavaScript code for smaller transfers</flag>
+ </use>
+</pkgmetadata>
diff --git a/www-apps/xpra-html5/xpra-html5-4.3.ebuild b/www-apps/xpra-html5/xpra-html5-4.3.ebuild
new file mode 100644
index 00000000000..636eaaff0e1
--- /dev/null
+++ b/www-apps/xpra-html5/xpra-html5-4.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8,9,10} )
+inherit python-any-r1
+
+DESCRIPTION="HTML5 client to connect to any xpra server"
+HOMEPAGE="https://xpra.org/"
+SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="brotli +gzip minify"
+
+BDEPEND="
+ ${PYTHON_DEPS}
+ brotli? ( app-arch/brotli )
+ minify? ( dev-util/uglifyjs )
+"
+
+src_configure() {
+ cat <<EOF > vcs-info || die
+BRANCH=gentoo
+REVISION=${PR#r}
+LOCATION_MODIFICATIONS=0
+EOF
+}
+
+src_install() {
+ "${PYTHON}" <<EOF || die
+import setup
+setup.set_version("${PV}")
+setup.install_html5(
+ "${ED}/usr/share/xpra/www",
+ "$(usex minify uglifyjs copy)",
+ brotli=$(usex brotli True False),
+ gzip=$(usex gzip True False)
+)
+EOF
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2021-09-03 20:42 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2021-09-03 20:42 UTC (permalink / raw
To: gentoo-commits
commit: 6afee872aa151d60ecdcc15f968de2d5bc5dfb73
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 3 20:42:40 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Fri Sep 3 20:42:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6afee872
www-apps/xpra-html5: Bump to 4.4, drop old 4.3
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 2 +-
www-apps/xpra-html5/{xpra-html5-4.3.ebuild => xpra-html5-4.4.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 98b74200243..d4d26080923 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1 +1 @@
-DIST xpra-html5-4.3.tar.gz 1520768 BLAKE2B f02cd4d751a9f929301199753d9ccc1c8da71378aedfece2ef248676525383b2fa6b0440fefee3c6c292449de9cafc38281d202237fcc1c96353b84bc0b2fbf6 SHA512 5bca4d8bf59b81c34dfc75b6b15475ff2a898015dac07d609d08efba0484d2eea5e31a50de45ffbf1e5c1701fe212dc4e964a177119990a2d39f486b8944b8f2
+DIST xpra-html5-4.4.tar.gz 1483981 BLAKE2B 37ad2089fd0fc82d1fa87a8a4f05fc43482c0ef7278c0dec41f34ceaaea7e8f5431cee1857bce2a7b1af46d2141a11e51263f538c543e7fde06ea0d24b7a8a3d SHA512 7725454b4560f92ab9dd003f6ce66d2b8ac22b35f59048e42ba38b5ee807c811c4c2e32628d7363ae8ed5ef4025bd1baf62402a0f081d58d19e5a086b762c909
diff --git a/www-apps/xpra-html5/xpra-html5-4.3.ebuild b/www-apps/xpra-html5/xpra-html5-4.4.ebuild
similarity index 100%
rename from www-apps/xpra-html5/xpra-html5-4.3.ebuild
rename to www-apps/xpra-html5/xpra-html5-4.4.ebuild
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2021-09-03 20:44 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2021-09-03 20:44 UTC (permalink / raw
To: gentoo-commits
commit: f076aa01c478da5d1bef5c9bb7a36cbbc89785d3
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 3 20:44:29 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Fri Sep 3 20:44:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f076aa01
www-apps/xpra-html5: Fix typo
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/xpra-html5-4.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/xpra-html5-4.4.ebuild b/www-apps/xpra-html5/xpra-html5-4.4.ebuild
index 636eaaff0e1..9fa65b5197f 100644
--- a/www-apps/xpra-html5/xpra-html5-4.4.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-4.4.ebuild
@@ -25,7 +25,7 @@ src_configure() {
cat <<EOF > vcs-info || die
BRANCH=gentoo
REVISION=${PR#r}
-LOCATION_MODIFICATIONS=0
+LOCAL_MODIFICATIONS=0
EOF
}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2021-09-16 22:27 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2021-09-16 22:27 UTC (permalink / raw
To: gentoo-commits
commit: 1d70a07463de360988db2e8ce17c4bfd1a96fba5
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 16 22:27:21 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Thu Sep 16 22:27:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d70a074
www-apps/xpra-html5: Bump to 4.5, drop old 4.4
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 2 +-
www-apps/xpra-html5/{xpra-html5-4.4.ebuild => xpra-html5-4.5.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index d4d26080923..6e0ad99b80a 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1 +1 @@
-DIST xpra-html5-4.4.tar.gz 1483981 BLAKE2B 37ad2089fd0fc82d1fa87a8a4f05fc43482c0ef7278c0dec41f34ceaaea7e8f5431cee1857bce2a7b1af46d2141a11e51263f538c543e7fde06ea0d24b7a8a3d SHA512 7725454b4560f92ab9dd003f6ce66d2b8ac22b35f59048e42ba38b5ee807c811c4c2e32628d7363ae8ed5ef4025bd1baf62402a0f081d58d19e5a086b762c909
+DIST xpra-html5-4.5.tar.gz 1487213 BLAKE2B 34d0cb03f78e7e63ed9d1051223ee9c5b34a25798e6181e71da7ebcba4d0db07debddce832cde34ef75887ac8c93164c8cdc1ade28d99359c864a7e241576623 SHA512 d787bd45deb41d07dfbbfc856976f43bf038fe113c7ca0199dd7a3744b692ae41de7ecef31b1b5748e139dbbb7b6dc78dff3623654f20e1e0d1edadf952a8863
diff --git a/www-apps/xpra-html5/xpra-html5-4.4.ebuild b/www-apps/xpra-html5/xpra-html5-4.5.ebuild
similarity index 100%
rename from www-apps/xpra-html5/xpra-html5-4.4.ebuild
rename to www-apps/xpra-html5/xpra-html5-4.5.ebuild
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2021-09-24 22:25 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2021-09-24 22:25 UTC (permalink / raw
To: gentoo-commits
commit: ea34c47250e9a12e560ab11a9b3f092bfd9b9ee1
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 24 22:25:19 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Fri Sep 24 22:25:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea34c472
www-apps/xpra-html5: Bump to 4.5.1, drop old 4.5
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 +
www-apps/xpra-html5/{xpra-html5-4.5.ebuild => xpra-html5-4.5.1.ebuild} | 0
2 files changed, 1 insertion(+)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 6e0ad99b80a..989a7e76d3c 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1 +1,2 @@
+DIST xpra-html5-4.5.1.tar.gz 1488129 BLAKE2B aa1df3008d86bd895c0b974258b42a16411aeb4ee56536380186ef86b15abfb4eaee09102a86c3e2ec58b0012a72c50ec6711114195232a1c6d5b40056cd3e36 SHA512 2818a2342d199815979a4774cee8886608ff1bccc5b26c20430aa1e2b453c60f8427d95868335d30bc8c846476335018687c7d828e71af32c8abba7119989045
DIST xpra-html5-4.5.tar.gz 1487213 BLAKE2B 34d0cb03f78e7e63ed9d1051223ee9c5b34a25798e6181e71da7ebcba4d0db07debddce832cde34ef75887ac8c93164c8cdc1ade28d99359c864a7e241576623 SHA512 d787bd45deb41d07dfbbfc856976f43bf038fe113c7ca0199dd7a3744b692ae41de7ecef31b1b5748e139dbbb7b6dc78dff3623654f20e1e0d1edadf952a8863
diff --git a/www-apps/xpra-html5/xpra-html5-4.5.ebuild b/www-apps/xpra-html5/xpra-html5-4.5.1.ebuild
similarity index 100%
rename from www-apps/xpra-html5/xpra-html5-4.5.ebuild
rename to www-apps/xpra-html5/xpra-html5-4.5.1.ebuild
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2021-09-25 8:17 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2021-09-25 8:17 UTC (permalink / raw
To: gentoo-commits
commit: 73cc0483361cef1e3699a2c93127efd492a0771c
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 25 08:17:06 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Sep 25 08:17:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73cc0483
www-apps/xpra-html5: Update manifest
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 -
1 file changed, 1 deletion(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 989a7e76d3c..c1bbfeb8aa8 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1,2 +1 @@
DIST xpra-html5-4.5.1.tar.gz 1488129 BLAKE2B aa1df3008d86bd895c0b974258b42a16411aeb4ee56536380186ef86b15abfb4eaee09102a86c3e2ec58b0012a72c50ec6711114195232a1c6d5b40056cd3e36 SHA512 2818a2342d199815979a4774cee8886608ff1bccc5b26c20430aa1e2b453c60f8427d95868335d30bc8c846476335018687c7d828e71af32c8abba7119989045
-DIST xpra-html5-4.5.tar.gz 1487213 BLAKE2B 34d0cb03f78e7e63ed9d1051223ee9c5b34a25798e6181e71da7ebcba4d0db07debddce832cde34ef75887ac8c93164c8cdc1ade28d99359c864a7e241576623 SHA512 d787bd45deb41d07dfbbfc856976f43bf038fe113c7ca0199dd7a3744b692ae41de7ecef31b1b5748e139dbbb7b6dc78dff3623654f20e1e0d1edadf952a8863
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2021-12-19 9:59 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2021-12-19 9:59 UTC (permalink / raw
To: gentoo-commits
commit: 12b41b6e923761a0429cf0253d207a2d52c98fa4
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 19 09:59:25 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Dec 19 09:59:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12b41b6e
www-apps/xpra-html5: Version bump to 4.5.2, drop old 4.5.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 2 +-
.../{xpra-html5-4.5.1.ebuild => xpra-html5-4.5.2.ebuild} | 7 ++++++-
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index c1bbfeb8aa85..872df3d1d30d 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1 +1 @@
-DIST xpra-html5-4.5.1.tar.gz 1488129 BLAKE2B aa1df3008d86bd895c0b974258b42a16411aeb4ee56536380186ef86b15abfb4eaee09102a86c3e2ec58b0012a72c50ec6711114195232a1c6d5b40056cd3e36 SHA512 2818a2342d199815979a4774cee8886608ff1bccc5b26c20430aa1e2b453c60f8427d95868335d30bc8c846476335018687c7d828e71af32c8abba7119989045
+DIST xpra-html5-4.5.2.tar.gz 1492651 BLAKE2B 1e0fb2f554f4e2c4bb4bbf3b937b33408dc56b7a2aaba1a0459e28bea4c87b5f96195abbd2de0e8461964e43dace5f40badfdb9dfe3a4db5f7c3c9eddc6eaa68 SHA512 a1f73889ad3797ca25d232d3d11e1753dc10944cb8f07c1d6dbacfbf5273b22a0d3696af4e88cd5b75ed4a0970533e340a41253842c3766ab6fe650dc5fb0d0b
diff --git a/www-apps/xpra-html5/xpra-html5-4.5.1.ebuild b/www-apps/xpra-html5/xpra-html5-4.5.2.ebuild
similarity index 77%
rename from www-apps/xpra-html5/xpra-html5-4.5.1.ebuild
rename to www-apps/xpra-html5/xpra-html5-4.5.2.ebuild
index 9fa65b5197fd..43135d172c20 100644
--- a/www-apps/xpra-html5/xpra-html5-4.5.1.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-4.5.2.ebuild
@@ -36,8 +36,13 @@ setup.set_version("${PV}")
setup.install_html5(
"${ED}/usr/share/xpra/www",
"$(usex minify uglifyjs copy)",
+ gzip=$(usex gzip True False),
brotli=$(usex brotli True False),
- gzip=$(usex gzip True False)
+ configuration_files=["default-settings.txt"]
)
EOF
+
+ insinto /etc/xpra/html5-client
+ doins html5/default-settings.txt
+ dosym ../../../../etc/xpra/html5-client/default-settings.txt /usr/share/xpra/www/default-settings.txt
}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2022-05-12 21:57 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2022-05-12 21:57 UTC (permalink / raw
To: gentoo-commits
commit: 15e998d86f5915ca56cb5b8c935b2a1786255d9e
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Thu May 12 21:57:09 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Thu May 12 21:57:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e998d8
www-apps/xpra-html5: Version bump to 5.0
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 +
www-apps/xpra-html5/xpra-html5-5.0.ebuild | 45 +++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 872df3d1d30d..98ddc7760a0b 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1 +1,2 @@
DIST xpra-html5-4.5.2.tar.gz 1492651 BLAKE2B 1e0fb2f554f4e2c4bb4bbf3b937b33408dc56b7a2aaba1a0459e28bea4c87b5f96195abbd2de0e8461964e43dace5f40badfdb9dfe3a4db5f7c3c9eddc6eaa68 SHA512 a1f73889ad3797ca25d232d3d11e1753dc10944cb8f07c1d6dbacfbf5273b22a0d3696af4e88cd5b75ed4a0970533e340a41253842c3766ab6fe650dc5fb0d0b
+DIST xpra-html5-5.0.tar.gz 1570694 BLAKE2B aef7b818aa618c143701993627e629884b5e696c7334e6b75701a20028f18aced5e3249505ac031d6cd0a08d79ca2b9728afdb2e90712fcbe45d43d02598f608 SHA512 8318c6dd8f8f53d0a132272c2bb8c69e8ba928f2f267679aee48cec4598faa828788a219dfa342162e1fcf8159bf46b44d50db57180f1aa972edd67fa43e9cd5
diff --git a/www-apps/xpra-html5/xpra-html5-5.0.ebuild b/www-apps/xpra-html5/xpra-html5-5.0.ebuild
new file mode 100644
index 000000000000..5c2270895f63
--- /dev/null
+++ b/www-apps/xpra-html5/xpra-html5-5.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8,9,10} )
+inherit python-any-r1
+
+DESCRIPTION="HTML5 client to connect to any xpra server"
+HOMEPAGE="https://xpra.org/"
+SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="brotli +gzip minify"
+
+BDEPEND="
+ ${PYTHON_DEPS}
+ brotli? ( app-arch/brotli )
+ minify? ( dev-util/uglifyjs )
+"
+
+src_configure() {
+ cat <<EOF > vcs-info || die
+BRANCH=gentoo
+REVISION=${PR#r}
+LOCAL_MODIFICATIONS=0
+EOF
+}
+
+src_install() {
+ "${PYTHON}" <<EOF || die
+import setup
+setup.set_version("${PV}")
+setup.install_html5(
+ root="${D}",
+ install_dir="${EPREFIX}/usr/share/xpra/www/",
+ config_dir="${EPREFIX}/etc/xpra/html5-client",
+ minifier="$(usex minify uglifyjs copy)",
+ gzip=$(usex gzip True False),
+ brotli=$(usex brotli True False),
+)
+EOF
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2022-06-11 10:51 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2022-06-11 10:51 UTC (permalink / raw
To: gentoo-commits
commit: d74a3e29eb4b72735a69922633d76e6ab548c149
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 11 10:51:09 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Jun 11 10:51:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d74a3e29
www-apps/xpra-html5: Drop old 4.5.2
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 -
www-apps/xpra-html5/xpra-html5-4.5.2.ebuild | 48 -----------------------------
2 files changed, 49 deletions(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 98ddc7760a0b..c4f6b2920012 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1,2 +1 @@
-DIST xpra-html5-4.5.2.tar.gz 1492651 BLAKE2B 1e0fb2f554f4e2c4bb4bbf3b937b33408dc56b7a2aaba1a0459e28bea4c87b5f96195abbd2de0e8461964e43dace5f40badfdb9dfe3a4db5f7c3c9eddc6eaa68 SHA512 a1f73889ad3797ca25d232d3d11e1753dc10944cb8f07c1d6dbacfbf5273b22a0d3696af4e88cd5b75ed4a0970533e340a41253842c3766ab6fe650dc5fb0d0b
DIST xpra-html5-5.0.tar.gz 1570694 BLAKE2B aef7b818aa618c143701993627e629884b5e696c7334e6b75701a20028f18aced5e3249505ac031d6cd0a08d79ca2b9728afdb2e90712fcbe45d43d02598f608 SHA512 8318c6dd8f8f53d0a132272c2bb8c69e8ba928f2f267679aee48cec4598faa828788a219dfa342162e1fcf8159bf46b44d50db57180f1aa972edd67fa43e9cd5
diff --git a/www-apps/xpra-html5/xpra-html5-4.5.2.ebuild b/www-apps/xpra-html5/xpra-html5-4.5.2.ebuild
deleted file mode 100644
index 43135d172c20..000000000000
--- a/www-apps/xpra-html5/xpra-html5-4.5.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-inherit python-any-r1
-
-DESCRIPTION="HTML5 client to connect to any xpra server"
-HOMEPAGE="https://xpra.org/"
-SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="brotli +gzip minify"
-
-BDEPEND="
- ${PYTHON_DEPS}
- brotli? ( app-arch/brotli )
- minify? ( dev-util/uglifyjs )
-"
-
-src_configure() {
- cat <<EOF > vcs-info || die
-BRANCH=gentoo
-REVISION=${PR#r}
-LOCAL_MODIFICATIONS=0
-EOF
-}
-
-src_install() {
- "${PYTHON}" <<EOF || die
-import setup
-setup.set_version("${PV}")
-setup.install_html5(
- "${ED}/usr/share/xpra/www",
- "$(usex minify uglifyjs copy)",
- gzip=$(usex gzip True False),
- brotli=$(usex brotli True False),
- configuration_files=["default-settings.txt"]
-)
-EOF
-
- insinto /etc/xpra/html5-client
- doins html5/default-settings.txt
- dosym ../../../../etc/xpra/html5-client/default-settings.txt /usr/share/xpra/www/default-settings.txt
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2022-07-06 6:06 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2022-07-06 6:06 UTC (permalink / raw
To: gentoo-commits
commit: 03968e05f31455ba7eb71def9b1413844b94161a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 6 06:05:49 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 6 06:05:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03968e05
www-apps/xpra-html5: Stabilize 5.0 amd64, #853619
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apps/xpra-html5/xpra-html5-5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/xpra-html5-5.0.ebuild b/www-apps/xpra-html5/xpra-html5-5.0.ebuild
index 5c2270895f63..af102461d653 100644
--- a/www-apps/xpra-html5/xpra-html5-5.0.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-5.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
LICENSE="MPL-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="brotli +gzip minify"
BDEPEND="
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2022-08-29 12:49 Jakov Smolić
0 siblings, 0 replies; 24+ messages in thread
From: Jakov Smolić @ 2022-08-29 12:49 UTC (permalink / raw
To: gentoo-commits
commit: d500db94bcb3215207e871a9bdb8130b7d74c304
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 12:49:21 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 12:49:21 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d500db94
www-apps/xpra-html5: Stabilize 5.0 x86, #853619
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
www-apps/xpra-html5/xpra-html5-5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/xpra-html5-5.0.ebuild b/www-apps/xpra-html5/xpra-html5-5.0.ebuild
index af102461d653..6860b4d116c6 100644
--- a/www-apps/xpra-html5/xpra-html5-5.0.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-5.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
LICENSE="MPL-2.0"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="brotli +gzip minify"
BDEPEND="
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2022-10-29 13:32 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2022-10-29 13:32 UTC (permalink / raw
To: gentoo-commits
commit: 9b95d5375dc7e9170f893c709eab2b02215f9af6
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 29 13:29:58 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 13:32:31 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b95d537
www-apps/xpra-html5: Version bump to 6.0
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 +
www-apps/xpra-html5/xpra-html5-6.0.ebuild | 45 +++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index c4f6b2920012..ebb5d888cd27 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1 +1,2 @@
DIST xpra-html5-5.0.tar.gz 1570694 BLAKE2B aef7b818aa618c143701993627e629884b5e696c7334e6b75701a20028f18aced5e3249505ac031d6cd0a08d79ca2b9728afdb2e90712fcbe45d43d02598f608 SHA512 8318c6dd8f8f53d0a132272c2bb8c69e8ba928f2f267679aee48cec4598faa828788a219dfa342162e1fcf8159bf46b44d50db57180f1aa972edd67fa43e9cd5
+DIST xpra-html5-6.0.tar.gz 1417240 BLAKE2B c887d88c97f4925c511e4120556b98329c205e5fecb8189d615028b4e982d829c9d5649beb646a3f2f0ca42138dd8c26fdb86a2c2c2ee85834e88d14ce8ae1cc SHA512 e5c923df17f25e065ca90499ead4cd33057bf8c2a06aa3b8d4c74e2b3a083b69b525f2dd4d01267168fe5bd8211035067bf952802a64c198dc21106dc7aa384f
diff --git a/www-apps/xpra-html5/xpra-html5-6.0.ebuild b/www-apps/xpra-html5/xpra-html5-6.0.ebuild
new file mode 100644
index 000000000000..5c2270895f63
--- /dev/null
+++ b/www-apps/xpra-html5/xpra-html5-6.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8,9,10} )
+inherit python-any-r1
+
+DESCRIPTION="HTML5 client to connect to any xpra server"
+HOMEPAGE="https://xpra.org/"
+SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="brotli +gzip minify"
+
+BDEPEND="
+ ${PYTHON_DEPS}
+ brotli? ( app-arch/brotli )
+ minify? ( dev-util/uglifyjs )
+"
+
+src_configure() {
+ cat <<EOF > vcs-info || die
+BRANCH=gentoo
+REVISION=${PR#r}
+LOCAL_MODIFICATIONS=0
+EOF
+}
+
+src_install() {
+ "${PYTHON}" <<EOF || die
+import setup
+setup.set_version("${PV}")
+setup.install_html5(
+ root="${D}",
+ install_dir="${EPREFIX}/usr/share/xpra/www/",
+ config_dir="${EPREFIX}/etc/xpra/html5-client",
+ minifier="$(usex minify uglifyjs copy)",
+ gzip=$(usex gzip True False),
+ brotli=$(usex brotli True False),
+)
+EOF
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2022-11-08 22:49 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2022-11-08 22:49 UTC (permalink / raw
To: gentoo-commits
commit: 59d85dadc81c939dbfade06f1c68a92b9653311b
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 8 22:48:56 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Nov 8 22:48:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59d85dad
www-apps/xpra-html5: Bump to 6.1, drop old 6.0
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 2 +-
www-apps/xpra-html5/{xpra-html5-6.0.ebuild => xpra-html5-6.1.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index ebb5d888cd27..66a0968af5f7 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1,2 +1,2 @@
DIST xpra-html5-5.0.tar.gz 1570694 BLAKE2B aef7b818aa618c143701993627e629884b5e696c7334e6b75701a20028f18aced5e3249505ac031d6cd0a08d79ca2b9728afdb2e90712fcbe45d43d02598f608 SHA512 8318c6dd8f8f53d0a132272c2bb8c69e8ba928f2f267679aee48cec4598faa828788a219dfa342162e1fcf8159bf46b44d50db57180f1aa972edd67fa43e9cd5
-DIST xpra-html5-6.0.tar.gz 1417240 BLAKE2B c887d88c97f4925c511e4120556b98329c205e5fecb8189d615028b4e982d829c9d5649beb646a3f2f0ca42138dd8c26fdb86a2c2c2ee85834e88d14ce8ae1cc SHA512 e5c923df17f25e065ca90499ead4cd33057bf8c2a06aa3b8d4c74e2b3a083b69b525f2dd4d01267168fe5bd8211035067bf952802a64c198dc21106dc7aa384f
+DIST xpra-html5-6.1.tar.gz 1416380 BLAKE2B ba0e2bdcae91b30a1f46655dc505f5338cd8c516414f55871c6bc01b6bdcd81d351d66c575c6a7a219cb0c29e7da17e8db558b928dc89067b5ad3289520005f2 SHA512 3539c235f38a66f0a8eaea679df4b4bb4a1ef778ab31baf705acc29b0d4b3998ae84081eeac085db973d170afaa1ee0f167124efc3e48266145fdbef255a6bf5
diff --git a/www-apps/xpra-html5/xpra-html5-6.0.ebuild b/www-apps/xpra-html5/xpra-html5-6.1.ebuild
similarity index 96%
rename from www-apps/xpra-html5/xpra-html5-6.0.ebuild
rename to www-apps/xpra-html5/xpra-html5-6.1.ebuild
index 5c2270895f63..7171797b5b73 100644
--- a/www-apps/xpra-html5/xpra-html5-6.0.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-6.1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8,9,10} )
+PYTHON_COMPAT=( python3_{8,9,10,11} )
inherit python-any-r1
DESCRIPTION="HTML5 client to connect to any xpra server"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2023-04-20 4:17 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2023-04-20 4:17 UTC (permalink / raw
To: gentoo-commits
commit: a8adbd99efa231ec3389a170df6a8b44c48eb439
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 04:16:58 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 04:17:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8adbd99
www-apps/xpra-html5: Stabilize 6.1 amd64, #904600
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apps/xpra-html5/xpra-html5-6.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/xpra-html5-6.1.ebuild b/www-apps/xpra-html5/xpra-html5-6.1.ebuild
index 047debce69ae..b61b4635fe66 100644
--- a/www-apps/xpra-html5/xpra-html5-6.1.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-6.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
LICENSE="MPL-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="brotli +gzip minify"
BDEPEND="
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2023-04-21 7:53 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2023-04-21 7:53 UTC (permalink / raw
To: gentoo-commits
commit: 7e91f156bbb439aefa3ab6b9fbcdac55f18e6e03
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 21 07:52:50 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 21 07:53:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e91f156
www-apps/xpra-html5: Stabilize 6.1 x86, #904600
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apps/xpra-html5/xpra-html5-6.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/xpra-html5-6.1.ebuild b/www-apps/xpra-html5/xpra-html5-6.1.ebuild
index b61b4635fe66..009477138249 100644
--- a/www-apps/xpra-html5/xpra-html5-6.1.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-6.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
LICENSE="MPL-2.0"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="brotli +gzip minify"
BDEPEND="
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2023-04-23 18:21 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2023-04-23 18:21 UTC (permalink / raw
To: gentoo-commits
commit: d1428750ac31f7bf428694b1a05266ca21730f58
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 18:21:25 2023 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 18:21:25 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1428750
www-apps/xpra-html5: Drop old 5.0
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 -
www-apps/xpra-html5/xpra-html5-5.0.ebuild | 45 -------------------------------
2 files changed, 46 deletions(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 66a0968af5f7..6c4732559314 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1,2 +1 @@
-DIST xpra-html5-5.0.tar.gz 1570694 BLAKE2B aef7b818aa618c143701993627e629884b5e696c7334e6b75701a20028f18aced5e3249505ac031d6cd0a08d79ca2b9728afdb2e90712fcbe45d43d02598f608 SHA512 8318c6dd8f8f53d0a132272c2bb8c69e8ba928f2f267679aee48cec4598faa828788a219dfa342162e1fcf8159bf46b44d50db57180f1aa972edd67fa43e9cd5
DIST xpra-html5-6.1.tar.gz 1416380 BLAKE2B ba0e2bdcae91b30a1f46655dc505f5338cd8c516414f55871c6bc01b6bdcd81d351d66c575c6a7a219cb0c29e7da17e8db558b928dc89067b5ad3289520005f2 SHA512 3539c235f38a66f0a8eaea679df4b4bb4a1ef778ab31baf705acc29b0d4b3998ae84081eeac085db973d170afaa1ee0f167124efc3e48266145fdbef255a6bf5
diff --git a/www-apps/xpra-html5/xpra-html5-5.0.ebuild b/www-apps/xpra-html5/xpra-html5-5.0.ebuild
deleted file mode 100644
index f92edde1dfe4..000000000000
--- a/www-apps/xpra-html5/xpra-html5-5.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9,10} )
-inherit python-any-r1
-
-DESCRIPTION="HTML5 client to connect to any xpra server"
-HOMEPAGE="https://xpra.org/"
-SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="brotli +gzip minify"
-
-BDEPEND="
- ${PYTHON_DEPS}
- brotli? ( app-arch/brotli )
- minify? ( dev-util/uglifyjs )
-"
-
-src_configure() {
- cat <<EOF > vcs-info || die
-BRANCH=gentoo
-REVISION=${PR#r}
-LOCAL_MODIFICATIONS=0
-EOF
-}
-
-src_install() {
- "${PYTHON}" <<EOF || die
-import setup
-setup.set_version("${PV}")
-setup.install_html5(
- root="${D}",
- install_dir="${EPREFIX}/usr/share/xpra/www/",
- config_dir="${EPREFIX}/etc/xpra/html5-client",
- minifier="$(usex minify uglifyjs copy)",
- gzip=$(usex gzip True False),
- brotli=$(usex brotli True False),
-)
-EOF
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2023-07-12 21:07 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2023-07-12 21:07 UTC (permalink / raw
To: gentoo-commits
commit: 2aa4540fa64fc1e27a5dedc7e23c376183742308
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 12 21:05:34 2023 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Jul 12 21:05:34 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa4540f
www-apps/xpra-html5: Version bump to 8.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 +
www-apps/xpra-html5/xpra-html5-8.1.ebuild | 45 +++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 6c4732559314..6143090a22c4 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1 +1,2 @@
DIST xpra-html5-6.1.tar.gz 1416380 BLAKE2B ba0e2bdcae91b30a1f46655dc505f5338cd8c516414f55871c6bc01b6bdcd81d351d66c575c6a7a219cb0c29e7da17e8db558b928dc89067b5ad3289520005f2 SHA512 3539c235f38a66f0a8eaea679df4b4bb4a1ef778ab31baf705acc29b0d4b3998ae84081eeac085db973d170afaa1ee0f167124efc3e48266145fdbef255a6bf5
+DIST xpra-html5-8.1.tar.gz 1328112 BLAKE2B c9ada4a5131273e29aa02cbee740bfaa7bcf50751231cd0fd04e9ccbd29a4cea31a0617a51019120ccf68fc9b8060c2f837f000c3ca67d2d049e9b1d27a622e0 SHA512 c02aa50e65414b06fe978113005fd13f631d73bde602a4d5c3c4d7281dfe23330cee01bb5c0701652fe1c91d91350dd9bc9b4f5144f6940ab4a83cf6743be1dd
diff --git a/www-apps/xpra-html5/xpra-html5-8.1.ebuild b/www-apps/xpra-html5/xpra-html5-8.1.ebuild
new file mode 100644
index 000000000000..e5118ee749bc
--- /dev/null
+++ b/www-apps/xpra-html5/xpra-html5-8.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..12} )
+inherit python-any-r1
+
+DESCRIPTION="HTML5 client to connect to any xpra server"
+HOMEPAGE="https://xpra.org/"
+SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="brotli +gzip minify"
+
+BDEPEND="
+ ${PYTHON_DEPS}
+ brotli? ( app-arch/brotli )
+ minify? ( dev-util/uglifyjs )
+"
+
+src_configure() {
+ cat <<EOF > vcs-info || die
+BRANCH=gentoo
+REVISION=${PR#r}
+LOCAL_MODIFICATIONS=0
+EOF
+}
+
+src_install() {
+ "${PYTHON}" <<EOF || die
+import setup
+setup.set_version("${PV}")
+setup.install_html5(
+ root="${D}",
+ install_dir="${EPREFIX}/usr/share/xpra/www/",
+ config_dir="${EPREFIX}/etc/xpra/html5-client",
+ minifier="$(usex minify uglifyjs copy)",
+ gzip=$(usex gzip True False),
+ brotli=$(usex brotli True False),
+)
+EOF
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2024-01-20 22:21 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2024-01-20 22:21 UTC (permalink / raw
To: gentoo-commits
commit: 3cdf2d74644a30a0719164456f32c5c49e029770
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 20 22:18:58 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Jan 20 22:18:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cdf2d74
www-apps/xpra-html5: Bump to 10.1, drop old 8.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 2 +-
www-apps/xpra-html5/{xpra-html5-8.1.ebuild => xpra-html5-10.1.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 6143090a22c4..a3ca50a5d586 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1,2 +1,2 @@
+DIST xpra-html5-10.1.tar.gz 2354055 BLAKE2B f67b2f15903c1bef93cd93db0d363c067a4dd0455f3013aa86bfff070b91e40946c0500cff270f10f8cbbf654cd4b2d5908cb06f4d86c7ec612fec78ecf3103c SHA512 a5a9c1d09ae767ad339225e1b130c2e285a20a57cc90f22728d12eec3d8cac4b1c00c7f38153972dbb2d2f6c3836ec532fcba14a4456114f70524b8ec2de38be
DIST xpra-html5-6.1.tar.gz 1416380 BLAKE2B ba0e2bdcae91b30a1f46655dc505f5338cd8c516414f55871c6bc01b6bdcd81d351d66c575c6a7a219cb0c29e7da17e8db558b928dc89067b5ad3289520005f2 SHA512 3539c235f38a66f0a8eaea679df4b4bb4a1ef778ab31baf705acc29b0d4b3998ae84081eeac085db973d170afaa1ee0f167124efc3e48266145fdbef255a6bf5
-DIST xpra-html5-8.1.tar.gz 1328112 BLAKE2B c9ada4a5131273e29aa02cbee740bfaa7bcf50751231cd0fd04e9ccbd29a4cea31a0617a51019120ccf68fc9b8060c2f837f000c3ca67d2d049e9b1d27a622e0 SHA512 c02aa50e65414b06fe978113005fd13f631d73bde602a4d5c3c4d7281dfe23330cee01bb5c0701652fe1c91d91350dd9bc9b4f5144f6940ab4a83cf6743be1dd
diff --git a/www-apps/xpra-html5/xpra-html5-8.1.ebuild b/www-apps/xpra-html5/xpra-html5-10.1.ebuild
similarity index 96%
rename from www-apps/xpra-html5/xpra-html5-8.1.ebuild
rename to www-apps/xpra-html5/xpra-html5-10.1.ebuild
index e5118ee749bc..bb583f2964f2 100644
--- a/www-apps/xpra-html5/xpra-html5-8.1.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-10.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2024-05-28 20:49 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2024-05-28 20:49 UTC (permalink / raw
To: gentoo-commits
commit: e8817f870e3af8f606da833291628e7fe73d0fc8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 20:47:07 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 28 20:47:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8817f87
www-apps/xpra-html5: Stabilize 10.1 x86, #933059
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apps/xpra-html5/xpra-html5-10.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/xpra-html5-10.1.ebuild b/www-apps/xpra-html5/xpra-html5-10.1.ebuild
index bb583f2964f2..e7477eeddc1c 100644
--- a/www-apps/xpra-html5/xpra-html5-10.1.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-10.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
LICENSE="MPL-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="brotli +gzip minify"
BDEPEND="
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2024-05-29 11:47 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2024-05-29 11:47 UTC (permalink / raw
To: gentoo-commits
commit: 691755aaf0edfaaf1fd5f1be8f70a7098a71cb68
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 11:45:52 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 29 11:45:52 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=691755aa
www-apps/xpra-html5: Stabilize 10.1 amd64, #933059
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apps/xpra-html5/xpra-html5-10.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/xpra-html5-10.1.ebuild b/www-apps/xpra-html5/xpra-html5-10.1.ebuild
index e7477eeddc1c..eaa42523ae29 100644
--- a/www-apps/xpra-html5/xpra-html5-10.1.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-10.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
LICENSE="MPL-2.0"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="brotli +gzip minify"
BDEPEND="
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2024-06-02 8:41 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2024-06-02 8:41 UTC (permalink / raw
To: gentoo-commits
commit: 8aa5e14c2ad73e4e48e3bc914a373fdfd986a365
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 2 08:31:09 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Jun 2 08:41:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aa5e14c
www-apps/xpra-html5: Drop old 6.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 -
www-apps/xpra-html5/xpra-html5-6.1.ebuild | 45 -------------------------------
2 files changed, 46 deletions(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index a3ca50a5d586..a3748e09ebbe 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1,2 +1 @@
DIST xpra-html5-10.1.tar.gz 2354055 BLAKE2B f67b2f15903c1bef93cd93db0d363c067a4dd0455f3013aa86bfff070b91e40946c0500cff270f10f8cbbf654cd4b2d5908cb06f4d86c7ec612fec78ecf3103c SHA512 a5a9c1d09ae767ad339225e1b130c2e285a20a57cc90f22728d12eec3d8cac4b1c00c7f38153972dbb2d2f6c3836ec532fcba14a4456114f70524b8ec2de38be
-DIST xpra-html5-6.1.tar.gz 1416380 BLAKE2B ba0e2bdcae91b30a1f46655dc505f5338cd8c516414f55871c6bc01b6bdcd81d351d66c575c6a7a219cb0c29e7da17e8db558b928dc89067b5ad3289520005f2 SHA512 3539c235f38a66f0a8eaea679df4b4bb4a1ef778ab31baf705acc29b0d4b3998ae84081eeac085db973d170afaa1ee0f167124efc3e48266145fdbef255a6bf5
diff --git a/www-apps/xpra-html5/xpra-html5-6.1.ebuild b/www-apps/xpra-html5/xpra-html5-6.1.ebuild
deleted file mode 100644
index 009477138249..000000000000
--- a/www-apps/xpra-html5/xpra-html5-6.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9,10,11} )
-inherit python-any-r1
-
-DESCRIPTION="HTML5 client to connect to any xpra server"
-HOMEPAGE="https://xpra.org/"
-SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="brotli +gzip minify"
-
-BDEPEND="
- ${PYTHON_DEPS}
- brotli? ( app-arch/brotli )
- minify? ( dev-util/uglifyjs )
-"
-
-src_configure() {
- cat <<EOF > vcs-info || die
-BRANCH=gentoo
-REVISION=${PR#r}
-LOCAL_MODIFICATIONS=0
-EOF
-}
-
-src_install() {
- "${PYTHON}" <<EOF || die
-import setup
-setup.set_version("${PV}")
-setup.install_html5(
- root="${D}",
- install_dir="${EPREFIX}/usr/share/xpra/www/",
- config_dir="${EPREFIX}/etc/xpra/html5-client",
- minifier="$(usex minify uglifyjs copy)",
- gzip=$(usex gzip True False),
- brotli=$(usex brotli True False),
-)
-EOF
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2024-06-02 8:41 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2024-06-02 8:41 UTC (permalink / raw
To: gentoo-commits
commit: 5ccdd59cee74a2ff9010927bff56446ae69123f8
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 2 08:39:49 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Jun 2 08:41:23 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ccdd59c
www-apps/xpra-html5: Add python3_13
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/xpra-html5-10.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/xpra-html5-10.1.ebuild b/www-apps/xpra-html5/xpra-html5-10.1.ebuild
index eaa42523ae29..abec1c97274a 100644
--- a/www-apps/xpra-html5/xpra-html5-10.1.ebuild
+++ b/www-apps/xpra-html5/xpra-html5-10.1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{9..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit python-any-r1
DESCRIPTION="HTML5 client to connect to any xpra server"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2024-06-02 8:49 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2024-06-02 8:49 UTC (permalink / raw
To: gentoo-commits
commit: 831177dc81fe335f949b09b124209faf184abf84
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 2 08:48:43 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Jun 2 08:49:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=831177dc
www-apps/xpra-html5: Version bump to 13
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 1 +
www-apps/xpra-html5/xpra-html5-13.ebuild | 45 ++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index a3748e09ebbe..83e24314817f 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1 +1,2 @@
DIST xpra-html5-10.1.tar.gz 2354055 BLAKE2B f67b2f15903c1bef93cd93db0d363c067a4dd0455f3013aa86bfff070b91e40946c0500cff270f10f8cbbf654cd4b2d5908cb06f4d86c7ec612fec78ecf3103c SHA512 a5a9c1d09ae767ad339225e1b130c2e285a20a57cc90f22728d12eec3d8cac4b1c00c7f38153972dbb2d2f6c3836ec532fcba14a4456114f70524b8ec2de38be
+DIST xpra-html5-13.tar.gz 2360764 BLAKE2B 81ff150047ff9e422fd6b590ac115f71c3641dc2cec5e2364276e05260a527128845b84813ffa4cf7bb9354c416600a69737c41c3f1b0529a6bb1979a262e128 SHA512 583a9bb6dce718d1066237d0558eaa4cef2b0d9816d99d9bc9d4ce66dcfdc79bb3c21f9a8b55732a3716e752044864643ccc3bfbfca3b459169739ea3e099bf1
diff --git a/www-apps/xpra-html5/xpra-html5-13.ebuild b/www-apps/xpra-html5/xpra-html5-13.ebuild
new file mode 100644
index 000000000000..5731073a8d3b
--- /dev/null
+++ b/www-apps/xpra-html5/xpra-html5-13.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+inherit python-any-r1
+
+DESCRIPTION="HTML5 client to connect to any xpra server"
+HOMEPAGE="https://xpra.org/"
+SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="brotli +gzip minify"
+
+BDEPEND="
+ ${PYTHON_DEPS}
+ brotli? ( app-arch/brotli )
+ minify? ( dev-util/uglifyjs )
+"
+
+src_configure() {
+ cat <<EOF > vcs-info || die
+BRANCH=gentoo
+REVISION=${PR#r}
+LOCAL_MODIFICATIONS=0
+EOF
+}
+
+src_install() {
+ "${PYTHON}" <<EOF || die
+import setup
+setup.set_version("${PV}")
+setup.install_html5(
+ root="${D}",
+ install_dir="${EPREFIX}/usr/share/xpra/www/",
+ config_dir="${EPREFIX}/etc/xpra/html5-client",
+ minifier="$(usex minify uglifyjs copy)",
+ gzip=$(usex gzip True False),
+ brotli=$(usex brotli True False),
+)
+EOF
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/
@ 2024-08-15 21:21 James Le Cuirot
0 siblings, 0 replies; 24+ messages in thread
From: James Le Cuirot @ 2024-08-15 21:21 UTC (permalink / raw
To: gentoo-commits
commit: 023b9b2b2adafbe89f145a47981a73044738de83
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 15 21:17:53 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Thu Aug 15 21:21:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=023b9b2b
www-apps/xpra-html5: Bump to 15, drop old 13
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
www-apps/xpra-html5/Manifest | 2 +-
www-apps/xpra-html5/{xpra-html5-13.ebuild => xpra-html5-15.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 83e24314817f..429d4361567d 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1,2 +1,2 @@
DIST xpra-html5-10.1.tar.gz 2354055 BLAKE2B f67b2f15903c1bef93cd93db0d363c067a4dd0455f3013aa86bfff070b91e40946c0500cff270f10f8cbbf654cd4b2d5908cb06f4d86c7ec612fec78ecf3103c SHA512 a5a9c1d09ae767ad339225e1b130c2e285a20a57cc90f22728d12eec3d8cac4b1c00c7f38153972dbb2d2f6c3836ec532fcba14a4456114f70524b8ec2de38be
-DIST xpra-html5-13.tar.gz 2360764 BLAKE2B 81ff150047ff9e422fd6b590ac115f71c3641dc2cec5e2364276e05260a527128845b84813ffa4cf7bb9354c416600a69737c41c3f1b0529a6bb1979a262e128 SHA512 583a9bb6dce718d1066237d0558eaa4cef2b0d9816d99d9bc9d4ce66dcfdc79bb3c21f9a8b55732a3716e752044864643ccc3bfbfca3b459169739ea3e099bf1
+DIST xpra-html5-15.tar.gz 2363452 BLAKE2B c0279e97c1d790de876d3588d3073ab5a7c4d2dd682360eb297961aba96521885e35b4cd448243e7ee7be59fad5add0aefa052c79dec758e39d909afee873fc1 SHA512 e38f7d4fd10744260925f3b57ebf199d6ed2c3a08426e2b080101811af7cb81c26437ff2de63b4bba97d29676f2131c19e433e46a12cf1e76fd46940bddbfdcc
diff --git a/www-apps/xpra-html5/xpra-html5-13.ebuild b/www-apps/xpra-html5/xpra-html5-15.ebuild
similarity index 100%
rename from www-apps/xpra-html5/xpra-html5-13.ebuild
rename to www-apps/xpra-html5/xpra-html5-15.ebuild
^ permalink raw reply related [flat|nested] 24+ messages in thread
end of thread, other threads:[~2024-08-15 21:21 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-02 8:49 [gentoo-commits] repo/gentoo:master commit in: www-apps/xpra-html5/ James Le Cuirot
-- strict thread matches above, loose matches on Subject: below --
2024-08-15 21:21 James Le Cuirot
2024-06-02 8:41 James Le Cuirot
2024-06-02 8:41 James Le Cuirot
2024-05-29 11:47 Sam James
2024-05-28 20:49 Sam James
2024-01-20 22:21 James Le Cuirot
2023-07-12 21:07 James Le Cuirot
2023-04-23 18:21 James Le Cuirot
2023-04-21 7:53 Sam James
2023-04-20 4:17 Sam James
2022-11-08 22:49 James Le Cuirot
2022-10-29 13:32 James Le Cuirot
2022-08-29 12:49 Jakov Smolić
2022-07-06 6:06 Sam James
2022-06-11 10:51 James Le Cuirot
2022-05-12 21:57 James Le Cuirot
2021-12-19 9:59 James Le Cuirot
2021-09-25 8:17 James Le Cuirot
2021-09-24 22:25 James Le Cuirot
2021-09-16 22:27 James Le Cuirot
2021-09-03 20:44 James Le Cuirot
2021-09-03 20:42 James Le Cuirot
2021-09-01 20:52 James Le Cuirot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox