diff --git a/editor/medit/actions.py b/editor/medit/actions.py new file mode 100644 index 0000000000..05685492bd --- /dev/null +++ b/editor/medit/actions.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + autotools.configure() + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README", "THANKS") + pisitools.insinto("/usr/share/pixmaps", "moo/mooutils/pixmaps/medit.png") + + pisitools.remove("/usr/share/icons/hicolor/icon-theme.cache") + diff --git a/editor/medit/files/desktop-tr.patch b/editor/medit/files/desktop-tr.patch new file mode 100644 index 0000000000..16df1491b5 --- /dev/null +++ b/editor/medit/files/desktop-tr.patch @@ -0,0 +1,11 @@ +diff -Nuar medit-1.0.3.orig/moo/medit-app/medit.desktop.in medit-1.0.3/moo/medit-app/medit.desktop.in +--- medit-1.0.3.orig/moo/medit-app/medit.desktop.in 2011-06-20 09:45:47.771000116 +0300 ++++ medit-1.0.3/moo/medit-app/medit.desktop.in 2011-06-20 09:47:16.536000117 +0300 +@@ -1,6 +1,7 @@ + [Desktop Entry] + Name=medit + _Comment=Text editor ++Comment[tr]=Metin Düzenleyici + Exec=medit %F + Terminal=false + Type=Application diff --git a/editor/medit/files/fix_help_dir.patch b/editor/medit/files/fix_help_dir.patch new file mode 100644 index 0000000000..7f7bb5db84 --- /dev/null +++ b/editor/medit/files/fix_help_dir.patch @@ -0,0 +1,12 @@ +diff -Nuar medit-1.0.3.orig/configure.ac medit-1.0.3/configure.ac +--- medit-1.0.3.orig/configure.ac 2011-06-20 09:45:47.736000116 +0300 ++++ medit-1.0.3/configure.ac 2011-06-20 10:04:24.646000116 +0300 +@@ -37,7 +37,7 @@ + AC_SUBST(MOO_COPYRIGHT,"_moo_copyright_") + + # keep in sync with po/maintain +-AC_SUBST(MOO_PACKAGE_NAME,"medit-1") ++AC_SUBST(MOO_PACKAGE_NAME,"medit") + + MOO_PREFS_XML_FILE_NAME="prefs.xml" + MOO_STATE_XML_FILE_NAME="state.xml" diff --git a/editor/medit/pspec.xml b/editor/medit/pspec.xml new file mode 100644 index 0000000000..74a5a109be --- /dev/null +++ b/editor/medit/pspec.xml @@ -0,0 +1,93 @@ + + + + + medit + http://mooedit.sourceforge.net/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv2 + medit + app:gui + Multiplatform GTK text editor + Medit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. + mirrors://sourceforge/mooedit/medit-1.2.0.tar.bz2 + + python-gtk-devel + gtk2-devel + atk-devel + cairo-devel + gettext-devel + pkgconfig + glib2-devel + libX11-devel + python3-devel + libxml2-devel + gtk2-devel + pango-devel + lua-devel + libSM-devel + libICE-devel + gdk-pixbuf-devel + + + desktop-tr.patch + fix_help_dir.patch + + + + + medit + + gtk2 + atk + glib2 + libX11 + libgcc + python + libxml2 + cairo + pango + libSM + libICE + gdk-pixbuf + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/medit + /usr/share/pixmaps + /usr/share/doc + /usr/share/man + + + + + + 2014-06-04 + 1.2.0 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-20 + 1.1.96 + Update + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-10 + 1.1.92 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + diff --git a/editor/medit/translations.xml b/editor/medit/translations.xml new file mode 100644 index 0000000000..cac134ebc8 --- /dev/null +++ b/editor/medit/translations.xml @@ -0,0 +1,8 @@ + + + + medit + Sekme özelliğine sahip bir metin düzenleyicisi + Medit, sekme özelliğine sahip hızlı ve kullanışlı bir metin düzenleyicisidir. + + diff --git a/hardware/graphics/nvidia-settings/actions.py b/hardware/graphics/nvidia-settings/actions.py new file mode 100644 index 0000000000..2008560473 --- /dev/null +++ b/hardware/graphics/nvidia-settings/actions.py @@ -0,0 +1,30 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +def setup(): + pisitools.dosed("src/Makefile", "static", "dynamic") + +def build(): + shelltools.cd("src/libXNVCtrl") + autotools.make('clean') + autotools.make('CDEBUGFLAGS="-fPIC %s" CC="%s" libXNVCtrl.a' % (get.CFLAGS(), get.CC())) + + shelltools.cd("%s/%s" % (get.workDIR(), get.srcDIR())) + autotools.make('CC="%s" LD="%s" STRIP_CMD="/bin/true" NV_VERBOSE=1' % (get.CC(), get.LDFLAGS())) + +def install(): + pisitools.dodir("/usr/bin") + autotools.install("DESTDIR=%s PREFIX=/usr" % get.installDIR()) + + #pisitools.insinto("/usr/lib/static", "src/libXNVCtrl/libXNVCtrl.a") + #pisitools.insinto("/usr/include/NVCtrl", "src/libXNVCtrl/*.h") + + pisitools.dodoc("COPYING", "doc/*.txt") diff --git a/hardware/graphics/nvidia-settings/files/21-nvidia-settings.sh b/hardware/graphics/nvidia-settings/files/21-nvidia-settings.sh new file mode 100644 index 0000000000..87a506f0df --- /dev/null +++ b/hardware/graphics/nvidia-settings/files/21-nvidia-settings.sh @@ -0,0 +1 @@ +test -d /proc/driver/nvidia && /usr/bin/nvidia-settings --load-config-only diff --git a/hardware/graphics/nvidia-settings/files/fix_validation.patch b/hardware/graphics/nvidia-settings/files/fix_validation.patch new file mode 100644 index 0000000000..8dbc4ba14e --- /dev/null +++ b/hardware/graphics/nvidia-settings/files/fix_validation.patch @@ -0,0 +1,21 @@ +diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Device.c nvidia-settings-260.19.12/src/XF86Config-parser/Device.c +--- nvidia-settings-260.19.12-old//src/XF86Config-parser/Device.c 2010-10-21 10:44:27.683000043 +0300 ++++ nvidia-settings-260.19.12/src/XF86Config-parser/Device.c 2010-10-21 10:45:33.802000043 +0300 +@@ -365,7 +365,7 @@ + "is required."); + return (FALSE); + } +- ++#if 0 + while (device) { + if (!device->driver) { + xconfigErrorMsg(ValidationErrorMsg, UNDEFINED_DRIVER_MSG, +@@ -375,6 +375,8 @@ + device = device->next; + } + return (TRUE); ++#endif ++ + } + + XConfigDevicePtr diff --git a/hardware/graphics/nvidia-settings/files/fix_xconfig_path.patch b/hardware/graphics/nvidia-settings/files/fix_xconfig_path.patch new file mode 100644 index 0000000000..b9a24b4a53 --- /dev/null +++ b/hardware/graphics/nvidia-settings/files/fix_xconfig_path.patch @@ -0,0 +1,12 @@ +diff -Nur nvidia-settings-260.19.12-old//src/gtk+-2.x/ctkdisplayconfig-utils.c nvidia-settings-260.19.12/src/gtk+-2.x/ctkdisplayconfig-utils.c +--- nvidia-settings-260.19.12-old//src/gtk+-2.x/ctkdisplayconfig-utils.c 2010-10-19 15:18:45.690001322 +0300 ++++ nvidia-settings-260.19.12/src/gtk+-2.x/ctkdisplayconfig-utils.c 2010-10-19 15:20:00.147000214 +0300 +@@ -3267,7 +3267,7 @@ + if (tmp_filename) { + filename = g_strdup(tmp_filename); + } else { +- filename = g_strdup(""); ++ filename = g_strdup("/etc/X11/xorg.conf"); + } + xconfigCloseConfigFile(); + diff --git a/hardware/graphics/nvidia-settings/files/nvidia-settings.desktop b/hardware/graphics/nvidia-settings/files/nvidia-settings.desktop new file mode 100644 index 0000000000..a82cae9a47 --- /dev/null +++ b/hardware/graphics/nvidia-settings/files/nvidia-settings.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Type=Application +Encoding=UTF-8 +Name=NVIDIA X Server Settings +Name[tr]=NVIDIA X Sunucu Ayarları +Comment=Configure NVIDIA X Server Settings +Comment[tr]=NVIDIA X Sunucu Ayarlarını Yapılandır +Exec=xdg-su -c "nvidia-settings" +Icon=nvidia-settings +Categories=Settings; +TryExec=/sys/module/nvidia diff --git a/hardware/graphics/nvidia-settings/files/nvidia-settings.png b/hardware/graphics/nvidia-settings/files/nvidia-settings.png new file mode 100644 index 0000000000..b506d99453 Binary files /dev/null and b/hardware/graphics/nvidia-settings/files/nvidia-settings.png differ diff --git a/hardware/graphics/nvidia-settings/files/remove_driver.patch b/hardware/graphics/nvidia-settings/files/remove_driver.patch new file mode 100644 index 0000000000..b4757933d7 --- /dev/null +++ b/hardware/graphics/nvidia-settings/files/remove_driver.patch @@ -0,0 +1,36 @@ +diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c +--- nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c 2010-10-22 13:57:02.009000043 +0300 ++++ nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c 2010-10-22 13:58:47.343000043 +0300 +@@ -474,7 +474,7 @@ + + device->identifier = xconfigAlloc(32); + snprintf(device->identifier, 32, DEVICE_IDENTIFIER, count); +- device->driver = xconfigStrdup("nvidia"); ++ device->driver = NULL; + device->vendor = xconfigStrdup("NVIDIA Corporation"); + + if (bus != -1 && domain != -1 && slot != -1) { +diff -Nur nvidia-settings-260.19.12-old//src/gtk+-2.x/ctkdisplayconfig.c nvidia-settings-260.19.12/src/gtk+-2.x/ctkdisplayconfig.c +--- nvidia-settings-260.19.12-old//src/gtk+-2.x/ctkdisplayconfig.c 2010-10-22 14:03:50.881000043 +0300 ++++ nvidia-settings-260.19.12/src/gtk+-2.x/ctkdisplayconfig.c 2010-10-22 14:10:59.831000043 +0300 +@@ -6845,7 +6845,7 @@ + device->identifier = (char *)malloc(32); + snprintf(device->identifier, 32, "Device%d", device_id); + +- device->driver = xconfigStrdup("nvidia"); ++ device->driver = NULL; + device->vendor = xconfigStrdup("NVIDIA Corporation"); + device->board = xconfigStrdup(gpu->name); + +diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Merge.c nvidia-settings-260.19.12/src/XF86Config-parser/Merge.c +--- nvidia-settings-260.19.12-old//src/XF86Config-parser/Merge.c 2010-10-22 14:03:50.865000043 +0300 ++++ nvidia-settings-260.19.12/src/XF86Config-parser/Merge.c 2010-10-22 14:20:32.606000042 +0300 +@@ -317,7 +317,7 @@ + /* Update driver */ + + free(dstDevice->driver); +- dstDevice->driver = xconfigStrdup(srcDevice->driver); ++ dstDevice->driver = NULL; + + /* Update vendor */ + diff --git a/hardware/graphics/nvidia-settings/files/remove_unused_sections.patch b/hardware/graphics/nvidia-settings/files/remove_unused_sections.patch new file mode 100644 index 0000000000..45963813c1 --- /dev/null +++ b/hardware/graphics/nvidia-settings/files/remove_unused_sections.patch @@ -0,0 +1,59 @@ +diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c +--- nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c 2010-10-22 11:37:31.615000042 +0300 ++++ nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c 2010-10-22 11:37:59.976000043 +0300 +@@ -71,9 +71,9 @@ + + /* add files, fonts, and modules */ + +- config->files = xconfigAlloc(sizeof(XConfigFilesRec)); +- add_font_path(gop, config); +- add_modules(gop, config); ++ config->files = NULL; ++ /*add_font_path(gop, config); ++ add_modules(gop, config); */ + + /* add the keyboard and mouse */ + +@@ -82,6 +82,8 @@ + + /* add the layout */ + ++ config->inputs = NULL; ++ + add_layout(gop, config); + + return config; +@@ -1042,7 +1044,7 @@ + xconfigAddNewOption(&input->options, "ZAxisMapping", "4 5"); + + input->next = config->inputs; +- config->inputs = input; ++ config->inputs = NULL; + + return TRUE; + +@@ -1303,7 +1305,7 @@ + } + + input->next = config->inputs; +- config->inputs = input; ++ config->inputs = NULL; + + return TRUE; + +diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c +--- nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c 2010-10-21 11:11:06.251000043 +0300 ++++ nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c 2010-10-21 11:32:59.793000043 +0300 +@@ -571,6 +571,12 @@ + { + XConfigInputrefPtr inputRef; + ++ XConfigInputPtr input; ++ input = xconfigFindInput(name, config->inputs); ++ ++ if(!input) ++ return; ++ + inputRef = xconfigAlloc(sizeof(XConfigInputrefRec)); + inputRef->input_name = xconfigStrdup(name); + inputRef->input = xconfigFindInput(inputRef->input_name, config->inputs); diff --git a/hardware/graphics/nvidia-settings/pspec.xml b/hardware/graphics/nvidia-settings/pspec.xml new file mode 100644 index 0000000000..888d622d96 --- /dev/null +++ b/hardware/graphics/nvidia-settings/pspec.xml @@ -0,0 +1,140 @@ + + + + + nvidia-settings + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + nvidia-settings + app:gui + The NVIDIA X Server Settings tool + The nvidia-settings utility is a tool for configuring the NVIDIA graphics driver. It operates by communicating with the NVIDIA X driver, querying and updating state as appropriate. + ftp://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-355.11.tar.bz2 + + atk-devel + gtk3-devel + cairo-devel + fontconfig-devel + gtk2-devel + libXext-devel + gdk-pixbuf-devel + mesa-devel + libvdpau-devel + + + + + nvidia-settings + + atk + cairo + glib2 + libX11 + freetype + fontconfig + gtk2 + libXext + gdk-pixbuf + libXxf86vm + pango + + + /usr/bin + /etc/X11/Xsession.d + /usr/lib + /usr/share/applications + /usr/share/pixmaps + /usr/share/man + /usr/share/doc + + + nvidia-settings.desktop + nvidia-settings.png + 21-nvidia-settings.sh + + + + + + 2015-11-20 + 355.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-16 + 349.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-31 + 349.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-13 + 346.47 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 346.35 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-24 + 343.22 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-29 + 337.19 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 334.21 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-21 + 331.20 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-06 + 313.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-30 + 313.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + diff --git a/hardware/graphics/nvidia-settings/translations.xml b/hardware/graphics/nvidia-settings/translations.xml new file mode 100644 index 0000000000..28c331c820 --- /dev/null +++ b/hardware/graphics/nvidia-settings/translations.xml @@ -0,0 +1,8 @@ + + + + nvidia-settings + NVIDIA X Sunucusu ayarlama aracı + nvidia-settings aracı NVIDIA grafik sürücülerini ayarlamak için kullanılan bir araçtır. NVIDIA X sürücüsü ile iletişime geçerek çalışır, durum bilgisini gerekli olduğu gibi uygular, günceller. + + diff --git a/hardware/graphics/nvidia-xconfig/actions.py b/hardware/graphics/nvidia-xconfig/actions.py new file mode 100644 index 0000000000..9740158898 --- /dev/null +++ b/hardware/graphics/nvidia-xconfig/actions.py @@ -0,0 +1,18 @@ +#!/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 + + +def build(): + autotools.make("STRIP_CMD=/bin/true") + +def install(): + autotools.rawInstall("DESTDIR=%s PREFIX=/usr" % get.installDIR()) + pisitools.dodoc("COPYING") diff --git a/hardware/graphics/nvidia-xconfig/files/nvidia-bug-report.sh b/hardware/graphics/nvidia-xconfig/files/nvidia-bug-report.sh new file mode 100644 index 0000000000..e735aaee44 --- /dev/null +++ b/hardware/graphics/nvidia-xconfig/files/nvidia-bug-report.sh @@ -0,0 +1,316 @@ +#!/bin/sh + +# NVIDIA Graphics Driver bug reporting shell script. This shell +# script will generate a log file named "nvidia-bug-report.log", which +# should be attached when emailing bug reports to NVIDIA. + + + +LOG_FILENAME=nvidia-bug-report.log + + +PATH="/sbin:/usr/sbin:$PATH" + + +NVIDIA_BUG_REPORT_CHANGE="$Change: 2074027 $" +NVIDIA_BUG_REPORT_VERSION=`echo $NVIDIA_BUG_REPORT_CHANGE | tr -c -d [:digit:]` + +# +# append() - append the contents of the specified file to the log +# + +append() { + echo "____________________________________________" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + + if [ ! -f "$1" ]; then + echo "$1 does not exist" >> $LOG_FILENAME + elif [ ! -r "$1" ]; then + echo "$1 is not readable" >> $LOG_FILENAME + else + echo "$1" >> $LOG_FILENAME + cat "$1" >> $LOG_FILENAME + fi + echo "" >> $LOG_FILENAME +} + +# +# append_silent() - same as append(), but don't print anything +# if the file does not exist +# + +append_silent() { + if [ -f "$1" -a -r "$1" ]; then + echo "____________________________________________" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + echo "$1" >> $LOG_FILENAME + cat "$1" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + fi +} + +# +# append_glob() - use the shell to expand a list of files, and invoke +# append() for each of them +# + +append_glob() { + for i in `ls $1 2> /dev/null;`; do + append "$i" + done +} + + + +# +# Start of script +# + + +# check that we are root (needed for `lspci -vxxx` and potentially for +# accessing kernel log files) + +if [ `id -u` -ne 0 ]; then + echo "ERROR: Please run $(basename $0) as root." + exit 1 +fi + + +# move any old log file out of the way + +if [ -f $LOG_FILENAME ]; then + mv $LOG_FILENAME ${LOG_FILENAME}.old +fi + + +# make sure what we can write to the log file + +touch $LOG_FILENAME 2> /dev/null + +if [ $? -ne 0 ]; then + echo + echo "ERROR: Working directory is not writable; please cd to a directory" + echo " where you have write permission so that the $LOG_FILENAME" + echo " file can be written." + echo + exit 1 +fi + + +# print a start message to stdout + +echo "" +echo -n "Running $(basename $0)..."; + + +# print prologue to the log file + +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME +echo "Start of NVIDIA bug report log file. Please send this report," >> $LOG_FILENAME +echo "along with a description of your bug, to linux-bugs@nvidia.com." >> $LOG_FILENAME +echo "" >> $LOG_FILENAME +echo "nvidia-bug-report.sh Version: $NVIDIA_BUG_REPORT_VERSION" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME +echo "Date: `date`" >> $LOG_FILENAME +echo "uname: `uname -a`" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME + + +# append useful files + +append "/proc/driver/nvidia/version" + +append_glob "/proc/driver/nvidia/cards/*" +append_glob "/proc/driver/nvidia/agp/*" + +append_glob "/proc/driver/nvidia/warnings/*" +append "/proc/driver/nvidia/registry" + +append "/proc/cmdline" +append "/proc/cpuinfo" +append "/proc/interrupts" +append "/proc/meminfo" +append "/proc/modules" +append "/proc/version" +append "/proc/pci" +append "/proc/iomem" +append "/proc/mtrr" + +append "/etc/issue" + +append_silent "/etc/redhat-release" +append_silent "/etc/redhat_version" +append_silent "/etc/fedora-release" +append_silent "/etc/slackware-release" +append_silent "/etc/slackware-version" +append_silent "/etc/debian_release" +append_silent "/etc/debian_version" +append_silent "/etc/mandrake-release" +append_silent "/etc/yellowdog-release" +append_silent "/etc/sun-release" +append_silent "/etc/release" +append_silent "/etc/gentoo-release" + +append "/var/log/nvidia-installer.log" + +# append the X log; also, extract the config file named in the X log +# and append it + +for i in /var/log/XFree86.0.log /var/log/Xorg.0.log ; do + append "$i" + if [ -f $i -a -r $i ]; then + j=`grep "Using config file" $i | cut -f 2 -d \"` + append "$j" + fi +done + +# append ldd info + +glxinfo=`which glxinfo 2> /dev/null | head -n 1` + +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME + +if [ $? -eq 0 -a "$glxinfo" ]; then + echo "ldd $glxinfo" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + ( ldd $glxinfo >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 + echo "" >> $LOG_FILENAME +else + echo "Skipping ldd output (glxinfo not found)" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME +fi + +# lspci information + +lspci=`which lspci 2> /dev/null | head -n 1` + +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME + +if [ $? -eq 0 -a "$lspci" ]; then + echo "$lspci -d \"10de:*\" -v -xxx" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + ( $lspci -d "10de:*" -v -xxx >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 + echo "" >> $LOG_FILENAME + echo "____________________________________________" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + echo "$lspci -t" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + ( $lspci -t >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 + echo "" >> $LOG_FILENAME +else + echo "Skipping lspci output (lspci not found)" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME +fi + +# dmidecode + +dmidecode=`which dmidecode 2> /dev/null | head -n 1` + +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME + +if [ $? -eq 0 -a "$dmidecode" ]; then + echo "$dmidecode" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + ( $dmidecode >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 + echo "" >> $LOG_FILENAME +else + echo "Skipping dmidecode output (dmidecode not found)" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME +fi + +# module version magic + +modinfo=`which modinfo 2> /dev/null | head -n 1` + +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME + +if [ $? -eq 0 -a "$modinfo" ]; then + echo "$modinfo nvidia | grep vermagic" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + ( $modinfo nvidia | grep vermagic >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 + echo "" >> $LOG_FILENAME +else + echo "Skipping modinfo output (modinfo not found)" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME +fi + +# get any relevant kernel messages + +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME +echo "Scanning kernel log files for NVRM messages:" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME + +for i in /var/log/messages /var/log/kernel.log ; do + if [ -f $i ]; then + echo " $i:" >> $LOG_FILENAME + ( cat $i | grep NVRM >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 + fi +done + +# append dmesg output + +echo "" >> $LOG_FILENAME +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME +echo "dmesg:" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME +( dmesg >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 + +which gcc >/dev/null 2>&1 +if [ $? -eq 0 ]; then + echo "____________________________________________" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + ( gcc -v 2>> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 +fi + +which g++ >/dev/null 2>&1 +if [ $? -eq 0 ]; then + echo "____________________________________________" >> $LOG_FILENAME + echo "" >> $LOG_FILENAME + ( g++ -v 2>> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 +fi + +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME +echo "xset -q:" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME + +( xset -q >> $LOG_FILENAME & sleep 1 ; kill -9 $! ) > /dev/null 2>&1 + +if [ $? -eq 0 ]; then + # The xset process is still there. + echo "xset could not connect to an X server" >> $LOG_FILENAME +fi + +echo "____________________________________________" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME +echo "nvidia-settings -q all:" >> $LOG_FILENAME +echo "" >> $LOG_FILENAME + +( nvidia-settings -q all >> $LOG_FILENAME & sleep 1 ; kill -9 $! ) > /dev/null 2>&1 + +if [ $? -eq 0 ]; then + # The nvidia-settings process is still there. + echo "nvidia-settings could not connect to an X server" >> $LOG_FILENAME +fi +echo "____________________________________________" >> $LOG_FILENAME + +# print epilogue to log file + +echo "" >> $LOG_FILENAME +echo "End of NVIDIA bug report log file." >> $LOG_FILENAME + + +# Done + +echo " complete." +echo "" +echo "The file $LOG_FILENAME has been created; please send this report," +echo "along with a description of your bug, to linux-bugs@nvidia.com." +echo "" diff --git a/hardware/graphics/nvidia-xconfig/pspec.xml b/hardware/graphics/nvidia-xconfig/pspec.xml new file mode 100644 index 0000000000..7c92d176fe --- /dev/null +++ b/hardware/graphics/nvidia-xconfig/pspec.xml @@ -0,0 +1,109 @@ + + + + + nvidia-xconfig + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + The NVIDIA X Configuration Tool + The NVIDIA X Configuration Tool + ftp://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-355.11.tar.bz2 + + + + nvidia-xconfig + + /usr/bin + /usr/share/man + /usr/share/doc + + + nvidia-bug-report.sh + + + + + + 2015-11-20 + 355.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-16 + 349.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-31 + 349.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-13 + 346.47 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 346.35 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-24 + 343.22 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-08 + 337.19 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 334.21 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-21 + 331.20 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-30 + 313.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-29 + 313.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + diff --git a/hardware/graphics/nvidia-xconfig/translations.xml b/hardware/graphics/nvidia-xconfig/translations.xml new file mode 100644 index 0000000000..9b83e5b498 --- /dev/null +++ b/hardware/graphics/nvidia-xconfig/translations.xml @@ -0,0 +1,8 @@ + + + + nvidia-xconfig + NVIDIA X yapılandırma araçı + NVIDIA X yapılandırma araçı + + diff --git a/pisi-index.xml b/pisi-index.xml index 56a9cbb1b8..2bf21bda97 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -6126,6 +6126,70 @@ + + + libctemplate + https://github.com/OlafvdSpek/ctemplate + + Pisi Linux Community + admins@pisilinux.org + + BSD + library + programming.misc + CTemplate is a simple but powerful template language for C++. + It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. + https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.3.tar.gz + + glibc-devel + + programming/misc/libctemplate/pspec.xml + + + libctemplate + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libctemplate-devel + Development files for libctemplate + + libctemplate + + + /usr/include + + + + + 2015-11-22 + 2.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-29 + 2.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-05 + 2.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + iniparser @@ -21802,6 +21866,255 @@ + + + nvidia-xconfig + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.graphics + The NVIDIA X Configuration Tool + NVIDIA X yapılandırma araçı + The NVIDIA X Configuration Tool + NVIDIA X yapılandırma araçı + ftp://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-355.11.tar.bz2 + hardware/graphics/nvidia-xconfig/pspec.xml + + + nvidia-xconfig + + /usr/bin + /usr/share/man + /usr/share/doc + + + nvidia-bug-report.sh + + + + + 2015-11-20 + 355.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-16 + 349.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-31 + 349.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-13 + 346.47 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 346.35 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-24 + 343.22 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-08 + 337.19 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 334.21 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-21 + 331.20 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-30 + 313.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-29 + 313.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + nvidia-settings + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + hardware.graphics + The NVIDIA X Server Settings tool + NVIDIA X Sunucusu ayarlama aracı + The nvidia-settings utility is a tool for configuring the NVIDIA graphics driver. It operates by communicating with the NVIDIA X driver, querying and updating state as appropriate. + nvidia-settings aracı NVIDIA grafik sürücülerini ayarlamak için kullanılan bir araçtır. NVIDIA X sürücüsü ile iletişime geçerek çalışır, durum bilgisini gerekli olduğu gibi uygular, günceller. + nvidia-settings + ftp://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-355.11.tar.bz2 + + atk-devel + gtk3-devel + cairo-devel + fontconfig-devel + gtk2-devel + libXext-devel + gdk-pixbuf-devel + mesa-devel + libvdpau-devel + + hardware/graphics/nvidia-settings/pspec.xml + + + nvidia-settings + + atk + cairo + glib2 + libX11 + freetype + fontconfig + gtk2 + libXext + gdk-pixbuf + libXxf86vm + pango + + + /usr/bin + /etc/X11/Xsession.d + /usr/lib + /usr/share/applications + /usr/share/pixmaps + /usr/share/man + /usr/share/doc + + + nvidia-settings.desktop + nvidia-settings.png + 21-nvidia-settings.sh + + + + + 2015-11-20 + 355.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-16 + 349.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-31 + 349.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-13 + 346.47 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 346.35 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-24 + 343.22 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-29 + 337.19 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 334.21 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-21 + 331.20 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-06 + 313.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-30 + 313.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + vbetool @@ -25418,10 +25731,8 @@ /usr/bin - /usr/lib/libmission-control-plugins.so* - /usr/lib/mission-control-5 - /usr/share - /usr/share/gtk-doc + /usr/lib/libmission-control-plugins.so.0* + /usr/lib/telepathy/mission-control-5 /usr/share/man /usr/share/doc /usr/share/dbus-1 @@ -25437,8 +25748,10 @@ telepathy-glib-devel - /usr/include/mission-control-5.5/mission-control-plugins - /usr/lib/pkgconfig + /usr/include/mission-control-5.5 + /usr/lib/libmission-control-plugins.so + /usr/lib/pkgconfig/mission-control-plugins.pc + /usr/share/gtk-doc/html/mission-control-plugins @@ -26373,6 +26686,72 @@ + + + telepathy-logger-qt + https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + unknown + Qt bindings for telepathy logger + Qt Wrapper around TpLogger client library. + http://download.kde.org/stable/telepathy-logger-qt/15.04/src/telepathy-logger-qt-15.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + doxygen + telepathy-qt5-devel + glib2-devel + dbus-devel + dbus-glib-devel + libxml2-devel + telepathy-logger-devel + + network/chat/telepathy-logger-qt/pspec.xml + + + telepathy-logger-qt + Qt bindings for telepathy logger + + glib2 + libgcc + qt5-base + telepathy-qt5 + telepathy-glib + telepathy-logger + + + /usr/lib/libtelepathy-logger-qt.so.* + /usr/share/doc + + + + telepathy-logger-qt-devel + Development files for telepathy-logger-qt + + telepathy-logger-qt + telepathy-glib-devel + + + /usr/include + /usr/lib/libtelepathy-logger-qt.so + /usr/lib/cmake/TelepathyLoggerQt + + + + + 2015-11-22 + 15.04.0 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + telepathy-logger @@ -36348,6 +36727,72 @@ + + + htop + http://htop.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + app:gui + util.admin + Visionneur de processus pour Linux + An interactive process viewer for Linux + Linux için etkileşimli bir süreç izleyici + htop est un visionneur de processus en mode texte. Il a pour but de surpasser 'top'. + htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. + htop, metin kipinde çalışan etkileşimli, 'top' türevi bir süreç izleyicidir. + htop + http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz + + ncurses-devel + gettext-devel + + + desktop_tr.patch + + util/admin/htop/pspec.xml + + + htop + + ncurses + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/applications + /usr/share/pixmaps + + + + + 2014-06-17 + 1.0.3 + Version bump + Kamil Atlı + burakerturk@pisilinux.org + + + 2013-12-31 + 1.0.2 + Release bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-01-31 + 1.0.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + inxi @@ -36940,6 +37385,69 @@ + + + cabextract + http://www.cabextract.org.uk/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.archive + A program to extract from Microsoft Cabinet files + Microsoft Cabinet dosyalarını açan bir program + cabextract is a program to extract files from Microsoft Cabinet files. + cabextract Microsoft Cabinet (.cab) dosyalarından dosya çıkarmaya yarayan bir programdır. + http://www.cabextract.org.uk/cabextract-1.6.tar.gz + util/archive/cabextract/pspec.xml + + + cabextract + + /usr/bin + /usr/share/man + + + + + 2015-11-23 + 1.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-16 + 1.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-19 + 1.4 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2014-01-19 + 1.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-06-07 + 1.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + quazip @@ -37161,6 +37669,95 @@ + + + areca + http://www.areca-backup.org/ + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.archive + Easy to use and reliable backup solution for Linux. + Easy to use and reliable backup solution for Linux. + Areca Backup is very versatile and as simple as possible. + Areca Backup is very versatile and as simple as possible. + areca + http://sourceforge.net/projects/areca/files/areca-stable/areca-7.5/areca-7.5-linux-gtk-64.tar.gz + util/archive/areca/pspec.xml + + + areca + + acl + + + /usr/bin/ + /usr/share/applications + /usr/share/pixmaps + /opt/areca/ + /usr + + + areca + areca.desktop + areca.png + + + + + 2015-11-23 + 7.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-25 + 7.4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-09-27 + 7.4.7 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-19 + 7.4.6 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2014-03-03 + 7.4.1 + Rebuild for openjdk + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-17 + 7.4.1 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-03 + 7.3.9 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + unrar @@ -54407,6 +55004,130 @@ + + + ktp-common-internals + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Common components for KDE-Telepathy + Common components for KDE-Telepathy + http://download.kde.org/stable/applications/15.08.3/src/ktp-common-internals-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + knotifications-devel + kio-devel + kwidgetsaddons-devel + kcmutils-devel + knotifyconfig-devel + ktexteditor-devel + kwallet-devel + kconfig-devel + kwindowsystem-devel + kiconthemes-devel + kpeople-devel + signon-devel + kaccounts-integration-devel + telepathy-logger-qt-devel + libaccounts-qt5-devel + telepathy-qt5-devel + libaccounts-glib-devel + libgcrypt-devel + sqlite-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + telepathy-mission-control-devel + libotr-devel + + desktop/kde/application/ktp-common-internals/pspec.xml + + + ktp-common-internals + Common components for KDE-Telepathy + + ki18n + kparts + libgcc + libotr + signon + kconfig + kpeople + kwallet + kxmlgui + kcmutils + kservice + qt5-base + libgcrypt + kcoreaddons + kiconthemes + ktexteditor + knotifyconfig + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + libaccounts-qt5 + qt5-declarative + telepathy-logger-qt + kaccounts-integration + + + /usr/bin + /usr/lib/libKTpCommonInternals.so.* + /usr/lib/libKTpModels.so.* + /usr/lib/libKTpLogger.so.* + /usr/lib/libKTpWidgets.so.* + /usr/lib/libKTpOTR.so.* + /usr/lib/ktp-proxy + /usr/lib/qt5 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/knotifications5 + /usr/share/config.kcfg + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/icons + /usr/share/katepart5 + /usr/share/doc + + + + ktp-common-internals-devel + Development files for ktp-common-internals + + ktp-common-internals + libotr-devel + + + /usr/include/KTp + /usr/lib/cmake/KTp + /usr/lib/libKTpCommonInternals.so + /usr/lib/libKTpModels.so + /usr/lib/libKTpLogger.so + /usr/lib/libKTpWidgets.so + /usr/lib/libKTpOTR.so + + + + + 2015-11-22 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + kblog @@ -86890,6 +87611,99 @@ Jabber and others + + + medit + http://mooedit.sourceforge.net/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv2 + app:gui + editor + Multiplatform GTK text editor + Sekme özelliğine sahip bir metin düzenleyicisi + Medit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. + Medit, sekme özelliğine sahip hızlı ve kullanışlı bir metin düzenleyicisidir. + medit + mirrors://sourceforge/mooedit/medit-1.2.0.tar.bz2 + + python-gtk-devel + gtk2-devel + atk-devel + cairo-devel + gettext-devel + pkgconfig + glib2-devel + libX11-devel + python3-devel + libxml2-devel + gtk2-devel + pango-devel + lua-devel + libSM-devel + libICE-devel + gdk-pixbuf-devel + + + desktop-tr.patch + fix_help_dir.patch + + editor/medit/pspec.xml + + + medit + + gtk2 + atk + glib2 + libX11 + libgcc + python + libxml2 + cairo + pango + libSM + libICE + gdk-pixbuf + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/medit + /usr/share/pixmaps + /usr/share/doc + /usr/share/man + + + + + 2014-06-04 + 1.2.0 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-20 + 1.1.96 + Update + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-10 + 1.1.92 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + nano diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 6f9a98c0b5..134fe6c9d1 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -90d5da54911ba3491a5d579287997efd52ecd93b \ No newline at end of file +33515648b759620a01234c151fb508238ce892e0 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index f5aa6b992c..b45b780be9 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 3c70ca36f7..41a8845f47 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -5f30d603f994362f71aa831b677931895b77d961 \ No newline at end of file +31e51daa744481a546ea403157e7e114e07830e2 \ No newline at end of file diff --git a/programming/misc/libctemplate/actions.py b/programming/misc/libctemplate/actions.py new file mode 100644 index 0000000000..25538c29a4 --- /dev/null +++ b/programming/misc/libctemplate/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/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +NoStrip = "/" + +def setup(): + autotools.configure() + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "COPYING") diff --git a/programming/misc/libctemplate/pspec.xml b/programming/misc/libctemplate/pspec.xml new file mode 100644 index 0000000000..541571476d --- /dev/null +++ b/programming/misc/libctemplate/pspec.xml @@ -0,0 +1,67 @@ + + + + + libctemplate + https://github.com/OlafvdSpek/ctemplate + + Pisi Linux Community + admins@pisilinux.org + + BSD + library + CTemplate is a simple but powerful template language for C++. + It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. + https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.3.tar.gz + + glibc-devel + + + + + libctemplate + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + libctemplate-devel + Development files for libctemplate + + libctemplate + + + /usr/include + + + + + + 2015-11-22 + 2.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-29 + 2.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-05 + 2.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + diff --git a/programming/misc/libctemplate/translations.xml b/programming/misc/libctemplate/translations.xml new file mode 100644 index 0000000000..5221d0b70c --- /dev/null +++ b/programming/misc/libctemplate/translations.xml @@ -0,0 +1,8 @@ + + + + ctemplate + CTemplate is a simple but powerful template language for C++. + It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. + + diff --git a/util/admin/htop/actions.py b/util/admin/htop/actions.py new file mode 100644 index 0000000000..28dceb8984 --- /dev/null +++ b/util/admin/htop/actions.py @@ -0,0 +1,22 @@ +# -*- 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 + +def setup(): + shelltools.system("sed -i 's|ncursesw/curses.h|curses.h|' RichString.[ch] configure") + autotools.configure("--enable-taskstats \ + --enable-unicode") + +def build(): + autotools.make("-j1") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README") diff --git a/util/admin/htop/files/desktop_tr.patch b/util/admin/htop/files/desktop_tr.patch new file mode 100644 index 0000000000..301620e9b5 --- /dev/null +++ b/util/admin/htop/files/desktop_tr.patch @@ -0,0 +1,8 @@ +diff -Nur htop-0.7-old/htop.desktop htop-0.7/htop.desktop +--- htop-0.7-old/htop.desktop 2008-01-06 00:55:17.000000000 +0200 ++++ htop-0.7/htop.desktop 2008-01-06 00:56:03.000000000 +0200 +@@ -10,3 +10,4 @@ + Icon=htop + Categories=ConsoleOnly;System;Application; + GenericName=Process Viewer ++GenericName[tr]=Süreç İzleyici diff --git a/util/admin/htop/pspec.xml b/util/admin/htop/pspec.xml new file mode 100644 index 0000000000..e915999ba2 --- /dev/null +++ b/util/admin/htop/pspec.xml @@ -0,0 +1,64 @@ + + + + + htop + http://htop.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + htop + app:console + app:gui + An interactive process viewer for Linux + htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. + http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz + + ncurses-devel + gettext-devel + + + desktop_tr.patch + + + + + htop + + ncurses + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/applications + /usr/share/pixmaps + + + + + + 2014-06-17 + 1.0.3 + Version bump + Kamil Atlı + burakerturk@pisilinux.org + + + 2013-12-31 + 1.0.2 + Release bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-01-31 + 1.0.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + diff --git a/util/admin/htop/translations.xml b/util/admin/htop/translations.xml new file mode 100644 index 0000000000..e0fef30315 --- /dev/null +++ b/util/admin/htop/translations.xml @@ -0,0 +1,10 @@ + + + + htop + Linux için etkileşimli bir süreç izleyici + Visionneur de processus pour Linux + htop, metin kipinde çalışan etkileşimli, 'top' türevi bir süreç izleyicidir. + htop est un visionneur de processus en mode texte. Il a pour but de surpasser 'top'. + + diff --git a/util/archive/areca/actions.py b/util/archive/areca/actions.py new file mode 100644 index 0000000000..77496e248c --- /dev/null +++ b/util/archive/areca/actions.py @@ -0,0 +1,20 @@ +#!/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="areca" + + +def install(): + pisitools.dosed("bin/areca_run.sh","JAVADIR=/usr/lib/jvm/java-7-openjdk") + shelltools.chmod("bin/areca*.sh",0755) + shelltools.chmod("bin/run_tui.sh",0755) + shelltools.chmod("areca*.sh",0755) + pisitools.insinto("/opt/areca/","*") diff --git a/util/archive/areca/files/areca b/util/archive/areca/files/areca new file mode 100644 index 0000000000..2ed836b4fb --- /dev/null +++ b/util/archive/areca/files/areca @@ -0,0 +1,13 @@ + #!/bin/bash + +############################################################################# +# +# Startscript for Areca +# +# Created for PisiLinux +# +############################################################################# + + +cd /opt/areca/ +./areca.sh diff --git a/util/archive/areca/files/areca.desktop b/util/archive/areca/files/areca.desktop new file mode 100644 index 0000000000..79a762fc4c --- /dev/null +++ b/util/archive/areca/files/areca.desktop @@ -0,0 +1,17 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=1.0 +Name=Areca Backup +GenericName=Backup files in an easy way +GenericName[de]=Datensicherung einfach gemacht +GenericName[nl]=Backup van bestanden maken +Comment=a simple versatile and reliable backup solution +Comment[de]=Eine einfache, vielseitige und verlässliche Backuplösung. +Comment[nl]=Een eenvoudige, veelzijdige en betrouwbare oplossing voor backup. +Icon=/usr/share/pixmaps/areca.png +Exec=areca +Categories=Application;Utility;Archiving; +Type=Application +Terminal=false +X-KDE-StartupNotify=true +MultipleArgs=false diff --git a/util/archive/areca/files/areca.png b/util/archive/areca/files/areca.png new file mode 100644 index 0000000000..e91e2b31a6 Binary files /dev/null and b/util/archive/areca/files/areca.png differ diff --git a/util/archive/areca/pspec.xml b/util/archive/areca/pspec.xml new file mode 100644 index 0000000000..ce4a5fc0e3 --- /dev/null +++ b/util/archive/areca/pspec.xml @@ -0,0 +1,89 @@ + + + + + areca + http://www.areca-backup.org/ + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + areca + app:gui + Easy to use and reliable backup solution for Linux. + Areca Backup is very versatile and as simple as possible. + http://sourceforge.net/projects/areca/files/areca-stable/areca-7.5/areca-7.5-linux-gtk-64.tar.gz + + + + areca + + acl + + + /usr/bin/ + /usr/share/applications + /usr/share/pixmaps + /opt/areca/ + /usr + + + areca + areca.desktop + areca.png + + + + + + 2015-11-23 + 7.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-25 + 7.4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-09-27 + 7.4.7 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-19 + 7.4.6 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2014-03-03 + 7.4.1 + Rebuild for openjdk + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-17 + 7.4.1 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-03 + 7.3.9 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + diff --git a/util/archive/areca/translations.xml b/util/archive/areca/translations.xml new file mode 100644 index 0000000000..3453494622 --- /dev/null +++ b/util/archive/areca/translations.xml @@ -0,0 +1,8 @@ + + + + areca + Easy to use and reliable backup solution for Linux. + Areca Backup is very versatile and as simple as possible. + + diff --git a/util/archive/cabextract/actions.py b/util/archive/cabextract/actions.py new file mode 100644 index 0000000000..6f22e1f07a --- /dev/null +++ b/util/archive/cabextract/actions.py @@ -0,0 +1,18 @@ +#!/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 get + +def setup(): + autotools.configure() + +def build(): + autotools.make() + +def install(): + autotools.make("DESTDIR=%s install" % get.installDIR()) + diff --git a/util/archive/cabextract/pspec.xml b/util/archive/cabextract/pspec.xml new file mode 100644 index 0000000000..58a989d134 --- /dev/null +++ b/util/archive/cabextract/pspec.xml @@ -0,0 +1,63 @@ + + + + + cabextract + http://www.cabextract.org.uk/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + A program to extract from Microsoft Cabinet files + cabextract is a program to extract files from Microsoft Cabinet files. + http://www.cabextract.org.uk/cabextract-1.6.tar.gz + + + + cabextract + + /usr/bin + /usr/share/man + + + + + + 2015-11-23 + 1.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-16 + 1.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-19 + 1.4 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2014-01-19 + 1.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-06-07 + 1.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/util/archive/cabextract/translations.xml b/util/archive/cabextract/translations.xml new file mode 100644 index 0000000000..9f540b1788 --- /dev/null +++ b/util/archive/cabextract/translations.xml @@ -0,0 +1,8 @@ + + + + cabextract + Microsoft Cabinet dosyalarını açan bir program + cabextract Microsoft Cabinet (.cab) dosyalarından dosya çıkarmaya yarayan bir programdır. + +