os-prober moved to system.boot
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def build():
|
||||
shelltools.unlink("Makefile")
|
||||
autotools.make("newns")
|
||||
|
||||
def install():
|
||||
pisitools.dodoc("debian/copyright", "debian/changelog", "README")
|
||||
pisitools.dobin("os-prober")
|
||||
pisitools.dobin("linux-boot-prober")
|
||||
pisitools.insinto("/usr/lib/os-prober", "newns")
|
||||
pisitools.insinto("/usr/share/os-prober", "common.sh")
|
||||
for d in ("os-probes",
|
||||
"os-probes/mounted",
|
||||
"os-probes/init",
|
||||
"linux-boot-probes",
|
||||
"linux-boot-probes/mounted"):
|
||||
pisitools.insinto("/usr/lib/%s" % d, "%s/common/*" % d)
|
||||
if shelltools.isDirectory("%s/x86" % d):
|
||||
pisitools.insinto("/usr/lib/%s" % d, "%s/x86/*" % d)
|
||||
shelltools.touch("labels")
|
||||
pisitools.insinto("/var/lib/os-prober/", "labels")
|
||||
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>os-prober</Name>
|
||||
<Homepage>http://joey.kitenet.net/code/os-prober/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2+</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Utility to detect other OSes on a set of drives</Summary>
|
||||
<Description>os-probe detects other OSes available on a system and outputs the results in a generic machine-readable format. Support for new OSes and Linux distributions can be added easily.</Description>
|
||||
<Archive sha1sum="63114ccf7d2ed2f7af3db100bf992eac3c8576a8" type="tarxz">http://http.debian.net/debian/pool/main/o/os-prober/os-prober_1.65.tar.xz</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>os-prober</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/var/lib/os-prober</Path>
|
||||
<Path fileType="data">/usr/share/os-prober</Path>
|
||||
<Path fileType="doc">/usr/share/doc/os-prober</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2015-05-03</Date>
|
||||
<Version>1.65</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>1.63</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-10-24</Date>
|
||||
<Version>1.63</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-28</Date>
|
||||
<Version>1.58</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-01-03</Date>
|
||||
<Version>1.57</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>os-prober</Name>
|
||||
<Summary xml:lang="pl">Narzędzie do wykrywania innych systemów operacyjnych na dyskach</Summary>
|
||||
<Description xml:lang="pl">os-prober wykrywa inne systemy operacyjne dostępne na komputerze i przekazuje rezultaty w standardowym, odczytywalnym maszynowo, formacie. </Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user