golang, docker in main iproute2 verbump
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>hardware.virtualization</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,39 @@
|
||||
#!/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 pisitools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
shelltools.export("AUTO_GOPATH", "1")
|
||||
shelltools.export("DOCKER_GITCOMMIT", "0baf609") #DOCKER_GITCOMMIT="0baf609"
|
||||
shelltools.export("GOPATH", "%s" % get.workDIR())
|
||||
|
||||
shelltools.export("CGO_CFLAGS", "-I/usr/include")
|
||||
shelltools.export("CGO_LDFLAGS", "-L/usr/lib")
|
||||
shelltools.export("DOCKER_BUILDTAGS","exclude_graphdriver_aufs")
|
||||
shelltools.export("DOCKER_INITPATH", "/usr/libexec/docker/dockerinit")
|
||||
|
||||
NoStrip=["/"]
|
||||
|
||||
def build():
|
||||
shelltools.system("./hack/make.sh dynbinary")
|
||||
|
||||
def install():
|
||||
pisitools.dobin("bundles/1.7.0/dynbinary/docker")
|
||||
pisitools.dobin("bundles/1.7.0/dynbinary/docker-1.7.0")
|
||||
pisitools.doexe("bundles/1.7.0/dynbinary/dockerinit", "/usr/libexec/docker")
|
||||
pisitools.doexe("bundles/1.7.0/dynbinary/dockerinit-1.7.0", "/usr/libexec/docker")
|
||||
|
||||
# insert udev rules
|
||||
pisitools.insinto("/etc/udev/rules.d", "contrib/udev/*.rules")
|
||||
|
||||
#insert contrib in docs
|
||||
pisitools.insinto("/usr/share/doc/docker", "contrib")
|
||||
|
||||
pisitools.dodoc("VERSION", "LICENSE", "README.md", "AUTHORS", "CONTRIBUTING.md", "CHANGELOG.md", "NOTICE")
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import os, re
|
||||
|
||||
OUR_ID = 154
|
||||
OUR_NAME = "docker"
|
||||
OUR_DESC = "docker"
|
||||
|
||||
logfile = "/var/log/docker.log"
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
try:
|
||||
os.system ("usr/sbin/groupadd -g %d %s" % (OUR_ID, OUR_NAME))
|
||||
os.system("/bin/touch %s" % logfile)
|
||||
os.system("/bin/chown root:docker %s" % logfile)
|
||||
os.system("chmod 0644 %s" % logfile)
|
||||
except:
|
||||
pass
|
||||
|
||||
def preRemove():
|
||||
try:
|
||||
os.system ("groupdel %s" % OUR_NAME)
|
||||
except:
|
||||
pass
|
||||
@@ -0,0 +1,31 @@
|
||||
from comar.service import *
|
||||
import os
|
||||
|
||||
serviceType = "local"
|
||||
serviceDefault = "off"
|
||||
serviceDesc = _({"en": "Docker Management Service",
|
||||
"tr": "Docker Yönetim Hizmeti"})
|
||||
|
||||
serviceConf = "docker"
|
||||
pidfile = "/var/run/docker.pid"
|
||||
logfile = "/var/log/docker.log"
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
os.environ["PATH"] = "/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin"
|
||||
os.system("/sbin/modprobe -va bridge nf_nat br_netfilter")
|
||||
|
||||
startService(command="/usr/bin/docker",
|
||||
args="-d %s" % (config.get("DOCKER_OPTS", "")),
|
||||
chuid="root:docker",
|
||||
pidfile="/var/run/docker.pid",
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(command="/usr/bin/docker",
|
||||
pidfile="/var/run/docker.pid",
|
||||
donotify=True)
|
||||
|
||||
def status():
|
||||
return isServiceRunning(pidfile)
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
#!/bin/sh
|
||||
# Copyright 2011 Canonical, Inc
|
||||
# 2014 Tianon Gravi
|
||||
# Author: Serge Hallyn <serge.hallyn@canonical.com>
|
||||
# Tianon Gravi <admwiggin@gmail.com>
|
||||
set -e
|
||||
|
||||
# for simplicity this script provides no flexibility
|
||||
|
||||
# if cgroup is mounted by fstab, don't run
|
||||
# don't get too smart - bail on any uncommented entry with 'cgroup' in it
|
||||
if grep -v '^#' /etc/fstab | grep -q cgroup; then
|
||||
echo 'cgroups mounted from fstab, not mounting /sys/fs/cgroup'
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# kernel provides cgroups?
|
||||
if [ ! -e /proc/cgroups ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# if we don't even have the directory we need, something else must be wrong
|
||||
if [ ! -d /sys/fs/cgroup ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# mount /sys/fs/cgroup if not already done
|
||||
if ! mountpoint -q /sys/fs/cgroup; then
|
||||
mount -t tmpfs -o uid=0,gid=0,mode=0755 cgroup /sys/fs/cgroup
|
||||
fi
|
||||
|
||||
cd /sys/fs/cgroup
|
||||
|
||||
# get/mount list of enabled cgroup controllers
|
||||
for sys in $(awk '!/^#/ { if ($4 == 1) print $1 }' /proc/cgroups); do
|
||||
mkdir -p $sys
|
||||
if ! mountpoint -q $sys; then
|
||||
if ! mount -n -t cgroup -o $sys cgroup $sys; then
|
||||
rmdir $sys || true
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# example /proc/cgroups:
|
||||
# #subsys_name hierarchy num_cgroups enabled
|
||||
# cpuset 2 3 1
|
||||
# cpu 3 3 1
|
||||
# cpuacct 4 3 1
|
||||
# memory 5 3 0
|
||||
# devices 6 3 1
|
||||
# freezer 7 3 1
|
||||
# blkio 8 3 1
|
||||
|
||||
exit 0
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
#!/bin/sh
|
||||
# Copyright 2011 Canonical, Inc
|
||||
# 2014 Tianon Gravi
|
||||
# Author: Serge Hallyn <serge.hallyn@canonical.com>
|
||||
# Tianon Gravi <admwiggin@gmail.com>
|
||||
set -e
|
||||
|
||||
# we don't care to move tasks around gratuitously - just umount the cgroups
|
||||
|
||||
# if we don't even have the directory we need, something else must be wrong
|
||||
if [ ! -d /sys/fs/cgroup ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# if /sys/fs/cgroup is not mounted, we don't bother
|
||||
if ! mountpoint -q /sys/fs/cgroup; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd /sys/fs/cgroup
|
||||
|
||||
for sys in *; do
|
||||
if mountpoint -q $sys; then
|
||||
umount $sys
|
||||
fi
|
||||
if [ -d $sys ]; then
|
||||
rmdir $sys || true
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
||||
@@ -0,0 +1,13 @@
|
||||
# /etc/conf.d/docker: config file for /etc/init.d/docker
|
||||
|
||||
# where the docker daemon output gets piped
|
||||
DOCKER_LOGFILE="/var/log/docker.log"
|
||||
|
||||
# where docker's pid get stored
|
||||
DOCKER_PIDFILE="/var/run/docker.pid"
|
||||
|
||||
# where the docker daemon itself is run from
|
||||
DOCKER_BINARY="/usr/bin/docker"
|
||||
|
||||
# any other random options you want to pass to docker
|
||||
DOCKER_OPTS=""
|
||||
@@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>docker</Name>
|
||||
<Homepage>http://docker.io</Homepage>
|
||||
<Packager>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>Apache</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Pack, ship and run any application as a lightweight container</Summary>
|
||||
<Description>An open platform for distributed applications for developers and sysadmins</Description>
|
||||
<!--fix sha1sum-->
|
||||
<Archive sha1sum="e638f39c6081de7b0903ed09096300bdbb1d5aa0" type="targz">https://github.com/docker/docker/archive/v1.7.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>golang</Dependency>
|
||||
<Dependency>btrfs-progs-devel</Dependency>
|
||||
<Dependency>device-mapper-devel</Dependency>
|
||||
<Dependency>sqlite-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>docker</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>golang</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>device-mapper</Dependency>
|
||||
<Dependency>btrfs-progs</Dependency>
|
||||
<Dependency>bridge-utils</Dependency>
|
||||
<Dependency>iproute2</Dependency>
|
||||
<Dependency>iptables</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin/</Path>
|
||||
<Path fileType="library">/usr/libexec/docker</Path>
|
||||
<Path fileType="data">/usr/share/</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/doc/docker/contrib/cgroupfs-mount">cgroupfs-mount</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0655" target="/usr/share/doc/docker/contrib/cgroupfs-umount">cgroupfs-umount</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/etc/conf.d/docker">docker.confd</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-06-24</Date>
|
||||
<Version>1.7.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2015-05-17</Date>
|
||||
<Version>1.6.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2015-05-09</Date>
|
||||
<Version>1.6.1</Version>
|
||||
<Comment>Version bump.http://seclists.org/fulldisclosure/2015/May/28 </Comment>
|
||||
<Type package="docker">security</Type>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-04-17</Date>
|
||||
<Version>1.6.0</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>docker</Name>
|
||||
<Summary xml:lang="tr">Herhangi bir uygulamayı paketleyip çalıştırmak için hafif kontenyer</Summary>
|
||||
<Description xml:lang="tr">Geliştirici ve Sistem Yöneticileri için açık ve dağıtık platform</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -12,11 +12,12 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Kernel routing and traffic control utilities</Summary>
|
||||
<Description>Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux.</Description>
|
||||
<Archive sha1sum="d24385ae619966d1bd71e146322d6035d60aaa1a" type="tarxz">https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.0.0.tar.xz</Archive>
|
||||
<Archive sha1sum="750c17e720b43041c23fed7b8cf0118c0e841036" type="tarxz">https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.1.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>iptables-devel</Dependency>
|
||||
<Dependency>linux-atm-devel</Dependency>
|
||||
<Dependency>db-devel</Dependency>
|
||||
<Dependency>elfutils</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -26,6 +27,7 @@
|
||||
<Dependency>linux-atm</Dependency>
|
||||
<Dependency>iptables</Dependency>
|
||||
<Dependency>db</Dependency>
|
||||
<Dependency>elfutils</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
@@ -40,6 +42,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-07-20</Date>
|
||||
<Version>4.1.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2015-04-13</Date>
|
||||
<Version>4.0.0</Version>
|
||||
|
||||
Executable
+47
@@ -0,0 +1,47 @@
|
||||
#!/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 pisitools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
shelltools.export("GOROOT", "%s/go-go1.4.2" % get.workDIR())
|
||||
shelltools.export("GOBIN", "$GOROOT/bin")
|
||||
shelltools.export("GOPATH", "%s" % get.workDIR())
|
||||
shelltools.export("GOROOT_FINAL", "/usr/lib/go")
|
||||
|
||||
shelltools.export("GOOS","linux")
|
||||
shelltools.export("GOARCH","amd64")
|
||||
|
||||
NoStrip=["/"]
|
||||
|
||||
def build():
|
||||
shelltools.cd("src")
|
||||
shelltools.system("bash make.bash")
|
||||
|
||||
shelltools.cd("%s/go-go1.4.2" % get.workDIR())
|
||||
|
||||
shelltools.system("$GOROOT/bin/go get -d golang.org/x/tools/cmd/godoc")
|
||||
shelltools.system("$GOROOT/bin/go build -o $GOPATH/godoc golang.org/x/tools/cmd/godoc")
|
||||
|
||||
for tool in ["cover", "vet", "callgraph"]:
|
||||
shelltools.system("$GOROOT/bin/go get -d golang.org/x/tools/cmd/%s" % tool)
|
||||
shelltools.system("$GOROOT/bin/go build -o $GOROOT/pkg/tool/$GOOS\_$GOARCH/%s golang.org/x/tools/cmd/%s" % (tool, tool))
|
||||
|
||||
|
||||
def install():
|
||||
shelltools.cd("%s/go-go1.4.2" % get.workDIR())
|
||||
|
||||
pisitools.dobin("bin/*")
|
||||
pisitools.dodir("/usr/lib/go")
|
||||
pisitools.insinto("/usr/lib/go", "doc")
|
||||
pisitools.insinto("/usr/lib/go", "include")
|
||||
pisitools.insinto("/usr/lib/go", "lib")
|
||||
pisitools.insinto("/usr/lib/go", "pkg")
|
||||
pisitools.insinto("/usr/lib/go", "src")
|
||||
|
||||
pisitools.dodoc("VERSION", "LICENSE", "PATENTS", "README", "AUTHORS", "CONTRIBUTORS")
|
||||
@@ -0,0 +1 @@
|
||||
export GOROOT=/usr/lib/go
|
||||
Executable
+66
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>go</Name>
|
||||
<Homepage>http://golang.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Aydın Demirel</Name>
|
||||
<Email>aydin.demirel@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Compiler and tools for the Go programming language from Google</Summary>
|
||||
<Description>Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.</Description>
|
||||
<Archive sha1sum="7fad08fc0c884aa68f13d3cd82d3ad2aa1872368" type="targz">https://github.com/golang/go/archive/go1.4.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>perl</Dependency>
|
||||
<Dependency>gawk</Dependency>
|
||||
<Dependency>mercurial</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
<Dependency>git</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>golang</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
<Dependency>git</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/</Path>
|
||||
<Path fileType="library">/usr/lib/</Path>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="data">/usr/share/</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/etc/profile.d/go.sh">go.sh</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2015-04-17</Date>
|
||||
<Version>1.4.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-12-24</Date>
|
||||
<Version>1.3.3</Version>
|
||||
<Comment>Version bump, remove unneded depse</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-09-27</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Aydın Demirel</Name>
|
||||
<Email>aydin.demirel@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>go</Name>
|
||||
<Summary xml:lang="tr">Google'dan Go programlama dili için araçlar ve derleyici</Summary>
|
||||
<Description xml:lang="tr">Go basit, güvenilir ve verimli yazılım inşa etmek için onu kolay yapan açık kaynaklı bir programlama dilidir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 pisitools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
|
||||
def setup():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.dodir("/etc/bash_completion.d")
|
||||
pisitools.insinto("/etc/bash_completion.d", "contrib/bash_completion", "mercurial")
|
||||
|
||||
pisitools.doman("doc/*.1")
|
||||
pisitools.doman("doc/*.5")
|
||||
|
||||
pisitools.dohtml("doc/*.html")
|
||||
#pisitools.dodoc("doc/*.txt")
|
||||
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mercurial</Name>
|
||||
<Homepage>http://www.selenic.com/mercurial</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A distributed SCM tool</Summary>
|
||||
<Description>A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects.</Description>
|
||||
<Archive sha1sum="999d5db4961e2c745f17df44d7ae64dce2d8425b" type="targz">http://mercurial.selenic.com/release/mercurial-3.3.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>mercurial</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/etc/bash_completion.d</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2015-04-04</Date>
|
||||
<Version>3.3.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2015-01-10</Date>
|
||||
<Version>3.2.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-03-07</Date>
|
||||
<Version>2.9.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-02-01</Date>
|
||||
<Version>2.8</Version>
|
||||
<Comment>Ver. bump</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-06</Date>
|
||||
<Version>2.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mercurial</Name>
|
||||
<Summary xml:lang="tr">Dağıtık bir kaynak kod yönetim aracı</Summary>
|
||||
<Description xml:lang="tr">Çok büyük dağıtık projelerin verimli bir şekilde idare edilmesi amacıyla geliştirilmiş hızlı, hafif bir kaynak kod kontrol yönetimi sistemi</Description>
|
||||
<Description xml:lang="fr">Système de gestion de code source, rapide et léger conçu pour gérer de manière efficace les projets distribués de très grande taille.</Description>
|
||||
<Description xml:lang="es">Un sistema rápido y liviano de administración de fuentes (Source Control Management) diseñado para manejo eficaz de proyectos muy largos y distribuidos.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user