mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Cleanup of the 'morituri' expression.
- Replaces brittle path substitutions by patch. - Adds `namePrefix = ""` to avoid python prefix.
This commit is contained in:
parent
8885c992fd
commit
9715af37b0
2 changed files with 89 additions and 20 deletions
|
@ -1,10 +1,11 @@
|
||||||
{ stdenv, fetchurl, python, pythonPackages, cdparanoia, cdrdao
|
{ stdenv, fetchurl, python, pythonPackages, cdparanoia, cdrdao
|
||||||
, pygobject, gst_python, gst_plugins_base, gst_plugins_good
|
, pygobject, gst_python, gst_plugins_base, gst_plugins_good
|
||||||
, setuptools, utillinux, makeWrapper }:
|
, setuptools, utillinux, makeWrapper, substituteAll }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "morituri-${version}";
|
name = "morituri-${version}";
|
||||||
version = "0.2.3";
|
version = "0.2.3";
|
||||||
|
namePrefix = "";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://thomas.apestaart.org/download/morituri/${name}.tar.bz2";
|
url = "http://thomas.apestaart.org/download/morituri/${name}.tar.bz2";
|
||||||
|
@ -21,23 +22,12 @@ stdenv.mkDerivation rec {
|
||||||
gst_plugins_base gst_plugins_good
|
gst_plugins_base gst_plugins_good
|
||||||
] ++ pythonPath;
|
] ++ pythonPath;
|
||||||
|
|
||||||
patches = [ ./paths.patch ];
|
patches = [
|
||||||
|
(substituteAll {
|
||||||
postPatch = ''
|
src = ./paths.patch;
|
||||||
substituteInPlace morituri/extern/python-command/scripts/help2man \
|
inherit cdrdao cdparanoia python utillinux;
|
||||||
--replace /usr/bin/python ${python}/bin/python
|
})
|
||||||
|
];
|
||||||
substituteInPlace morituri/common/program.py \
|
|
||||||
--replace umount ${utillinux}/bin/umount \
|
|
||||||
--replace \'eject \'${utillinux}/bin/eject
|
|
||||||
|
|
||||||
substituteInPlace morituri/program/cdparanoia.py \
|
|
||||||
--replace '"cdparanoia"' '"${cdparanoia}/bin/cdparanoia"'
|
|
||||||
|
|
||||||
substituteInPlace morituri/program/cdrdao.py \
|
|
||||||
--replace "['cdrdao', ]" "['${cdrdao}/bin/cdrdao', ]" \
|
|
||||||
--replace '"cdrdao"' '"${cdrdao}/bin/cdrdao"'
|
|
||||||
'';
|
|
||||||
|
|
||||||
# This package contains no binaries to patch or strip.
|
# This package contains no binaries to patch or strip.
|
||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
diff -Nurp morituri-0.2.3-orig/doc/Makefile.in morituri-0.2.3/doc/Makefile.in
|
diff -Nurp morituri-0.2.3-orig/doc/Makefile.in morituri-0.2.3/doc/Makefile.in
|
||||||
--- morituri-0.2.3-orig/doc/Makefile.in 2014-11-01 00:13:01.231364181 +0100
|
--- morituri-0.2.3-orig/doc/Makefile.in 2014-12-23 12:44:46.222410092 +0100
|
||||||
+++ morituri-0.2.3/doc/Makefile.in 2014-11-01 00:13:56.691812229 +0100
|
+++ morituri-0.2.3/doc/Makefile.in 2014-12-23 12:46:49.619756940 +0100
|
||||||
@@ -486,7 +486,7 @@ morituri.ics: $(top_srcdir)/morituri.doa
|
@@ -486,7 +486,7 @@ morituri.ics: $(top_srcdir)/morituri.doa
|
||||||
-moap doap -f $(top_srcdir)/morituri.doap ical > morituri.ics
|
-moap doap -f $(top_srcdir)/morituri.doap ical > morituri.ics
|
||||||
|
|
||||||
|
@ -10,3 +10,82 @@ diff -Nurp morituri-0.2.3-orig/doc/Makefile.in morituri-0.2.3/doc/Makefile.in
|
||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
@rm -rf reference
|
@rm -rf reference
|
||||||
|
diff -Nurp morituri-0.2.3-orig/morituri/common/program.py morituri-0.2.3/morituri/common/program.py
|
||||||
|
--- morituri-0.2.3-orig/morituri/common/program.py 2014-12-23 12:44:46.218410048 +0100
|
||||||
|
+++ morituri-0.2.3/morituri/common/program.py 2014-12-23 12:46:49.647757245 +0100
|
||||||
|
@@ -92,13 +92,13 @@ class Program(log.Loggable):
|
||||||
|
"""
|
||||||
|
Load the given device.
|
||||||
|
"""
|
||||||
|
- os.system('eject -t %s' % device)
|
||||||
|
+ os.system('@utillinux@/bin/eject -t %s' % device)
|
||||||
|
|
||||||
|
def ejectDevice(self, device):
|
||||||
|
"""
|
||||||
|
Eject the given device.
|
||||||
|
"""
|
||||||
|
- os.system('eject %s' % device)
|
||||||
|
+ os.system('@utillinux@/bin/eject %s' % device)
|
||||||
|
|
||||||
|
def unmountDevice(self, device):
|
||||||
|
"""
|
||||||
|
@@ -112,7 +112,7 @@ class Program(log.Loggable):
|
||||||
|
proc = open('/proc/mounts').read()
|
||||||
|
if device in proc:
|
||||||
|
print 'Device %s is mounted, unmounting' % device
|
||||||
|
- os.system('umount %s' % device)
|
||||||
|
+ os.system('@utillinux@/bin/umount %s' % device)
|
||||||
|
|
||||||
|
def getFastToc(self, runner, toc_pickle, device):
|
||||||
|
"""
|
||||||
|
diff -Nurp morituri-0.2.3-orig/morituri/extern/python-command/scripts/help2man morituri-0.2.3/morituri/extern/python-command/scripts/help2man
|
||||||
|
--- morituri-0.2.3-orig/morituri/extern/python-command/scripts/help2man 2014-12-23 12:44:46.206409916 +0100
|
||||||
|
+++ morituri-0.2.3/morituri/extern/python-command/scripts/help2man 2014-12-23 12:46:49.631757074 +0100
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!@python@/bin/python
|
||||||
|
|
||||||
|
# -*- Mode: Python -*-
|
||||||
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
|
diff -Nurp morituri-0.2.3-orig/morituri/program/cdparanoia.py morituri-0.2.3/morituri/program/cdparanoia.py
|
||||||
|
--- morituri-0.2.3-orig/morituri/program/cdparanoia.py 2014-12-23 12:44:46.202409873 +0100
|
||||||
|
+++ morituri-0.2.3/morituri/program/cdparanoia.py 2014-12-23 12:46:49.659757376 +0100
|
||||||
|
@@ -278,7 +278,7 @@ class ReadTrackTask(log.Loggable, task.T
|
||||||
|
stopTrack, stopOffset)
|
||||||
|
|
||||||
|
bufsize = 1024
|
||||||
|
- argv = ["cdparanoia", "--stderr-progress",
|
||||||
|
+ argv = ["@cdparanoia@/bin/cdparanoia", "--stderr-progress",
|
||||||
|
"--sample-offset=%d" % self._offset, ]
|
||||||
|
if self._device:
|
||||||
|
argv.extend(["--force-cdrom-device", self._device, ])
|
||||||
|
@@ -551,7 +551,7 @@ _VERSION_RE = re.compile(
|
||||||
|
|
||||||
|
def getCdParanoiaVersion():
|
||||||
|
getter = common.VersionGetter('cdparanoia',
|
||||||
|
- ["cdparanoia", "-V"],
|
||||||
|
+ ["@cdparanoia@/bin/cdparanoia", "-V"],
|
||||||
|
_VERSION_RE,
|
||||||
|
"%(version)s %(release)s")
|
||||||
|
|
||||||
|
diff -Nurp morituri-0.2.3-orig/morituri/program/cdrdao.py morituri-0.2.3/morituri/program/cdrdao.py
|
||||||
|
--- morituri-0.2.3-orig/morituri/program/cdrdao.py 2014-12-23 12:44:46.202409873 +0100
|
||||||
|
+++ morituri-0.2.3/morituri/program/cdrdao.py 2014-12-23 12:46:49.667757463 +0100
|
||||||
|
@@ -257,7 +257,7 @@ class CDRDAOTask(ctask.PopenTask):
|
||||||
|
|
||||||
|
def start(self, runner):
|
||||||
|
self.debug('Starting cdrdao with options %r', self.options)
|
||||||
|
- self.command = ['cdrdao', ] + self.options
|
||||||
|
+ self.command = ['@cdrdao@/bin/cdrdao', ] + self.options
|
||||||
|
|
||||||
|
ctask.PopenTask.start(self, runner)
|
||||||
|
|
||||||
|
@@ -515,7 +515,7 @@ _VERSION_RE = re.compile(
|
||||||
|
|
||||||
|
def getCDRDAOVersion():
|
||||||
|
getter = common.VersionGetter('cdrdao',
|
||||||
|
- ["cdrdao"],
|
||||||
|
+ ["@cdrdao@/bin/cdrdao"],
|
||||||
|
_VERSION_RE,
|
||||||
|
"%(version)s")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue