core updated.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>hardware</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>hardware.disk</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,109 @@
|
||||
#!/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 get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def builddiet():
|
||||
pisitools.flags.add("-fno-lto")
|
||||
shelltools.export("LIBS","-lpthread -luuid")
|
||||
#dietCC = "diet %s %s %s -Os -static" % (get.CC(), get.CFLAGS(), get.LDFLAGS())
|
||||
dietCC = "%s %s %s -Os -static" % (get.CC(), get.CFLAGS(), get.LDFLAGS())
|
||||
shelltools.export("CC", dietCC)
|
||||
|
||||
autotools.make("distclean")
|
||||
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure('ac_cv_lib_dl_dlopen=no \
|
||||
--with-staticdir="/sbin" \
|
||||
--enable-debug \
|
||||
--with-optimisation=\"%s -Os\" \
|
||||
--enable-static_link \
|
||||
--with-lvm1=internal \
|
||||
--disable-readline \
|
||||
--disable-nls \
|
||||
--disable-selinux \
|
||||
--with-confdir=/etc \
|
||||
--enable-applib \
|
||||
--enable-cmdlib \
|
||||
--enable-pkgconfig \
|
||||
--enable-udev_rules \
|
||||
--with-systemdsystemunitdir=no \
|
||||
--enable-udev_sync' % get.CFLAGS())
|
||||
|
||||
pisitools.dosed("lib/misc/configure.h","rpl_malloc","malloc")
|
||||
pisitools.dosed("lib/misc/configure.h","rpl_realloc","realloc")
|
||||
|
||||
autotools.make("-j1 -C include")
|
||||
autotools.make("-j1 -C lib LIB_SHARED= VERSIONED_SHLIB=")
|
||||
autotools.make("-j1 -C libdm LIB_SHARED= VERSIONED_SHLIB=")
|
||||
autotools.make("-j1 -C libdaemon LIB_SHARED= VERSIONED_SHLIB=")
|
||||
autotools.make("-j1 -C tools dmsetup.static lvm.static DIETLIBC_LIBS=\"-lcompat\"")
|
||||
|
||||
pisitools.insinto("/usr/lib/dietlibc/lib-i386", "libdm/ioctl/libdevmapper.a")
|
||||
pisitools.insinto("/sbin/", "tools/lvm.static")
|
||||
pisitools.insinto("/sbin/", "tools/dmsetup.static")
|
||||
|
||||
|
||||
def setup():
|
||||
# Breaks linking when sandbox is disabled
|
||||
shelltools.export("CLDFLAGS", get.LDFLAGS())
|
||||
|
||||
shelltools.export("LIB_PTHREAD", "-lpthread")
|
||||
pisitools.dosed("conf/example.conf.in", "use_lvmetad = 0", "use_lvmetad = 1")
|
||||
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--enable-lvm1_fallback \
|
||||
--with-default-pid-dir=/run \
|
||||
--with-default-run-dir=/run/lvm \
|
||||
--with-default-locking-dir=/run/lock/lvm \
|
||||
--with-dmeventd-path=/sbin/dmeventd \
|
||||
--enable-fsadm \
|
||||
--with-pool=internal \
|
||||
--with-user= \
|
||||
--with-group= \
|
||||
--with-usrlibdir=/usr/lib \
|
||||
--with-usrsbindir=%s \
|
||||
--with-udevdir=/lib/udev/rules.d \
|
||||
--with-device-uid=0 \
|
||||
--with-device-gid=6 \
|
||||
--with-device-mode=0660 \
|
||||
--enable-dmeventd \
|
||||
--enable-udev_rules \
|
||||
--enable-udev_sync \
|
||||
--with-snapshots=internal \
|
||||
--with-mirrors=internal \
|
||||
--with-interface=ioctl \
|
||||
--enable-static_link=no \
|
||||
--disable-readline \
|
||||
--disable-realtime \
|
||||
--disable-selinux \
|
||||
--with-confdir=/etc \
|
||||
--enable-applib \
|
||||
--enable-cmdlib \
|
||||
--enable-pkgconfig " % get.sbinDIR())
|
||||
|
||||
# pisitools.dosed("make.tmpl","-lm","")
|
||||
|
||||
def build():
|
||||
autotools.make("-C include")
|
||||
#autotools.make("-C libdm")
|
||||
#autotools.make("-C lib")
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall('DESTDIR=%s' % get.installDIR())
|
||||
|
||||
for dir in ["archive", "backup", "cache"]:
|
||||
pisitools.dodir("/etc/lvm/%s" % dir)
|
||||
shelltools.chmod(get.installDIR() + "/etc/lvm/%s" % dir, 0700)
|
||||
|
||||
#pisitools.move("/sbin/lvmconf","scripts/lvmconf.sh")
|
||||
|
||||
builddiet()
|
||||
pisitools.dodoc("COPYING", "COPYING.LIB", "README", "VERSION", "VERSION_DM", "WHATS_NEW", "WHATS_NEW_DM")
|
||||
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
os.system("/sbin/mudur_tmpfiles.py /usr/lib/tmpfiles.d/lvm2.conf")
|
||||
@@ -0,0 +1,36 @@
|
||||
Make sure that libdm usage always brings in pthread libraries, both in
|
||||
pkgconfig and during manual build.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
|
||||
diff -Nuar LVM2.2.02.105.orig/libdm/libdevmapper.pc.in LVM2.2.02.105/libdm/libdevmapper.pc.in
|
||||
--- LVM2.2.02.105.orig/libdm/libdevmapper.pc.in 2014-01-20 11:25:30.000000000 -0800
|
||||
+++ LVM2.2.02.105/libdm/libdevmapper.pc.in 2014-02-01 14:50:58.805455421 -0800
|
||||
@@ -8,4 +8,5 @@
|
||||
Version: @DM_LIB_PATCHLEVEL@
|
||||
Cflags: -I${includedir}
|
||||
Libs: -L${libdir} -ldevmapper
|
||||
+Libs.private: -L${libdir} @PTHREAD_LIBS@
|
||||
Requires.private: @SELINUX_PC@ @UDEV_PC@
|
||||
diff -Nuar LVM2.2.02.105/tools/Makefile.in LVM2.2.02.105.orig/tools/Makefile.in
|
||||
--- LVM2.2.02.105/tools/Makefile.in 2014-02-03 18:33:19.032894499 -0800
|
||||
+++ LVM2.2.02.105.orig/tools/Makefile.in 2014-02-03 18:36:41.738459116 -0800
|
||||
@@ -86,6 +86,7 @@
|
||||
INSTALL_LVM_TARGETS += install_tools_static
|
||||
INSTALL_DMSETUP_TARGETS += install_dmsetup_static
|
||||
INSTALL_CMDLIB_TARGETS += install_cmdlib_static
|
||||
+ STATIC_LIBS += @PTHREAD_LIBS@
|
||||
endif
|
||||
|
||||
LVMLIBS = $(LVMINTERNAL_LIBS)
|
||||
@@ -119,6 +119,10 @@
|
||||
|
||||
include $(top_builddir)/make.tmpl
|
||||
|
||||
+ifeq ("@STATIC_LINK@", "yes")
|
||||
+ STATIC_LIBS += @PTHREAD_LIBS@
|
||||
+endif
|
||||
+
|
||||
device-mapper: $(TARGETS_DM)
|
||||
|
||||
CFLAGS_dmsetup.o += $(UDEV_CFLAGS) $(EXTRA_EXEC_CFLAGS)
|
||||
@@ -0,0 +1,56 @@
|
||||
--- configure.in~ 2014-05-09 18:12:36.163307302 +0200
|
||||
+++ configure.in 2014-05-09 18:14:08.233307001 +0200
|
||||
@@ -1040,6 +1040,7 @@
|
||||
])
|
||||
if test x$BLKID_WIPING = xyes; then
|
||||
BLKID_PC="blkid"
|
||||
+ BLKID_STATIC_LIBS=`$PKG_CONFIG --static --libs $BLKID_PC`
|
||||
AC_DEFINE([BLKID_WIPING_SUPPORT], 1, [Define to 1 to use libblkid detection of signatures when wiping.])
|
||||
fi
|
||||
fi
|
||||
@@ -1068,6 +1069,7 @@
|
||||
pkg_config_init
|
||||
fi
|
||||
PKG_CHECK_MODULES(UDEV, libudev >= 143, [UDEV_PC="libudev"])
|
||||
+ UDEV_STATIC_LIBS=`$PKG_CONFIG --static --libs libudev`
|
||||
AC_DEFINE([UDEV_SYNC_SUPPORT], 1, [Define to 1 to enable synchronisation with udev processing.])
|
||||
fi
|
||||
|
||||
@@ -1694,6 +1694,7 @@
|
||||
AC_SUBST(ELDFLAGS)
|
||||
AC_SUBST(FSADM)
|
||||
AC_SUBST(BLKDEACTIVATE)
|
||||
+AC_SUBST(BLKID_STATIC_LIBS)
|
||||
AC_SUBST(HAVE_LIBDL)
|
||||
AC_SUBST(HAVE_REALTIME)
|
||||
AC_SUBST(INTL)
|
||||
@@ -1750,6 +1751,7 @@
|
||||
AC_SUBST(UDEV_SYSTEMD_BACKGROUND_JOBS)
|
||||
AC_SUBST(UDEV_RULE_EXEC_DETECTION)
|
||||
AC_SUBST(UDEV_HAS_BUILTIN_BLKID)
|
||||
+AC_SUBST(UDEV_STATIC_LIBS)
|
||||
AC_SUBST(WRITE_INSTALL)
|
||||
AC_SUBST(DMEVENTD_PIDFILE)
|
||||
AC_SUBST(LVMETAD_PIDFILE)
|
||||
--- make.tmpl.in~ 2014-05-09 18:12:40.353307288 +0200
|
||||
+++ make.tmpl.in 2014-05-09 18:15:07.866640139 +0200
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
LIBS = @LIBS@
|
||||
# Extra libraries always linked with static binaries
|
||||
-STATIC_LIBS = $(SELINUX_LIBS) $(UDEV_LIBS) $(BLKID_LIBS)
|
||||
+STATIC_LIBS = $(SELINUX_LIBS) $(UDEV_STATIC_LIBS) $(BLKID_STATIC_LIBS)
|
||||
DEFS += @DEFS@
|
||||
# FIXME set this only where it's needed, not globally?
|
||||
CFLAGS += @CFLAGS@
|
||||
@@ -59,8 +59,10 @@
|
||||
SELINUX_LIBS = @SELINUX_LIBS@
|
||||
UDEV_CFLAGS = @UDEV_CFLAGS@
|
||||
UDEV_LIBS = @UDEV_LIBS@
|
||||
+UDEV_STATIC_LIBS = @UDEV_STATIC_LIBS@
|
||||
BLKID_CFLAGS = @BLKID_CFLAGS@
|
||||
BLKID_LIBS = @BLKID_LIBS@
|
||||
+BLKID_STATIC_LIBS=@BLKID_STATIC_LIBS@
|
||||
TESTING = @TESTING@
|
||||
|
||||
# Setup directory variables
|
||||
@@ -0,0 +1,42 @@
|
||||
diff -Nuar --exclude '*~' LVM2.2.02.63.orig/daemons/dmeventd/Makefile.in LVM2.2.02.63/daemons/dmeventd/Makefile.in
|
||||
--- LVM2.2.02.63.orig/daemons/dmeventd/Makefile.in 2010-04-09 14:42:48.000000000 -0700
|
||||
+++ LVM2.2.02.63/daemons/dmeventd/Makefile.in 2010-04-19 11:53:27.000000000 -0700
|
||||
@@ -28,11 +28,12 @@
|
||||
INSTALL_LIB_TARGETS = install_lib_dynamic
|
||||
|
||||
LIB_NAME = libdevmapper-event
|
||||
+LIB_STATIC = $(LIB_NAME).a
|
||||
+INSTALL_LIB_TARGETS += install_lib_static
|
||||
+TARGETS += $(LIB_STATIC)
|
||||
ifeq ("@STATIC_LINK@", "yes")
|
||||
- LIB_STATIC = $(LIB_NAME).a
|
||||
- TARGETS += $(LIB_STATIC) dmeventd.static
|
||||
+ TARGETS += dmeventd.static
|
||||
INSTALL_DMEVENTD_TARGETS += install_dmeventd_static
|
||||
- INSTALL_LIB_TARGETS += install_lib_static
|
||||
endif
|
||||
|
||||
LIB_VERSION = $(LIB_VERSION_DM)
|
||||
diff -Nuar --exclude '*~' LVM2.2.02.63.orig/libdm/Makefile.in LVM2.2.02.63/libdm/Makefile.in
|
||||
--- LVM2.2.02.63.orig/libdm/Makefile.in 2010-04-09 14:42:51.000000000 -0700
|
||||
+++ LVM2.2.02.63/libdm/Makefile.in 2010-04-19 11:52:20.000000000 -0700
|
||||
@@ -34,8 +34,8 @@
|
||||
|
||||
INCLUDES = -I$(srcdir)/$(interface) -I$(srcdir)
|
||||
|
||||
-ifeq ("@STATIC_LINK@", "yes")
|
||||
LIB_STATIC = $(interface)/libdevmapper.a
|
||||
+ifeq ("@STATIC_LINK@", "yes")
|
||||
endif
|
||||
|
||||
LIB_SHARED = $(interface)/libdevmapper.$(LIB_SUFFIX)
|
||||
@@ -63,8 +63,8 @@
|
||||
|
||||
INSTALL_TYPE = install_dynamic
|
||||
|
||||
-ifeq ("@STATIC_LINK@", "yes")
|
||||
INSTALL_TYPE += install_static
|
||||
+ifeq ("@STATIC_LINK@", "yes")
|
||||
endif
|
||||
|
||||
ifeq ("@PKGCONFIG@", "yes")
|
||||
@@ -0,0 +1,63 @@
|
||||
diff -Nuar --exclude '*.rej' --exclude '*.orig' LVM2.2.02.92.orig/configure.in LVM2.2.02.92/configure.in
|
||||
--- LVM2.2.02.92.orig/configure.in 2012-02-20 11:36:27.000000000 -0800
|
||||
+++ LVM2.2.02.92/configure.in 2012-02-20 15:53:40.700124222 -0800
|
||||
@@ -32,6 +32,7 @@
|
||||
COPTIMISE_FLAG="-O2"
|
||||
CLDFLAGS="$CLDFLAGS -Wl,--version-script,.export.sym"
|
||||
ELDFLAGS="-Wl,--export-dynamic"
|
||||
+ STATIC_LDFLAGS="-Wl,--no-export-dynamic"
|
||||
# FIXME Generate list and use --dynamic-list=.dlopen.sym
|
||||
CLDWHOLEARCHIVE="-Wl,-whole-archive"
|
||||
CLDNOWHOLEARCHIVE="-Wl,-no-whole-archive"
|
||||
@@ -1458,6 +1459,7 @@
|
||||
AC_SUBST(SELINUX_PC)
|
||||
AC_SUBST(SNAPSHOTS)
|
||||
AC_SUBST(STATICDIR)
|
||||
+AC_SUBST(STATIC_LDFLAGS)
|
||||
AC_SUBST(STATIC_LINK)
|
||||
AC_SUBST(TESTING)
|
||||
AC_SUBST(THIN)
|
||||
diff -Nuar --exclude '*.rej' --exclude '*.orig' LVM2.2.02.92.orig/daemons/dmeventd/Makefile.in LVM2.2.02.92/daemons/dmeventd/Makefile.in
|
||||
--- LVM2.2.02.92.orig/daemons/dmeventd/Makefile.in 2012-02-20 15:48:04.861683196 -0800
|
||||
+++ LVM2.2.02.92/daemons/dmeventd/Makefile.in 2012-02-20 15:52:50.732314588 -0800
|
||||
@@ -65,7 +65,7 @@
|
||||
$(DL_LIBS) $(LVMLIBS) $(LIBS) -rdynamic
|
||||
|
||||
dmeventd.static: $(LIB_STATIC) dmeventd.o $(interfacebuilddir)/libdevmapper.a
|
||||
- $(CC) $(CFLAGS) $(LDFLAGS) $(ELDFLAGS) -static -L. -L$(interfacebuilddir) -o $@ \
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) $(ELDFLAGS) $(STATIC_LDFLAGS) -static -L. -L$(interfacebuilddir) -o $@ \
|
||||
dmeventd.o $(DL_LIBS) $(LVMLIBS) $(LIBS) $(STATIC_LIBS)
|
||||
|
||||
ifeq ("@PKGCONFIG@", "yes")
|
||||
diff -Nuar --exclude '*.rej' --exclude '*.orig' LVM2.2.02.92.orig/make.tmpl.in LVM2.2.02.92/make.tmpl.in
|
||||
--- LVM2.2.02.92.orig/make.tmpl.in 2012-02-20 15:48:05.034685963 -0800
|
||||
+++ LVM2.2.02.92/make.tmpl.in 2012-02-20 15:48:58.622550855 -0800
|
||||
@@ -38,6 +38,7 @@
|
||||
ELDFLAGS += @ELDFLAGS@
|
||||
LDDEPS += @LDDEPS@
|
||||
LDFLAGS += @LDFLAGS@
|
||||
+STATIC_LDFLAGS += @STATIC_LDFLAGS@
|
||||
LIB_SUFFIX = @LIB_SUFFIX@
|
||||
LVMINTERNAL_LIBS = -llvm-internal $(UDEV_LIBS) $(DL_LIBS)
|
||||
DL_LIBS = @DL_LIBS@
|
||||
diff -Nuar --exclude '*.rej' --exclude '*.orig' LVM2.2.02.92.orig/tools/Makefile.in LVM2.2.02.92/tools/Makefile.in
|
||||
--- LVM2.2.02.92.orig/tools/Makefile.in 2011-11-14 13:30:36.000000000 -0800
|
||||
+++ LVM2.2.02.92/tools/Makefile.in 2012-02-20 15:52:25.242901501 -0800
|
||||
@@ -126,7 +126,7 @@
|
||||
-o $@ dmsetup.o -ldevmapper $(LIBS)
|
||||
|
||||
dmsetup.static: dmsetup.o $(interfacebuilddir)/libdevmapper.a
|
||||
- $(CC) $(CFLAGS) $(LDFLAGS) -static -L$(interfacebuilddir) \
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) $(STATIC_LDFLAGS) -static -L$(interfacebuilddir) \
|
||||
-o $@ dmsetup.o -ldevmapper $(STATIC_LIBS) $(LIBS)
|
||||
|
||||
all: device-mapper
|
||||
@@ -136,7 +136,7 @@
|
||||
$(LVMLIBS) $(READLINE_LIBS) $(LIBS) -rdynamic
|
||||
|
||||
lvm.static: $(OBJECTS) lvm-static.o $(top_builddir)/lib/liblvm-internal.a $(interfacebuilddir)/libdevmapper.a
|
||||
- $(CC) $(CFLAGS) $(LDFLAGS) -static -L$(interfacebuilddir) -o $@ \
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) $(STATIC_LDFLAGS) -static -L$(interfacebuilddir) -o $@ \
|
||||
$(OBJECTS) lvm-static.o $(LVMLIBS) $(STATIC_LIBS) $(LIBS)
|
||||
|
||||
liblvm2cmd.a: $(top_builddir)/lib/liblvm-internal.a $(OBJECTS) lvmcmdlib.o lvm2cmd.o
|
||||
@@ -0,0 +1,2 @@
|
||||
d /run/lvm 0755 root root - -
|
||||
d /run/lock/lvm 0755 root root - -
|
||||
@@ -0,0 +1,241 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lvm2</Name>
|
||||
<Homepage>http://sources.redhat.com/lvm/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Userland logical volume management tools</Summary>
|
||||
<Description>LVM2 includes all of the support for handling read/write operations physical and logical volumes.</Description>
|
||||
<Archive sha1sum="4f45406eb122443a0a9a3f2d338d5203d94d93de" type="targz">ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.118.tgz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency releaseFrom="9">libutil-linux-devel</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">lvm2-2.02.63-always-make-static-libdm.patch</Patch>
|
||||
<Patch level="1">lvm2-2.02.92-dynamic-static-ldflags.patch</Patch>
|
||||
<Patch level="1">lvm2-2.02.105-pthread-pkgconfig.patch</Patch>
|
||||
<Patch>lvm2-2.02.106-static-pkgconfig-libs.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>eudev</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Summary>Light-weight kernel component can support user-space tools for logical volume management</Summary>
|
||||
<Description>Device-mapper includes the driver enables the definition of new block devices composed of ranges of sectors of existing devices to define disk partitions or logical volumes.</Description>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/sbin/dmsetup</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper.a</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper.so*</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d/10-dm.rules</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d/13-dm-disk.rules</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d/95-dm-notify.rules</Path>
|
||||
<Path fileType="doc">/usr/share/doc/VERSION_DM</Path>
|
||||
<Path fileType="doc">/usr/share/doc/WHATS_NEW_DM</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/dmsetup.8</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-devel</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Development libraries and headers for device-mapper</Summary>
|
||||
<Description>Device-mapper-devel contains files needed to develop applications that use the device-mapper libraries.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current" >device-mapper</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/libdevmapper.h</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig/devmapper.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-event</Name>
|
||||
<Summary>Device-mapper event daemon</Summary>
|
||||
<Description>This package contains the dmeventd daemon for monitoring the state of device-mapper devices.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current" >device-mapper</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/sbin/dmeventd</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event.a</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2thin.so</Path>
|
||||
<Path fileType="library">/usr/lib/device-mapper/libdevmapper-event-lvm2thin.so</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/dmeventd.8</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-event-devel</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Development libraries and headers for the device-mapper event daemon</Summary>
|
||||
<Description>This contains contains files needed to develop applications that use the device-mapper event library.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current" >device-mapper-event</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/libdevmapper-event.h</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig/devmapper-event.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lvm2</Name>
|
||||
<Summary>Userland logical volume management tools</Summary>
|
||||
<Description>LVM2 includes all of the support for handling read/write operations on physical volumes,creating volume groups from one or more physical volumes and creating one or more logical volumes in volume groups.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">device-mapper</Dependency>
|
||||
<Dependency release="current">device-mapper-event</Dependency>
|
||||
<Dependency>libutil-linux</Dependency>
|
||||
<Dependency>eudev</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/sbin/lvmconf</Path>
|
||||
<Path fileType="executable">/usr/sbin/blkdeactivate</Path>
|
||||
<Path fileType="executable">/usr/sbin/fsadm</Path>
|
||||
<Path fileType="executable">/usr/sbin/lv*</Path>
|
||||
<Path fileType="executable">/usr/sbin/vg*</Path>
|
||||
<Path fileType="executable">/usr/sbin/pv*</Path>
|
||||
<Path fileType="library">/usr/lib/liblvm2app.so*</Path>
|
||||
<Path fileType="library">/usr/lib/liblvm2cmd.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2.so*</Path>
|
||||
<Path fileType="library">/usr/lib/device-mapper/libdevmapper-event-lvm2mirror.so</Path>
|
||||
<Path fileType="library">/usr/lib/device-mapper/libdevmapper-event-lvm2snapshot.so</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2mirror.so</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2snapshot.so</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2raid.so</Path>
|
||||
<Path fileType="library">/usr/lib/device-mapper/libdevmapper-event-lvm2raid.so</Path>
|
||||
<Path fileType="config">/etc/lvm</Path>
|
||||
<Path fileType="data">/etc/lvm/archive</Path>
|
||||
<Path fileType="data">/etc/lvm/backup</Path>
|
||||
<Path fileType="data">/etc/lvm/cache</Path>
|
||||
<Path fileType="data">/var/lock/lvm</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d/11-dm-lvm.rules</Path>
|
||||
<Path fileType="data">/usr/lib/tmpfiles.d/lvm2.conf</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man/man5/lvm.conf.5</Path>
|
||||
<Path fileType="man">/usr/share/man/man7</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/fsadm.8</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/blkdeactivate.8</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/*pv*</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/*lv*</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/*vg*</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/tmpfiles.d/lvm2.conf">tmpfiles.conf</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lvm2-devel</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Development libraries and headers</Summary>
|
||||
<Description>This package contains files needed to develop applications that use the lvm2 libraries.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libutil-linux-devel</Dependency>
|
||||
<Dependency release="current">lvm2</Dependency>
|
||||
<Dependency release="current">device-mapper-devel</Dependency>
|
||||
<Dependency release="current">device-mapper-event-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/lvm2cmd.h</Path>
|
||||
<Path fileType="header">/usr/include/lvm2app.h</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig/lvm2app.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>dietlibc-libdevmapper</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Static devmapper library built with dietlibc</Summary>
|
||||
<Description>device mapper contains ioctl library and utilities for use with logical volume management (LVM2) built with dietlibc</Description>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/dietlibc/lib-i386/libdevmapper.a</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-static</Name>
|
||||
<Summary>Staticaly linked Device-mapper library and utility</Summary>
|
||||
<Description>device mapper contains statically linked libraries and utility for initramfs.</Description>
|
||||
<Files>
|
||||
<Path fileType="executable">/sbin/dmsetup.static</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lvm2-static</Name>
|
||||
<Summary>Staticaly linked Logical Volume Management utilities</Summary>
|
||||
<Description>Number of utilities for creating, checking, and repairing logical volumes - statically linked for initramfs.</Description>
|
||||
<Files>
|
||||
<Path fileType="executable">/sbin/lvm.static</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2015-05-02</Date>
|
||||
<Version>2.02.118</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-09-04</Date>
|
||||
<Version>2.02.111</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-05-09</Date>
|
||||
<Version>2.02.106</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-04-07</Date>
|
||||
<Version>2.02.105</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-11-09</Date>
|
||||
<Version>2.02.103</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-26</Date>
|
||||
<Version>2.02.98</Version>
|
||||
<Comment>Fix dep, release bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptanan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-14</Date>
|
||||
<Version>2.02.98</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,237 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lvm2</Name>
|
||||
<Homepage>https://www.sourceware.org/lvm2/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Userland logical volume management tools</Summary>
|
||||
<Description>LVM2 includes all of the support for handling read/write operations physical and logical volumes.</Description>
|
||||
<Archive sha1sum="4f45406eb122443a0a9a3f2d338d5203d94d93de" type="targz">ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.118.tgz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency releaseFrom="9">libutil-linux-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">lvm2-make-sockets-static.patch</Patch>
|
||||
<!--<Patch level="1">lvm2-2.02.92-dynamic-static-ldflags.patch</Patch>
|
||||
<Patch level="1">lvm2-2.02.105-pthread-pkgconfig.patch</Patch>
|
||||
<Patch>lvm2-2.02.106-static-pkgconfig-libs.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libudev</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Summary>Light-weight kernel component can support user-space tools for logical volume management</Summary>
|
||||
<Description>Device-mapper includes the driver enables the definition of new block devices composed of ranges of sectors of existing devices to define disk partitions or logical volumes.</Description>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/sbin/dmsetup</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper.a</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper.so*</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d/10-dm.rules</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d/13-dm-disk.rules</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d/95-dm-notify.rules</Path>
|
||||
<Path fileType="doc">/usr/share/doc/VERSION_DM</Path>
|
||||
<Path fileType="doc">/usr/share/doc/WHATS_NEW_DM</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/dmsetup.8</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-devel</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Development libraries and headers for device-mapper</Summary>
|
||||
<Description>Device-mapper-devel contains files needed to develop applications that use the device-mapper libraries.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current" >device-mapper</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/libdevmapper.h</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig/devmapper.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-event</Name>
|
||||
<Summary>Device-mapper event daemon</Summary>
|
||||
<Description>This package contains the dmeventd daemon for monitoring the state of device-mapper devices.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current" >device-mapper</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/sbin/dmeventd</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event.a</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2thin.so</Path>
|
||||
<Path fileType="library">/usr/lib/device-mapper/libdevmapper-event-lvm2thin.so</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/dmeventd.8</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-event-devel</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Development libraries and headers for the device-mapper event daemon</Summary>
|
||||
<Description>This contains contains files needed to develop applications that use the device-mapper event library.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current" >device-mapper-event</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/libdevmapper-event.h</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig/devmapper-event.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lvm2</Name>
|
||||
<Summary>Userland logical volume management tools</Summary>
|
||||
<Description>LVM2 includes all of the support for handling read/write operations on physical volumes,creating volume groups from one or more physical volumes and creating one or more logical volumes in volume groups.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">device-mapper</Dependency>
|
||||
<Dependency release="current">device-mapper-event</Dependency>
|
||||
<Dependency>libutil-linux</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/sbin/lvmconf</Path>
|
||||
<Path fileType="executable">/usr/sbin/blkdeactivate</Path>
|
||||
<Path fileType="executable">/usr/sbin/fsadm</Path>
|
||||
<Path fileType="executable">/usr/sbin/lv*</Path>
|
||||
<Path fileType="executable">/usr/sbin/vg*</Path>
|
||||
<Path fileType="executable">/usr/sbin/pv*</Path>
|
||||
<Path fileType="library">/usr/lib/liblvm2app.so*</Path>
|
||||
<Path fileType="library">/usr/lib/liblvm2cmd.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2.so*</Path>
|
||||
<Path fileType="library">/usr/lib/device-mapper/libdevmapper-event-lvm2mirror.so</Path>
|
||||
<Path fileType="library">/usr/lib/device-mapper/libdevmapper-event-lvm2snapshot.so</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2mirror.so</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2snapshot.so</Path>
|
||||
<Path fileType="library">/usr/lib/libdevmapper-event-lvm2raid.so</Path>
|
||||
<Path fileType="library">/usr/lib/device-mapper/libdevmapper-event-lvm2raid.so</Path>
|
||||
<Path fileType="config">/etc/lvm</Path>
|
||||
<Path fileType="data">/etc/lvm/archive</Path>
|
||||
<Path fileType="data">/etc/lvm/backup</Path>
|
||||
<Path fileType="data">/etc/lvm/cache</Path>
|
||||
<Path fileType="data">/var/lock/lvm</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d/11-dm-lvm.rules</Path>
|
||||
<Path fileType="data">/usr/lib/tmpfiles.d/lvm2.conf</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man/man5/lvm.conf.5</Path>
|
||||
<Path fileType="man">/usr/share/man/man7/lvmthin.7</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/fsadm.8</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/blkdeactivate.8</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/*pv*</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/*lv*</Path>
|
||||
<Path fileType="man">/usr/share/man/man8/*vg*</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/tmpfiles.d/lvm2.conf">tmpfiles.conf</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lvm2-devel</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Development libraries and headers</Summary>
|
||||
<Description>This package contains files needed to develop applications that use the lvm2 libraries.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">lvm2</Dependency>
|
||||
<Dependency release="current">device-mapper-devel</Dependency>
|
||||
<Dependency release="current">device-mapper-event-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/lvm2cmd.h</Path>
|
||||
<Path fileType="header">/usr/include/lvm2app.h</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig/lvm2app.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>dietlibc-libdevmapper</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Static devmapper library built with dietlibc</Summary>
|
||||
<Description>device mapper contains ioctl library and utilities for use with logical volume management (LVM2) built with dietlibc</Description>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/dietlibc/lib-i386/libdevmapper.a</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-static</Name>
|
||||
<Summary>Staticaly linked Device-mapper library and utility</Summary>
|
||||
<Description>device mapper contains statically linked libraries and utility for initramfs.</Description>
|
||||
<Files>
|
||||
<Path fileType="executable">/sbin/dmsetup.static</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lvm2-static</Name>
|
||||
<Summary>Staticaly linked Logical Volume Management utilities</Summary>
|
||||
<Description>Number of utilities for creating, checking, and repairing logical volumes - statically linked for initramfs.</Description>
|
||||
<Files>
|
||||
<Path fileType="executable">/sbin/lvm.static</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2015-04-30</Date>
|
||||
<Version>2.02.118</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-09-04</Date>
|
||||
<Version>2.02.111</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-05-09</Date>
|
||||
<Version>2.02.106</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-04-07</Date>
|
||||
<Version>2.02.105</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-11-09</Date>
|
||||
<Version>2.02.103</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-26</Date>
|
||||
<Version>2.02.98</Version>
|
||||
<Comment>Fix dep, release bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptanan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-14</Date>
|
||||
<Version>2.02.98</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lvm2</Name>
|
||||
<Summary xml:lang="tr">Mantıksal Hacim Yönetimi aracı</Summary>
|
||||
<Description xml:lang="tr">LVM fiziksel ve mantıksal hacimler üzerinde gerçekleştirilen bütün okuma/yazma işlemlerini destekleyen araçları içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lvm2-devel</Name>
|
||||
<Summary xml:lang="tr">lvm2 için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lvm2-static</Name>
|
||||
<Summary xml:lang="tr">Statik bağlanmış LVM araçları</Summary>
|
||||
<Description xml:lang="tr">İnitramfs içinde kullanılan statik bağlanmış mantıksal hacim yönetimi aracıdır.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper</Name>
|
||||
<Summary xml:lang="tr">Mantıksal hacim yönetimi için gerekli hafif düzeydeki modülleri ve araçları içerir</Summary>
|
||||
<Description xml:lang="tr">device-mapper mevcut aygıtlardan yeni blok aygıtları yada mantıksal hacimler yaratır.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-devel</Name>
|
||||
<Summary xml:lang="tr">device-mapper için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-event</Name>
|
||||
<Summary xml:lang="tr">Device mapper durum servisi</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-event-devel</Name>
|
||||
<Summary xml:lang="tr">device-mapper-event için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>device-mapper-static</Name>
|
||||
<Summary xml:lang="tr">Static bağlanmış device-mapper kütüphanesi ve aracı</Summary>
|
||||
<Description xml:lang="tr">İnitramfs içinde kullanılan mantıksal hacim yönetimi için gerekli statik bağlanmış araçlardır.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>dietlibc-libdevmapper</Name>
|
||||
<Summary xml:lang="tr">Statik bağlanmış device-mapper kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">Dietlibc kütüphanesiyle statik derlenmiş device-mapper kütüphanesidir.</Description>
|
||||
</Package>
|
||||
|
||||
</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 get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def builddiet():
|
||||
autotools.make("clean")
|
||||
shelltools.export("CC", "diet %s %s %s %s -DHAVE_STDINT_H -Os -static" % (get.CC(), get.CFLAGS(), get.CXXFLAGS(), get.LDFLAGS()))
|
||||
autotools.make("mdadm.static")
|
||||
autotools.make("mdassemble.static")
|
||||
|
||||
pisitools.insinto("/sbin", "mdadm.static")
|
||||
pisitools.insinto("/sbin", "mdassemble.static")
|
||||
|
||||
def build():
|
||||
# fix build with gcc-4.9.0
|
||||
pisitools.dosed("Makefile", "(Wall) -Werror", "\\1")
|
||||
# Not sure about MDASSEMBLE_AUTO=1. Need to investigate.
|
||||
autotools.make("SYSCONFDIR=/%s MDASSEMBLE_AUTO=1 mdassemble mdadm mdmon" % get.confDIR())
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# Remove the udev file as its shipped with udev package
|
||||
pisitools.remove("/lib/udev/rules.d/*")
|
||||
|
||||
# Install config file
|
||||
pisitools.insinto("/etc", "mdadm.conf-example", "mdadm.conf")
|
||||
|
||||
builddiet()
|
||||
|
||||
pisitools.dodoc("TODO", "ChangeLog", "COPYING", "mdadm.conf-example", "misc/*")
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
from comar.service import *
|
||||
|
||||
serviceType = "server"
|
||||
serviceDesc = _({"en": "RAID monitor daemon",
|
||||
"tr": "RAID izleme servisi"})
|
||||
serviceConf = "mdadm"
|
||||
|
||||
MSG_ERR_STRTSRVC = {"en": "Couldn't start service.Please edit mdadm.conf file.",
|
||||
"tr": "Servis başlatılamadı.Lütfen mdadm.conf dosyasını düzenleyiniz.",
|
||||
}
|
||||
|
||||
def check():
|
||||
try:
|
||||
f = file("/etc/mdadm.conf")
|
||||
confLines = [a.lstrip() for a in f]
|
||||
confLines = filter(lambda x: not (x.startswith("\#") or x == ""), confLines)
|
||||
check = False
|
||||
for line in confLines:
|
||||
if "MAILADDR" or "PROGRAM" in line.split():
|
||||
check = True
|
||||
if not check:
|
||||
fail(MSG_ERR_STRTSRVC)
|
||||
except:
|
||||
fail(MSG_ERR_STRTSRVC)
|
||||
finally:
|
||||
f.close()
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
check()
|
||||
startService(command="/sbin/mdadm",
|
||||
args="--monitor --scan --daemonise --pid-file /run/mdadm.pid %s" % config.get("MDADM_OPTS"),
|
||||
pidfile="/run/mdadm.pid",
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(pidfile="/run/mdadm.pid",
|
||||
donotify=True)
|
||||
|
||||
def status():
|
||||
return isServiceRunning("/run/mdadm.pid")
|
||||
@@ -0,0 +1,7 @@
|
||||
# config file for mdadm
|
||||
|
||||
# Misc options to pass to mdadm in monitor mode.
|
||||
# For more info, run `mdadm --monitor --help` or see
|
||||
# the mdadm(8) manpage.
|
||||
|
||||
MDADM_OPTS="--syslog"
|
||||
@@ -0,0 +1,8 @@
|
||||
# This file causes block devices with Linux RAID (mdadm) signatures to
|
||||
# automatically cause mdadm to be run.
|
||||
# See udev(8) for syntax
|
||||
|
||||
SUBSYSTEM=="block", ACTION=="add", ENV{ID_FS_TYPE}=="linux_raid_member", \
|
||||
IMPORT{program}="/sbin/mdadm --examine --export $tempnode", \
|
||||
RUN+="/bin/bash -c '[ ! -f /dev/.in_sysinit ] && mdadm -I $env{DEVNAME}'"
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
[Unit]
|
||||
Description=MDADM Event Monitor
|
||||
|
||||
[Service]
|
||||
ExecStart=/sbin/mdadm --monitor --scan
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
@@ -0,0 +1 @@
|
||||
d /run/mdadm 0710 root root -
|
||||
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
for dev in `grep "^md.*: active" /proc/mdstat | cut -f 1 -d ' '`; do
|
||||
echo "repair" > /sys/block/$dev/md/sync_action
|
||||
done
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
[[ -f /proc/mdstat ]] || exit 0
|
||||
|
||||
# Try to make sure the devices exist before we use them
|
||||
create_devs() {
|
||||
local node dir minor
|
||||
for node in $@ ; do
|
||||
[[ ${node} != /dev/* ]] && node=/dev/${node}
|
||||
[[ -e ${node} ]] && continue
|
||||
|
||||
dir=${node%/*}
|
||||
[[ ! -d ${dir} ]] && mkdir -p "${dir}"
|
||||
|
||||
minor=${node##*/}
|
||||
mknod "${node}" b ${MAJOR} ${minor##*md} &> /dev/null
|
||||
done
|
||||
}
|
||||
|
||||
[[ -e /etc/mdadm.conf ]] && mdadm_conf="/etc/mdadm.conf"
|
||||
if [[ -x /sbin/mdadm && -f ${mdadm_conf} ]] ; then
|
||||
devs=$(awk '/^[[:space:]]*ARRAY/ { print $2 }' ${mdadm_conf})
|
||||
if [[ -n ${devs} ]] ; then
|
||||
create_devs ${devs}
|
||||
ebegin "Starting up RAID devices (mdadm)"
|
||||
output=$(mdadm -As 2>&1)
|
||||
ret=$?
|
||||
[[ ${ret} -ne 0 ]] && echo "${output}"
|
||||
eend ${ret}
|
||||
fi
|
||||
fi
|
||||
@@ -0,0 +1,10 @@
|
||||
[[ -f /proc/mdstat ]] || exit 0
|
||||
|
||||
[[ -e /etc/mdadm.conf ]] && mdadm_conf="/etc/mdadm.conf"
|
||||
if [[ -x /sbin/mdadm && -f ${mdadm_conf} ]] ; then
|
||||
ebegin "Shutting down RAID devices (mdadm)"
|
||||
output=$(mdadm -Ss 2>&1)
|
||||
ret=$?
|
||||
[[ ${ret} -ne 0 ]] && echo "${output}"
|
||||
eend ${ret}
|
||||
fi
|
||||
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mdadm</Name>
|
||||
<Homepage>http://www.kernel.org/pub/linux/utils/raid/mdadm</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Utility to control Linux MD devices (software RAID arrays)</Summary>
|
||||
<Description>mdadm is used to create, manage, and monitor Linux MD (software RAID) devices.</Description>
|
||||
<Archive sha1sum="c649601d84553501c2f3b452cf93d1fbc53f976a" type="tarxz">https://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-3.3.2.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>mdadm</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/sbin/mdadm</Path>
|
||||
<Path fileType="executable">/sbin/mdmon</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d</Path>
|
||||
<Path fileType="data">/usr/lib/tmpfiles.d</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="config">/etc</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/tmpfiles.d/mdadm.conf">mdadm.tmpfiles.conf</AdditionalFile>
|
||||
<!-- Add a cron job to run a weekly repair of the array to correct bad sectors -->
|
||||
<AdditionalFile owner="root" permission="0755" target="/etc/cron.weekly/raid-check">scripts/raid-check</AdditionalFile>
|
||||
|
||||
<AdditionalFile owner="root" permission="0644" target="/etc/conf.d/mdadm">mdadm.confd</AdditionalFile>
|
||||
|
||||
<!-- Udev rules file for device assembly. This is different than the mdadm rules file shipped with udev -->
|
||||
<AdditionalFile owner="root" permission="0644" target="/lib/udev/rules.d/65-md-incremental.rules">mdadm.rules</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>mdadm-static</Name>
|
||||
<PartOf>system.base</PartOf>
|
||||
<Files>
|
||||
<Path fileType="executable">/sbin/mdadm.static</Path>
|
||||
<Path fileType="executable">/sbin/mdassemble.static</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2014-12-13</Date>
|
||||
<Version>3.3.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-17</Date>
|
||||
<Version>3.3</Version>
|
||||
<Comment>Rebuild. Fixed service.py file</Comment>
|
||||
<Name>Aydın Demirel</Name>
|
||||
<Email>aydin.demirel@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-04-13</Date>
|
||||
<Version>3.3</Version>
|
||||
<Comment>mdadm-static is a part of system.base now.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-31</Date>
|
||||
<Version>3.3</Version>
|
||||
<Comment>Ver. bump, rebuild</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-14</Date>
|
||||
<Version>3.2.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mdadm</Name>
|
||||
<Summary xml:lang="tr">MD aygıtlarını (Yazılımsal RAID) denetleme aracı</Summary>
|
||||
<Description xml:lang="tr">mdadm Linux MD (yazılımsal RAID) aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>mdadm-static</Name>
|
||||
<Summary xml:lang="tr">Statik linklemiş Raid denetleme aracı</Summary>
|
||||
<Description xml:lang="tr">mdadm Linux MD (yazılımsal RAID) aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>hardware.firmware</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,43 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "linux-firmware"
|
||||
|
||||
def setup():
|
||||
# Remove source files
|
||||
shelltools.unlink("usbdux/*dux")
|
||||
shelltools.unlink("*/*.asm")
|
||||
|
||||
# These + a lot of other firmware are shipped within alsa-firmware
|
||||
for fw in ("ess", "korg", "sb16", "yamaha"):
|
||||
shelltools.unlinkDir(fw)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.insinto("/lib/firmware", "mix/*")
|
||||
|
||||
# Remove installed and LIC* files from /lib/firmware
|
||||
pisitools.remove("/lib/firmware/GPL-3")
|
||||
pisitools.remove("/lib/firmware/LICENCE*")
|
||||
pisitools.remove("/lib/firmware/LICENSE*")
|
||||
pisitools.remove("/lib/firmware/configure")
|
||||
pisitools.remove("/lib/firmware/Makefile")
|
||||
pisitools.removeDir("/lib/firmware/mix")
|
||||
#conflict on alsa-firmware
|
||||
#pisitools.remove("/lib/firmware/ctefx.bin")
|
||||
pisitools.remove("/lib/firmware/ctspeq.bin")
|
||||
|
||||
# Install LICENSE files
|
||||
pisitools.dodoc("WHENCE", "LICENCE.*", "LICENSE.*", "GPL-3")
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
KVER=$1
|
||||
|
||||
if [ -z $KVER ]; then
|
||||
KVER=`uname -r`
|
||||
fi
|
||||
|
||||
MODPATH=/lib/modules/$KVER
|
||||
|
||||
for mod in `find $MODPATH -name "*.ko"`; do
|
||||
for fw in `modinfo -F firmware $mod`; do
|
||||
if [ ! -e "/lib/firmware/$fw" ]; then
|
||||
echo "`basename $mod` requires $fw which is missing."
|
||||
fi
|
||||
done
|
||||
done
|
||||
Binary file not shown.
@@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>linux-firmware</Name>
|
||||
<Homepage>http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>ipw2100-fw</License>
|
||||
<License>ipw2200-fw</License>
|
||||
<License>freedist</License>
|
||||
<License>GPLv2+</License>
|
||||
<License>GPLv2</License>
|
||||
<License>MIT</License>
|
||||
<IsA>data</IsA>
|
||||
<Summary>Firmware files used by the Linux kernel</Summary>
|
||||
<Description>linux-firmware contains different firmware files required for some devices to operate correctly.</Description>
|
||||
<!-- linux-firmware commit: commit f404336ba808cbd57547196e13367079a23b822c 2015-03-20 -->
|
||||
<Archive sha1sum="9df35c158a52394419e2c7bb7f0582c5c9253ca4" type="tarbz2">http://source.pisilinux.org/1.0/linux-firmware/linux-firmware-20150320.tar.bz2</Archive>
|
||||
<Archive sha1sum="dd685266f7bc0acb0d455462637d23e3e895bc96" type="tarxz" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/common-fw.tar.xz</Archive>
|
||||
<Archive sha1sum="b2bb7fce3ea67d131f543a48134f7a65f2a8d834" type="tarxz" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware-ipw.tar.xz</Archive>
|
||||
<Archive sha1sum="a5a616a9f765cf9cbb224deb7ccefdc82a7fe4d9" type="tarbz2" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware/firmware-nonfreebox-2-tar.bz2</Archive>
|
||||
<Archive sha1sum="6c18b28e62637fb809eaff89fff623ae1d470500" type="tarbz2" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware/ar9170.tar.bz2</Archive>
|
||||
<Archive sha1sum="aa3b414c2948be5f226a25fa5f37e56fd659a3bb" type="tarbz2" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware/ipw2x00-firmware.tar.bz2</Archive>
|
||||
<Archive sha1sum="f7ecf5412b7818871fa2798f1b314f8ddddb494e" type="tarbz2" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware/aic94xx-seq.tar.bz2</Archive>
|
||||
<Archive sha1sum="9be626663e9b9d15278f2b5cd1c916570eb62727" type="tarbz2" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware/zd12x1-firmware.tar.bz2</Archive>
|
||||
<Archive sha1sum="16d5f4dcc90f978732a9a5b3b0347672a6cc4c36" type="tarbz2" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware/accessrunner-firmware.tar.bz2</Archive>
|
||||
<Archive sha1sum="e40729d30ad6d7a6c88b90ee7bc5fbaeb9458cb7" type="tarbz2" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware/rtl8192se-firmware.tar.bz2</Archive>
|
||||
<Archive sha1sum="5d333e75f02a57861565337c14f6944090a242a8" type="tarxz" target="linux-firmware/mix">http://source.pisilinux.org/erdinc/firmware/nouveau-1.tar.xz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq">fw/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<!--<BuildDependencies>
|
||||
<Dependency>rpm2targz</Dependency>
|
||||
</BuildDependencies>-->
|
||||
<Patches>
|
||||
<!-- Remove all patches, all dead :) -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>linux-firmware</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/lib/firmware</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<BuildFlags>
|
||||
<Flag>noDelta</Flag>
|
||||
</BuildFlags>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="16">
|
||||
<Date>2015-03-26</Date>
|
||||
<Version>20150320</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2015-02-14</Date>
|
||||
<Version>20150214</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2014-12-16</Date>
|
||||
<Version>20141216</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2014-11-07</Date>
|
||||
<Version>20141107</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2014-07-23</Date>
|
||||
<Version>20140603</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin.bojara@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2014-04-02</Date>
|
||||
<Version>20140316</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2014-03-01</Date>
|
||||
<Version>20140217</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2013-11-30</Date>
|
||||
<Version>20131013</Version>
|
||||
<Comment>Remove unneeded build dep,fix unpack problem.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2013-11-23</Date>
|
||||
<Version>20131013</Version>
|
||||
<Comment>Version bump to 20131013 git.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2013-09-30</Date>
|
||||
<Version>20130811</Version>
|
||||
<Comment>add update Intel-Bluetooth patchs</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2013-08-11</Date>
|
||||
<Version>20130811</Version>
|
||||
<Comment>add update patchs</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-07-19</Date>
|
||||
<Version>20130609</Version>
|
||||
<Comment>add update patchs</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-06-09</Date>
|
||||
<Version>20130609</Version>
|
||||
<Comment>bump</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-04-07</Date>
|
||||
<Version>20130421</Version>
|
||||
<Comment>bump</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-03-07</Date>
|
||||
<Version>20130224</Version>
|
||||
<Comment>bump</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-12-12</Date>
|
||||
<Version>20121212</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>linux-firmware</Name>
|
||||
<Summary xml:lang="tr">Linux çekirdeği tarafından kullanılan firmware dosyaları</Summary>
|
||||
<Description xml:lang="tr">linux-firmware, bazı aygıtların düzgün çalışabilmesi için gerekli firmware dosyalarını içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user