File: manual-layout.patch

package info (click to toggle)
python-pyfaidx 0.8.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 712 kB
  • sloc: python: 3,001; makefile: 16; sh: 6
file content (20 lines) | stat: -rw-r--r-- 708 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: fix flat layout choking on debian/ directory.
 This patch will hint the pyproject.toml to search explicitly for the pyfaidx
 package in the source tree.  Upstream counts on a flat layout, but this
 expectation is broken as soon as in Debian context, the debian/ directory is
 part of the equation.  This is thus a Debian specific fix.

Author: Étienne Mollier <emollier@debian.org>
Forwarded: not-needed
Last-Update: 2023-07-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- python-pyfaidx.orig/pyproject.toml
+++ python-pyfaidx/pyproject.toml
@@ -41,3 +41,6 @@
 
 [tool.setuptools_scm]
 local_scheme = "no-local-version"
+
+[tool.setuptools]
+packages = ["pyfaidx"]