* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2019-05-19 1:20 Rafael Martins
0 siblings, 0 replies; 9+ messages in thread
From: Rafael Martins @ 2019-05-19 1:20 UTC (permalink / raw
To: gentoo-commits
commit: e1e437bdb6f2238d54227bf48bb437c1c3b4c854
Author: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 01:20:00 2019 +0000
Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
CommitDate: Sun May 19 01:20:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1e437bd
dev-embedded/nodemcu-uploader: new package
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Signed-off-by: Rafael Martins <rafaelmartins <AT> gentoo.org>
dev-embedded/nodemcu-uploader/Manifest | 1 +
dev-embedded/nodemcu-uploader/metadata.xml | 15 +++++++++++
.../nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild | 29 ++++++++++++++++++++++
3 files changed, 45 insertions(+)
diff --git a/dev-embedded/nodemcu-uploader/Manifest b/dev-embedded/nodemcu-uploader/Manifest
new file mode 100644
index 00000000000..259ab525dfa
--- /dev/null
+++ b/dev-embedded/nodemcu-uploader/Manifest
@@ -0,0 +1 @@
+DIST nodemcu-uploader-0.4.3.tar.gz 10034 BLAKE2B 2912d2d4130700fdd0a5145d7aa2b4d9f5742b85a9d0675da8a25a8e02812247928345661c69eadba00c41d33faad8def70ac7c3960794ca418875b942bb255f SHA512 bed8291cceea0f37b914fb45a409a6c259b32c325b09b71338382b29870591ce2003c235a2c231d8ffc0a3600d51a5f89acad1fa5a6fd01fe96fdcaaa55266a0
diff --git a/dev-embedded/nodemcu-uploader/metadata.xml b/dev-embedded/nodemcu-uploader/metadata.xml
new file mode 100644
index 00000000000..2c9f7d99676
--- /dev/null
+++ b/dev-embedded/nodemcu-uploader/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>rafaelmartins@gentoo.org</email>
+ <name>Rafael G. Martins</name>
+ </maintainer>
+ <longdescription lang="en">
+ A simple tool for uploading files to the filesystem of an ESP8266
+ running NodeMCU as well as some other useful commands.
+ </longdescription>
+ <upstream>
+ <remote-id type="pypi">nodemcu-uploader</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild
new file mode 100644
index 00000000000..d9b5adfc1a0
--- /dev/null
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Simple tool for uploading files to the filesystem of an ESP8266 running NodeMCU"
+HOMEPAGE="https://github.com/kmpm/nodemcu-uploader"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+ >=dev-python/wrapt-1.10.10[${PYTHON_USEDEP}]
+ >=dev-python/pyserial-2.7[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]"
+
+RESTRICT="test" # tests are not uploaded to pypi
+
+python_test() {
+ esetup.py test || die
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2020-10-05 21:43 Rafael Martins
0 siblings, 0 replies; 9+ messages in thread
From: Rafael Martins @ 2020-10-05 21:43 UTC (permalink / raw
To: gentoo-commits
commit: a79b68cfa75dd10b367727576cba1c4de5fbee3f
Author: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 5 21:40:31 2020 +0000
Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
CommitDate: Mon Oct 5 21:42:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a79b68cf
dev-embedded/nodemcu-uploader: fix setuptools dependency
Closes: https://bugs.gentoo.org/746773
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Rafael Martins <rafaelmartins <AT> gentoo.org>
.../{nodemcu-uploader-0.4.3.ebuild => nodemcu-uploader-0.4.3-r1.ebuild} | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3-r1.ebuild
similarity index 95%
rename from dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild
rename to dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3-r1.ebuild
index 56589cef8f5..ff8b9a4f528 100644
--- a/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3-r1.ebuild
@@ -4,6 +4,7 @@
EAPI=6
PYTHON_COMPAT=( python{3_6,3_7} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2021-09-25 9:03 Jakov Smolić
0 siblings, 0 replies; 9+ messages in thread
From: Jakov Smolić @ 2021-09-25 9:03 UTC (permalink / raw
To: gentoo-commits
commit: 7b85f965e0187e83940bb7782bcd3e6bbd637aa7
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 25 08:58:53 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Sep 25 09:02:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b85f965
dev-embedded/nodemcu-uploader: Port to py3.10, fix D.U.S and setuptools warning
Closes: https://bugs.gentoo.org/814608
Closes: https://bugs.gentoo.org/796422
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild
index 03681216720..f8f4861793b 100644
--- a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild
@@ -3,8 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{7..10} )
inherit distutils-r1
DESCRIPTION="Simple tool for uploading files to the filesystem of an ESP8266 running NodeMCU"
@@ -18,3 +17,10 @@ KEYWORDS="~amd64 ~x86"
RDEPEND=">=dev-python/pyserial-3.4[${PYTHON_USEDEP}]"
distutils_enable_tests setup.py
+
+src_prepare() {
+ # https://bugs.gentoo.org/796422
+ sed -i -e 's:description-file:description_file:' setup.cfg || die
+
+ distutils-r1_src_prepare
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2023-03-09 6:11 Arthur Zamarin
0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2023-03-09 6:11 UTC (permalink / raw
To: gentoo-commits
commit: 318dab4622c026faba8b359f17af27d3bfc0d3b3
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 9 06:11:25 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 9 06:11:25 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=318dab46
dev-embedded/nodemcu-uploader: EAPI=8, PEP517, py3.11
Closes: https://bugs.gentoo.org/896686
Closes: https://github.com/mgorny/python-bump-testing/issues/42
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
.../nodemcu-uploader-1.0.0-r1.ebuild | 27 ++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
new file mode 100644
index 000000000000..85ff04fa53c9
--- /dev/null
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+inherit distutils-r1
+
+DESCRIPTION="Simple tool for uploading files to the filesystem of an ESP8266 running NodeMCU"
+HOMEPAGE="https://github.com/kmpm/nodemcu-uploader"
+SRC_URI="https://github.com/kmpm/nodemcu-uploader/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=dev-python/pyserial-3.4[${PYTHON_USEDEP}]"
+
+distutils_enable_tests setup.py
+
+src_prepare() {
+ # https://bugs.gentoo.org/796422
+ sed -i -e 's:description-file:description_file:' setup.cfg || die
+
+ distutils-r1_src_prepare
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2024-05-28 16:23 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2024-05-28 16:23 UTC (permalink / raw
To: gentoo-commits
commit: 1778194dde611a48aaba3be4c71fe6eddeb6fc52
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 16:08:24 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 28 16:23:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1778194d
dev-embedded/nodemcu-uploader: Enable py3.12
Closes: https://bugs.gentoo.org/929395
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
index 85ff04fa53c9..bf82f1c4fcba 100644
--- a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
DESCRIPTION="Simple tool for uploading files to the filesystem of an ESP8266 running NodeMCU"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2024-09-08 14:27 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2024-09-08 14:27 UTC (permalink / raw
To: gentoo-commits
commit: 020bc5f388efdef50ce2a5d47fce1e2d96df8c2a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 8 14:25:34 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 8 14:26:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=020bc5f3
dev-embedded/nodemcu-uploader: Use unittest to run tests
Closes: https://bugs.gentoo.org/927517
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../nodemcu-uploader-1.0.0-r1.ebuild | 20 ++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
index bf82f1c4fcba..80a603e45d10 100644
--- a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
@@ -14,10 +14,17 @@ SRC_URI="https://github.com/kmpm/nodemcu-uploader/archive/v${PV}.tar.gz -> ${P}.
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=dev-python/pyserial-3.4[${PYTHON_USEDEP}]"
-
-distutils_enable_tests setup.py
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-python/pyserial-3.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ ${RDEPEND}
+ )
+"
src_prepare() {
# https://bugs.gentoo.org/796422
@@ -25,3 +32,8 @@ src_prepare() {
distutils-r1_src_prepare
}
+
+python_test() {
+ "${EPYTHON}" -m unittest -v tests.get_tests ||
+ die "Tests failed on ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2024-09-08 14:27 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2024-09-08 14:27 UTC (permalink / raw
To: gentoo-commits
commit: 256d13dff5169eab05ee1a2380e4b625e92aab43
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 8 14:22:48 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 8 14:22:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=256d13df
dev-embedded/nodemcu-uploader: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild | 26 ----------------------
1 file changed, 26 deletions(-)
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild
deleted file mode 100644
index d6a6dde13414..000000000000
--- a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
-
-DESCRIPTION="Simple tool for uploading files to the filesystem of an ESP8266 running NodeMCU"
-HOMEPAGE="https://github.com/kmpm/nodemcu-uploader"
-SRC_URI="https://github.com/kmpm/nodemcu-uploader/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=dev-python/pyserial-3.4[${PYTHON_USEDEP}]"
-
-distutils_enable_tests setup.py
-
-src_prepare() {
- # https://bugs.gentoo.org/796422
- sed -i -e 's:description-file:description_file:' setup.cfg || die
-
- distutils-r1_src_prepare
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2024-09-08 14:27 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2024-09-08 14:27 UTC (permalink / raw
To: gentoo-commits
commit: 814a18294d971e74f06eb9f02b49fa83ce0701a2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 8 14:25:45 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 8 14:26:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=814a1829
dev-embedded/nodemcu-uploader: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
index 80a603e45d10..3f9aaf7b5335 100644
--- a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
@@ -4,7 +4,8 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
+
inherit distutils-r1
DESCRIPTION="Simple tool for uploading files to the filesystem of an ESP8266 running NodeMCU"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/
@ 2024-09-08 14:27 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2024-09-08 14:27 UTC (permalink / raw
To: gentoo-commits
commit: 14c620ea6d4c8a67413a0600d8d6ee45af17593b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 8 14:27:06 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 8 14:27:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c620ea
dev-embedded/nodemcu-uploader: Fix distfile name
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-embedded/nodemcu-uploader/Manifest | 2 +-
dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/dev-embedded/nodemcu-uploader/Manifest b/dev-embedded/nodemcu-uploader/Manifest
index 162fa1f909e9..e2d2e2e58bc7 100644
--- a/dev-embedded/nodemcu-uploader/Manifest
+++ b/dev-embedded/nodemcu-uploader/Manifest
@@ -1 +1 @@
-DIST nodemcu-uploader-1.0.0.tar.gz 855474 BLAKE2B f61e10d8c55653003063f93f276fda3d22eb7f4b30cf36bf23dac68775e6be55b73931a4cab54eb244f158b61b7dd4bb5290994386fb355b4be103bf429b5b3c SHA512 9196f8394a26bb5d412d667f7ad423c38b23f906c800e190bbc6f93206a2cbf7da28609a0803bff8b83b32c699df073c49525c05d2dbf276530156224c539864
+DIST nodemcu-uploader-1.0.0.gh.tar.gz 855474 BLAKE2B f61e10d8c55653003063f93f276fda3d22eb7f4b30cf36bf23dac68775e6be55b73931a4cab54eb244f158b61b7dd4bb5290994386fb355b4be103bf429b5b3c SHA512 9196f8394a26bb5d412d667f7ad423c38b23f906c800e190bbc6f93206a2cbf7da28609a0803bff8b83b32c699df073c49525c05d2dbf276530156224c539864
diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
index 3f9aaf7b5335..e13505b028f7 100644
--- a/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-1.0.0-r1.ebuild
@@ -10,7 +10,10 @@ inherit distutils-r1
DESCRIPTION="Simple tool for uploading files to the filesystem of an ESP8266 running NodeMCU"
HOMEPAGE="https://github.com/kmpm/nodemcu-uploader"
-SRC_URI="https://github.com/kmpm/nodemcu-uploader/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="
+ https://github.com/kmpm/nodemcu-uploader/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-09-08 14:27 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-08 14:27 [gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2024-09-08 14:27 Michał Górny
2024-09-08 14:27 Michał Górny
2024-09-08 14:27 Michał Górny
2024-05-28 16:23 Michał Górny
2023-03-09 6:11 Arthur Zamarin
2021-09-25 9:03 Jakov Smolić
2020-10-05 21:43 Rafael Martins
2019-05-19 1:20 Rafael Martins
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox