* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2021-02-20 16:14 David Seifert
0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2021-02-20 16:14 UTC (permalink / raw
To: gentoo-commits
commit: f46394d65f26b4fbcbe16aec44997c180b9a9cc5
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sat Feb 20 16:13:50 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 20 16:13:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f46394d6
net-misc/mstpd: Multiple spanning tree protocol daemon
* mstpd is an user-space daemon that implements RSTP and MSTP protocols
Bug: https://github.com/mstpd/mstpd/issues/105
Closes: https://github.com/gentoo/gentoo/pull/19359
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-misc/mstpd/Manifest | 1 +
net-misc/mstpd/metadata.xml | 15 +++++++++++++++
net-misc/mstpd/mstpd-0.0.9.ebuild | 26 ++++++++++++++++++++++++++
3 files changed, 42 insertions(+)
diff --git a/net-misc/mstpd/Manifest b/net-misc/mstpd/Manifest
new file mode 100644
index 00000000000..364e28eec59
--- /dev/null
+++ b/net-misc/mstpd/Manifest
@@ -0,0 +1 @@
+DIST mstpd-0.0.9.tar.gz 113711 BLAKE2B 93ff0213a634fcbbb613c79227d737c3961f4de669e0ac2c7351fa1c22842669edc652ba0deb24917a44df5a465a4e905a98e46ab7ccc7e4ebfd13039e6acfe0 SHA512 1d4a926d8437b7c41c69d2a047718181ca6245f3150e4aeb631f437edaaafe0c40b29802a6c9ea38c9f1dfb1b94149934b473f550358be10bb796295fa632e1e
diff --git a/net-misc/mstpd/metadata.xml b/net-misc/mstpd/metadata.xml
new file mode 100644
index 00000000000..359cbebb467
--- /dev/null
+++ b/net-misc/mstpd/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>jakov.smolic@sartura.hr</email>
+ <name>Jakov Smolic</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">mstpd/mstpd</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/net-misc/mstpd/mstpd-0.0.9.ebuild b/net-misc/mstpd/mstpd-0.0.9.ebuild
new file mode 100644
index 00000000000..adbcac48da0
--- /dev/null
+++ b/net-misc/mstpd/mstpd-0.0.9.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools bash-completion-r1 systemd
+
+DESCRIPTION="Multiple spanning tree protocol daemon"
+HOMEPAGE="https://github.com/mstpd/mstpd"
+SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --with-bashcompletiondir="$(get_bashcompdir)" \
+ --with-systemdunitdir="$(systemd_get_systemunitdir)" \
+ --localstatedir="${EPREFIX}"/var
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2021-02-20 19:32 David Seifert
0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2021-02-20 19:32 UTC (permalink / raw
To: gentoo-commits
commit: 17417b2c04d4d4341a934bef617f6b383ee051ba
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sat Feb 20 19:31:14 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 20 19:31:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17417b2c
net-misc/mstpd: Convert absolute into relative symlinks
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-misc/mstpd/mstpd-0.0.9.ebuild | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/net-misc/mstpd/mstpd-0.0.9.ebuild b/net-misc/mstpd/mstpd-0.0.9.ebuild
index adbcac48da0..32a39f6deb2 100644
--- a/net-misc/mstpd/mstpd-0.0.9.ebuild
+++ b/net-misc/mstpd/mstpd-0.0.9.ebuild
@@ -24,3 +24,9 @@ src_configure() {
--with-systemdunitdir="$(systemd_get_systemunitdir)" \
--localstatedir="${EPREFIX}"/var
}
+
+src_install() {
+ default
+ dosym ../../sbin/bridge-stp /lib/mstpctl-utils/mstpctl_restart_config
+ dosym bridge-stp /sbin/mstp_restart
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2021-03-04 4:24 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-03-04 4:24 UTC (permalink / raw
To: gentoo-commits
commit: 3d2ba9ca2323289bf18532926ac4b05e75777df3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 04:24:09 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 04:24:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d2ba9ca
net-misc/mstpd: Keyword 0.0.9 arm, #773298
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/mstpd/mstpd-0.0.9.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/mstpd/mstpd-0.0.9.ebuild b/net-misc/mstpd/mstpd-0.0.9.ebuild
index 32a39f6deb2..b2fe4865477 100644
--- a/net-misc/mstpd/mstpd-0.0.9.ebuild
+++ b/net-misc/mstpd/mstpd-0.0.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2021-04-25 5:19 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-04-25 5:19 UTC (permalink / raw
To: gentoo-commits
commit: 38c8572f720e3d7079cb088114aa4d44186b1a52
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 25 05:18:53 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 25 05:18:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c8572f
net-misc/mstpd: Keyword 0.0.9 arm64, #773298
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/mstpd/mstpd-0.0.9.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/mstpd/mstpd-0.0.9.ebuild b/net-misc/mstpd/mstpd-0.0.9.ebuild
index b2fe4865477..06a8a8618cf 100644
--- a/net-misc/mstpd/mstpd-0.0.9.ebuild
+++ b/net-misc/mstpd/mstpd-0.0.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2021-09-15 12:36 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2021-09-15 12:36 UTC (permalink / raw
To: gentoo-commits
commit: 24304c1b500773ed0a350d38456331c681fe8a83
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 15 12:34:31 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Sep 15 12:34:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24304c1b
net-misc/mstpd: Change localstatedir to "${EPREFIX}/"
- Old value would reference legacy directory (/var/run), which would
result in the following message:
```
/lib/systemd/system/mstpd.service:8: PIDFile= references a path below
legacy directory /var/run/, updating /var/run/mstpd.pid →
/run/mstpd.pid; please update the unit file accordingly.
```
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-misc/mstpd/{mstpd-0.0.9.ebuild => mstpd-0.0.9-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/mstpd/mstpd-0.0.9.ebuild b/net-misc/mstpd/mstpd-0.0.9-r1.ebuild
similarity index 95%
rename from net-misc/mstpd/mstpd-0.0.9.ebuild
rename to net-misc/mstpd/mstpd-0.0.9-r1.ebuild
index 06a8a8618cf..29d66dea87e 100644
--- a/net-misc/mstpd/mstpd-0.0.9.ebuild
+++ b/net-misc/mstpd/mstpd-0.0.9-r1.ebuild
@@ -22,7 +22,7 @@ src_configure() {
econf \
--with-bashcompletiondir="$(get_bashcompdir)" \
--with-systemdunitdir="$(systemd_get_systemunitdir)" \
- --localstatedir="${EPREFIX}"/var
+ --localstatedir="${EPREFIX}"/
}
src_install() {
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2021-10-18 12:11 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2021-10-18 12:11 UTC (permalink / raw
To: gentoo-commits
commit: f9d27f9ed4570c35a9dcb775bc31905b7da00f67
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 18 12:10:49 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Oct 18 12:10:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9d27f9e
net-misc/mstpd: add 0.1.0
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-misc/mstpd/Manifest | 1 +
net-misc/mstpd/mstpd-0.1.0.ebuild | 32 ++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/net-misc/mstpd/Manifest b/net-misc/mstpd/Manifest
index 364e28eec59..2df98bcbb1c 100644
--- a/net-misc/mstpd/Manifest
+++ b/net-misc/mstpd/Manifest
@@ -1 +1,2 @@
DIST mstpd-0.0.9.tar.gz 113711 BLAKE2B 93ff0213a634fcbbb613c79227d737c3961f4de669e0ac2c7351fa1c22842669edc652ba0deb24917a44df5a465a4e905a98e46ab7ccc7e4ebfd13039e6acfe0 SHA512 1d4a926d8437b7c41c69d2a047718181ca6245f3150e4aeb631f437edaaafe0c40b29802a6c9ea38c9f1dfb1b94149934b473f550358be10bb796295fa632e1e
+DIST mstpd-0.1.0.tar.gz 115670 BLAKE2B d0b666f16941ebb161cf91ad849da9d8f1927e90052f02cbab759685864bdd6040525bcbb69ca3e602140fa7245f1a48eed00d7e8515eb849ae0bd586f41588d SHA512 c3f7e1045e89eaad05b212993e4fb79e3662d247e371340276c59b92e33c732a9d82ed3490ce3b51e79c666db9f999916667d2be5da1f928e1624b288b0295bb
diff --git a/net-misc/mstpd/mstpd-0.1.0.ebuild b/net-misc/mstpd/mstpd-0.1.0.ebuild
new file mode 100644
index 00000000000..c8603cd165e
--- /dev/null
+++ b/net-misc/mstpd/mstpd-0.1.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 systemd
+
+DESCRIPTION="Multiple spanning tree protocol daemon"
+HOMEPAGE="https://github.com/mstpd/mstpd"
+SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --with-bashcompletiondir="$(get_bashcompdir)" \
+ --with-systemdunitdir="$(systemd_get_systemunitdir)" \
+ --localstatedir="${EPREFIX}"/
+}
+
+src_install() {
+ default
+ dosym ../../sbin/bridge-stp /lib/mstpctl-utils/mstpctl_restart_config
+ dosym bridge-stp /sbin/mstp_restart
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2021-10-23 14:59 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2021-10-23 14:59 UTC (permalink / raw
To: gentoo-commits
commit: 959b70d2c35cce46d1b83fec9f5247a2ea5894f3
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 23 14:11:06 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Oct 23 14:59:10 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=959b70d2
net-misc/mstpd: drop 0.0.9-r1
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-misc/mstpd/Manifest | 1 -
net-misc/mstpd/mstpd-0.0.9-r1.ebuild | 32 --------------------------------
2 files changed, 33 deletions(-)
diff --git a/net-misc/mstpd/Manifest b/net-misc/mstpd/Manifest
index 2df98bcbb1c..bfd0f2608d1 100644
--- a/net-misc/mstpd/Manifest
+++ b/net-misc/mstpd/Manifest
@@ -1,2 +1 @@
-DIST mstpd-0.0.9.tar.gz 113711 BLAKE2B 93ff0213a634fcbbb613c79227d737c3961f4de669e0ac2c7351fa1c22842669edc652ba0deb24917a44df5a465a4e905a98e46ab7ccc7e4ebfd13039e6acfe0 SHA512 1d4a926d8437b7c41c69d2a047718181ca6245f3150e4aeb631f437edaaafe0c40b29802a6c9ea38c9f1dfb1b94149934b473f550358be10bb796295fa632e1e
DIST mstpd-0.1.0.tar.gz 115670 BLAKE2B d0b666f16941ebb161cf91ad849da9d8f1927e90052f02cbab759685864bdd6040525bcbb69ca3e602140fa7245f1a48eed00d7e8515eb849ae0bd586f41588d SHA512 c3f7e1045e89eaad05b212993e4fb79e3662d247e371340276c59b92e33c732a9d82ed3490ce3b51e79c666db9f999916667d2be5da1f928e1624b288b0295bb
diff --git a/net-misc/mstpd/mstpd-0.0.9-r1.ebuild b/net-misc/mstpd/mstpd-0.0.9-r1.ebuild
deleted file mode 100644
index 29d66dea87e..00000000000
--- a/net-misc/mstpd/mstpd-0.0.9-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 systemd
-
-DESCRIPTION="Multiple spanning tree protocol daemon"
-HOMEPAGE="https://github.com/mstpd/mstpd"
-SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --with-bashcompletiondir="$(get_bashcompdir)" \
- --with-systemdunitdir="$(systemd_get_systemunitdir)" \
- --localstatedir="${EPREFIX}"/
-}
-
-src_install() {
- default
- dosym ../../sbin/bridge-stp /lib/mstpctl-utils/mstpctl_restart_config
- dosym bridge-stp /sbin/mstp_restart
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2022-01-04 18:09 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2022-01-04 18:09 UTC (permalink / raw
To: gentoo-commits
commit: b53654e2d0477d76ee53f1971e95da2e67edb94d
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 4 18:09:14 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Jan 4 18:09:14 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b53654e2
net-misc/mstpd: Stabilize 0.1.0 x86, #830603
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-misc/mstpd/mstpd-0.1.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-misc/mstpd/mstpd-0.1.0.ebuild b/net-misc/mstpd/mstpd-0.1.0.ebuild
index c8603cd165e9..b87ba3e34a60 100644
--- a/net-misc/mstpd/mstpd-0.1.0.ebuild
+++ b/net-misc/mstpd/mstpd-0.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2022-01-04 18:09 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2022-01-04 18:09 UTC (permalink / raw
To: gentoo-commits
commit: 996c7af4e43d81c340445d08e4fe45a0e0424b96
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 4 18:09:18 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Jan 4 18:09:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=996c7af4
net-misc/mstpd: Stabilize 0.1.0 amd64, #830603
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-misc/mstpd/mstpd-0.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/mstpd/mstpd-0.1.0.ebuild b/net-misc/mstpd/mstpd-0.1.0.ebuild
index b87ba3e34a60..303efe82f7d3 100644
--- a/net-misc/mstpd/mstpd-0.1.0.ebuild
+++ b/net-misc/mstpd/mstpd-0.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2022-01-05 11:20 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2022-01-05 11:20 UTC (permalink / raw
To: gentoo-commits
commit: f55630d6d038a0e7e5ed9748c1d82d1ff2b8113f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 5 11:18:38 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 5 11:18:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f55630d6
net-misc/mstpd: Stabilize 0.1.0 arm, #830603
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/mstpd/mstpd-0.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/mstpd/mstpd-0.1.0.ebuild b/net-misc/mstpd/mstpd-0.1.0.ebuild
index 303efe82f7d3..9452dffeca14 100644
--- a/net-misc/mstpd/mstpd-0.1.0.ebuild
+++ b/net-misc/mstpd/mstpd-0.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 arm ~arm64 x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/
@ 2022-01-05 17:34 Arthur Zamarin
0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2022-01-05 17:34 UTC (permalink / raw
To: gentoo-commits
commit: 28e9ae5b449532804cea0c0c53608f347c16af06
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 5 17:34:31 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 5 17:34:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28e9ae5b
net-misc/mstpd: Stabilize 0.1.0 arm64, #830603
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-misc/mstpd/mstpd-0.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/mstpd/mstpd-0.1.0.ebuild b/net-misc/mstpd/mstpd-0.1.0.ebuild
index 9452dffeca14..48bf1c38f924 100644
--- a/net-misc/mstpd/mstpd-0.1.0.ebuild
+++ b/net-misc/mstpd/mstpd-0.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mstpd/mstpd/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 arm ~arm64 x86"
+KEYWORDS="amd64 arm arm64 x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2022-01-05 17:34 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-05 17:34 [gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2022-01-05 11:20 Sam James
2022-01-04 18:09 Jakov Smolić
2022-01-04 18:09 Jakov Smolić
2021-10-23 14:59 Jakov Smolić
2021-10-18 12:11 Jakov Smolić
2021-09-15 12:36 Jakov Smolić
2021-04-25 5:19 Sam James
2021-03-04 4:24 Sam James
2021-02-20 19:32 David Seifert
2021-02-20 16:14 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox