* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2022-01-28 5:18 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-01-28 5:18 UTC (permalink / raw
To: gentoo-commits
commit: c70d4167b9e811713d0c9e740f4e35cef4727235
Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
AuthorDate: Sat Jan 15 12:17:26 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 28 05:16:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c70d4167
dev-python/filebytes: new ebuild
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/Manifest | 1 +
dev-python/filebytes/filebytes-0.10.2.ebuild | 25 +++++++++++++++++++++++++
dev-python/filebytes/filebytes-9999.ebuild | 25 +++++++++++++++++++++++++
dev-python/filebytes/metadata.xml | 20 ++++++++++++++++++++
4 files changed, 71 insertions(+)
diff --git a/dev-python/filebytes/Manifest b/dev-python/filebytes/Manifest
new file mode 100644
index 000000000000..d2bf3d9b8638
--- /dev/null
+++ b/dev-python/filebytes/Manifest
@@ -0,0 +1 @@
+DIST filebytes-0.10.2.tar.gz 1958114 BLAKE2B 6b7fb865d01cc9ea0f14b32f6e0326da21fa2fa2a36549b99ca88e9bf015162d3b0f82e350be1cca805294fd56ef47e2db4394db5ffb3061773f146eda1ba666 SHA512 12317d6b5063e710b4410e4dcc61b45c0ac1cbc80655212dacb0929a19e100849df39ba84a05cb96699abe7ec16758e0b9656b3d3ce044f3d122b8636106e564
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
new file mode 100644
index 000000000000..6dcf19310aed
--- /dev/null
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Classes/Types to read and edit executable files"
+HOMEPAGE="https://github.com/sashs/filebytes"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/sashs/filebytes"
+else
+ SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="${DEPEND}"
diff --git a/dev-python/filebytes/filebytes-9999.ebuild b/dev-python/filebytes/filebytes-9999.ebuild
new file mode 100644
index 000000000000..6dcf19310aed
--- /dev/null
+++ b/dev-python/filebytes/filebytes-9999.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Classes/Types to read and edit executable files"
+HOMEPAGE="https://github.com/sashs/filebytes"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/sashs/filebytes"
+else
+ SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="${DEPEND}"
diff --git a/dev-python/filebytes/metadata.xml b/dev-python/filebytes/metadata.xml
new file mode 100644
index 000000000000..11063ba5138e
--- /dev/null
+++ b/dev-python/filebytes/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>mario.haustein@hrz.tu-chemnitz.de</email>
+ <name>Mario Haustein</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>sam@gentoo.org</email>
+ <name>Sam James</name>
+ </maintainer>
+ <longdescription>
+ Python library to read and edit files in the following formats:
+ Executable and Linking Format (ELF), Portable Executable (PE), MachO
+ and OAT (Android Runtime)
+ </longdescription>
+ <upstream>
+ <remote-id type="github">sashs/filebytes</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2022-01-28 5:18 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-01-28 5:18 UTC (permalink / raw
To: gentoo-commits
commit: 016e5ae4129e1f73c754ad770590220d5a9cee52
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 28 04:36:52 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 28 05:16:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=016e5ae4
dev-python/filebytes: convert to PEP517
See: https://github.com/gentoo/gentoo/pull/23806
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 4 +---
dev-python/filebytes/filebytes-9999.ebuild | 4 +---
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index 6dcf19310aed..e7dd4c7a61bf 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -3,6 +3,7 @@
EAPI=8
+DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..10} )
inherit distutils-r1
@@ -20,6 +21,3 @@ fi
LICENSE="BSD"
SLOT="0"
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}"
diff --git a/dev-python/filebytes/filebytes-9999.ebuild b/dev-python/filebytes/filebytes-9999.ebuild
index 6dcf19310aed..e7dd4c7a61bf 100644
--- a/dev-python/filebytes/filebytes-9999.ebuild
+++ b/dev-python/filebytes/filebytes-9999.ebuild
@@ -3,6 +3,7 @@
EAPI=8
+DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..10} )
inherit distutils-r1
@@ -20,6 +21,3 @@ fi
LICENSE="BSD"
SLOT="0"
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2022-01-28 8:22 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-01-28 8:22 UTC (permalink / raw
To: gentoo-commits
commit: 2230992824ff8043afdf9dc0d4973705d577149a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 28 08:21:17 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 28 08:21:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22309928
dev-python/filebytes: add proxied attribute
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/filebytes/metadata.xml b/dev-python/filebytes/metadata.xml
index 11063ba5138e..332edc39666b 100644
--- a/dev-python/filebytes/metadata.xml
+++ b/dev-python/filebytes/metadata.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
+ <maintainer type="person" proxied="yes">
<email>mario.haustein@hrz.tu-chemnitz.de</email>
<name>Mario Haustein</name>
</maintainer>
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2022-04-10 17:01 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-04-10 17:01 UTC (permalink / raw
To: gentoo-commits
commit: 00bd745f6133de2bfb4de3b1e6f894e16af149c6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 16:59:16 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 10 16:59:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00bd745f
dev-python/filebytes: add pypi upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/filebytes/metadata.xml b/dev-python/filebytes/metadata.xml
index 332edc39666b..1f4afd823345 100644
--- a/dev-python/filebytes/metadata.xml
+++ b/dev-python/filebytes/metadata.xml
@@ -16,5 +16,6 @@
</longdescription>
<upstream>
<remote-id type="github">sashs/filebytes</remote-id>
+ <remote-id type="pypi">filebytes</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2022-07-15 0:45 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-07-15 0:45 UTC (permalink / raw
To: gentoo-commits
commit: 5fd24bd14eb9b95bdda23d073516776a32304d1d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 15 00:43:51 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 15 00:43:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fd24bd1
dev-python/filebytes: Stabilize 0.10.2 amd64, #857957
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index deb10c412535..6e216e84195b 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/sashs/filebytes"
else
SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 x86"
+ KEYWORDS="amd64 x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2022-08-15 23:10 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-08-15 23:10 UTC (permalink / raw
To: gentoo-commits
commit: 7ccefbe60cda06e82be8127bf20c23c6c7234736
Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
AuthorDate: Mon Aug 8 15:12:32 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 23:09:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ccefbe6
dev-python/filebytes: add .gh suffix to tagged distfiles (live)
Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/26785
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/filebytes-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/filebytes/filebytes-9999.ebuild b/dev-python/filebytes/filebytes-9999.ebuild
index 7a845b783672..182a1ca9417a 100644
--- a/dev-python/filebytes/filebytes-9999.ebuild
+++ b/dev-python/filebytes/filebytes-9999.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/sashs/filebytes"
else
- SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2022-08-15 23:10 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-08-15 23:10 UTC (permalink / raw
To: gentoo-commits
commit: 5e89e93be4d6635768f256df677e9c8f2b61fceb
Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
AuthorDate: Mon Aug 8 15:10:56 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 23:09:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e89e93b
dev-python/filebytes: bump PYTHON_COMPAT
Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 2 +-
dev-python/filebytes/filebytes-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index 6e216e84195b..00131e1c6b82 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
diff --git a/dev-python/filebytes/filebytes-9999.ebuild b/dev-python/filebytes/filebytes-9999.ebuild
index e7dd4c7a61bf..7a845b783672 100644
--- a/dev-python/filebytes/filebytes-9999.ebuild
+++ b/dev-python/filebytes/filebytes-9999.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2023-01-14 10:00 Arthur Zamarin
0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2023-01-14 10:00 UTC (permalink / raw
To: gentoo-commits
commit: 487e8f77035714c4bf4c1a1441b02988e3b371a8
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 14 09:59:53 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 14 09:59:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=487e8f77
dev-python/filebytes: Keyword 0.10.2 ppc, #888513
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index 00131e1c6b82..5b7fcb7de0d4 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/sashs/filebytes"
else
SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86"
+ KEYWORDS="amd64 ~ppc x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2023-02-08 4:11 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-02-08 4:11 UTC (permalink / raw
To: gentoo-commits
commit: 47ffb61a219fc366bbb92571075d5623c373a476
Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
AuthorDate: Tue Feb 7 16:32:41 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 8 04:10:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47ffb61a
dev-python/filebytes: update SRC_URI
Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/29466
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/Manifest | 2 +-
dev-python/filebytes/filebytes-0.10.2.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/filebytes/Manifest b/dev-python/filebytes/Manifest
index d2bf3d9b8638..4c0c9d138e15 100644
--- a/dev-python/filebytes/Manifest
+++ b/dev-python/filebytes/Manifest
@@ -1 +1 @@
-DIST filebytes-0.10.2.tar.gz 1958114 BLAKE2B 6b7fb865d01cc9ea0f14b32f6e0326da21fa2fa2a36549b99ca88e9bf015162d3b0f82e350be1cca805294fd56ef47e2db4394db5ffb3061773f146eda1ba666 SHA512 12317d6b5063e710b4410e4dcc61b45c0ac1cbc80655212dacb0929a19e100849df39ba84a05cb96699abe7ec16758e0b9656b3d3ce044f3d122b8636106e564
+DIST filebytes-0.10.2.gh.tar.gz 1958114 BLAKE2B 6b7fb865d01cc9ea0f14b32f6e0326da21fa2fa2a36549b99ca88e9bf015162d3b0f82e350be1cca805294fd56ef47e2db4394db5ffb3061773f146eda1ba666 SHA512 12317d6b5063e710b4410e4dcc61b45c0ac1cbc80655212dacb0929a19e100849df39ba84a05cb96699abe7ec16758e0b9656b3d3ce044f3d122b8636106e564
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index 5b7fcb7de0d4..9432b0bc4654 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/sashs/filebytes"
else
- SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
KEYWORDS="amd64 ~ppc x86"
fi
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2023-02-25 5:47 Arthur Zamarin
0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2023-02-25 5:47 UTC (permalink / raw
To: gentoo-commits
commit: 8b364e98e0c9bd6ccb3246cf5266121dd12a162f
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 05:46:53 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 05:46:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b364e98
dev-python/filebytes: Keyword 0.10.2 arm, #888513
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index 9432b0bc4654..b6bf4b4811bb 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/sashs/filebytes"
else
SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
- KEYWORDS="amd64 ~ppc x86"
+ KEYWORDS="amd64 ~arm ~ppc x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2023-04-14 4:04 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-04-14 4:04 UTC (permalink / raw
To: gentoo-commits
commit: db585e6830ea0568c89190e70422af7ea85da8aa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 14 04:02:54 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 14 04:02:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db585e68
dev-python/filebytes: Keyword 0.10.2 arm64, #888513
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index b6bf4b4811bb..bd7e504db318 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/sashs/filebytes"
else
SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
- KEYWORDS="amd64 ~arm ~ppc x86"
+ KEYWORDS="amd64 ~arm ~arm64 ~ppc x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2023-04-14 19:43 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-04-14 19:43 UTC (permalink / raw
To: gentoo-commits
commit: 58541e08bd2fe0512969ade5b2147842fc5d536a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 14 19:37:19 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 14 19:37:19 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58541e08
dev-python/filebytes: Keyword 0.10.2 ppc64, #888513
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index bd7e504db318..1ff517a1d4b6 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/sashs/filebytes"
else
SRC_URI="https://github.com/sashs/filebytes/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 ~ppc x86"
+ KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2023-09-18 7:40 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-09-18 7:40 UTC (permalink / raw
To: gentoo-commits
commit: 2a4af6c860fb6060502ff9c1de7b639f9e4fb00b
Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
AuthorDate: Sat Sep 16 14:45:57 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 18 07:39:25 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a4af6c8
dev-python/filebytes: enable py3.12
Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 2 +-
dev-python/filebytes/filebytes-9999.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index 1ff517a1d4b6..ef64076096e4 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
diff --git a/dev-python/filebytes/filebytes-9999.ebuild b/dev-python/filebytes/filebytes-9999.ebuild
index 182a1ca9417a..6f4e7944a745 100644
--- a/dev-python/filebytes/filebytes-9999.ebuild
+++ b/dev-python/filebytes/filebytes-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2022 Gentoo Authors
+# 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} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/
@ 2024-08-29 3:23 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2024-08-29 3:23 UTC (permalink / raw
To: gentoo-commits
commit: 40077225cd9450c40d4a82e11e4c5470c4211263
Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
AuthorDate: Sun Aug 4 12:42:30 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 29 03:22:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40077225
dev-python/filebytes: enable py3.13
Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/37951
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/filebytes/filebytes-0.10.2.ebuild | 4 ++--
dev-python/filebytes/filebytes-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-python/filebytes/filebytes-0.10.2.ebuild b/dev-python/filebytes/filebytes-0.10.2.ebuild
index ef64076096e4..d7a86490fd24 100644
--- a/dev-python/filebytes/filebytes-0.10.2.ebuild
+++ b/dev-python/filebytes/filebytes-0.10.2.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_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
diff --git a/dev-python/filebytes/filebytes-9999.ebuild b/dev-python/filebytes/filebytes-9999.ebuild
index 6f4e7944a745..21b8aecc4927 100644
--- a/dev-python/filebytes/filebytes-9999.ebuild
+++ b/dev-python/filebytes/filebytes-9999.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_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-08-29 3:23 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-15 23:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/filebytes/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-08-29 3:23 Sam James
2023-09-18 7:40 Sam James
2023-04-14 19:43 Sam James
2023-04-14 4:04 Sam James
2023-02-25 5:47 Arthur Zamarin
2023-02-08 4:11 Sam James
2023-01-14 10:00 Arthur Zamarin
2022-08-15 23:10 Sam James
2022-07-15 0:45 Sam James
2022-04-10 17:01 Sam James
2022-01-28 8:22 Sam James
2022-01-28 5:18 Sam James
2022-01-28 5:18 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox