icecream remove
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/opt/icecream \
|
||||
--localstatedir=/var \
|
||||
--enable-shared")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
"""
|
||||
for chost in ["", "%s-pc-linux-gnu-" % get.ARCH()]:
|
||||
for i in ["c++", "cc", "g++", "gcc"]:
|
||||
pisitools.dosym("icecc", "/opt/icecream/bin/%s%s" % (chost, i))
|
||||
"""
|
||||
@@ -1,21 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
serviceType = "server"
|
||||
serviceDesc = _({"en": "Icecream Daemon",
|
||||
"tr": "Icecream Servisi"})
|
||||
|
||||
from comar.service import *
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
startService(command="/opt/icecream/sbin/iceccd",
|
||||
args="-d -m 5 > /dev/null",
|
||||
pidfile="/run/iceccd.pid",
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(pidfile="/run/iceccd.pid",
|
||||
donotify=True)
|
||||
|
||||
def status():
|
||||
return isServiceRunning("/run/iceccd.pid")
|
||||
@@ -1,20 +0,0 @@
|
||||
serviceType = "server"
|
||||
serviceDesc = _({"en": "Icecream Scheduler",
|
||||
"tr": "Icecream Zamanlayıcı"})
|
||||
|
||||
from comar.service import *
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
startService(command="/opt/icecream/sbin/icecc-scheduler",
|
||||
args="-d > /dev/null",
|
||||
pidfile="run/icecc-scheduler.pid",
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(pidfile="/run/icecc-scheduler.pid",
|
||||
donotify=True)
|
||||
|
||||
def status():
|
||||
return isServiceRunning("/run/icecc-scheduler.pid")
|
||||
@@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=Icecream Daemon
|
||||
After=network.target nss-lookup.target
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
PIDFile=/run/iceccd.pid
|
||||
ExecStart=/opt/icecream/sbin/iceccd -d -m 5 > /dev/null
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
@@ -1,10 +0,0 @@
|
||||
[Unit]
|
||||
Description=Icecream Scheduler
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
PIDFile=/run/icecc-scheduler.pid
|
||||
ExecStart=/opt/icecream/sbin/icecc-scheduler -d > /dev/null
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
@@ -1,104 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>icecream</Name>
|
||||
<Homepage>http://en.opensuse.org/Icecream</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>service</IsA>
|
||||
<Summary>Distributed C(++) compiling tool</Summary>
|
||||
<Description>Icecream is a program for distributed compiling of C/C++ code across several machines based on ideas and code by distcc.</Description>
|
||||
<Archive sha1sum="b1edce8d2385aa0caf93f731e292463bde98e8b0" type="tarbz2">ftp://ftp.suse.com/pub/projects/icecream/icecc-1.0.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>librsync-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>icecream</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>librsync</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libcap-ng</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/opt/icecream/sbin/iceccd</Path>
|
||||
<Path fileType="executable">/opt/icecream/bin/icecc</Path>
|
||||
<Path fileType="executable">/usr/libexec/icecc</Path>
|
||||
<Path fileType="library">/opt/icecream/lib</Path>
|
||||
<Path fileType="executable">/opt/icecream/bin</Path>
|
||||
<Path fileType="header">/opt/icecream/include/</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/icecc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/lib/systemd/system/icecream-daemon.service</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/lib/systemd/system/icecream-daemon.service">icecream-daemon.service</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="daemon.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>icecream-scheduler</Name>
|
||||
<Summary>Icecream scheduler which should only run on the master icecream node</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>icecream</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/opt/icecream/sbin/icecc-scheduler</Path>
|
||||
<Path fileType="data">/lib/systemd/system/icecream-scheduler.service</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/lib/systemd/system/icecream-scheduler.service">icecream-scheduler.service</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="scheduler.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>1.0.1</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-10-22</Date>
|
||||
<Version>1.0.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-07-24</Date>
|
||||
<Version>1.0.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-02-18</Date>
|
||||
<Version>0.9.98.3</Version>
|
||||
<Comment>v.bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-09</Date>
|
||||
<Version>0.9.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdem Artan</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>icecream</Name>
|
||||
<Summary xml:lang="tr">Dağıtık C(++) derleme aracı</Summary>
|
||||
<Description xml:lang="tr">Icecream; C/C++ kaynak kodunun, birden fazla makinede dağıtık olarak derlenmesi fikrine dayanan, "distcc" kodu temelinde yazılmış bir uygulamadır.</Description>
|
||||
<Description xml:lang="fr">Icecream est un programme de compilation de code C/C++ distribuée sur plusieurs machines basé sur le code et les idées directrices de distcc.</Description>
|
||||
<Summary xml:lang="es">Herramienta de compilación C(++) distribuida</Summary>
|
||||
<Description xml:lang="es">Icecream es un programa para compilación de código C/C++ distribuida en varios servidores, basado en ideas y código de distcc.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user