* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/
@ 2018-09-15 9:06 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2018-09-15 9:06 UTC (permalink / raw
To: gentoo-commits
commit: ae939824ac420c3dc65db065a4c852cd91b4041a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 15 09:04:46 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 15 09:06:20 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae939824
sys-apps/edid-fixdim: Initial version
Initial version of a tool to fix screen dimensions in EDID data.
sys-apps/edid-fixdim/Manifest | 1 +
sys-apps/edid-fixdim/edid-fixdim-1.ebuild | 23 +++++++++++++++++++++++
2 files changed, 24 insertions(+)
diff --git a/sys-apps/edid-fixdim/Manifest b/sys-apps/edid-fixdim/Manifest
new file mode 100644
index 00000000000..bb331f13f88
--- /dev/null
+++ b/sys-apps/edid-fixdim/Manifest
@@ -0,0 +1 @@
+DIST edid-fixdim-1.tar.gz 3236 BLAKE2B 4ae6954fa4c93f143be5e84f364f4b229054bd385aa0bc2ec85b4dfcd2eece8e5e3f1a4039188fcb3fe979f0de473b6c876c73e9ba642d0e10f8656d62c36d8f SHA512 614908e2ca94c97cb998f789ec383a72237c5be4544cf8b02d7754817bea90de87993acc11d917c1c5b54009ca8f41560e7468d97dc3f21b7e2891a36d4dbffd
diff --git a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
new file mode 100644
index 00000000000..d02cbbfe982
--- /dev/null
+++ b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_5 python3_6 python3_7 )
+inherit python-single-r1
+
+DESCRIPTION="Tool to fix screen dimensions in EDID data dumps"
+HOMEPAGE="https://github.com/mgorny/edid-fixdim"
+SRC_URI="https://github.com/mgorny/edid-fixdim/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}"
+
+src_install() {
+ python_doscript edid-fixdim
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/
@ 2018-09-15 9:44 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2018-09-15 9:44 UTC (permalink / raw
To: gentoo-commits
commit: 7c48032e58b81553b41770f24d06c060421a2f3f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 15 09:43:56 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 15 09:44:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c48032e
sys-apps/edid-fixdim: Add missed metadata.xml file
sys-apps/edid-fixdim/metadata.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/sys-apps/edid-fixdim/metadata.xml b/sys-apps/edid-fixdim/metadata.xml
new file mode 100644
index 00000000000..0319eec4c8b
--- /dev/null
+++ b/sys-apps/edid-fixdim/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>mgorny@gentoo.org</email>
+ <name>Michał Górny</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/
@ 2019-12-08 11:20 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2019-12-08 11:20 UTC (permalink / raw
To: gentoo-commits
commit: 0aa84d050e6ba0b9c9adcc221ad744e0517ef1fa
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 8 11:16:26 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec 8 11:19:28 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aa84d05
sys-apps/edid-fixdim: Tested on python3.8
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-apps/edid-fixdim/edid-fixdim-1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
index d02cbbfe982..4d90008faca 100644
--- a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
+++ b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_5 python3_6 python3_7 )
+PYTHON_COMPAT=( python3_{5,6,7,8} )
inherit python-single-r1
DESCRIPTION="Tool to fix screen dimensions in EDID data dumps"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/
@ 2021-05-22 21:34 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2021-05-22 21:34 UTC (permalink / raw
To: gentoo-commits
commit: c7088385906ba4e02642533912a68bfd221ed632
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 22 21:32:57 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 22 21:34:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7088385
sys-apps/edid-fixdim: Enable up to py3.10
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-apps/edid-fixdim/edid-fixdim-1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
index e0a6d6a83a9..48c831c16dc 100644
--- a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
+++ b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..10} )
inherit python-single-r1
DESCRIPTION="Tool to fix screen dimensions in EDID data dumps"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/
@ 2023-02-15 17:29 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2023-02-15 17:29 UTC (permalink / raw
To: gentoo-commits
commit: 21a721238fc6d0f2c3ac960c3c65fa1f34f566e6
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 15 17:18:26 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 15 17:18:26 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a72123
sys-apps/edid-fixdim: EAPI 8, py3.11
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-apps/edid-fixdim/edid-fixdim-1.ebuild | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
index f4cd9ac4e17a..19286e08606d 100644
--- a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
+++ b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
@@ -1,19 +1,22 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_COMPAT=( python3_{9..10} )
inherit python-single-r1
DESCRIPTION="Tool to fix screen dimensions in EDID data dumps"
-HOMEPAGE="https://github.com/mgorny/edid-fixdim"
-SRC_URI="https://github.com/mgorny/edid-fixdim/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://github.com/mgorny/edid-fixdim/"
+SRC_URI="
+ https://github.com/mgorny/edid-fixdim/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz
+"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
-IUSE=""
REQUIRED_USE=${PYTHON_REQUIRED_USE}
RDEPEND="${PYTHON_DEPS}"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/
@ 2023-02-15 17:29 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2023-02-15 17:29 UTC (permalink / raw
To: gentoo-commits
commit: 08af13d901e7fa27075f0e9a776cd4046373dc56
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 15 17:21:46 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 15 17:21:46 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08af13d9
sys-apps/edid-fixdim: Update homepage
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-apps/edid-fixdim/edid-fixdim-1.ebuild | 4 ++--
sys-apps/edid-fixdim/metadata.xml | 3 +++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
index 19286e08606d..1ff6588636da 100644
--- a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
+++ b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
@@ -8,9 +8,9 @@ PYTHON_COMPAT=( python3_{9..11} )
inherit python-single-r1
DESCRIPTION="Tool to fix screen dimensions in EDID data dumps"
-HOMEPAGE="https://github.com/mgorny/edid-fixdim/"
+HOMEPAGE="https://github.com/projg2/edid-fixdim/"
SRC_URI="
- https://github.com/mgorny/edid-fixdim/archive/v${PV}.tar.gz
+ https://github.com/projg2/edid-fixdim/archive/v${PV}.tar.gz
-> ${P}.tar.gz
"
diff --git a/sys-apps/edid-fixdim/metadata.xml b/sys-apps/edid-fixdim/metadata.xml
index 076793e3f54b..43357af94fcb 100644
--- a/sys-apps/edid-fixdim/metadata.xml
+++ b/sys-apps/edid-fixdim/metadata.xml
@@ -5,4 +5,7 @@
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">projg2/edid-fixdim</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/
@ 2024-04-14 18:11 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2024-04-14 18:11 UTC (permalink / raw
To: gentoo-commits
commit: f905232f56052964488eb19267adbb9a9ed5e688
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 14 17:54:04 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr 14 18:11:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f905232f
sys-apps/edid-fixdim: Enable py3.12
Closes: https://bugs.gentoo.org/929809
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-apps/edid-fixdim/edid-fixdim-1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
index 1ff6588636da..097c16939fa5 100644
--- a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
+++ b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit python-single-r1
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-04-14 18:11 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-14 18:11 [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2023-02-15 17:29 Michał Górny
2023-02-15 17:29 Michał Górny
2021-05-22 21:34 Michał Górny
2019-12-08 11:20 Michał Górny
2018-09-15 9:44 Michał Górny
2018-09-15 9:06 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox