diff --git a/kernel/drivers/module-bbswitch/actions.py b/kernel/drivers/module-bbswitch/actions.py new file mode 100644 index 00000000..e82fdced --- /dev/null +++ b/kernel/drivers/module-bbswitch/actions.py @@ -0,0 +1,22 @@ +#!/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 get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import kerneltools + +KDIR = kerneltools.getKernelVersion() + +def build(): + autotools.make("KDIR=/lib/modules/%s/build" % KDIR) + #autotools.make() + +def install(): + #autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.insinto("/lib/modules/%s/misc" % KDIR, "bbswitch.ko") + + pisitools.dodoc("NEWS", "README*") diff --git a/kernel/drivers/module-bbswitch/files/bbswitch.conf b/kernel/drivers/module-bbswitch/files/bbswitch.conf new file mode 100644 index 00000000..947a8c63 --- /dev/null +++ b/kernel/drivers/module-bbswitch/files/bbswitch.conf @@ -0,0 +1 @@ +options bbswitch load_state=0 unload_state=1 diff --git a/kernel/drivers/module-bbswitch/files/kmod-bbswitch.conf b/kernel/drivers/module-bbswitch/files/kmod-bbswitch.conf new file mode 100644 index 00000000..c7e68dc0 --- /dev/null +++ b/kernel/drivers/module-bbswitch/files/kmod-bbswitch.conf @@ -0,0 +1 @@ +override bbswitch * weak-updates/bbswitch diff --git a/kernel/drivers/module-bbswitch/pspec.xml b/kernel/drivers/module-bbswitch/pspec.xml new file mode 100644 index 00000000..8525abc7 --- /dev/null +++ b/kernel/drivers/module-bbswitch/pspec.xml @@ -0,0 +1,185 @@ + + + module-bbswitch + https://github.com/Bumblebee-Project/bbswitch + + Serdar Soytetir + kaptan@pisilinux.org + + GPL + app:gui + Kernel module allowing to switch dedicated graphics card on Optimus laptops + kernel module allowing to switch dedicated graphics card on Optimus laptops + + kernel-module-headers + + https://github.com/Bumblebee-Project/bbswitch/archive/v0.8.tar.gz + + + + + module-bbswitch + + kernel + + + /lib/modules + /etc + /usr/share/doc + + + bbswitch.conf + kmod-bbswitch.conf + + + + + + 2015-06-16 + 0.8 + Rebuild for new kernel + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-22 + 0.8 + Rebuild for kernel 3.19.8 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-05 + 0.8 + Rebuild for kernel 3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-24 + 0.8 + Rebuild for kernel 3.19.5 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 0.8 + Rebuild for kernel 3.19.4 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-02 + 0.8 + Rebuild for kernel 3.19.3 + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-08 + 0.8 + Rebuild for kernel 3.19.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-01 + 0.8 + Rebuild for kernel 3.19.0 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-28 + 0.8 + Rebuild for kernel 3.18.3 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-09 + 0.8 + Rebuild for kernel 3.18.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-29 + 0.8 + Rebuild for kernel 3.17.4 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-10-18 + 0.8 + Rebuild for kernel 3.17.1 + Kamil Atlı + suvari@pisilinux.org + + + 2014-09-19 + 0.8 + Rebuild for kernel 3.16.3 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-03 + 0.8 + Rebuild for kernel 3.16.1 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-07-24 + 0.8 + Rebuild for kernel 3.15.6 + Vedat Demir + vedat@pisilinux.org + + + 2014-06-15 + 0.8 + Rebuild for kernel 3.15.0 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-29 + 0.8 + Rebuild for kernel 3.14.4. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-02 + 0.8 + Rebuild for kernel 3.14.2. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-15 + 0.8 + Rebuild for kernel 3.13.10. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-29 + 0.8 + Rebuild for kernel 3.13.6. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.8 + First release. + Marcin Bojara + marcin@pisilinux.org + + + diff --git a/kernel/drivers/module-bbswitch/translations.xml b/kernel/drivers/module-bbswitch/translations.xml new file mode 100644 index 00000000..155a09af --- /dev/null +++ b/kernel/drivers/module-bbswitch/translations.xml @@ -0,0 +1,8 @@ + + + + module-bbswitch + Optimus grafik kartlı bir dizüstü bilgisayarda grafik kartını seçmeye yarayan çekirdek modülüdür. + Eski ve yeni optimus teknolojisine sahip dizüstü bilgisyarlarda çalışabilmektedir. + + \ No newline at end of file diff --git a/kernel/tools/cpupowertools/actions.py b/kernel/tools/cpupowertools/actions.py new file mode 100644 index 00000000..245f284e --- /dev/null +++ b/kernel/tools/cpupowertools/actions.py @@ -0,0 +1,26 @@ +#!/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 shelltools +from pisi.actionsapi import get + +cpupower_arch = get.ARCH().replace("i686", "i386") + +def build(): + # Build cpupowertools + shelltools.cd("tools/power/cpupower") + autotools.make("CPUFREQ_BENCH=false") + autotools.make("-C debug/%s centrino-decode powernow-k8-decode" % cpupower_arch) + +def install(): + # Install cpupowertools stuff + shelltools.cd("tools/power/cpupower") + autotools.install("DESTDIR=%s libdir=/usr/lib mandir=/%s CPUFREQ_BENCH=false" % (get.installDIR(), get.manDIR())) + + pisitools.dobin("debug/%s/centrino-decode" % cpupower_arch) + pisitools.dobin("debug/%s/powernow-k8-decode" % cpupower_arch) \ No newline at end of file diff --git a/kernel/tools/cpupowertools/files/cpupower.conf.d b/kernel/tools/cpupowertools/files/cpupower.conf.d new file mode 100644 index 00000000..1e67ed04 --- /dev/null +++ b/kernel/tools/cpupowertools/files/cpupower.conf.d @@ -0,0 +1,36 @@ +# /etc/conf.d/cpupower: config file for /etc/init.d/cpupower + +# Options when starting cpufreq (given to the `cpupower` program) +# Possible options are: +# -g --governor (ie: ondemand, performance, or powersave) +# -d --min (ie: 1000MHz) +# -u --max (ie: 2000MHz) +# -f --freq (requires userspace governor, this *can not* be combined with +# with any other parameters). +# Frequencies can be passed in Hz, kHz (default), MHz, GHz, or THz by postfixing the +# value with the wanted unit name, without any space. +# (frequency in kHz =^ Hz * 0.001 =^ MHz * 1000 =^ GHz * 1000000). + +START_OPTS="--governor ondemand" + +# Options when stopping cpufreq (given to the `cpupower` program) +# This option can be used to change governer on stop. Leaving it empty will ensure +# the governer remains on the one provided above. +STOP_OPTS="" + +# Extra settings to write to sysfs cpufreq values. +# +# up_threshold: threshold for stepping up frequency, where the value represents +# the percentage of cpu load. +# +# down_threshold: threshold for stepping down frequency, where the value +# represents the percentage of cpu load. +# +# sampling_down_factor: determines how frequently the governor polls the cpu, a +# value greater than 1 improves performance by reducing the polling when the +# load is high. This tunable has no effect on behavior at lower CPU frequencies. +# +# ignore_nice_load: when set to '1' the processes that are run with a 'nice' +# value will not count in the usage calculation. + +#SYSFS_EXTRA="ondemand/ignore_nice_load=1 ondemand/up_threshold=75 ondemand/sampling_down_factor=10" diff --git a/kernel/tools/cpupowertools/files/patches/linux/patch-3.18.3.xz b/kernel/tools/cpupowertools/files/patches/linux/patch-3.18.3.xz new file mode 100644 index 00000000..f1c3bfc7 Binary files /dev/null and b/kernel/tools/cpupowertools/files/patches/linux/patch-3.18.3.xz differ diff --git a/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.1.xz b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.1.xz new file mode 100644 index 00000000..105dd15e Binary files /dev/null and b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.1.xz differ diff --git a/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.3.xz b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.3.xz new file mode 100644 index 00000000..2b27eb0f Binary files /dev/null and b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.3.xz differ diff --git a/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.4.xz b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.4.xz new file mode 100644 index 00000000..ec0a8590 Binary files /dev/null and b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.4.xz differ diff --git a/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.5.xz b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.5.xz new file mode 100644 index 00000000..f34c2516 Binary files /dev/null and b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.5.xz differ diff --git a/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.6.xz b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.6.xz new file mode 100644 index 00000000..f55c450a Binary files /dev/null and b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.6.xz differ diff --git a/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.8.xz b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.8.xz new file mode 100644 index 00000000..b160f834 Binary files /dev/null and b/kernel/tools/cpupowertools/files/patches/linux/patch-3.19.8.xz differ diff --git a/kernel/tools/cpupowertools/files/patches/linux/patch-4.0.5.xz b/kernel/tools/cpupowertools/files/patches/linux/patch-4.0.5.xz new file mode 100644 index 00000000..32856eae Binary files /dev/null and b/kernel/tools/cpupowertools/files/patches/linux/patch-4.0.5.xz differ diff --git a/kernel/tools/cpupowertools/pspec.xml b/kernel/tools/cpupowertools/pspec.xml new file mode 100644 index 00000000..2f0fd009 --- /dev/null +++ b/kernel/tools/cpupowertools/pspec.xml @@ -0,0 +1,584 @@ + + + + + cpupowertools + http://www.kernel.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:console + CPU power management tools + cpupowertools contains utilities to manage power management and frequency scaling policies of modern CPUs. + https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.0.tar.gz + + pciutils-devel + + + + patches/linux/patch-4.0.5.xz + + + + + cpupowertools + + pciutils + + + /etc/conf.d + /usr/bin/cpupower + /usr/bin/*-decode + /usr/lib/libcpupower* + /usr/include + /usr/share/man/man1/cpupower* + /usr/share/locale/*/*/cpupower.mo + + + cpupower.conf.d + + + + + + 2015-06-16 + 4.0.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-22 + 3.19.8 + Version bump to 3.19.8 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-05 + 3.19.6 + Version bump to 3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 3.19.5 + Version bump to 3.19.3 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 3.19.4 + Version bump to 3.19.4 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-02 + 3.19.3 + Version bump to 3.19.3 + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-08 + 3.19.1 + Version bump to 3.19.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-01 + 3.19.0 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-28 + 3.18.3 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-08 + 3.18.1 + Version bump to 3.18.1 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.18.1 + security + + systemRestart + + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-28 + 3.17.4 + Version bump to 3.17.4 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.17.4 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-10-18 + 3.17.1 + Version bump to 3.17.1 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.17.1 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-19 + 3.16.3 + Version bump to 3.16.3 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.16.3 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-03 + 3.16.1 + Version bump to 3.16.1 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.16.1 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-07-24 + 3.15.6 + Version bump to 3.15.6 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.15.6 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-06-15 + 3.15.0 + Version bump to 3.15 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.15 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-27 + 3.14.4 + Version bump to 3.14.4 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.14.4 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-02 + 3.14.2 + Version bump to 3.14.2 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.14.2 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-15 + 3.13.10 + Version bump to 3.13.10 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.13.10 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-22 + 3.13.6 + Version bump to 3.13.6 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.13.6 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-01 + 3.12.13 + Version bump to 3.12.13 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.12.13 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-16 + 3.12.8 + Version bump to 3.12.8 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.12.8 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-12-17 + 3.12.5 + Add Maegia patch series and some cpu usage improvements. + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-12-12 + 3.12.5 + Version bump to 3.12.5 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.12.5 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-23 + 3.10.20 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.20 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-05 + 3.10.18 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.18 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 3.10.15 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.15 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-27 + 3.10.13 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.13 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-15 + 3.10.12 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.12 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-29 + 3.10.10 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.10 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-20 + 3.10.9 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.9 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-12 + 3.10.6 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.6 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-11 + 3.10.5 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.5 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-01 + 3.10.4 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.4 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-17 + 3.10.2 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.2 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-17 + 3.10.1 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.1 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-04 + 3.10.0 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-06-21 + 3.8.13 + Fix TSC calibration failure + security + + systemRestart + + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-15 + 3.8.13 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.13 + security + + systemRestart + + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-04-18 + 3.8.8 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.8 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-31 + 3.8.5 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.5 + security + + systemRestart + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-25 + 3.8.4 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.4 + security + + systemRestart + + Yoyo Fernández + admins@pisilinux.org + + + 2013-03-14 + 3.8.3 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.3 + security + + systemRestart + + Richard de Bruin + admins@pisilinux.org + + + 2013-03-06 + 3.8.2 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.2 + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-03-03 + 3.8.1 + update to current line + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-22 + 3.8.0 + update to final line with patch + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-17 + 3.8.0 + obsoletemans wifi fixing + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-12 + 3.8.0 + bump to -rc7 + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-06 + 3.7.6 + http://www.kernel.org/pub/linux/kernel/v3.0/ChangeLog-3.7.6 + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-28 + 3.7.5 + http://www.kernel.org/pub/linux/kernel/v3.0/ChangeLog-3.7.5 + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-18 + 3.7.4 + http://www.kernel.org/pub/linux/kernel/v3.0/ChangeLog-3.7.4 + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-15 + 3.7.2 + First release + security + + systemRestart + + Erdinç Gültekin + admins@pisilinux.org + + + diff --git a/kernel/tools/cpupowertools/translations.xml b/kernel/tools/cpupowertools/translations.xml new file mode 100644 index 00000000..56382270 --- /dev/null +++ b/kernel/tools/cpupowertools/translations.xml @@ -0,0 +1,8 @@ + + + + cpupowertools + CPU güç/frekans yönetim araçları + cpupowertools, işlemcinin çeşitli güç ve frekans parametrelerinin yönetilmesini sağlayan çeşitli araçları içeren bir pakettir. + + diff --git a/pisi-index.xml b/pisi-index.xml index 3960a53d..f949788b 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -1283,6 +1283,587 @@ + + + cpupowertools + http://www.kernel.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:console + kernel.tools + CPU power management tools + CPU güç/frekans yönetim araçları + cpupowertools contains utilities to manage power management and frequency scaling policies of modern CPUs. + cpupowertools, işlemcinin çeşitli güç ve frekans parametrelerinin yönetilmesini sağlayan çeşitli araçları içeren bir pakettir. + https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.0.tar.gz + + pciutils-devel + + + patches/linux/patch-4.0.5.xz + + kernel/tools/cpupowertools/pspec.xml + + + cpupowertools + + pciutils + + + /etc/conf.d + /usr/bin/cpupower + /usr/bin/*-decode + /usr/lib/libcpupower* + /usr/include + /usr/share/man/man1/cpupower* + /usr/share/locale/*/*/cpupower.mo + + + cpupower.conf.d + + + + + 2015-06-16 + 4.0.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-22 + 3.19.8 + Version bump to 3.19.8 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-05 + 3.19.6 + Version bump to 3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 3.19.5 + Version bump to 3.19.3 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 3.19.4 + Version bump to 3.19.4 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-02 + 3.19.3 + Version bump to 3.19.3 + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-08 + 3.19.1 + Version bump to 3.19.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-01 + 3.19.0 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-28 + 3.18.3 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + security + 2015-01-08 + 3.18.1 + Version bump to 3.18.1 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.18.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + systemRestart + + + + security + 2014-11-28 + 3.17.4 + Version bump to 3.17.4 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.17.4 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-10-18 + 3.17.1 + Version bump to 3.17.1 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.17.1 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-09-19 + 3.16.3 + Version bump to 3.16.3 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.16.3 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-09-03 + 3.16.1 + Version bump to 3.16.1 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.16.1 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-07-24 + 3.15.6 + Version bump to 3.15.6 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.15.6 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-06-15 + 3.15.0 + Version bump to 3.15 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.15 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-05-27 + 3.14.4 + Version bump to 3.14.4 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.14.4 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-05-02 + 3.14.2 + Version bump to 3.14.2 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.14.2 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-04-15 + 3.13.10 + Version bump to 3.13.10 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.13.10 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-03-22 + 3.13.6 + Version bump to 3.13.6 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.13.6 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-03-01 + 3.12.13 + Version bump to 3.12.13 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.12.13 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2014-01-16 + 3.12.8 + Version bump to 3.12.8 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.12.8 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2013-12-17 + 3.12.5 + Add Maegia patch series and some cpu usage improvements. + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2013-12-12 + 3.12.5 + Version bump to 3.12.5 https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.12.5 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2013-11-23 + 3.10.20 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.20 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2013-11-05 + 3.10.18 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.18 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2013-10-07 + 3.10.15 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.15 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-09-27 + 3.10.13 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.13 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-09-15 + 3.10.12 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.12 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-08-29 + 3.10.10 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.10 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-08-20 + 3.10.9 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.9 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-08-12 + 3.10.6 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.6 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-08-11 + 3.10.5 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.5 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-08-01 + 3.10.4 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.4 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-07-17 + 3.10.2 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.2 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2013-07-17 + 3.10.1 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10.1 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-07-04 + 3.10.0 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.10 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-06-21 + 3.8.13 + Fix TSC calibration failure + Marcin Bojara + marcin@pisilinux.org + + systemRestart + + + + security + 2013-06-15 + 3.8.13 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.13 + Serdar Soytetir + kaptan@pisilinux.org + + systemRestart + + + + security + 2013-04-18 + 3.8.8 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.8 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-03-31 + 3.8.5 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.5 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + systemRestart + + + + security + 2013-03-25 + 3.8.4 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.4 + Yoyo Fernández + admins@pisilinux.org + + systemRestart + + + + security + 2013-03-14 + 3.8.3 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.3 + Richard de Bruin + admins@pisilinux.org + + systemRestart + + + + security + 2013-03-06 + 3.8.2 + https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.8.2 + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + security + 2013-03-03 + 3.8.1 + update to current line + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + security + 2013-02-22 + 3.8.0 + update to final line with patch + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + security + 2013-02-17 + 3.8.0 + obsoletemans wifi fixing + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + security + 2013-02-12 + 3.8.0 + bump to -rc7 + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + security + 2013-02-06 + 3.7.6 + http://www.kernel.org/pub/linux/kernel/v3.0/ChangeLog-3.7.6 + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + security + 2013-01-28 + 3.7.5 + http://www.kernel.org/pub/linux/kernel/v3.0/ChangeLog-3.7.5 + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + security + 2013-01-18 + 3.7.4 + http://www.kernel.org/pub/linux/kernel/v3.0/ChangeLog-3.7.4 + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + security + 2013-01-15 + 3.7.2 + First release + Erdinç Gültekin + admins@pisilinux.org + + systemRestart + + + + module-virtualbox @@ -1647,6 +2228,192 @@ + + + module-bbswitch + https://github.com/Bumblebee-Project/bbswitch + + Serdar Soytetir + kaptan@pisilinux.org + + GPL + app:gui + kernel.drivers + Kernel module allowing to switch dedicated graphics card on Optimus laptops + Optimus grafik kartlı bir dizüstü bilgisayarda grafik kartını seçmeye yarayan çekirdek modülüdür. + kernel module allowing to switch dedicated graphics card on Optimus laptops + Eski ve yeni optimus teknolojisine sahip dizüstü bilgisyarlarda çalışabilmektedir. + https://github.com/Bumblebee-Project/bbswitch/archive/v0.8.tar.gz + + kernel-module-headers + + kernel/drivers/module-bbswitch/pspec.xml + + + module-bbswitch + + kernel + + + /lib/modules + /etc + /usr/share/doc + + + bbswitch.conf + kmod-bbswitch.conf + + + + + 2015-06-16 + 0.8 + Rebuild for new kernel + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-22 + 0.8 + Rebuild for kernel 3.19.8 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-05 + 0.8 + Rebuild for kernel 3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-24 + 0.8 + Rebuild for kernel 3.19.5 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 0.8 + Rebuild for kernel 3.19.4 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-02 + 0.8 + Rebuild for kernel 3.19.3 + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-08 + 0.8 + Rebuild for kernel 3.19.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-01 + 0.8 + Rebuild for kernel 3.19.0 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-28 + 0.8 + Rebuild for kernel 3.18.3 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-09 + 0.8 + Rebuild for kernel 3.18.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-29 + 0.8 + Rebuild for kernel 3.17.4 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-10-18 + 0.8 + Rebuild for kernel 3.17.1 + Kamil Atlı + suvari@pisilinux.org + + + 2014-09-19 + 0.8 + Rebuild for kernel 3.16.3 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-03 + 0.8 + Rebuild for kernel 3.16.1 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-07-24 + 0.8 + Rebuild for kernel 3.15.6 + Vedat Demir + vedat@pisilinux.org + + + 2014-06-15 + 0.8 + Rebuild for kernel 3.15.0 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-29 + 0.8 + Rebuild for kernel 3.14.4. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-02 + 0.8 + Rebuild for kernel 3.14.2. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-15 + 0.8 + Rebuild for kernel 3.13.10. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-29 + 0.8 + Rebuild for kernel 3.13.6. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.8 + First release. + Marcin Bojara + marcin@pisilinux.org + + + module-virtualbox-guest @@ -2004,6 +2771,351 @@ + + + module-broadcom-wl + http://www.broadcom.com/support/802.11/linux_sta.php + + Serdar Soytetir + kaptan@pisilinux.org + + freedist + driver + kernel.drivers + Broadcom's IEEE 802.11a/b/g/n hybrid Linux device driver for use with Broadcom's BCM4311, BCM4312, BCM4321, and BCM4322 based hardware + Broadcom'un BCM4311, BCM4312, BCM4321 ve BCM4322 tabanlı kablosuz bağdaştırıcıları için IEEE 802.11a/b/g/n aygıt sürücüleri + This package contains Broadcom's IEEE 802.11a/b/g/n hybrid Linux device driver for use with Broadcom's BCM4311, BCM4312, BCM4321, and BCM4322 based hardware. You must read the LICENSE.txt file in the docs directory before using this software. + Bu paket Broadcom'un BCM4311, BCM4312, BCM4321 ve BCM4322 tabanlı kablosuz bağdaştırıcıları ile kullanımı için IEEE 802.11a/b/g/n aygıt sürücülerini içerir. Bu yazılımı kullanmadan önce belgeler dizinindeki LICENSE.txt dosyasında yer alan lisans sözleşmesini okumalısınız. + http://www.broadcom.com/docs/linux_sta/hybrid-v35-nodebug-pcoem-6_30_223_248.tar.gz + http://www.broadcom.com/docs/linux_sta/hybrid-v35_64-nodebug-pcoem-6_30_223_248.tar.gz + + kernel-module-headers + + + patch/linux-recent.patch + patch/license.patch + patch/gcc.patch + patch/wlan.patch + patch/broadcom-sta-6.30.223.248-linux-3.18-null-pointer-crash.patch + + kernel/drivers/module-broadcom-wl/pspec.xml + + + module-broadcom-wl + + noDelta + + + kernel + module-broadcom-wl-userspace + + + /lib/modules + + + broadcom-wl + + + + module-broadcom-wl-userspace + modprobe rules and documents for broadcom-wl kernel driver + broadcom-wl çekirdek sürücüsü için modprobe kuralları ve belgeler + + noDelta + + + /etc/modprobe.d + /usr/share/doc + + + conf/broadcom-wl + conf/broadcom-wl-alias.conf + conf/broadcom-wl-blacklist.conf + + + + + 2015-06-16 + 6.30.223.248 + Rebuild for kernel 4.0.5 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-22 + 6.30.223.248 + Rebuild for kernel 3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-05 + 6.30.223.248 + Rebuild for kernel 3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-24 + 6.30.223.248 + Rebuild for kernel 3.19.5 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 6.30.223.248 + Rebuild for kernel 3.19.4 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-02 + 6.30.223.248 + Rebuild for kernel 3.19.3 + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-08 + 6.30.223.248 + Rebuild for kernel 3.19.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-01 + 6.30.223.248 + Rebuild for kernel 3.19.0 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-28 + 6.30.223.248 + Rebuild for kernel 3.18.3 + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-11-29 + 6.30.223.248 + Rebuild for kernel 3.17.4 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-10-19 + 6.30.223.248 + Rebuild for kernel 3.17.1 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-19 + 6.30.223.248 + Rebuild for kernel 3.16.3 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-03 + 6.30.223.248 + Rebuild for kernel 3.16.1 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-07-23 + 6.30.223.248 + Version bump for kernel 3.15.6 + Vedat Demir + vedat@pisilinux.org + + + 2014-06-15 + 6.30.223.141 + Rebuild for kernel 3.15.0 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-29 + 6.30.223.141 + Rebuild for kernel 3.14.4. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-02 + 6.30.223.141 + Rebuild for kernel 3.14.2. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-15 + 6.30.223.141 + Rebuild for kernel 3.13.10. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-29 + 6.30.223.141 + Rebuild for 3.13.6 + PisiLinux Community + admins@pisilinux.org + + + 2014-03-01 + 6.30.223.141 + Rebuild for 3.12.13 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-17 + 6.30.223.141 + Rebuild for 3.12.8 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-17 + 6.30.223.141 + Rebuild for 3.12.5 + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-12-14 + 6.30.223.141 + Rebuild for 3.12.5 + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-23 + 5.100.82.112 + Rebuild for 3.10.20 + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-05 + 5.100.82.112 + Rebuild for 3.10.18 + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-09 + 5.100.82.112 + fix solution broadcom-wl + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-28 + 5.100.82.112 + fix solution broadcom-wl + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-18 + 5.100.82.112 + fix solution broadcom-wl + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-05 + 5.100.82.112 + fix solution broadcom-wl + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 5.100.82.112 + 3.10.10 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-20 + 5.100.82.112 + 3.10.9 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-20 + 5.100.82.112 + 3.10.x + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-11 + 5.100.82.112 + without blacklist + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-26 + 5.100.82.112 + Rebuild for Kernel 3.10.x + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-15 + 5.100.82.112 + rebuild for Kernel 3.8.13 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-05-26 + 5.100.82.112 + rebuild for Kernel 3.9.4 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-05-26 + 5.100.82.112 + Kernel 3.9.3 + PisiLinux Community + admins@pisilinux.org + + + 2013-02-07 + 5.100.82.112 + Runtime dep + Ertan Güven + admins@pisilinux.org + + + 2013-02-01 + 5.100.82.112 + bump+fix for new kernel-line + Erdinç Gültekin + admins@pisilinux.org + + + 2011-09-15 + 5.100.82.38 + First release + Pisi Linux Admins + admins@pisilinux.org + + + docbook-xml @@ -17979,7 +19091,7 @@ Libtool est une librairie utilitaire partagée pour développeurs. Libtool is a shared library tool for developers. Libtool, program geliştiriciler için bir paylaşımlı kütüphane aracıdır. - mirrors://gnu/libtool/libtool-2.4.6.tar.xz + mirrors://gnu/libtool/libtool-2.4.2.tar.xz gnuconfig autoconf @@ -18016,24 +19128,14 @@ libtool için 32-bit paylaşımlı kitaplıklar emul32 emul32 - - glibc-32bit - - glibc-32bit + libtool-ltdl /usr/lib32 - - 2015-06-08 - 2.4.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - 2014-11-28 2.4.2 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 6701e265..05061a18 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -32e371fe71d72257d8305e6d70f1a3cab8a952e0 \ No newline at end of file +231e5081fc08d125c4fe30db25158e2412d30d68 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 806e9274..a5b1a9f6 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index 762c4ed3..5fa0c115 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -01a48167fc46eb6ddcb3f2adf986ae006e977637 \ No newline at end of file +ff2963f8da5acb9ccea915c7de7b41194d58ea7e \ No newline at end of file diff --git a/system/base/file/pspec.xml b/system/base/file/pspec.xml index f6f2504d..e8954de4 100644 --- a/system/base/file/pspec.xml +++ b/system/base/file/pspec.xml @@ -12,7 +12,7 @@ app:console Program to identify a file's format by scanning binary data for patterns Program to identify a file's format by scanning binary data for patterns. - ftp://ftp.astron.com/pub/file/file-5.22.tar.gz + ftp://ftp.astron.com/pub/file/file-5.23.tar.gz zlib @@ -41,6 +41,13 @@ + + 2015-06-17 + 5.23 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + 2015-04-02 5.22 diff --git a/system/base/kmod/pspec.xml b/system/base/kmod/pspec.xml index 01662c52..3f6e58b4 100644 --- a/system/base/kmod/pspec.xml +++ b/system/base/kmod/pspec.xml @@ -12,7 +12,7 @@ app:console Linux kernel module management utilities Linux kernel module management utilities - https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-20.tar.xz + https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-21.tar.xz chrpath @@ -106,6 +106,13 @@ + + 2015-06-17 + 21 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + 2015-03-26 20