File: debian-platform.patch

package info (click to toggle)
cedar-backup3 3.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,152 kB
  • sloc: python: 69,658; sh: 594; makefile: 148
file content (20 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Convert source to use Debian platform customizations.
 Upstream includes an easy way to switch the platform from "standard" (i.e.
 cdrecord and mkisofs) to "Debian-specific" (i.e. wodim and genisoimage).
 This patch flips the PLATFORM constant so that we get Debian customizations.
Author: Kenneth J. Pronovici <pronovic@debian.org>
Index: cedar-backup3/src/CedarBackup3/customize.py
===================================================================
--- cedar-backup3.orig/src/CedarBackup3/customize.py
+++ cedar-backup3/src/CedarBackup3/customize.py
@@ -59,8 +59,8 @@ import logging
 
 logger = logging.getLogger("CedarBackup3.log.customize")
 
-PLATFORM = "standard"
-# PLATFORM = "debian"
+# PLATFORM = "standard"
+PLATFORM = "debian"
 
 DEBIAN_CDRECORD = "/usr/bin/wodim"
 DEBIAN_MKISOFS = "/usr/bin/genisoimage"