public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-cola/files/
@ 2021-09-23 19:02 Conrad Kostecki
  0 siblings, 0 replies; 3+ messages in thread
From: Conrad Kostecki @ 2021-09-23 19:02 UTC (permalink / raw
  To: gentoo-commits

commit:     c7c3868c74a2ebc8f2c69a60389f0451e544bd34
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Sep 23 17:40:23 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Sep 23 19:00:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c3868c

dev-vcs/git-cola: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/22375
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../files/git-cola-3.5-py3.8-line-buffering.patch  | 29 ----------------------
 1 file changed, 29 deletions(-)

diff --git a/dev-vcs/git-cola/files/git-cola-3.5-py3.8-line-buffering.patch b/dev-vcs/git-cola/files/git-cola-3.5-py3.8-line-buffering.patch
deleted file mode 100644
index 4938d6a30ec..00000000000
--- a/dev-vcs/git-cola/files/git-cola-3.5-py3.8-line-buffering.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From ed00653d43b00b18e89c8c4d9e733ef156c02579 Mon Sep 17 00:00:00 2001
-From: Simon Peeters <peeters.simon@gmail.com>
-Date: Mon, 18 Nov 2019 21:15:32 +0100
-Subject: [PATCH] Only use line buffering in text mode when calling Popen
-
-Python3.8 started complaining loudly when trying to open a stream in binary mode but with line buffering enabled.
-So we should only try to set `bufsize` to `1` when we enable `text` or `universal_newlines` mode.
-
-see https://docs.python.org/3/library/subprocess.html#subprocess.Popen under bufsize
----
- cola/core.py | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/cola/core.py b/cola/core.py
-index 0fabfcf3d..5ad719f05 100644
---- a/cola/core.py
-+++ b/cola/core.py
-@@ -208,7 +208,10 @@ def start_command(cmd, cwd=None, add_env=None,
-             CREATE_NO_WINDOW = 0x08000000
-             extra['creationflags'] = CREATE_NO_WINDOW
- 
--    return subprocess.Popen(cmd, bufsize=1, stdin=stdin, stdout=stdout,
-+    # Use line buffering when in text/universal_newlines mode,
-+    # otherwise use the system default buffer size.
-+    bufsize = 1 if universal_newlines else -1
-+    return subprocess.Popen(cmd, bufsize=bufsize, stdin=stdin, stdout=stdout,
-                             stderr=stderr, cwd=cwd, env=env,
-                             universal_newlines=universal_newlines, **extra)
- 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-cola/files/
@ 2023-02-23 21:05 Alfredo Tupone
  0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2023-02-23 21:05 UTC (permalink / raw
  To: gentoo-commits

commit:     7ee376c7e4ec13a42397d1e2ffba13b733b6088e
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Feb  8 16:54:07 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Feb 23 21:05:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ee376c7

dev-vcs/git-cola: remove unused file

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/29493
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-vcs/git-cola/files/index.html | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/dev-vcs/git-cola/files/index.html b/dev-vcs/git-cola/files/index.html
deleted file mode 100644
index 7f1e814a0b51..000000000000
--- a/dev-vcs/git-cola/files/index.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-<head>
-	<title>Missing documentation</title>
-</head>
-<body>
-<div style="border: 4px double red; padding: 2em; margin: 4em; top: 4em; width: 20em;">
-	This documentation is missing. Please reinstall dev-util/cola with the 'doc' useflag enabled.
-
-	<p style="text-align: right;">
-	Sincerely,<br/>
-	your package maintainer.
-	</p>
-</div>
-</body>
-</html>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-cola/files/
@ 2024-10-05 23:00 Conrad Kostecki
  0 siblings, 0 replies; 3+ messages in thread
From: Conrad Kostecki @ 2024-10-05 23:00 UTC (permalink / raw
  To: gentoo-commits

commit:     8fee3b205e316586a72ef0202431547194e2c793
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Oct  3 15:46:03 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Oct  5 22:58:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fee3b20

dev-vcs/git-cola: remove unused patch

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../files/git-cola-4.2.1-fix-setuptools.patch      | 24 ----------------------
 1 file changed, 24 deletions(-)

diff --git a/dev-vcs/git-cola/files/git-cola-4.2.1-fix-setuptools.patch b/dev-vcs/git-cola/files/git-cola-4.2.1-fix-setuptools.patch
deleted file mode 100644
index d1453c3f163e..000000000000
--- a/dev-vcs/git-cola/files/git-cola-4.2.1-fix-setuptools.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From b53983c7fa7d29dd6f474177015fcb6f2ee0e6d1 Mon Sep 17 00:00:00 2001
-From: David Aguilar <davvid@gmail.com>
-Date: Thu, 2 Nov 2023 01:33:16 -0700
-Subject: [PATCH] pyproject.toml: list dependencies and optional-dependencies
- as dynamic
-
-Signed-off-by: David Aguilar <davvid@gmail.com>
----
- pyproject.toml | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/pyproject.toml b/pyproject.toml
-index 20b3008e0..97cdf79b4 100644
---- a/pyproject.toml
-+++ b/pyproject.toml
-@@ -13,7 +13,7 @@ classifiers = [
- 	"Topic :: Software Development :: Version Control :: Git",
- ]
- description = "A sleek and powerful Git GUI"
--dynamic = ["version"]
-+dynamic = ["dependencies", "optional-dependencies", "version"]
- license = {file = "COPYING"}
- readme = "README.md"
- 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-10-05 23:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-23 21:05 [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-cola/files/ Alfredo Tupone
  -- strict thread matches above, loose matches on Subject: below --
2024-10-05 23:00 Conrad Kostecki
2021-09-23 19:02 Conrad Kostecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox