public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/python-sysrsync] rawhide: Orphaned for 6+ weeks
@ 2026-07-19 0:35 Orphaned Packages Process
0 siblings, 0 replies; only message in thread
From: Orphaned Packages Process @ 2026-07-19 0:35 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/python-sysrsync
Branch : rawhide
Commit : acfa0436fa1968141274775508ec44a1b61a801b
Author : Orphaned Packages Process <packaging-reports@fedoraproject.org>
Date : 2026-07-18T19:35:09-05:00
Stats : +1/-171 in 8 file(s)
URL : https://src.fedoraproject.org/rpms/python-sysrsync/c/acfa0436fa1968141274775508ec44a1b61a801b?branch=rawhide
Log:
Orphaned for 6+ weeks
---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index f021bf0..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/sysrsync-1.1.1.tar.gz
diff --git a/0001-In-Python-3.11-and-later-use-tomllib-instead-of-toml.patch b/0001-In-Python-3.11-and-later-use-tomllib-instead-of-toml.patch
deleted file mode 100644
index 5d0f939..0000000
--- a/0001-In-Python-3.11-and-later-use-tomllib-instead-of-toml.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-From 83e5b47bfc95567cef1cb5bf9b7f50cb2e4c7a55 Mon Sep 17 00:00:00 2001
-From: "Benjamin A. Beasley" <code@musicinmybrain.net>
-Date: Wed, 21 Aug 2024 12:15:56 -0400
-Subject: [PATCH] In Python 3.11 and later, use tomllib instead of toml
-
-This removes the dependency on toml for Python versions that have
-tomllib in the standard library.
----
- pyproject.toml | 4 ++--
- setup.py | 13 +++++++++++--
- 2 files changed, 13 insertions(+), 4 deletions(-)
-
-diff --git a/pyproject.toml b/pyproject.toml
-index ca86fb0..5efc798 100644
---- a/pyproject.toml
-+++ b/pyproject.toml
-@@ -1,5 +1,5 @@
- [build-system]
--requires = ["setuptools", "toml"]
-+requires = ["setuptools", "toml; python_version < '3.11'"]
-
- [tool]
- [tool.poetry]
-@@ -12,7 +12,7 @@ homepage = "https://github.com/gchamon/sysrsync"
-
- [tool.poetry.dependencies]
- python = "^3.6"
--toml = "^0.10.0"
-+toml = { version = "^0.10.0", python = "<3.11" }
-
- [tool.poetry.dev-dependencies]
- autopep8 = "*"
-diff --git a/setup.py b/setup.py
-index f3ad689..5afb00c 100644
---- a/setup.py
-+++ b/setup.py
-@@ -1,7 +1,16 @@
- import setuptools
--import toml
-
--pyproject = toml.load("pyproject.toml")
-+try:
-+ # Python 3.11 and later
-+ import tomllib
-+except ImportError:
-+ # Python 3.10 and earlier
-+ import toml
-+
-+ pyproject = toml.load("pyproject.toml")
-+else:
-+ with open("pyproject.toml", "rb") as fh:
-+ pyproject = tomllib.load(fh)
-
- with open("README.md", "r") as fh:
- long_description = fh.read()
---
-2.46.0
-
diff --git a/39.patch b/39.patch
deleted file mode 100644
index 11346d5..0000000
--- a/39.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 69ff19adde4c70c739bf5a64a7cd7758fb25536d Mon Sep 17 00:00:00 2001
-From: "Benjamin A. Beasley" <code@musicinmybrain.net>
-Date: Fri, 19 Jan 2024 20:09:02 -0500
-Subject: [PATCH 1/2] Add build-system.requires to pyproject.toml
-
-This allows us to build the package with, e.g., python3 -m build
----
- pyproject.toml | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/pyproject.toml b/pyproject.toml
-index 015024b..ca86fb0 100644
---- a/pyproject.toml
-+++ b/pyproject.toml
-@@ -1,3 +1,6 @@
-+[build-system]
-+requires = ["setuptools", "toml"]
-+
- [tool]
- [tool.poetry]
- name = "sysrsync"
-
-From cdedcfb11696f6af5c738658479a3b6ec3dbc7ca Mon Sep 17 00:00:00 2001
-From: "Benjamin A. Beasley" <code@musicinmybrain.net>
-Date: Fri, 19 Jan 2024 20:11:28 -0500
-Subject: [PATCH 2/2] Fix typo in excluding tests from wheels
-
-The wheels currently on PyPI look OK, but this keeps tests from being
-inadvertently included when wheels are built by other means.
----
- setup.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index 16f6655..f3ad689 100644
---- a/setup.py
-+++ b/setup.py
-@@ -15,7 +15,7 @@
- long_description=long_description,
- long_description_content_type="text/markdown",
- url="https://github.com/gchamon/sysrsync",
-- packages=setuptools.find_packages(exclude=['tests']),
-+ packages=setuptools.find_packages(exclude=['test']),
- platforms='any',
- classifiers=[
- "Programming Language :: Python :: 3",
diff --git a/README.md b/README.md
deleted file mode 100644
index 8977589..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# python-sysrsync
-
-The python-sysrsync package
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..5204a84
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Orphaned for 6+ weeks
diff --git a/packit.yaml b/packit.yaml
deleted file mode 100644
index e58782e..0000000
--- a/packit.yaml
+++ /dev/null
@@ -1,8 +0,0 @@
-upstream_project_url: https://github.com/gchamon/python-sysrsync
-copy_upstream_release_description: false
-
-jobs:
- - job: pull_from_upstream
- trigger: release
- dist_git_branches:
- - fedora-rawhide
diff --git a/python-sysrsync.spec b/python-sysrsync.spec
deleted file mode 100644
index 2a3c919..0000000
--- a/python-sysrsync.spec
+++ /dev/null
@@ -1,54 +0,0 @@
-Name: python-sysrsync
-Version: 1.1.1
-Release: %autorelease
-Summary: Simple and safe python wrapper for calling system rsync
-
-# SPDX
-License: MIT
-URL: https://github.com/gchamon/sysrsync
-# PyPI source distributions lack tests; use the GitHub archive
-Source: %{url}/archive/%{version}/sysrsync-%{version}.tar.gz
-
-# Declare build-system dependencies and correctly exclude tests from packaging
-# https://github.com/gchamon/sysrsync/pull/39
-Patch: %{url}/pull/39.patch
-
-# In Python 3.11 and later, use tomllib instead of toml
-# https://github.com/gchamon/sysrsync/pull/42
-# Rebased on 1.1.1 with https://github.com/gchamon/sysrsync/pull/39.
-Patch: 0001-In-Python-3.11-and-later-use-tomllib-instead-of-toml.patch
-
-BuildSystem: pyproject
-BuildOption(install): --assert-license sysrsync
-
-BuildArch: noarch
-
-BuildRequires: rsync
-
-%global common_description %{expand:
-%{summary}.}
-
-%description %{common_description}
-
-
-%package -n python3-sysrsync
-Summary: %{summary}
-
-Requires: rsync
-
-%description -n python3-sysrsync %{common_description}
-
-
-%check -a
-# We cannot run the end-to-end-tests/ because they require Docker and network
-# access, but we can run the unit tests.
-%{py3_test_envvars} %{python3} -m unittest discover \
- --verbose --start-directory=test/
-
-
-%files -n python3-sysrsync -f %{pyproject_files}
-%doc README.md
-
-
-%changelog
-%autochangelog
diff --git a/sources b/sources
deleted file mode 100644
index a3ed82d..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (sysrsync-1.1.1.tar.gz) = ff121ed1a3fa7085a583713f6a1d8a28add67f278cd0a707ebf802e4416658c034625bbb3157e7a317f392ff616474f5d34c58ea5bfa1809896b292048da658b
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-19 0:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-19 0:35 [rpms/python-sysrsync] rawhide: Orphaned for 6+ weeks Orphaned Packages Process
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox