diff --git a/kernel/kernel/files/configs/kernel-x86_64-config b/kernel/kernel/files/configs/kernel-x86_64-config index 9a624aec..8f4c7dbc 100644 --- a/kernel/kernel/files/configs/kernel-x86_64-config +++ b/kernel/kernel/files/configs/kernel-x86_64-config @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86_64 4.4.4 Kernel Configuration +# Linux/x86_64 4.4.8 Kernel Configuration # CONFIG_64BIT=y CONFIG_X86_64=y diff --git a/kernel/kernel/files/patches/linux/patch-4.4.8.xz b/kernel/kernel/files/patches/linux/patch-4.4.8.xz new file mode 100644 index 00000000..95b5d264 Binary files /dev/null and b/kernel/kernel/files/patches/linux/patch-4.4.8.xz differ diff --git a/kernel/kernel/files/patches/mageia/Revert-ipmi-Start-the-timer-and-thread-on-internal-m.patch b/kernel/kernel/files/patches/mageia/Revert-ipmi-Start-the-timer-and-thread-on-internal-m.patch new file mode 100644 index 00000000..965e5c74 --- /dev/null +++ b/kernel/kernel/files/patches/mageia/Revert-ipmi-Start-the-timer-and-thread-on-internal-m.patch @@ -0,0 +1,197 @@ +From 43034bc4606f1f21186ca6fe27bc0448159d5e00 Mon Sep 17 00:00:00 2001 +From: Thomas Backlund +Date: Thu, 10 Mar 2016 15:44:13 +0200 +Subject: [PATCH] Revert "ipmi: Start the timer and thread on internal msgs" + +This reverts commit 0cfec916e86d881e209de4b4ae9959a6271e6660. + +It's reported on ipmi list that Dell R720xd servers will always panic +on dell ipmi services load + +Reverting this fixes the issue. + +Signed-off-by: Thomas Backlund + +--- + drivers/char/ipmi/ipmi_si_intf.c | 73 ++++++++++++++++------------------------ + 1 file changed, 29 insertions(+), 44 deletions(-) + +diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c +index 4cc72fa..f667be8 100644 +--- a/drivers/char/ipmi/ipmi_si_intf.c ++++ b/drivers/char/ipmi/ipmi_si_intf.c +@@ -412,42 +412,18 @@ static enum si_sm_result start_next_msg(struct smi_info *smi_info) + return rv; + } + +-static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val) +-{ +- smi_info->last_timeout_jiffies = jiffies; +- mod_timer(&smi_info->si_timer, new_val); +- smi_info->timer_running = true; +-} +- +-/* +- * Start a new message and (re)start the timer and thread. +- */ +-static void start_new_msg(struct smi_info *smi_info, unsigned char *msg, +- unsigned int size) +-{ +- smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES); +- +- if (smi_info->thread) +- wake_up_process(smi_info->thread); +- +- smi_info->handlers->start_transaction(smi_info->si_sm, msg, size); +-} +- +-static void start_check_enables(struct smi_info *smi_info, bool start_timer) ++static void start_check_enables(struct smi_info *smi_info) + { + unsigned char msg[2]; + + msg[0] = (IPMI_NETFN_APP_REQUEST << 2); + msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD; + +- if (start_timer) +- start_new_msg(smi_info, msg, 2); +- else +- smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2); ++ smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2); + smi_info->si_state = SI_CHECKING_ENABLES; + } + +-static void start_clear_flags(struct smi_info *smi_info, bool start_timer) ++static void start_clear_flags(struct smi_info *smi_info) + { + unsigned char msg[3]; + +@@ -456,10 +432,7 @@ static void start_clear_flags(struct smi_info *smi_info, bool start_timer) + msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD; + msg[2] = WDT_PRE_TIMEOUT_INT; + +- if (start_timer) +- start_new_msg(smi_info, msg, 3); +- else +- smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3); ++ smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3); + smi_info->si_state = SI_CLEARING_FLAGS; + } + +@@ -469,8 +442,10 @@ static void start_getting_msg_queue(struct smi_info *smi_info) + smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD; + smi_info->curr_msg->data_size = 2; + +- start_new_msg(smi_info, smi_info->curr_msg->data, +- smi_info->curr_msg->data_size); ++ smi_info->handlers->start_transaction( ++ smi_info->si_sm, ++ smi_info->curr_msg->data, ++ smi_info->curr_msg->data_size); + smi_info->si_state = SI_GETTING_MESSAGES; + } + +@@ -480,11 +455,20 @@ static void start_getting_events(struct smi_info *smi_info) + smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD; + smi_info->curr_msg->data_size = 2; + +- start_new_msg(smi_info, smi_info->curr_msg->data, +- smi_info->curr_msg->data_size); ++ smi_info->handlers->start_transaction( ++ smi_info->si_sm, ++ smi_info->curr_msg->data, ++ smi_info->curr_msg->data_size); + smi_info->si_state = SI_GETTING_EVENTS; + } + ++static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val) ++{ ++ smi_info->last_timeout_jiffies = jiffies; ++ mod_timer(&smi_info->si_timer, new_val); ++ smi_info->timer_running = true; ++} ++ + /* + * When we have a situtaion where we run out of memory and cannot + * allocate messages, we just leave them in the BMC and run the system +@@ -494,11 +478,11 @@ static void start_getting_events(struct smi_info *smi_info) + * Note that we cannot just use disable_irq(), since the interrupt may + * be shared. + */ +-static inline bool disable_si_irq(struct smi_info *smi_info, bool start_timer) ++static inline bool disable_si_irq(struct smi_info *smi_info) + { + if ((smi_info->irq) && (!smi_info->interrupt_disabled)) { + smi_info->interrupt_disabled = true; +- start_check_enables(smi_info, start_timer); ++ start_check_enables(smi_info); + return true; + } + return false; +@@ -508,7 +492,7 @@ static inline bool enable_si_irq(struct smi_info *smi_info) + { + if ((smi_info->irq) && (smi_info->interrupt_disabled)) { + smi_info->interrupt_disabled = false; +- start_check_enables(smi_info, true); ++ start_check_enables(smi_info); + return true; + } + return false; +@@ -526,7 +510,7 @@ static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info) + + msg = ipmi_alloc_smi_msg(); + if (!msg) { +- if (!disable_si_irq(smi_info, true)) ++ if (!disable_si_irq(smi_info)) + smi_info->si_state = SI_NORMAL; + } else if (enable_si_irq(smi_info)) { + ipmi_free_smi_msg(msg); +@@ -542,7 +526,7 @@ static void handle_flags(struct smi_info *smi_info) + /* Watchdog pre-timeout */ + smi_inc_stat(smi_info, watchdog_pretimeouts); + +- start_clear_flags(smi_info, true); ++ start_clear_flags(smi_info); + smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT; + if (smi_info->intf) + ipmi_smi_watchdog_pretimeout(smi_info->intf); +@@ -895,7 +879,8 @@ static enum si_sm_result smi_event_handler(struct smi_info *smi_info, + msg[0] = (IPMI_NETFN_APP_REQUEST << 2); + msg[1] = IPMI_GET_MSG_FLAGS_CMD; + +- start_new_msg(smi_info, msg, 2); ++ smi_info->handlers->start_transaction( ++ smi_info->si_sm, msg, 2); + smi_info->si_state = SI_GETTING_FLAGS; + goto restart; + } +@@ -925,7 +910,7 @@ static enum si_sm_result smi_event_handler(struct smi_info *smi_info, + * disable and messages disabled. + */ + if (smi_info->supports_event_msg_buff || smi_info->irq) { +- start_check_enables(smi_info, true); ++ start_check_enables(smi_info); + } else { + smi_info->curr_msg = alloc_msg_handle_irq(smi_info); + if (!smi_info->curr_msg) +@@ -3635,7 +3620,7 @@ static int try_smi_init(struct smi_info *new_smi) + * Start clearing the flags before we enable interrupts or the + * timer to avoid racing with the timer. + */ +- start_clear_flags(new_smi, false); ++ start_clear_flags(new_smi); + + /* + * IRQ is defined to be set when non-zero. req_events will +@@ -3930,7 +3915,7 @@ static void cleanup_one_si(struct smi_info *to_clean) + poll(to_clean); + schedule_timeout_uninterruptible(1); + } +- disable_si_irq(to_clean, false); ++ disable_si_irq(to_clean); + while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) { + poll(to_clean); + schedule_timeout_uninterruptible(1); +-- +2.7.2 + diff --git a/kernel/kernel/files/patches/mageia/ata-Adding-Intel-Lewisburg-device-IDs-for-SATA.patch b/kernel/kernel/files/patches/mageia/ata-Adding-Intel-Lewisburg-device-IDs-for-SATA.patch deleted file mode 100644 index 96ca0e8b..00000000 --- a/kernel/kernel/files/patches/mageia/ata-Adding-Intel-Lewisburg-device-IDs-for-SATA.patch +++ /dev/null @@ -1,44 +0,0 @@ -From f5bdd66c705484b4bc77eb914be15c1b7881fae7 Mon Sep 17 00:00:00 2001 -From: Alexandra Yates -Date: Wed, 17 Feb 2016 19:36:20 -0800 -Subject: [PATCH] Adding Intel Lewisburg device IDs for SATA - -This patch complements the list of device IDs previously -added for lewisburg sata. - -Signed-off-by: Alexandra Yates -Signed-off-by: Tejun Heo -Cc: stable@vger.kernel.org ---- - drivers/ata/ahci.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c -index 546a369..b6263b3 100644 ---- a/drivers/ata/ahci.c -+++ b/drivers/ata/ahci.c -@@ -367,15 +367,21 @@ static const struct pci_device_id ahci_pci_tbl[] = { - { PCI_VDEVICE(INTEL, 0xa107), board_ahci }, /* Sunrise Point-H RAID */ - { PCI_VDEVICE(INTEL, 0xa10f), board_ahci }, /* Sunrise Point-H RAID */ - { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* Lewisburg RAID*/ -+ { PCI_VDEVICE(INTEL, 0x2823), board_ahci }, /* Lewisburg AHCI*/ - { PCI_VDEVICE(INTEL, 0x2826), board_ahci }, /* Lewisburg RAID*/ -+ { PCI_VDEVICE(INTEL, 0x2827), board_ahci }, /* Lewisburg RAID*/ - { PCI_VDEVICE(INTEL, 0xa182), board_ahci }, /* Lewisburg AHCI*/ - { PCI_VDEVICE(INTEL, 0xa184), board_ahci }, /* Lewisburg RAID*/ - { PCI_VDEVICE(INTEL, 0xa186), board_ahci }, /* Lewisburg RAID*/ - { PCI_VDEVICE(INTEL, 0xa18e), board_ahci }, /* Lewisburg RAID*/ -+ { PCI_VDEVICE(INTEL, 0xa1d2), board_ahci }, /* Lewisburg RAID*/ -+ { PCI_VDEVICE(INTEL, 0xa1d6), board_ahci }, /* Lewisburg RAID*/ - { PCI_VDEVICE(INTEL, 0xa202), board_ahci }, /* Lewisburg AHCI*/ - { PCI_VDEVICE(INTEL, 0xa204), board_ahci }, /* Lewisburg RAID*/ - { PCI_VDEVICE(INTEL, 0xa206), board_ahci }, /* Lewisburg RAID*/ - { PCI_VDEVICE(INTEL, 0xa20e), board_ahci }, /* Lewisburg RAID*/ -+ { PCI_VDEVICE(INTEL, 0xa252), board_ahci }, /* Lewisburg RAID*/ -+ { PCI_VDEVICE(INTEL, 0xa256), board_ahci }, /* Lewisburg RAID*/ - - /* JMicron 360/1/3/5/6, match class to avoid IDE function */ - { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, --- -2.7.2 - diff --git a/kernel/kernel/files/patches/mageia/ata-ahci-don-t-mark-HotPlugCapable-Ports-as-external.patch b/kernel/kernel/files/patches/mageia/ata-ahci-don-t-mark-HotPlugCapable-Ports-as-external.patch deleted file mode 100644 index 6b53ff17..00000000 --- a/kernel/kernel/files/patches/mageia/ata-ahci-don-t-mark-HotPlugCapable-Ports-as-external.patch +++ /dev/null @@ -1,45 +0,0 @@ -From dc8b4afc4a04fac8ee55a19b59f2356a25e7e778 Mon Sep 17 00:00:00 2001 -From: Manuel Lauss -Date: Sat, 27 Feb 2016 16:10:05 +0100 -Subject: [PATCH] ata: ahci: don't mark HotPlugCapable Ports as - external/removable - -The HPCP bit is set by bioses for on-board sata ports either because -they think sata is hotplug capable in general or to allow Windows -to display a "device eject" icon on ports which are routed to an -external connector bracket. - -However in Redhat Bugzilla #1310682, users report that with kernel 4.4, -where this bit test first appeared, a lot of partitions on sata drives -are now mounted automatically. - -This patch should fix redhat and a lot of other distros which -unconditionally automount all devices which have the "removable" -bit set. - -Signed-off-by: Manuel Lauss -Signed-off-by: Tejun Heo -Fixes: 8a3e33cf92c7 ("ata: ahci: find eSATA ports and flag them as removable" changes userspace behavior) -Link: http://lkml.kernel.org/g/56CF35FA.1070500@redhat.com -Cc: stable@vger.kernel.org #v4.4+ ---- - drivers/ata/libahci.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c -index 513b3fa..85ea514 100644 ---- a/drivers/ata/libahci.c -+++ b/drivers/ata/libahci.c -@@ -1168,8 +1168,7 @@ static void ahci_port_init(struct device *dev, struct ata_port *ap, - - /* mark esata ports */ - tmp = readl(port_mmio + PORT_CMD); -- if ((tmp & PORT_CMD_HPCP) || -- ((tmp & PORT_CMD_ESP) && (hpriv->cap & HOST_CAP_SXS))) -+ if ((tmp & PORT_CMD_ESP) && (hpriv->cap & HOST_CAP_SXS)) - ap->pflags |= ATA_PFLAG_EXTERNAL; - } - --- -2.7.2 - diff --git a/kernel/kernel/files/patches/mageia/libata-Align-ata_device-s-id-on-a-cacheline.patch b/kernel/kernel/files/patches/mageia/libata-Align-ata_device-s-id-on-a-cacheline.patch deleted file mode 100644 index 2892b5f1..00000000 --- a/kernel/kernel/files/patches/mageia/libata-Align-ata_device-s-id-on-a-cacheline.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 4ee34ea3a12396f35b26d90a094c75db95080baa Mon Sep 17 00:00:00 2001 -From: Harvey Hunt -Date: Wed, 24 Feb 2016 15:16:43 +0000 -Subject: [PATCH] libata: Align ata_device's id on a cacheline - -The id buffer in ata_device is a DMA target, but it isn't explicitly -cacheline aligned. Due to this, adjacent fields can be overwritten with -stale data from memory on non coherent architectures. As a result, the -kernel is sometimes unable to communicate with an ATA device. - -Fix this by ensuring that the id buffer is cacheline aligned. - -This issue is similar to that fixed by Commit 84bda12af31f -("libata: align ap->sector_buf"). - -Signed-off-by: Harvey Hunt -Cc: linux-kernel@vger.kernel.org -Cc: # 2.6.18 -Signed-off-by: Tejun Heo ---- - include/linux/libata.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/include/linux/libata.h b/include/linux/libata.h -index bec2abb..2c4ebef 100644 ---- a/include/linux/libata.h -+++ b/include/linux/libata.h -@@ -720,7 +720,7 @@ struct ata_device { - union { - u16 id[ATA_ID_WORDS]; /* IDENTIFY xxx DEVICE data */ - u32 gscr[SATA_PMP_GSCR_DWORDS]; /* PMP GSCR block */ -- }; -+ } ____cacheline_aligned; - - /* DEVSLP Timing Variables from Identify Device Data Log */ - u8 devslp_timing[ATA_LOG_DEVSLP_SIZE]; --- -2.7.2 - diff --git a/kernel/kernel/files/patches/mageia/libata-fix-HDIO_GET_32BIT-ioctl.patch b/kernel/kernel/files/patches/mageia/libata-fix-HDIO_GET_32BIT-ioctl.patch deleted file mode 100644 index b6a453cf..00000000 --- a/kernel/kernel/files/patches/mageia/libata-fix-HDIO_GET_32BIT-ioctl.patch +++ /dev/null @@ -1,98 +0,0 @@ -From 287e6611ab1eac76c2c5ebf6e345e04c80ca9c61 Mon Sep 17 00:00:00 2001 -From: Arnd Bergmann -Date: Thu, 11 Feb 2016 14:16:27 +0100 -Subject: [PATCH] libata: fix HDIO_GET_32BIT ioctl - -As reported by Soohoon Lee, the HDIO_GET_32BIT ioctl does not -work correctly in compat mode with libata. - -I have investigated the issue further and found multiple problems -that all appeared with the same commit that originally introduced -HDIO_GET_32BIT handling in libata back in linux-2.6.8 and presumably -also linux-2.4, as the code uses "copy_to_user(arg, &val, 1)" to copy -a 'long' variable containing either 0 or 1 to user space. - -The problems with this are: - -* On big-endian machines, this will always write a zero because it - stores the wrong byte into user space. - -* In compat mode, the upper three bytes of the variable are updated - by the compat_hdio_ioctl() function, but they now contain - uninitialized stack data. - -* The hdparm tool calling this ioctl uses a 'static long' variable - to store the result. This means at least the upper bytes are - initialized to zero, but calling another ioctl like HDIO_GET_MULTCOUNT - would fill them with data that remains stale when the low byte - is overwritten. Fortunately libata doesn't implement any of the - affected ioctl commands, so this would only happen when we query - both an IDE and an ATA device in the same command such as - "hdparm -N -c /dev/hda /dev/sda" - -* The libata code for unknown reasons started using ATA_IOC_GET_IO32 - and ATA_IOC_SET_IO32 as aliases for HDIO_GET_32BIT and HDIO_SET_32BIT, - while the ioctl commands that were added later use the normal - HDIO_* names. This is harmless but rather confusing. - -This addresses all four issues by changing the code to use put_user() -on an 'unsigned long' variable in HDIO_GET_32BIT, like the IDE subsystem -does, and by clarifying the names of the ioctl commands. - -Signed-off-by: Arnd Bergmann -Reported-by: Soohoon Lee -Tested-by: Soohoon Lee -Cc: stable@vger.kernel.org -Signed-off-by: Tejun Heo ---- - drivers/ata/libata-scsi.c | 11 +++++------ - include/linux/ata.h | 4 ++-- - 2 files changed, 7 insertions(+), 8 deletions(-) - -diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c -index 7e959f9..e417e1a 100644 ---- a/drivers/ata/libata-scsi.c -+++ b/drivers/ata/libata-scsi.c -@@ -675,19 +675,18 @@ static int ata_ioc32(struct ata_port *ap) - int ata_sas_scsi_ioctl(struct ata_port *ap, struct scsi_device *scsidev, - int cmd, void __user *arg) - { -- int val = -EINVAL, rc = -EINVAL; -+ unsigned long val; -+ int rc = -EINVAL; - unsigned long flags; - - switch (cmd) { -- case ATA_IOC_GET_IO32: -+ case HDIO_GET_32BIT: - spin_lock_irqsave(ap->lock, flags); - val = ata_ioc32(ap); - spin_unlock_irqrestore(ap->lock, flags); -- if (copy_to_user(arg, &val, 1)) -- return -EFAULT; -- return 0; -+ return put_user(val, (unsigned long __user *)arg); - -- case ATA_IOC_SET_IO32: -+ case HDIO_SET_32BIT: - val = (unsigned long) arg; - rc = 0; - spin_lock_irqsave(ap->lock, flags); -diff --git a/include/linux/ata.h b/include/linux/ata.h -index d2992bf..c1a2f34 100644 ---- a/include/linux/ata.h -+++ b/include/linux/ata.h -@@ -487,8 +487,8 @@ enum ata_tf_protocols { - }; - - enum ata_ioctls { -- ATA_IOC_GET_IO32 = 0x309, -- ATA_IOC_SET_IO32 = 0x324, -+ ATA_IOC_GET_IO32 = 0x309, /* HDIO_GET_32BIT */ -+ ATA_IOC_SET_IO32 = 0x324, /* HDIO_SET_32BIT */ - }; - - /* core structures */ --- -2.7.2 - diff --git a/kernel/kernel/files/patches/mageia/net-netfilter-x_tables-check-for-size-overflow.patch b/kernel/kernel/files/patches/mageia/net-netfilter-x_tables-check-for-size-overflow.patch new file mode 100644 index 00000000..0eb09157 --- /dev/null +++ b/kernel/kernel/files/patches/mageia/net-netfilter-x_tables-check-for-size-overflow.patch @@ -0,0 +1,32 @@ +List: netfilter-devel +Subject: [PATCH nf] netfilter: x_tables: check for size overflow +From: Florian Westphal +Date: 2016-03-10 0:56:23 +Message-ID: 1457571383-25520-1-git-send-email-fw () strlen ! de +Ben Hawkes says: + integer overflow in xt_alloc_table_info, which on 32-bit systems can + lead to small structure allocation and a copy_from_user based heap + corruption. + +Reported-by: Ben Hawkes +Signed-off-by: Florian Westphal +--- + net/netfilter/x_tables.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c +index c8a0b7d..17a9a9f 100644 +--- a/net/netfilter/x_tables.c ++++ b/net/netfilter/x_tables.c +@@ -659,6 +659,9 @@ struct xt_table_info *xt_alloc_table_info(unsigned int size) + struct xt_table_info *info = NULL; + size_t sz = sizeof(*info) + size; + ++ if (sz < size || sz < sizeof(*info)) ++ return NULL; ++ + /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */ + if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages) + return NULL; +-- +2.4.10 diff --git a/kernel/kernel/files/patches/mageia/net-netfilter-x_tables-deal-with-bogus-nextoffset-values.patch b/kernel/kernel/files/patches/mageia/net-netfilter-x_tables-deal-with-bogus-nextoffset-values.patch new file mode 100644 index 00000000..540f5bc3 --- /dev/null +++ b/kernel/kernel/files/patches/mageia/net-netfilter-x_tables-deal-with-bogus-nextoffset-values.patch @@ -0,0 +1,152 @@ +List: netfilter-devel +Subject: [PATCH nf] netfilter: x_tables: deal with bogus nextoffset values +From: Florian Westphal +Date: 2016-03-10 0:56:02 +Message-ID: 1457571362-25441-1-git-send-email-fw () strlen ! de + +Ben Hawkes says: + + In the mark_source_chains function (net/ipv4/netfilter/ip_tables.c) it + is possible for a user-supplied ipt_entry structure to have a large + next_offset field. This field is not bounds checked prior to writing a + counter value at the supplied offset. + +Problem is that xt_entry_foreach() macro stops iterating once e->next_offset +is out of bounds, assuming this is the last entry. + +With malformed data thats not necessarily the case so we can +write outside of allocated area later as we might not have walked the +entire blob. + +Fix this by simplifying mark_source_chains -- it already has to check +if nextoff is in range to catch invalid jumps, so just do the check +when we move to a next entry as well. + +Signed-off-by: Florian Westphal +--- + net/ipv4/netfilter/arp_tables.c | 16 ++++++++-------- + net/ipv4/netfilter/ip_tables.c | 15 ++++++++------- + net/ipv6/netfilter/ip6_tables.c | 13 ++++++------- + 3 files changed, 22 insertions(+), 22 deletions(-) + +diff --git a/net/ipv4/netfilter/arp_tables.c b/net/ipv4/netfilter/arp_tables.c +index b488cac..5a0b591 100644 +--- a/net/ipv4/netfilter/arp_tables.c ++++ b/net/ipv4/netfilter/arp_tables.c +@@ -437,6 +437,10 @@ static int mark_source_chains(const struct xt_table_info *newinfo, + + /* Move along one */ + size = e->next_offset; ++ ++ if (pos + size > newinfo->size - sizeof(*e)) ++ return 0; ++ + e = (struct arpt_entry *) + (entry0 + pos + size); + e->counters.pcnt = pos; +@@ -447,14 +451,6 @@ static int mark_source_chains(const struct xt_table_info *newinfo, + if (strcmp(t->target.u.user.name, + XT_STANDARD_TARGET) == 0 && + newpos >= 0) { +- if (newpos > newinfo->size - +- sizeof(struct arpt_entry)) { +- duprintf("mark_source_chains: " +- "bad verdict (%i)\n", +- newpos); +- return 0; +- } +- + /* This a jump; chase it. */ + duprintf("Jump rule %u -> %u\n", + pos, newpos); +@@ -462,6 +458,10 @@ static int mark_source_chains(const struct xt_table_info *newinfo, + /* ... this is a fallthru */ + newpos = pos + e->next_offset; + } ++ ++ if (newpos > newinfo->size - sizeof(*e)) ++ return 0; ++ + e = (struct arpt_entry *) + (entry0 + newpos); + e->counters.pcnt = pos; +diff --git a/net/ipv4/netfilter/ip_tables.c b/net/ipv4/netfilter/ip_tables.c +index b99affa..ceb995f 100644 +--- a/net/ipv4/netfilter/ip_tables.c ++++ b/net/ipv4/netfilter/ip_tables.c +@@ -519,6 +519,10 @@ mark_source_chains(const struct xt_table_info *newinfo, + + /* Move along one */ + size = e->next_offset; ++ ++ if (pos + size > newinfo->size - sizeof(*e)) ++ return 0; ++ + e = (struct ipt_entry *) + (entry0 + pos + size); + e->counters.pcnt = pos; +@@ -529,13 +533,6 @@ mark_source_chains(const struct xt_table_info *newinfo, + if (strcmp(t->target.u.user.name, + XT_STANDARD_TARGET) == 0 && + newpos >= 0) { +- if (newpos > newinfo->size - +- sizeof(struct ipt_entry)) { +- duprintf("mark_source_chains: " +- "bad verdict (%i)\n", +- newpos); +- return 0; +- } + /* This a jump; chase it. */ + duprintf("Jump rule %u -> %u\n", + pos, newpos); +@@ -543,6 +540,10 @@ mark_source_chains(const struct xt_table_info *newinfo, + /* ... this is a fallthru */ + newpos = pos + e->next_offset; + } ++ ++ if (newpos > newinfo->size - sizeof(*e)) ++ return 0; ++ + e = (struct ipt_entry *) + (entry0 + newpos); + e->counters.pcnt = pos; +diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c +index 99425cf..d88a794 100644 +--- a/net/ipv6/netfilter/ip6_tables.c ++++ b/net/ipv6/netfilter/ip6_tables.c +@@ -531,6 +531,8 @@ mark_source_chains(const struct xt_table_info *newinfo, + + /* Move along one */ + size = e->next_offset; ++ if (pos + size > newinfo->size - sizeof(*e)) ++ return 0; + e = (struct ip6t_entry *) + (entry0 + pos + size); + e->counters.pcnt = pos; +@@ -541,13 +543,6 @@ mark_source_chains(const struct xt_table_info *newinfo, + if (strcmp(t->target.u.user.name, + XT_STANDARD_TARGET) == 0 && + newpos >= 0) { +- if (newpos > newinfo->size - +- sizeof(struct ip6t_entry)) { +- duprintf("mark_source_chains: " +- "bad verdict (%i)\n", +- newpos); +- return 0; +- } + /* This a jump; chase it. */ + duprintf("Jump rule %u -> %u\n", + pos, newpos); +@@ -555,6 +550,10 @@ mark_source_chains(const struct xt_table_info *newinfo, + /* ... this is a fallthru */ + newpos = pos + e->next_offset; + } ++ ++ if (newpos > newinfo->size - sizeof(*e)) ++ return 0; ++ + e = (struct ip6t_entry *) + (entry0 + newpos); + e->counters.pcnt = pos; +-- +2.4.10 diff --git a/kernel/kernel/files/patches/mageia/pipe-limit-the-per-user-amount-of-pages-allocated-in-pipes_CVE-2016-2847.patch b/kernel/kernel/files/patches/mageia/pipe-limit-the-per-user-amount-of-pages-allocated-in-pipes_CVE-2016-2847.patch new file mode 100644 index 00000000..8067901f --- /dev/null +++ b/kernel/kernel/files/patches/mageia/pipe-limit-the-per-user-amount-of-pages-allocated-in-pipes_CVE-2016-2847.patch @@ -0,0 +1,250 @@ +From 759c01142a5d0f364a462346168a56de28a80f52 Mon Sep 17 00:00:00 2001 +From: Willy Tarreau +Date: Mon, 18 Jan 2016 16:36:09 +0100 +Subject: [PATCH] pipe: limit the per-user amount of pages allocated in pipes + +On no-so-small systems, it is possible for a single process to cause an +OOM condition by filling large pipes with data that are never read. A +typical process filling 4000 pipes with 1 MB of data will use 4 GB of +memory. On small systems it may be tricky to set the pipe max size to +prevent this from happening. + +This patch makes it possible to enforce a per-user soft limit above +which new pipes will be limited to a single page, effectively limiting +them to 4 kB each, as well as a hard limit above which no new pipes may +be created for this user. This has the effect of protecting the system +against memory abuse without hurting other users, and still allowing +pipes to work correctly though with less data at once. + +The limit are controlled by two new sysctls : pipe-user-pages-soft, and +pipe-user-pages-hard. Both may be disabled by setting them to zero. The +default soft limit allows the default number of FDs per process (1024) +to create pipes of the default size (64kB), thus reaching a limit of 64MB +before starting to create only smaller pipes. With 256 processes limited +to 1024 FDs each, this results in 1024*64kB + (256*1024 - 1024) * 4kB = +1084 MB of memory allocated for a user. The hard limit is disabled by +default to avoid breaking existing applications that make intensive use +of pipes (eg: for splicing). + +Reported-by: socketpair@gmail.com +Reported-by: Tetsuo Handa +Mitigates: CVE-2013-4312 (Linux 2.0+) +Suggested-by: Linus Torvalds +Signed-off-by: Willy Tarreau +Signed-off-by: Al Viro +--- + Documentation/sysctl/fs.txt | 23 ++++++++++++++++++++++ + fs/pipe.c | 47 +++++++++++++++++++++++++++++++++++++++++++-- + include/linux/pipe_fs_i.h | 4 ++++ + include/linux/sched.h | 1 + + kernel/sysctl.c | 14 ++++++++++++++ + 5 files changed, 87 insertions(+), 2 deletions(-) + +diff --git a/Documentation/sysctl/fs.txt b/Documentation/sysctl/fs.txt +index 88152f2..302b5ed 100644 +--- a/Documentation/sysctl/fs.txt ++++ b/Documentation/sysctl/fs.txt +@@ -32,6 +32,8 @@ Currently, these files are in /proc/sys/fs: + - nr_open + - overflowuid + - overflowgid ++- pipe-user-pages-hard ++- pipe-user-pages-soft + - protected_hardlinks + - protected_symlinks + - suid_dumpable +@@ -159,6 +161,27 @@ The default is 65534. + + ============================================================== + ++pipe-user-pages-hard: ++ ++Maximum total number of pages a non-privileged user may allocate for pipes. ++Once this limit is reached, no new pipes may be allocated until usage goes ++below the limit again. When set to 0, no limit is applied, which is the default ++setting. ++ ++============================================================== ++ ++pipe-user-pages-soft: ++ ++Maximum total number of pages a non-privileged user may allocate for pipes ++before the pipe size gets limited to a single page. Once this limit is reached, ++new pipes will be limited to a single page in size for this user in order to ++limit total memory usage, and trying to increase them using fcntl() will be ++denied until usage goes below the limit again. The default value allows to ++allocate up to 1024 pipes at their default size. When set to 0, no limit is ++applied. ++ ++============================================================== ++ + protected_hardlinks: + + A long-standing class of security issues is the hardlink-based +diff --git a/fs/pipe.c b/fs/pipe.c +index 42cf8dd..ab8dad3 100644 +--- a/fs/pipe.c ++++ b/fs/pipe.c +@@ -38,6 +38,12 @@ unsigned int pipe_max_size = 1048576; + */ + unsigned int pipe_min_size = PAGE_SIZE; + ++/* Maximum allocatable pages per user. Hard limit is unset by default, soft ++ * matches default values. ++ */ ++unsigned long pipe_user_pages_hard; ++unsigned long pipe_user_pages_soft = PIPE_DEF_BUFFERS * INR_OPEN_CUR; ++ + /* + * We use a start+len construction, which provides full use of the + * allocated memory. +@@ -583,20 +589,49 @@ pipe_fasync(int fd, struct file *filp, int on) + return retval; + } + ++static void account_pipe_buffers(struct pipe_inode_info *pipe, ++ unsigned long old, unsigned long new) ++{ ++ atomic_long_add(new - old, &pipe->user->pipe_bufs); ++} ++ ++static bool too_many_pipe_buffers_soft(struct user_struct *user) ++{ ++ return pipe_user_pages_soft && ++ atomic_long_read(&user->pipe_bufs) >= pipe_user_pages_soft; ++} ++ ++static bool too_many_pipe_buffers_hard(struct user_struct *user) ++{ ++ return pipe_user_pages_hard && ++ atomic_long_read(&user->pipe_bufs) >= pipe_user_pages_hard; ++} ++ + struct pipe_inode_info *alloc_pipe_info(void) + { + struct pipe_inode_info *pipe; + + pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL); + if (pipe) { +- pipe->bufs = kzalloc(sizeof(struct pipe_buffer) * PIPE_DEF_BUFFERS, GFP_KERNEL); ++ unsigned long pipe_bufs = PIPE_DEF_BUFFERS; ++ struct user_struct *user = get_current_user(); ++ ++ if (!too_many_pipe_buffers_hard(user)) { ++ if (too_many_pipe_buffers_soft(user)) ++ pipe_bufs = 1; ++ pipe->bufs = kzalloc(sizeof(struct pipe_buffer) * pipe_bufs, GFP_KERNEL); ++ } ++ + if (pipe->bufs) { + init_waitqueue_head(&pipe->wait); + pipe->r_counter = pipe->w_counter = 1; +- pipe->buffers = PIPE_DEF_BUFFERS; ++ pipe->buffers = pipe_bufs; ++ pipe->user = user; ++ account_pipe_buffers(pipe, 0, pipe_bufs); + mutex_init(&pipe->mutex); + return pipe; + } ++ free_uid(user); + kfree(pipe); + } + +@@ -607,6 +642,8 @@ void free_pipe_info(struct pipe_inode_info *pipe) + { + int i; + ++ account_pipe_buffers(pipe, pipe->buffers, 0); ++ free_uid(pipe->user); + for (i = 0; i < pipe->buffers; i++) { + struct pipe_buffer *buf = pipe->bufs + i; + if (buf->ops) +@@ -998,6 +1035,7 @@ static long pipe_set_size(struct pipe_inode_info *pipe, unsigned long nr_pages) + memcpy(bufs + head, pipe->bufs, tail * sizeof(struct pipe_buffer)); + } + ++ account_pipe_buffers(pipe, pipe->buffers, nr_pages); + pipe->curbuf = 0; + kfree(pipe->bufs); + pipe->bufs = bufs; +@@ -1069,6 +1107,11 @@ long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg) + if (!capable(CAP_SYS_RESOURCE) && size > pipe_max_size) { + ret = -EPERM; + goto out; ++ } else if ((too_many_pipe_buffers_hard(pipe->user) || ++ too_many_pipe_buffers_soft(pipe->user)) && ++ !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) { ++ ret = -EPERM; ++ goto out; + } + ret = pipe_set_size(pipe, nr_pages); + break; +diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h +index eb8b8ac..24f5470 100644 +--- a/include/linux/pipe_fs_i.h ++++ b/include/linux/pipe_fs_i.h +@@ -42,6 +42,7 @@ struct pipe_buffer { + * @fasync_readers: reader side fasync + * @fasync_writers: writer side fasync + * @bufs: the circular array of pipe buffers ++ * @user: the user who created this pipe + **/ + struct pipe_inode_info { + struct mutex mutex; +@@ -57,6 +58,7 @@ struct pipe_inode_info { + struct fasync_struct *fasync_readers; + struct fasync_struct *fasync_writers; + struct pipe_buffer *bufs; ++ struct user_struct *user; + }; + + /* +@@ -123,6 +125,8 @@ void pipe_unlock(struct pipe_inode_info *); + void pipe_double_lock(struct pipe_inode_info *, struct pipe_inode_info *); + + extern unsigned int pipe_max_size, pipe_min_size; ++extern unsigned long pipe_user_pages_hard; ++extern unsigned long pipe_user_pages_soft; + int pipe_proc_fn(struct ctl_table *, int, void __user *, size_t *, loff_t *); + + +diff --git a/include/linux/sched.h b/include/linux/sched.h +index 61aa9bb..1589ddc8 100644 +--- a/include/linux/sched.h ++++ b/include/linux/sched.h +@@ -835,6 +835,7 @@ struct user_struct { + #endif + unsigned long locked_shm; /* How many pages of mlocked shm ? */ + unsigned long unix_inflight; /* How many files in flight in unix sockets */ ++ atomic_long_t pipe_bufs; /* how many pages are allocated in pipe buffers */ + + #ifdef CONFIG_KEYS + struct key *uid_keyring; /* UID specific keyring */ +diff --git a/kernel/sysctl.c b/kernel/sysctl.c +index c810f8a..f6fd236 100644 +--- a/kernel/sysctl.c ++++ b/kernel/sysctl.c +@@ -1757,6 +1757,20 @@ static struct ctl_table fs_table[] = { + .proc_handler = &pipe_proc_fn, + .extra1 = &pipe_min_size, + }, ++ { ++ .procname = "pipe-user-pages-hard", ++ .data = &pipe_user_pages_hard, ++ .maxlen = sizeof(pipe_user_pages_hard), ++ .mode = 0644, ++ .proc_handler = proc_doulongvec_minmax, ++ }, ++ { ++ .procname = "pipe-user-pages-soft", ++ .data = &pipe_user_pages_soft, ++ .maxlen = sizeof(pipe_user_pages_soft), ++ .mode = 0644, ++ .proc_handler = proc_doulongvec_minmax, ++ }, + { } + }; + +-- +2.7.2 + diff --git a/kernel/kernel/files/patches/mageia/series b/kernel/kernel/files/patches/mageia/series index 9a73c795..6c12247d 100644 --- a/kernel/kernel/files/patches/mageia/series +++ b/kernel/kernel/files/patches/mageia/series @@ -14,27 +14,6 @@ ### ### Stable Queue ### -stable-use-d_seq-to-get-coherency-between-d_inode-and-d_flags.patch -stable-drivers-sh-restore-legacy-clock-domain-on-superh-platforms.patch -stable-btrfs-fix-deadlock-running-delayed-iputs-at-transaction-commit-time.patch -stable-btrfs-fix-no_space-in-write-and-rm-loop.patch -stable-btrfs-async-thread-fix-a-use-after-free-error-for-trace.patch -stable-drm-amdgpu-mask-out-wc-from-bo-on-unsupported-arches.patch -stable-block-initialize-max_dev_sectors-to-0.patch -stable-pci-keystone-fix-msi-code-that-retrieves-struct-pcie_port-pointer.patch -stable-parisc-fix-ptrace-syscall-number-and-return-value-modification.patch -stable-mips-kvm-fix-ioctl-error-handling.patch -stable-kvm-x86-update-tsc-multiplier-on-change.patch -stable-fbcon-set-a-default-value-to-blink-interval.patch -stable-cifs-fix-out-of-bounds-access-in-lease-parsing.patch -stable-cifs-fix-smb2-interim-response-processing-for-read-requests.patch -stable-fix-cifs_uniqueid_to_ino_t-function-for-s390x.patch -stable-vfio-fix-ioctl-error-handling.patch -stable-kvm-x86-fix-root-cause-for-missed-hardware-breakpoints.patch -stable-arm-arm64-kvm-fix-ioctl-error-handling.patch -stable-iommu-amd-apply-workaround-for-ats-write-permission-check.patch -stable-iommu-amd-fix-boot-warning-when-device-00-00.0-is-not-iommu-covered.patch -stable-iommu-vt-d-use-bus_notify_removed_device-in-hotplug-path.patch ### ### Arch x86 @@ -142,14 +121,13 @@ block-Make-CFQ-default-to-IOPS-mode-on-SSDs.patch # ahci ids ahci-add-new-Intel-device-IDs.patch -ata-Adding-Intel-Lewisburg-device-IDs-for-SATA.patch -# fix unwanted automounting of partitions -ata-ahci-don-t-mark-HotPlugCapable-Ports-as-external.patch +### +### Char +### -# libata fixes -libata-Align-ata_device-s-id-on-a-cacheline.patch -libata-fix-HDIO_GET_32BIT-ioctl.patch +# hard locks Dell R720xd +Revert-ipmi-Start-the-timer-and-thread-on-internal-m.patch ### ### File-system @@ -162,6 +140,9 @@ fs-aufs-4.4-modular.patch # ovl fixes fs-ovl-move-super-block-magic-number-to-magic.h.patch +# CVE-2016-2847 +pipe-limit-the-per-user-amount-of-pages-allocated-in-pipes_CVE-2016-2847.patch + ### ### FireWire ### @@ -272,6 +253,10 @@ net-netfilter-psd.patch net-netfilter-psd-mdv.patch net-netfilter-psd-2.6.35-buildfix.patch +# CVE pending +net-netfilter-x_tables-check-for-size-overflow.patch +net-netfilter-x_tables-deal-with-bogus-nextoffset-values.patch + ### ### Platform drivers ### diff --git a/kernel/kernel/files/patches/mageia/stable-arm-arm64-kvm-fix-ioctl-error-handling.patch b/kernel/kernel/files/patches/mageia/stable-arm-arm64-kvm-fix-ioctl-error-handling.patch deleted file mode 100644 index 507fd847..00000000 --- a/kernel/kernel/files/patches/mageia/stable-arm-arm64-kvm-fix-ioctl-error-handling.patch +++ /dev/null @@ -1,51 +0,0 @@ -From 4cad67fca3fc952d6f2ed9e799621f07666a560f Mon Sep 17 00:00:00 2001 -From: "Michael S. Tsirkin" -Date: Sun, 28 Feb 2016 17:32:07 +0200 -Subject: arm/arm64: KVM: Fix ioctl error handling - -From: Michael S. Tsirkin - -commit 4cad67fca3fc952d6f2ed9e799621f07666a560f upstream. - -Calling return copy_to_user(...) in an ioctl will not -do the right thing if there's a pagefault: -copy_to_user returns the number of bytes not copied -in this case. - -Fix up kvm to do - return copy_to_user(...)) ? -EFAULT : 0; - -everywhere. - -Acked-by: Christoffer Dall -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Marc Zyngier -Signed-off-by: Greg Kroah-Hartman - ---- - arch/arm/kvm/guest.c | 2 +- - arch/arm64/kvm/guest.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - ---- a/arch/arm/kvm/guest.c -+++ b/arch/arm/kvm/guest.c -@@ -155,7 +155,7 @@ static int get_timer_reg(struct kvm_vcpu - u64 val; - - val = kvm_arm_timer_get_reg(vcpu, reg->id); -- return copy_to_user(uaddr, &val, KVM_REG_SIZE(reg->id)); -+ return copy_to_user(uaddr, &val, KVM_REG_SIZE(reg->id)) ? -EFAULT : 0; - } - - static unsigned long num_core_regs(void) ---- a/arch/arm64/kvm/guest.c -+++ b/arch/arm64/kvm/guest.c -@@ -186,7 +186,7 @@ static int get_timer_reg(struct kvm_vcpu - u64 val; - - val = kvm_arm_timer_get_reg(vcpu, reg->id); -- return copy_to_user(uaddr, &val, KVM_REG_SIZE(reg->id)); -+ return copy_to_user(uaddr, &val, KVM_REG_SIZE(reg->id)) ? -EFAULT : 0; - } - - /** diff --git a/kernel/kernel/files/patches/mageia/stable-block-initialize-max_dev_sectors-to-0.patch b/kernel/kernel/files/patches/mageia/stable-block-initialize-max_dev_sectors-to-0.patch deleted file mode 100644 index 9546bf7a..00000000 --- a/kernel/kernel/files/patches/mageia/stable-block-initialize-max_dev_sectors-to-0.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 5f009d3f8e6685fe8c6215082c1696a08b411220 Mon Sep 17 00:00:00 2001 -From: Keith Busch -Date: Wed, 10 Feb 2016 16:52:47 -0700 -Subject: block: Initialize max_dev_sectors to 0 - -From: Keith Busch - -commit 5f009d3f8e6685fe8c6215082c1696a08b411220 upstream. - -The new queue limit is not used by the majority of block drivers, and -should be initialized to 0 for the driver's requested settings to be used. - -Signed-off-by: Keith Busch -Acked-by: Martin K. Petersen -Reviewed-by: Sagi Grimberg -Reviewed-by: Christoph Hellwig -Signed-off-by: Jens Axboe -Signed-off-by: Greg Kroah-Hartman - ---- - block/blk-settings.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/block/blk-settings.c -+++ b/block/blk-settings.c -@@ -91,8 +91,8 @@ void blk_set_default_limits(struct queue - lim->seg_boundary_mask = BLK_SEG_BOUNDARY_MASK; - lim->virt_boundary_mask = 0; - lim->max_segment_size = BLK_MAX_SEGMENT_SIZE; -- lim->max_sectors = lim->max_dev_sectors = lim->max_hw_sectors = -- BLK_SAFE_MAX_SECTORS; -+ lim->max_sectors = lim->max_hw_sectors = BLK_SAFE_MAX_SECTORS; -+ lim->max_dev_sectors = 0; - lim->chunk_sectors = 0; - lim->max_write_same_sectors = 0; - lim->max_discard_sectors = 0; diff --git a/kernel/kernel/files/patches/mageia/stable-btrfs-async-thread-fix-a-use-after-free-error-for-trace.patch b/kernel/kernel/files/patches/mageia/stable-btrfs-async-thread-fix-a-use-after-free-error-for-trace.patch deleted file mode 100644 index 25c4845c..00000000 --- a/kernel/kernel/files/patches/mageia/stable-btrfs-async-thread-fix-a-use-after-free-error-for-trace.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 0a95b851370b84a4b9d92ee6d1fa0926901d0454 Mon Sep 17 00:00:00 2001 -From: Qu Wenruo -Date: Fri, 22 Jan 2016 09:28:38 +0800 -Subject: btrfs: async-thread: Fix a use-after-free error for trace - -From: Qu Wenruo - -commit 0a95b851370b84a4b9d92ee6d1fa0926901d0454 upstream. - -Parameter of trace_btrfs_work_queued() can be freed in its workqueue. -So no one use use that pointer after queue_work(). - -Fix the user-after-free bug by move the trace line before queue_work(). - -Reported-by: Dave Jones -Signed-off-by: Qu Wenruo -Reviewed-by: David Sterba -Signed-off-by: Chris Mason -Signed-off-by: Greg Kroah-Hartman - ---- - fs/btrfs/async-thread.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/fs/btrfs/async-thread.c -+++ b/fs/btrfs/async-thread.c -@@ -328,8 +328,8 @@ static inline void __btrfs_queue_work(st - list_add_tail(&work->ordered_list, &wq->ordered_list); - spin_unlock_irqrestore(&wq->list_lock, flags); - } -- queue_work(wq->normal_wq, &work->normal_work); - trace_btrfs_work_queued(work); -+ queue_work(wq->normal_wq, &work->normal_work); - } - - void btrfs_queue_work(struct btrfs_workqueue *wq, diff --git a/kernel/kernel/files/patches/mageia/stable-btrfs-fix-deadlock-running-delayed-iputs-at-transaction-commit-time.patch b/kernel/kernel/files/patches/mageia/stable-btrfs-fix-deadlock-running-delayed-iputs-at-transaction-commit-time.patch deleted file mode 100644 index 2519f320..00000000 --- a/kernel/kernel/files/patches/mageia/stable-btrfs-fix-deadlock-running-delayed-iputs-at-transaction-commit-time.patch +++ /dev/null @@ -1,238 +0,0 @@ -From c2d6cb1636d235257086f939a8194ef0bf93af6e Mon Sep 17 00:00:00 2001 -From: Filipe Manana -Date: Fri, 15 Jan 2016 11:05:12 +0000 -Subject: Btrfs: fix deadlock running delayed iputs at transaction commit time - -From: Filipe Manana - -commit c2d6cb1636d235257086f939a8194ef0bf93af6e upstream. - -While running a stress test I ran into a deadlock when running the delayed -iputs at transaction time, which produced the following report and trace: - -[ 886.399989] ============================================= -[ 886.400871] [ INFO: possible recursive locking detected ] -[ 886.401663] 4.4.0-rc6-btrfs-next-18+ #1 Not tainted -[ 886.402384] --------------------------------------------- -[ 886.403182] fio/8277 is trying to acquire lock: -[ 886.403568] (&fs_info->delayed_iput_sem){++++..}, at: [] btrfs_run_delayed_iputs+0x36/0xbf [btrfs] -[ 886.403568] -[ 886.403568] but task is already holding lock: -[ 886.403568] (&fs_info->delayed_iput_sem){++++..}, at: [] btrfs_run_delayed_iputs+0x36/0xbf [btrfs] -[ 886.403568] -[ 886.403568] other info that might help us debug this: -[ 886.403568] Possible unsafe locking scenario: -[ 886.403568] -[ 886.403568] CPU0 -[ 886.403568] ---- -[ 886.403568] lock(&fs_info->delayed_iput_sem); -[ 886.403568] lock(&fs_info->delayed_iput_sem); -[ 886.403568] -[ 886.403568] *** DEADLOCK *** -[ 886.403568] -[ 886.403568] May be due to missing lock nesting notation -[ 886.403568] -[ 886.403568] 3 locks held by fio/8277: -[ 886.403568] #0: (sb_writers#11){.+.+.+}, at: [] __sb_start_write+0x5f/0xb0 -[ 886.403568] #1: (&sb->s_type->i_mutex_key#15){+.+.+.}, at: [] btrfs_file_write_iter+0x73/0x408 [btrfs] -[ 886.403568] #2: (&fs_info->delayed_iput_sem){++++..}, at: [] btrfs_run_delayed_iputs+0x36/0xbf [btrfs] -[ 886.403568] -[ 886.403568] stack backtrace: -[ 886.403568] CPU: 6 PID: 8277 Comm: fio Not tainted 4.4.0-rc6-btrfs-next-18+ #1 -[ 886.403568] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS by qemu-project.org 04/01/2014 -[ 886.403568] 0000000000000000 ffff88009f80f770 ffffffff8125d4fd ffffffff82af1fc0 -[ 886.403568] ffff88009f80f830 ffffffff8108e5f9 0000000200000000 ffff88009fd92290 -[ 886.403568] 0000000000000000 ffffffff82af1fc0 ffffffff829cfb01 00042b216d008804 -[ 886.403568] Call Trace: -[ 886.403568] [] dump_stack+0x4e/0x79 -[ 886.403568] [] __lock_acquire+0xd42/0xf0b -[ 886.403568] [] ? __module_address+0xdf/0x108 -[ 886.403568] [] lock_acquire+0x10d/0x194 -[ 886.403568] [] ? lock_acquire+0x10d/0x194 -[ 886.403568] [] ? btrfs_run_delayed_iputs+0x36/0xbf [btrfs] -[ 886.489542] [] down_read+0x3e/0x4d -[ 886.489542] [] ? btrfs_run_delayed_iputs+0x36/0xbf [btrfs] -[ 886.489542] [] btrfs_run_delayed_iputs+0x36/0xbf [btrfs] -[ 886.489542] [] btrfs_commit_transaction+0x8f5/0x96e [btrfs] -[ 886.489542] [] flush_space+0x435/0x44a [btrfs] -[ 886.489542] [] ? reserve_metadata_bytes+0x26a/0x384 [btrfs] -[ 886.489542] [] reserve_metadata_bytes+0x28d/0x384 [btrfs] -[ 886.489542] [] ? btrfs_block_rsv_refill+0x58/0x96 [btrfs] -[ 886.489542] [] btrfs_block_rsv_refill+0x70/0x96 [btrfs] -[ 886.489542] [] btrfs_evict_inode+0x394/0x55a [btrfs] -[ 886.489542] [] evict+0xa7/0x15c -[ 886.489542] [] iput+0x1d3/0x266 -[ 886.489542] [] btrfs_run_delayed_iputs+0x8f/0xbf [btrfs] -[ 886.489542] [] btrfs_commit_transaction+0x8f5/0x96e [btrfs] -[ 886.489542] [] ? signal_pending_state+0x31/0x31 -[ 886.489542] [] btrfs_alloc_data_chunk_ondemand+0x1d7/0x288 [btrfs] -[ 886.489542] [] btrfs_check_data_free_space+0x40/0x59 [btrfs] -[ 886.489542] [] btrfs_delalloc_reserve_space+0x1e/0x4e [btrfs] -[ 886.489542] [] btrfs_direct_IO+0x10c/0x27e [btrfs] -[ 886.489542] [] generic_file_direct_write+0xb3/0x128 -[ 886.489542] [] btrfs_file_write_iter+0x229/0x408 [btrfs] -[ 886.489542] [] ? __lock_is_held+0x38/0x50 -[ 886.489542] [] __vfs_write+0x7c/0xa5 -[ 886.489542] [] vfs_write+0xa0/0xe4 -[ 886.489542] [] SyS_write+0x50/0x7e -[ 886.489542] [] entry_SYSCALL_64_fastpath+0x12/0x6f -[ 1081.852335] INFO: task fio:8244 blocked for more than 120 seconds. -[ 1081.854348] Not tainted 4.4.0-rc6-btrfs-next-18+ #1 -[ 1081.857560] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -[ 1081.863227] fio D ffff880213f9bb28 0 8244 8240 0x00000000 -[ 1081.868719] ffff880213f9bb28 00ffffff810fc6b0 ffffffff0000000a ffff88023ed55240 -[ 1081.872499] ffff880206b5d400 ffff880213f9c000 ffff88020a4d5318 ffff880206b5d400 -[ 1081.876834] ffffffff00000001 ffff880206b5d400 ffff880213f9bb40 ffffffff81482ba4 -[ 1081.880782] Call Trace: -[ 1081.881793] [] schedule+0x7f/0x97 -[ 1081.883340] [] rwsem_down_write_failed+0x2d5/0x325 -[ 1081.895525] [] ? trace_hardirqs_on_caller+0x16/0x1ab -[ 1081.897419] [] call_rwsem_down_write_failed+0x13/0x20 -[ 1081.899251] [] ? call_rwsem_down_write_failed+0x13/0x20 -[ 1081.901063] [] ? __down_write_nested.isra.0+0x1f/0x21 -[ 1081.902365] [] down_write+0x43/0x57 -[ 1081.903846] [] ? btrfs_alloc_data_chunk_ondemand+0x1f6/0x288 [btrfs] -[ 1081.906078] [] btrfs_alloc_data_chunk_ondemand+0x1f6/0x288 [btrfs] -[ 1081.908846] [] ? mark_held_locks+0x56/0x6c -[ 1081.910409] [] btrfs_check_data_free_space+0x40/0x59 [btrfs] -[ 1081.912482] [] btrfs_delalloc_reserve_space+0x1e/0x4e [btrfs] -[ 1081.914597] [] btrfs_direct_IO+0x10c/0x27e [btrfs] -[ 1081.919037] [] generic_file_direct_write+0xb3/0x128 -[ 1081.920754] [] btrfs_file_write_iter+0x229/0x408 [btrfs] -[ 1081.922496] [] ? __lock_is_held+0x38/0x50 -[ 1081.923922] [] __vfs_write+0x7c/0xa5 -[ 1081.925275] [] vfs_write+0xa0/0xe4 -[ 1081.926584] [] SyS_write+0x50/0x7e -[ 1081.927968] [] entry_SYSCALL_64_fastpath+0x12/0x6f -[ 1081.985293] INFO: lockdep is turned off. -[ 1081.986132] INFO: task fio:8249 blocked for more than 120 seconds. -[ 1081.987434] Not tainted 4.4.0-rc6-btrfs-next-18+ #1 -[ 1081.988534] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -[ 1081.990147] fio D ffff880218febbb8 0 8249 8240 0x00000000 -[ 1081.991626] ffff880218febbb8 00ffffff81486b8e ffff88020000000b ffff88023ed75240 -[ 1081.993258] ffff8802120a9a00 ffff880218fec000 ffff88020a4d5318 ffff8802120a9a00 -[ 1081.994850] ffffffff00000001 ffff8802120a9a00 ffff880218febbd0 ffffffff81482ba4 -[ 1081.996485] Call Trace: -[ 1081.997037] [] schedule+0x7f/0x97 -[ 1081.998017] [] rwsem_down_write_failed+0x2d5/0x325 -[ 1081.999241] [] ? finish_wait+0x6d/0x76 -[ 1082.000306] [] call_rwsem_down_write_failed+0x13/0x20 -[ 1082.001533] [] ? call_rwsem_down_write_failed+0x13/0x20 -[ 1082.002776] [] ? __down_write_nested.isra.0+0x1f/0x21 -[ 1082.003995] [] down_write+0x43/0x57 -[ 1082.005000] [] ? btrfs_alloc_data_chunk_ondemand+0x1f6/0x288 [btrfs] -[ 1082.007403] [] btrfs_alloc_data_chunk_ondemand+0x1f6/0x288 [btrfs] -[ 1082.008988] [] btrfs_fallocate+0x7c1/0xc2f [btrfs] -[ 1082.010193] [] ? percpu_down_read+0x4e/0x77 -[ 1082.011280] [] ? __sb_start_write+0x5f/0xb0 -[ 1082.012265] [] ? __sb_start_write+0x5f/0xb0 -[ 1082.013021] [] vfs_fallocate+0x170/0x1ff -[ 1082.013738] [] ioctl_preallocate+0x89/0x9b -[ 1082.014778] [] do_vfs_ioctl+0x40a/0x4ea -[ 1082.015778] [] ? SYSC_newfstat+0x25/0x2e -[ 1082.016806] [] ? __fget_light+0x4d/0x71 -[ 1082.017789] [] SyS_ioctl+0x57/0x79 -[ 1082.018706] [] entry_SYSCALL_64_fastpath+0x12/0x6f - -This happens because we can recursively acquire the semaphore -fs_info->delayed_iput_sem when attempting to allocate space to satisfy -a file write request as shown in the first trace above - when committing -a transaction we acquire (down_read) the semaphore before running the -delayed iputs, and when running a delayed iput() we can end up calling -an inode's eviction handler, which in turn commits another transaction -and attempts to acquire (down_read) again the semaphore to run more -delayed iput operations. -This results in a deadlock because if a task acquires multiple times a -semaphore it should invoke down_read_nested() with a different lockdep -class for each level of recursion. - -Fix this by simplifying the implementation and use a mutex instead that -is acquired by the cleaner kthread before it runs the delayed iputs -instead of always acquiring a semaphore before delayed references are -run from anywhere. - -Fixes: d7c151717a1e (btrfs: Fix NO_SPACE bug caused by delayed-iput) -Signed-off-by: Filipe Manana -Signed-off-by: Chris Mason -Signed-off-by: Greg Kroah-Hartman - ---- - fs/btrfs/ctree.h | 2 +- - fs/btrfs/disk-io.c | 5 ++++- - fs/btrfs/extent-tree.c | 9 +++++---- - fs/btrfs/inode.c | 4 ---- - 4 files changed, 10 insertions(+), 10 deletions(-) - ---- a/fs/btrfs/ctree.h -+++ b/fs/btrfs/ctree.h -@@ -1572,7 +1572,7 @@ struct btrfs_fs_info { - - spinlock_t delayed_iput_lock; - struct list_head delayed_iputs; -- struct rw_semaphore delayed_iput_sem; -+ struct mutex cleaner_delayed_iput_mutex; - - /* this protects tree_mod_seq_list */ - spinlock_t tree_mod_seq_lock; ---- a/fs/btrfs/disk-io.c -+++ b/fs/btrfs/disk-io.c -@@ -1796,7 +1796,10 @@ static int cleaner_kthread(void *arg) - goto sleep; - } - -+ mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex); - btrfs_run_delayed_iputs(root); -+ mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex); -+ - again = btrfs_clean_one_deleted_snapshot(root); - mutex_unlock(&root->fs_info->cleaner_mutex); - -@@ -2556,8 +2559,8 @@ int open_ctree(struct super_block *sb, - mutex_init(&fs_info->delete_unused_bgs_mutex); - mutex_init(&fs_info->reloc_mutex); - mutex_init(&fs_info->delalloc_root_mutex); -+ mutex_init(&fs_info->cleaner_delayed_iput_mutex); - seqlock_init(&fs_info->profiles_lock); -- init_rwsem(&fs_info->delayed_iput_sem); - - INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots); - INIT_LIST_HEAD(&fs_info->space_info); ---- a/fs/btrfs/extent-tree.c -+++ b/fs/btrfs/extent-tree.c -@@ -4100,11 +4100,12 @@ commit_trans: - if (ret) - return ret; - /* -- * make sure that all running delayed iput are -- * done -+ * The cleaner kthread might still be doing iput -+ * operations. Wait for it to finish so that -+ * more space is released. - */ -- down_write(&root->fs_info->delayed_iput_sem); -- up_write(&root->fs_info->delayed_iput_sem); -+ mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex); -+ mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex); - goto again; - } else { - btrfs_end_transaction(trans, root); ---- a/fs/btrfs/inode.c -+++ b/fs/btrfs/inode.c -@@ -3142,8 +3142,6 @@ void btrfs_run_delayed_iputs(struct btrf - if (empty) - return; - -- down_read(&fs_info->delayed_iput_sem); -- - spin_lock(&fs_info->delayed_iput_lock); - list_splice_init(&fs_info->delayed_iputs, &list); - spin_unlock(&fs_info->delayed_iput_lock); -@@ -3154,8 +3152,6 @@ void btrfs_run_delayed_iputs(struct btrf - iput(delayed->inode); - kfree(delayed); - } -- -- up_read(&root->fs_info->delayed_iput_sem); - } - - /* diff --git a/kernel/kernel/files/patches/mageia/stable-btrfs-fix-no_space-in-write-and-rm-loop.patch b/kernel/kernel/files/patches/mageia/stable-btrfs-fix-no_space-in-write-and-rm-loop.patch deleted file mode 100644 index 6197e535..00000000 --- a/kernel/kernel/files/patches/mageia/stable-btrfs-fix-no_space-in-write-and-rm-loop.patch +++ /dev/null @@ -1,47 +0,0 @@ -From e1746e8381cd2af421f75557b5cae3604fc18b35 Mon Sep 17 00:00:00 2001 -From: Zhao Lei -Date: Tue, 1 Dec 2015 18:39:40 +0800 -Subject: btrfs: Fix no_space in write and rm loop - -From: Zhao Lei - -commit e1746e8381cd2af421f75557b5cae3604fc18b35 upstream. - -I see no_space in v4.4-rc1 again in xfstests generic/102. -It happened randomly in some node only. -(one of 4 phy-node, and a kvm with non-virtio block driver) - -By bisect, we can found the first-bad is: - commit bdced438acd8 ("block: setup bi_phys_segments after splitting")' -But above patch only triggered the bug by making bio operation -faster(or slower). - -Main reason is in our space_allocating code, we need to commit -page writeback before wait it complish, this patch fixed above -bug. - -BTW, there is another reason for generic/102 fail, caused by -disable default mixed-blockgroup, I'll fix it in xfstests. - -Signed-off-by: Zhao Lei -Signed-off-by: Chris Mason -Signed-off-by: Greg Kroah-Hartman - ---- - fs/btrfs/extent-tree.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - ---- a/fs/btrfs/extent-tree.c -+++ b/fs/btrfs/extent-tree.c -@@ -4086,8 +4086,10 @@ commit_trans: - !atomic_read(&root->fs_info->open_ioctl_trans)) { - need_commit--; - -- if (need_commit > 0) -+ if (need_commit > 0) { -+ btrfs_start_delalloc_roots(fs_info, 0, -1); - btrfs_wait_ordered_roots(fs_info, -1); -+ } - - trans = btrfs_join_transaction(root); - if (IS_ERR(trans)) diff --git a/kernel/kernel/files/patches/mageia/stable-cifs-fix-out-of-bounds-access-in-lease-parsing.patch b/kernel/kernel/files/patches/mageia/stable-cifs-fix-out-of-bounds-access-in-lease-parsing.patch deleted file mode 100644 index f29a9f19..00000000 --- a/kernel/kernel/files/patches/mageia/stable-cifs-fix-out-of-bounds-access-in-lease-parsing.patch +++ /dev/null @@ -1,104 +0,0 @@ -From deb7deff2f00bdbbcb3d560dad2a89ef37df837d Mon Sep 17 00:00:00 2001 -From: Justin Maggard -Date: Tue, 9 Feb 2016 15:52:08 -0800 -Subject: cifs: fix out-of-bounds access in lease parsing - -From: Justin Maggard - -commit deb7deff2f00bdbbcb3d560dad2a89ef37df837d upstream. - -When opening a file, SMB2_open() attempts to parse the lease state from the -SMB2 CREATE Response. However, the parsing code was not careful to ensure -that the create contexts are not empty or invalid, which can lead to out- -of-bounds memory access. This can be seen easily by trying -to read a file from a OSX 10.11 SMB3 server. Here is sample crash output: - -BUG: unable to handle kernel paging request at ffff8800a1a77cc6 -IP: [] SMB2_open+0x804/0x960 -PGD 8f77067 PUD 0 -Oops: 0000 [#1] SMP -Modules linked in: -CPU: 3 PID: 2876 Comm: cp Not tainted 4.5.0-rc3.x86_64.1+ #14 -Hardware name: NETGEAR ReadyNAS 314 /ReadyNAS 314 , BIOS 4.6.5 10/11/2012 -task: ffff880073cdc080 ti: ffff88005b31c000 task.ti: ffff88005b31c000 -RIP: 0010:[] [] SMB2_open+0x804/0x960 -RSP: 0018:ffff88005b31fa08 EFLAGS: 00010282 -RAX: 0000000000000015 RBX: 0000000000000000 RCX: 0000000000000006 -RDX: 0000000000000000 RSI: 0000000000000246 RDI: ffff88007eb8c8b0 -RBP: ffff88005b31fad8 R08: 666666203d206363 R09: 6131613030383866 -R10: 3030383866666666 R11: 00000000000002b0 R12: ffff8800660fd800 -R13: ffff8800a1a77cc2 R14: 00000000424d53fe R15: ffff88005f5a28c0 -FS: 00007f7c8a2897c0(0000) GS:ffff88007eb80000(0000) knlGS:0000000000000000 -CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b -CR2: ffff8800a1a77cc6 CR3: 000000005b281000 CR4: 00000000000006e0 -Stack: - ffff88005b31fa70 ffffffff88278789 00000000000001d3 ffff88005f5a2a80 - ffffffff00000003 ffff88005d029d00 ffff88006fde05a0 0000000000000000 - ffff88005b31fc78 ffff88006fde0780 ffff88005b31fb2f 0000000100000fe0 -Call Trace: - [] ? cifsConvertToUTF16+0x159/0x2d0 - [] smb2_open_file+0x98/0x210 - [] ? __kmalloc+0x1c/0xe0 - [] cifs_open+0x2a4/0x720 - [] do_dentry_open+0x1ff/0x310 - [] ? cifsFileInfo_get+0x30/0x30 - [] vfs_open+0x52/0x60 - [] path_openat+0x170/0xf70 - [] ? remove_wait_queue+0x48/0x50 - [] do_filp_open+0x79/0xd0 - [] ? __alloc_fd+0x3a/0x170 - [] do_sys_open+0x114/0x1e0 - [] SyS_open+0x19/0x20 - [] entry_SYSCALL_64_fastpath+0x12/0x6a -Code: 4d 8d 6c 07 04 31 c0 4c 89 ee e8 47 6f e5 ff 31 c9 41 89 ce 44 89 f1 48 c7 c7 28 b1 bd 88 31 c0 49 01 cd 4c 89 ee e8 2b 6f e5 ff <45> 0f b7 75 04 48 c7 c7 31 b1 bd 88 31 c0 4d 01 ee 4c 89 f6 e8 -RIP [] SMB2_open+0x804/0x960 - RSP -CR2: ffff8800a1a77cc6 ----[ end trace d9f69ba64feee469 ]--- - -Signed-off-by: Justin Maggard -Signed-off-by: Steve French -Signed-off-by: Greg Kroah-Hartman - ---- - fs/cifs/smb2pdu.c | 24 ++++++++++++++---------- - 1 file changed, 14 insertions(+), 10 deletions(-) - ---- a/fs/cifs/smb2pdu.c -+++ b/fs/cifs/smb2pdu.c -@@ -1109,21 +1109,25 @@ parse_lease_state(struct TCP_Server_Info - { - char *data_offset; - struct create_context *cc; -- unsigned int next = 0; -+ unsigned int next; -+ unsigned int remaining; - char *name; - - data_offset = (char *)rsp + 4 + le32_to_cpu(rsp->CreateContextsOffset); -+ remaining = le32_to_cpu(rsp->CreateContextsLength); - cc = (struct create_context *)data_offset; -- do { -- cc = (struct create_context *)((char *)cc + next); -+ while (remaining >= sizeof(struct create_context)) { - name = le16_to_cpu(cc->NameOffset) + (char *)cc; -- if (le16_to_cpu(cc->NameLength) != 4 || -- strncmp(name, "RqLs", 4)) { -- next = le32_to_cpu(cc->Next); -- continue; -- } -- return server->ops->parse_lease_buf(cc, epoch); -- } while (next != 0); -+ if (le16_to_cpu(cc->NameLength) == 4 && -+ strncmp(name, "RqLs", 4) == 0) -+ return server->ops->parse_lease_buf(cc, epoch); -+ -+ next = le32_to_cpu(cc->Next); -+ if (!next) -+ break; -+ remaining -= next; -+ cc = (struct create_context *)((char *)cc + next); -+ } - - return 0; - } diff --git a/kernel/kernel/files/patches/mageia/stable-cifs-fix-smb2-interim-response-processing-for-read-requests.patch b/kernel/kernel/files/patches/mageia/stable-cifs-fix-smb2-interim-response-processing-for-read-requests.patch deleted file mode 100644 index 49789516..00000000 --- a/kernel/kernel/files/patches/mageia/stable-cifs-fix-smb2-interim-response-processing-for-read-requests.patch +++ /dev/null @@ -1,72 +0,0 @@ -From 6cc3b24235929b54acd5ecc987ef11a425bd209e Mon Sep 17 00:00:00 2001 -From: Pavel Shilovsky -Date: Sat, 27 Feb 2016 11:58:18 +0300 -Subject: CIFS: Fix SMB2+ interim response processing for read requests - -From: Pavel Shilovsky - -commit 6cc3b24235929b54acd5ecc987ef11a425bd209e upstream. - -For interim responses we only need to parse a header and update -a number credits. Now it is done for all SMB2+ command except -SMB2_READ which is wrong. Fix this by adding such processing. - -Signed-off-by: Pavel Shilovsky -Tested-by: Shirish Pargaonkar -Signed-off-by: Steve French -Signed-off-by: Greg Kroah-Hartman - ---- - fs/cifs/cifssmb.c | 21 ++++++++++++++++++--- - 1 file changed, 18 insertions(+), 3 deletions(-) - ---- a/fs/cifs/cifssmb.c -+++ b/fs/cifs/cifssmb.c -@@ -1396,11 +1396,10 @@ openRetry: - * current bigbuf. - */ - static int --cifs_readv_discard(struct TCP_Server_Info *server, struct mid_q_entry *mid) -+discard_remaining_data(struct TCP_Server_Info *server) - { - unsigned int rfclen = get_rfc1002_length(server->smallbuf); - int remaining = rfclen + 4 - server->total_read; -- struct cifs_readdata *rdata = mid->callback_data; - - while (remaining > 0) { - int length; -@@ -1414,10 +1413,20 @@ cifs_readv_discard(struct TCP_Server_Inf - remaining -= length; - } - -- dequeue_mid(mid, rdata->result); - return 0; - } - -+static int -+cifs_readv_discard(struct TCP_Server_Info *server, struct mid_q_entry *mid) -+{ -+ int length; -+ struct cifs_readdata *rdata = mid->callback_data; -+ -+ length = discard_remaining_data(server); -+ dequeue_mid(mid, rdata->result); -+ return length; -+} -+ - int - cifs_readv_receive(struct TCP_Server_Info *server, struct mid_q_entry *mid) - { -@@ -1446,6 +1455,12 @@ cifs_readv_receive(struct TCP_Server_Inf - return length; - server->total_read += length; - -+ if (server->ops->is_status_pending && -+ server->ops->is_status_pending(buf, server, 0)) { -+ discard_remaining_data(server); -+ return -1; -+ } -+ - /* Was the SMB read successful? */ - rdata->result = server->ops->map_error(buf, false); - if (rdata->result != 0) { diff --git a/kernel/kernel/files/patches/mageia/stable-drivers-sh-restore-legacy-clock-domain-on-superh-platforms.patch b/kernel/kernel/files/patches/mageia/stable-drivers-sh-restore-legacy-clock-domain-on-superh-platforms.patch deleted file mode 100644 index e0f47f2d..00000000 --- a/kernel/kernel/files/patches/mageia/stable-drivers-sh-restore-legacy-clock-domain-on-superh-platforms.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 0378ba4899d5fbd8494ed6580cbc81d7b44dbac6 Mon Sep 17 00:00:00 2001 -From: Geert Uytterhoeven -Date: Wed, 24 Feb 2016 09:43:23 +0100 -Subject: drivers: sh: Restore legacy clock domain on SuperH platforms - -From: Geert Uytterhoeven - -commit 0378ba4899d5fbd8494ed6580cbc81d7b44dbac6 upstream. - -CONFIG_ARCH_SHMOBILE is not only enabled for Renesas ARM platforms -(which are DT based and multi-platform), but also on a select set of -Renesas SuperH platforms (SH7722/SH7723/SH7724/SH7343/SH7366). Hence -since commit 0ba58de231066e47 ("drivers: sh: Get rid of -CONFIG_ARCH_SHMOBILE_MULTI"), the legacy clock domain is no longer -installed on these SuperH platforms, and module clocks may not be -enabled when needed, leading to driver failures. - -To fix this, add an additional check for CONFIG_OF. - -Fixes: 0ba58de231066e47 ("drivers: sh: Get rid of CONFIG_ARCH_SHMOBILE_MULTI"). -Signed-off-by: Geert Uytterhoeven -Signed-off-by: Simon Horman -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/sh/pm_runtime.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/drivers/sh/pm_runtime.c -+++ b/drivers/sh/pm_runtime.c -@@ -34,7 +34,7 @@ static struct pm_clk_notifier_block plat - - static int __init sh_pm_runtime_init(void) - { -- if (IS_ENABLED(CONFIG_ARCH_SHMOBILE)) { -+ if (IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_ARCH_SHMOBILE)) { - if (!of_find_compatible_node(NULL, NULL, - "renesas,cpg-mstp-clocks")) - return 0; diff --git a/kernel/kernel/files/patches/mageia/stable-drm-amdgpu-mask-out-wc-from-bo-on-unsupported-arches.patch b/kernel/kernel/files/patches/mageia/stable-drm-amdgpu-mask-out-wc-from-bo-on-unsupported-arches.patch deleted file mode 100644 index fedcd4e3..00000000 --- a/kernel/kernel/files/patches/mageia/stable-drm-amdgpu-mask-out-wc-from-bo-on-unsupported-arches.patch +++ /dev/null @@ -1,46 +0,0 @@ -From a187f17f0e15a046aa5d7263b35df55230d92779 Mon Sep 17 00:00:00 2001 -From: Oded Gabbay -Date: Sat, 30 Jan 2016 07:59:34 +0200 -Subject: drm/amdgpu: mask out WC from BO on unsupported arches -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -From: Oded Gabbay - -commit a187f17f0e15a046aa5d7263b35df55230d92779 upstream. - -Reviewed-by: Christian König -Reviewed-by: Michel Dänzer -Signed-off-by: Oded Gabbay -Signed-off-by: Alex Deucher -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - ---- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c -+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c -@@ -33,6 +33,7 @@ - #include - #include - #include -+#include - #include "amdgpu.h" - #include "amdgpu_trace.h" - -@@ -261,6 +262,13 @@ int amdgpu_bo_create_restricted(struct a - AMDGPU_GEM_DOMAIN_OA); - - bo->flags = flags; -+ -+ /* For architectures that don't support WC memory, -+ * mask out the WC flag from the BO -+ */ -+ if (!drm_arch_can_wc_memory()) -+ bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC; -+ - amdgpu_fill_placement_to_bo(bo, placement); - /* Kernel allocation are uninterruptible */ - r = ttm_bo_init(&adev->mman.bdev, &bo->tbo, size, type, diff --git a/kernel/kernel/files/patches/mageia/stable-fbcon-set-a-default-value-to-blink-interval.patch b/kernel/kernel/files/patches/mageia/stable-fbcon-set-a-default-value-to-blink-interval.patch deleted file mode 100644 index 4f006707..00000000 --- a/kernel/kernel/files/patches/mageia/stable-fbcon-set-a-default-value-to-blink-interval.patch +++ /dev/null @@ -1,66 +0,0 @@ -From a1e533ec07d583d01349ef13c0c965b8633e1b91 Mon Sep 17 00:00:00 2001 -From: Jean-Philippe Brucker -Date: Mon, 15 Feb 2016 18:41:33 +0000 -Subject: fbcon: set a default value to blink interval - -From: Jean-Philippe Brucker - -commit a1e533ec07d583d01349ef13c0c965b8633e1b91 upstream. - -Since commit 27a4c827c34ac4256a190cc9d24607f953c1c459 - fbcon: use the cursor blink interval provided by vt - -two attempts have been made at fixing a possible hang caused by -cursor_timer_handler. That function registers a timer to be triggered at -"jiffies + fbcon_ops.cur_blink_jiffies". - -A new case had been encountered during initialisation of clcd-pl11x: - - fbcon_fb_registered - do_fbcon_takeover - - -> do_register_con_driver - fbcon_startup - (A) add_cursor_timer (with cur_blink_jiffies = 0) - - -> do_bind_con_driver - visual_init - fbcon_init - (B) cur_blink_jiffies = msecs_to_jiffies(vc->vc_cur_blink_ms); - -If we take an softirq anywhere between A and B (and we do), -cursor_timer_handler executes indefinitely. - -Instead of patching all possible paths that lead to this case one at a -time, fix the issue at the source and initialise cur_blink_jiffies to -200ms when allocating fbcon_ops. This was its default value before -aforesaid commit. fbcon_cursor or fbcon_init will refine this value -downstream. - -Signed-off-by: Jean-Philippe Brucker -Tested-by: Scot Doyle -Signed-off-by: Tomi Valkeinen -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/video/console/fbcon.c | 2 ++ - 1 file changed, 2 insertions(+) - ---- a/drivers/video/console/fbcon.c -+++ b/drivers/video/console/fbcon.c -@@ -709,6 +709,7 @@ static int con2fb_acquire_newinfo(struct - } - - if (!err) { -+ ops->cur_blink_jiffies = HZ / 5; - info->fbcon_par = ops; - - if (vc) -@@ -956,6 +957,7 @@ static const char *fbcon_startup(void) - ops->currcon = -1; - ops->graphics = 1; - ops->cur_rotate = -1; -+ ops->cur_blink_jiffies = HZ / 5; - info->fbcon_par = ops; - p->con_rotate = initial_rotation; - set_blitting_type(vc, info); diff --git a/kernel/kernel/files/patches/mageia/stable-fix-cifs_uniqueid_to_ino_t-function-for-s390x.patch b/kernel/kernel/files/patches/mageia/stable-fix-cifs_uniqueid_to_ino_t-function-for-s390x.patch deleted file mode 100644 index 966e1f1f..00000000 --- a/kernel/kernel/files/patches/mageia/stable-fix-cifs_uniqueid_to_ino_t-function-for-s390x.patch +++ /dev/null @@ -1,63 +0,0 @@ -From 1ee9f4bd1a97026a7b2d7ae9f1f74b45680d0003 Mon Sep 17 00:00:00 2001 -From: Yadan Fan -Date: Mon, 29 Feb 2016 14:44:57 +0800 -Subject: Fix cifs_uniqueid_to_ino_t() function for s390x - -From: Yadan Fan - -commit 1ee9f4bd1a97026a7b2d7ae9f1f74b45680d0003 upstream. - -This issue is caused by commit 02323db17e3a7 ("cifs: fix -cifs_uniqueid_to_ino_t not to ever return 0"), when BITS_PER_LONG -is 64 on s390x, the corresponding cifs_uniqueid_to_ino_t() -function will cast 64-bit fileid to 32-bit by using (ino_t)fileid, -because ino_t (typdefed __kernel_ino_t) is int type. - -It's defined in arch/s390/include/uapi/asm/posix_types.h - - #ifndef __s390x__ - - typedef unsigned long __kernel_ino_t; - ... - #else /* __s390x__ */ - - typedef unsigned int __kernel_ino_t; - -So the #ifdef condition is wrong for s390x, we can just still use -one cifs_uniqueid_to_ino_t() function with comparing sizeof(ino_t) -and sizeof(u64) to choose the correct execution accordingly. - -Signed-off-by: Yadan Fan -Signed-off-by: Steve French -Signed-off-by: Greg Kroah-Hartman - ---- - fs/cifs/cifsfs.h | 12 ++++-------- - 1 file changed, 4 insertions(+), 8 deletions(-) - ---- a/fs/cifs/cifsfs.h -+++ b/fs/cifs/cifsfs.h -@@ -31,19 +31,15 @@ - * so that it will fit. We use hash_64 to convert the value to 31 bits, and - * then add 1, to ensure that we don't end up with a 0 as the value. - */ --#if BITS_PER_LONG == 64 - static inline ino_t - cifs_uniqueid_to_ino_t(u64 fileid) - { -+ if ((sizeof(ino_t)) < (sizeof(u64))) -+ return (ino_t)hash_64(fileid, (sizeof(ino_t) * 8) - 1) + 1; -+ - return (ino_t)fileid; -+ - } --#else --static inline ino_t --cifs_uniqueid_to_ino_t(u64 fileid) --{ -- return (ino_t)hash_64(fileid, (sizeof(ino_t) * 8) - 1) + 1; --} --#endif - - extern struct file_system_type cifs_fs_type; - extern const struct address_space_operations cifs_addr_ops; diff --git a/kernel/kernel/files/patches/mageia/stable-iommu-amd-apply-workaround-for-ats-write-permission-check.patch b/kernel/kernel/files/patches/mageia/stable-iommu-amd-apply-workaround-for-ats-write-permission-check.patch deleted file mode 100644 index 2b6ca214..00000000 --- a/kernel/kernel/files/patches/mageia/stable-iommu-amd-apply-workaround-for-ats-write-permission-check.patch +++ /dev/null @@ -1,78 +0,0 @@ -From 358875fd52ab8f00f66328cbf1a1d2486f265829 Mon Sep 17 00:00:00 2001 -From: Jay Cornwall -Date: Wed, 10 Feb 2016 15:48:01 -0600 -Subject: iommu/amd: Apply workaround for ATS write permission check - -From: Jay Cornwall - -commit 358875fd52ab8f00f66328cbf1a1d2486f265829 upstream. - -The AMD Family 15h Models 30h-3Fh (Kaveri) BIOS and Kernel Developer's -Guide omitted part of the BIOS IOMMU L2 register setup specification. -Without this setup the IOMMU L2 does not fully respect write permissions -when handling an ATS translation request. - -The IOMMU L2 will set PTE dirty bit when handling an ATS translation with -write permission request, even when PTE RW bit is clear. This may occur by -direct translation (which would cause a PPR) or by prefetch request from -the ATC. - -This is observed in practice when the IOMMU L2 modifies a PTE which maps a -pagecache page. The ext4 filesystem driver BUGs when asked to writeback -these (non-modified) pages. - -Enable ATS write permission check in the Kaveri IOMMU L2 if BIOS has not. - -Signed-off-by: Jay Cornwall -Signed-off-by: Joerg Roedel -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/iommu/amd_iommu_init.c | 29 +++++++++++++++++++++++++++++ - 1 file changed, 29 insertions(+) - ---- a/drivers/iommu/amd_iommu_init.c -+++ b/drivers/iommu/amd_iommu_init.c -@@ -1016,6 +1016,34 @@ static void amd_iommu_erratum_746_workar - } - - /* -+ * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission) -+ * Workaround: -+ * BIOS should enable ATS write permission check by setting -+ * L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b -+ */ -+static void amd_iommu_ats_write_check_workaround(struct amd_iommu *iommu) -+{ -+ u32 value; -+ -+ if ((boot_cpu_data.x86 != 0x15) || -+ (boot_cpu_data.x86_model < 0x30) || -+ (boot_cpu_data.x86_model > 0x3f)) -+ return; -+ -+ /* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */ -+ value = iommu_read_l2(iommu, 0x47); -+ -+ if (value & BIT(0)) -+ return; -+ -+ /* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */ -+ iommu_write_l2(iommu, 0x47, value | BIT(0)); -+ -+ pr_info("AMD-Vi: Applying ATS write check workaround for IOMMU at %s\n", -+ dev_name(&iommu->dev->dev)); -+} -+ -+/* - * This function clues the initialization function for one IOMMU - * together and also allocates the command buffer and programs the - * hardware. It does NOT enable the IOMMU. This is done afterwards. -@@ -1284,6 +1312,7 @@ static int iommu_init_pci(struct amd_iom - } - - amd_iommu_erratum_746_workaround(iommu); -+ amd_iommu_ats_write_check_workaround(iommu); - - iommu->iommu_dev = iommu_device_create(&iommu->dev->dev, iommu, - amd_iommu_groups, "ivhd%d", diff --git a/kernel/kernel/files/patches/mageia/stable-iommu-amd-fix-boot-warning-when-device-00-00.0-is-not-iommu-covered.patch b/kernel/kernel/files/patches/mageia/stable-iommu-amd-fix-boot-warning-when-device-00-00.0-is-not-iommu-covered.patch deleted file mode 100644 index 3d0cee23..00000000 --- a/kernel/kernel/files/patches/mageia/stable-iommu-amd-fix-boot-warning-when-device-00-00.0-is-not-iommu-covered.patch +++ /dev/null @@ -1,92 +0,0 @@ -From 38e45d02ea9f194b89d6bf41e52ccafc8e2c2b47 Mon Sep 17 00:00:00 2001 -From: Suravee Suthikulpanit -Date: Tue, 23 Feb 2016 13:03:30 +0100 -Subject: iommu/amd: Fix boot warning when device 00:00.0 is not iommu covered - -From: Suravee Suthikulpanit - -commit 38e45d02ea9f194b89d6bf41e52ccafc8e2c2b47 upstream. - -The setup code for the performance counters in the AMD IOMMU driver -tests whether the counters can be written. It tests to setup a counter -for device 00:00.0, which fails on systems where this particular device -is not covered by the IOMMU. - -Fix this by not relying on device 00:00.0 but only on the IOMMU being -present. - -Signed-off-by: Suravee Suthikulpanit -Signed-off-by: Joerg Roedel -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/iommu/amd_iommu_init.c | 34 ++++++++++++++++++++++------------ - 1 file changed, 22 insertions(+), 12 deletions(-) - ---- a/drivers/iommu/amd_iommu_init.c -+++ b/drivers/iommu/amd_iommu_init.c -@@ -228,6 +228,10 @@ static int amd_iommu_enable_interrupts(v - static int __init iommu_go_to_state(enum iommu_init_state state); - static void init_device_table_dma(void); - -+static int iommu_pc_get_set_reg_val(struct amd_iommu *iommu, -+ u8 bank, u8 cntr, u8 fxn, -+ u64 *value, bool is_write); -+ - static inline void update_last_devid(u16 devid) - { - if (devid > amd_iommu_last_bdf) -@@ -1170,8 +1174,8 @@ static void init_iommu_perf_ctr(struct a - amd_iommu_pc_present = true; - - /* Check if the performance counters can be written to */ -- if ((0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val, true)) || -- (0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val2, false)) || -+ if ((0 != iommu_pc_get_set_reg_val(iommu, 0, 0, 0, &val, true)) || -+ (0 != iommu_pc_get_set_reg_val(iommu, 0, 0, 0, &val2, false)) || - (val != val2)) { - pr_err("AMD-Vi: Unable to write to IOMMU perf counter.\n"); - amd_iommu_pc_present = false; -@@ -2312,22 +2316,15 @@ u8 amd_iommu_pc_get_max_counters(u16 dev - } - EXPORT_SYMBOL(amd_iommu_pc_get_max_counters); - --int amd_iommu_pc_get_set_reg_val(u16 devid, u8 bank, u8 cntr, u8 fxn, -+static int iommu_pc_get_set_reg_val(struct amd_iommu *iommu, -+ u8 bank, u8 cntr, u8 fxn, - u64 *value, bool is_write) - { -- struct amd_iommu *iommu; - u32 offset; - u32 max_offset_lim; - -- /* Make sure the IOMMU PC resource is available */ -- if (!amd_iommu_pc_present) -- return -ENODEV; -- -- /* Locate the iommu associated with the device ID */ -- iommu = amd_iommu_rlookup_table[devid]; -- - /* Check for valid iommu and pc register indexing */ -- if (WARN_ON((iommu == NULL) || (fxn > 0x28) || (fxn & 7))) -+ if (WARN_ON((fxn > 0x28) || (fxn & 7))) - return -ENODEV; - - offset = (u32)(((0x40|bank) << 12) | (cntr << 8) | fxn); -@@ -2351,3 +2348,16 @@ int amd_iommu_pc_get_set_reg_val(u16 dev - return 0; - } - EXPORT_SYMBOL(amd_iommu_pc_get_set_reg_val); -+ -+int amd_iommu_pc_get_set_reg_val(u16 devid, u8 bank, u8 cntr, u8 fxn, -+ u64 *value, bool is_write) -+{ -+ struct amd_iommu *iommu = amd_iommu_rlookup_table[devid]; -+ -+ /* Make sure the IOMMU PC resource is available */ -+ if (!amd_iommu_pc_present || iommu == NULL) -+ return -ENODEV; -+ -+ return iommu_pc_get_set_reg_val(iommu, bank, cntr, fxn, -+ value, is_write); -+} diff --git a/kernel/kernel/files/patches/mageia/stable-iommu-vt-d-use-bus_notify_removed_device-in-hotplug-path.patch b/kernel/kernel/files/patches/mageia/stable-iommu-vt-d-use-bus_notify_removed_device-in-hotplug-path.patch deleted file mode 100644 index 9250c977..00000000 --- a/kernel/kernel/files/patches/mageia/stable-iommu-vt-d-use-bus_notify_removed_device-in-hotplug-path.patch +++ /dev/null @@ -1,68 +0,0 @@ -From e6a8c9b337eed56eb481e1b4dd2180c25a1e5310 Mon Sep 17 00:00:00 2001 -From: Joerg Roedel -Date: Mon, 29 Feb 2016 23:49:47 +0100 -Subject: iommu/vt-d: Use BUS_NOTIFY_REMOVED_DEVICE in hotplug path - -From: Joerg Roedel - -commit e6a8c9b337eed56eb481e1b4dd2180c25a1e5310 upstream. - -In the PCI hotplug path of the Intel IOMMU driver, replace -the usage of the BUS_NOTIFY_DEL_DEVICE notifier, which is -executed before the driver is unbound from the device, with -BUS_NOTIFY_REMOVED_DEVICE, which runs after that. - -This fixes a kernel BUG being triggered in the VT-d code -when the device driver tries to unmap DMA buffers and the -VT-d driver already destroyed all mappings. - -Reported-by: Stefani Seibold -Signed-off-by: Joerg Roedel -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/iommu/dmar.c | 5 +++-- - drivers/iommu/intel-iommu.c | 4 ++-- - 2 files changed, 5 insertions(+), 4 deletions(-) - ---- a/drivers/iommu/dmar.c -+++ b/drivers/iommu/dmar.c -@@ -329,7 +329,8 @@ static int dmar_pci_bus_notifier(struct - /* Only care about add/remove events for physical functions */ - if (pdev->is_virtfn) - return NOTIFY_DONE; -- if (action != BUS_NOTIFY_ADD_DEVICE && action != BUS_NOTIFY_DEL_DEVICE) -+ if (action != BUS_NOTIFY_ADD_DEVICE && -+ action != BUS_NOTIFY_REMOVED_DEVICE) - return NOTIFY_DONE; - - info = dmar_alloc_pci_notify_info(pdev, action); -@@ -339,7 +340,7 @@ static int dmar_pci_bus_notifier(struct - down_write(&dmar_global_lock); - if (action == BUS_NOTIFY_ADD_DEVICE) - dmar_pci_bus_add_dev(info); -- else if (action == BUS_NOTIFY_DEL_DEVICE) -+ else if (action == BUS_NOTIFY_REMOVED_DEVICE) - dmar_pci_bus_del_dev(info); - up_write(&dmar_global_lock); - ---- a/drivers/iommu/intel-iommu.c -+++ b/drivers/iommu/intel-iommu.c -@@ -4367,7 +4367,7 @@ int dmar_iommu_notify_scope_dev(struct d - rmrru->devices_cnt); - if(ret < 0) - return ret; -- } else if (info->event == BUS_NOTIFY_DEL_DEVICE) { -+ } else if (info->event == BUS_NOTIFY_REMOVED_DEVICE) { - dmar_remove_dev_scope(info, rmrr->segment, - rmrru->devices, rmrru->devices_cnt); - } -@@ -4387,7 +4387,7 @@ int dmar_iommu_notify_scope_dev(struct d - break; - else if(ret < 0) - return ret; -- } else if (info->event == BUS_NOTIFY_DEL_DEVICE) { -+ } else if (info->event == BUS_NOTIFY_REMOVED_DEVICE) { - if (dmar_remove_dev_scope(info, atsr->segment, - atsru->devices, atsru->devices_cnt)) - break; diff --git a/kernel/kernel/files/patches/mageia/stable-kvm-x86-fix-root-cause-for-missed-hardware-breakpoints.patch b/kernel/kernel/files/patches/mageia/stable-kvm-x86-fix-root-cause-for-missed-hardware-breakpoints.patch deleted file mode 100644 index 19c33135..00000000 --- a/kernel/kernel/files/patches/mageia/stable-kvm-x86-fix-root-cause-for-missed-hardware-breakpoints.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 70e4da7a8ff62f2775337b705f45c804bb450454 Mon Sep 17 00:00:00 2001 -From: Paolo Bonzini -Date: Fri, 26 Feb 2016 12:28:40 +0100 -Subject: KVM: x86: fix root cause for missed hardware breakpoints - -From: Paolo Bonzini - -commit 70e4da7a8ff62f2775337b705f45c804bb450454 upstream. - -Commit 172b2386ed16 ("KVM: x86: fix missed hardware breakpoints", -2016-02-10) worked around a case where the debug registers are not loaded -correctly on preemption and on the first entry to KVM_RUN. - -However, Xiao Guangrong pointed out that the root cause must be that -KVM_DEBUGREG_BP_ENABLED is not being set correctly. This can indeed -happen due to the lazy debug exit mechanism, which does not call -kvm_update_dr7. Fix it by replacing the existing loop (more or less -equivalent to kvm_update_dr0123) with calls to all the kvm_update_dr* -functions. - -Fixes: 172b2386ed16a9143d9a456aae5ec87275c61489 -Reviewed-by: Xiao Guangrong -Signed-off-by: Paolo Bonzini -Signed-off-by: Greg Kroah-Hartman - ---- - arch/x86/kvm/x86.c | 9 ++++----- - 1 file changed, 4 insertions(+), 5 deletions(-) - ---- a/arch/x86/kvm/x86.c -+++ b/arch/x86/kvm/x86.c -@@ -2736,7 +2736,6 @@ void kvm_arch_vcpu_load(struct kvm_vcpu - } - - kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu); -- vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD; - } - - void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) -@@ -6545,12 +6544,12 @@ static int vcpu_enter_guest(struct kvm_v - * KVM_DEBUGREG_WONT_EXIT again. - */ - if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) { -- int i; -- - WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP); - kvm_x86_ops->sync_dirty_debug_regs(vcpu); -- for (i = 0; i < KVM_NR_DB_REGS; i++) -- vcpu->arch.eff_db[i] = vcpu->arch.db[i]; -+ kvm_update_dr0123(vcpu); -+ kvm_update_dr6(vcpu); -+ kvm_update_dr7(vcpu); -+ vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD; - } - - /* diff --git a/kernel/kernel/files/patches/mageia/stable-kvm-x86-update-tsc-multiplier-on-change.patch b/kernel/kernel/files/patches/mageia/stable-kvm-x86-update-tsc-multiplier-on-change.patch deleted file mode 100644 index ea436218..00000000 --- a/kernel/kernel/files/patches/mageia/stable-kvm-x86-update-tsc-multiplier-on-change.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 2680d6da455b636dd006636780c0f235c6561d70 Mon Sep 17 00:00:00 2001 -From: Owen Hofmann -Date: Tue, 1 Mar 2016 13:36:13 -0800 -Subject: kvm: x86: Update tsc multiplier on change. - -From: Owen Hofmann - -commit 2680d6da455b636dd006636780c0f235c6561d70 upstream. - -vmx.c writes the TSC_MULTIPLIER field in vmx_vcpu_load, but only when a -vcpu has migrated physical cpus. Record the last value written and -update in vmx_vcpu_load on any change, otherwise a cpu migration must -occur for TSC frequency scaling to take effect. - -Fixes: ff2c3a1803775cc72dc6f624b59554956396b0ee -Signed-off-by: Owen Hofmann -Signed-off-by: Paolo Bonzini -Signed-off-by: Greg Kroah-Hartman - ---- - arch/x86/kvm/vmx.c | 14 +++++++++----- - 1 file changed, 9 insertions(+), 5 deletions(-) - ---- a/arch/x86/kvm/vmx.c -+++ b/arch/x86/kvm/vmx.c -@@ -595,6 +595,8 @@ struct vcpu_vmx { - /* Support for PML */ - #define PML_ENTITY_NUM 512 - struct page *pml_pg; -+ -+ u64 current_tsc_ratio; - }; - - enum segment_cache_field { -@@ -2062,14 +2064,16 @@ static void vmx_vcpu_load(struct kvm_vcp - rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp); - vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */ - -- /* Setup TSC multiplier */ -- if (cpu_has_vmx_tsc_scaling()) -- vmcs_write64(TSC_MULTIPLIER, -- vcpu->arch.tsc_scaling_ratio); -- - vmx->loaded_vmcs->cpu = cpu; - } - -+ /* Setup TSC multiplier */ -+ if (kvm_has_tsc_control && -+ vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio) { -+ vmx->current_tsc_ratio = vcpu->arch.tsc_scaling_ratio; -+ vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio); -+ } -+ - vmx_vcpu_pi_load(vcpu, cpu); - } - diff --git a/kernel/kernel/files/patches/mageia/stable-mips-kvm-fix-ioctl-error-handling.patch b/kernel/kernel/files/patches/mageia/stable-mips-kvm-fix-ioctl-error-handling.patch deleted file mode 100644 index aa79661b..00000000 --- a/kernel/kernel/files/patches/mageia/stable-mips-kvm-fix-ioctl-error-handling.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 0178fd7dcc4451fcb90bec5e91226586962478d2 Mon Sep 17 00:00:00 2001 -From: "Michael S. Tsirkin" -Date: Sun, 28 Feb 2016 17:35:59 +0200 -Subject: mips/kvm: fix ioctl error handling - -From: Michael S. Tsirkin - -commit 0178fd7dcc4451fcb90bec5e91226586962478d2 upstream. - -Returning directly whatever copy_to_user(...) or copy_from_user(...) -returns may not do the right thing if there's a pagefault: -copy_to_user/copy_from_user return the number of bytes not copied in -this case, but ioctls need to return -EFAULT instead. - -Fix up kvm on mips to do - return copy_to_user(...)) ? -EFAULT : 0; -and - return copy_from_user(...)) ? -EFAULT : 0; - -everywhere. - -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Paolo Bonzini -Signed-off-by: Greg Kroah-Hartman - ---- - arch/mips/kvm/mips.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/arch/mips/kvm/mips.c -+++ b/arch/mips/kvm/mips.c -@@ -702,7 +702,7 @@ static int kvm_mips_get_reg(struct kvm_v - } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U128) { - void __user *uaddr = (void __user *)(long)reg->addr; - -- return copy_to_user(uaddr, vs, 16); -+ return copy_to_user(uaddr, vs, 16) ? -EFAULT : 0; - } else { - return -EINVAL; - } -@@ -732,7 +732,7 @@ static int kvm_mips_set_reg(struct kvm_v - } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U128) { - void __user *uaddr = (void __user *)(long)reg->addr; - -- return copy_from_user(vs, uaddr, 16); -+ return copy_from_user(vs, uaddr, 16) ? -EFAULT : 0; - } else { - return -EINVAL; - } diff --git a/kernel/kernel/files/patches/mageia/stable-parisc-fix-ptrace-syscall-number-and-return-value-modification.patch b/kernel/kernel/files/patches/mageia/stable-parisc-fix-ptrace-syscall-number-and-return-value-modification.patch deleted file mode 100644 index ef7b3cca..00000000 --- a/kernel/kernel/files/patches/mageia/stable-parisc-fix-ptrace-syscall-number-and-return-value-modification.patch +++ /dev/null @@ -1,94 +0,0 @@ -From 98e8b6c9ac9d1b1e9d1122dfa6783d5d566bb8f7 Mon Sep 17 00:00:00 2001 -From: Helge Deller -Date: Tue, 19 Jan 2016 16:08:49 +0100 -Subject: parisc: Fix ptrace syscall number and return value modification - -From: Helge Deller - -commit 98e8b6c9ac9d1b1e9d1122dfa6783d5d566bb8f7 upstream. - -Mike Frysinger reported that his ptrace testcase showed strange -behaviour on parisc: It was not possible to avoid a syscall and the -return value of a syscall couldn't be changed. - -To modify a syscall number, we were missing to save the new syscall -number to gr20 which is then picked up later in assembly again. - -The effect that the return value couldn't be changed is a side-effect of -another bug in the assembly code. When a process is ptraced, userspace -expects each syscall to report entrance and exit of a syscall. If a -syscall number was given which doesn't exist, we jumped to the normal -syscall exit code instead of informing userspace that the (non-existant) -syscall exits. This unexpected behaviour confuses userspace and thus the -bug was misinterpreted as if we can't change the return value. - -This patch fixes both problems and was tested on 64bit kernel with -32bit userspace. - -Signed-off-by: Helge Deller -Cc: Mike Frysinger -Tested-by: Mike Frysinger -Signed-off-by: Greg Kroah-Hartman - ---- - arch/parisc/kernel/ptrace.c | 16 +++++++++++----- - arch/parisc/kernel/syscall.S | 5 ++++- - 2 files changed, 15 insertions(+), 6 deletions(-) - ---- a/arch/parisc/kernel/ptrace.c -+++ b/arch/parisc/kernel/ptrace.c -@@ -269,14 +269,19 @@ long compat_arch_ptrace(struct task_stru - - long do_syscall_trace_enter(struct pt_regs *regs) - { -- long ret = 0; -- - /* Do the secure computing check first. */ - secure_computing_strict(regs->gr[20]); - - if (test_thread_flag(TIF_SYSCALL_TRACE) && -- tracehook_report_syscall_entry(regs)) -- ret = -1L; -+ tracehook_report_syscall_entry(regs)) { -+ /* -+ * Tracing decided this syscall should not happen or the -+ * debugger stored an invalid system call number. Skip -+ * the system call and the system call restart handling. -+ */ -+ regs->gr[20] = -1UL; -+ goto out; -+ } - - #ifdef CONFIG_64BIT - if (!is_compat_task()) -@@ -290,7 +295,8 @@ long do_syscall_trace_enter(struct pt_re - regs->gr[24] & 0xffffffff, - regs->gr[23] & 0xffffffff); - -- return ret ? : regs->gr[20]; -+out: -+ return regs->gr[20]; - } - - void do_syscall_trace_exit(struct pt_regs *regs) ---- a/arch/parisc/kernel/syscall.S -+++ b/arch/parisc/kernel/syscall.S -@@ -343,7 +343,7 @@ tracesys_next: - #endif - - comiclr,>>= __NR_Linux_syscalls, %r20, %r0 -- b,n .Lsyscall_nosys -+ b,n .Ltracesys_nosys - - LDREGX %r20(%r19), %r19 - -@@ -359,6 +359,9 @@ tracesys_next: - be 0(%sr7,%r19) - ldo R%tracesys_exit(%r2),%r2 - -+.Ltracesys_nosys: -+ ldo -ENOSYS(%r0),%r28 /* set errno */ -+ - /* Do *not* call this function on the gateway page, because it - makes a direct call to syscall_trace. */ - diff --git a/kernel/kernel/files/patches/mageia/stable-pci-keystone-fix-msi-code-that-retrieves-struct-pcie_port-pointer.patch b/kernel/kernel/files/patches/mageia/stable-pci-keystone-fix-msi-code-that-retrieves-struct-pcie_port-pointer.patch deleted file mode 100644 index e598869f..00000000 --- a/kernel/kernel/files/patches/mageia/stable-pci-keystone-fix-msi-code-that-retrieves-struct-pcie_port-pointer.patch +++ /dev/null @@ -1,78 +0,0 @@ -From 79e3f4a853ed161cd4c06d84b50beebf961a47c6 Mon Sep 17 00:00:00 2001 -From: Murali Karicheri -Date: Mon, 29 Feb 2016 17:18:22 -0600 -Subject: PCI: keystone: Fix MSI code that retrieves struct pcie_port pointer - -From: Murali Karicheri - -commit 79e3f4a853ed161cd4c06d84b50beebf961a47c6 upstream. - -Commit cbce7900598c ("PCI: designware: Make driver arch-agnostic") changed -the host bridge sysdata pointer from the ARM pci_sys_data to the DesignWare -pcie_port structure, and changed pcie-designware.c to reflect that. But it -did not change the corresponding code in pci-keystone-dw.c, so it caused -crashes on Keystone: - - Unable to handle kernel NULL pointer dereference at virtual address 00000030 - pgd = c0003000 - [00000030] *pgd=80000800004003, *pmd=00000000 - Internal error: Oops: 206 [#1] PREEMPT SMP ARM - CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.2-00139-gb74f926 #2 - Hardware name: Keystone - PC is at ks_dw_pcie_msi_irq_unmask+0x24/0x58 - -Change pci-keystone-dw.c to expect sysdata to be the struct pcie_port -pointer. - -[bhelgaas: changelog] -Fixes: cbce7900598c ("PCI: designware: Make driver arch-agnostic") -Signed-off-by: Murali Karicheri -Signed-off-by: Bjorn Helgaas -CC: Zhou Wang -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/pci/host/pci-keystone-dw.c | 11 +++-------- - 1 file changed, 3 insertions(+), 8 deletions(-) - ---- a/drivers/pci/host/pci-keystone-dw.c -+++ b/drivers/pci/host/pci-keystone-dw.c -@@ -58,11 +58,6 @@ - - #define to_keystone_pcie(x) container_of(x, struct keystone_pcie, pp) - --static inline struct pcie_port *sys_to_pcie(struct pci_sys_data *sys) --{ -- return sys->private_data; --} -- - static inline void update_reg_offset_bit_pos(u32 offset, u32 *reg_offset, - u32 *bit_pos) - { -@@ -108,7 +103,7 @@ static void ks_dw_pcie_msi_irq_ack(struc - struct pcie_port *pp; - - msi = irq_data_get_msi_desc(d); -- pp = sys_to_pcie(msi_desc_to_pci_sysdata(msi)); -+ pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi); - ks_pcie = to_keystone_pcie(pp); - offset = d->irq - irq_linear_revmap(pp->irq_domain, 0); - update_reg_offset_bit_pos(offset, ®_offset, &bit_pos); -@@ -146,7 +141,7 @@ static void ks_dw_pcie_msi_irq_mask(stru - u32 offset; - - msi = irq_data_get_msi_desc(d); -- pp = sys_to_pcie(msi_desc_to_pci_sysdata(msi)); -+ pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi); - ks_pcie = to_keystone_pcie(pp); - offset = d->irq - irq_linear_revmap(pp->irq_domain, 0); - -@@ -167,7 +162,7 @@ static void ks_dw_pcie_msi_irq_unmask(st - u32 offset; - - msi = irq_data_get_msi_desc(d); -- pp = sys_to_pcie(msi_desc_to_pci_sysdata(msi)); -+ pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi); - ks_pcie = to_keystone_pcie(pp); - offset = d->irq - irq_linear_revmap(pp->irq_domain, 0); - diff --git a/kernel/kernel/files/patches/mageia/stable-use-d_seq-to-get-coherency-between-d_inode-and-d_flags.patch b/kernel/kernel/files/patches/mageia/stable-use-d_seq-to-get-coherency-between-d_inode-and-d_flags.patch deleted file mode 100644 index b68d85b9..00000000 --- a/kernel/kernel/files/patches/mageia/stable-use-d_seq-to-get-coherency-between-d_inode-and-d_flags.patch +++ /dev/null @@ -1,100 +0,0 @@ -From a528aca7f359f4b0b1d72ae406097e491a5ba9ea Mon Sep 17 00:00:00 2001 -From: Al Viro -Date: Mon, 29 Feb 2016 12:12:46 -0500 -Subject: use ->d_seq to get coherency between ->d_inode and ->d_flags - -From: Al Viro - -commit a528aca7f359f4b0b1d72ae406097e491a5ba9ea upstream. - -Games with ordering and barriers are way too brittle. Just -bump ->d_seq before and after updating ->d_inode and ->d_flags -type bits, so that verifying ->d_seq would guarantee they are -coherent. - -Signed-off-by: Al Viro -Signed-off-by: Greg Kroah-Hartman - ---- - fs/dcache.c | 20 +++++--------------- - include/linux/dcache.h | 4 +--- - 2 files changed, 6 insertions(+), 18 deletions(-) - ---- a/fs/dcache.c -+++ b/fs/dcache.c -@@ -269,9 +269,6 @@ static inline int dname_external(const s - return dentry->d_name.name != dentry->d_iname; - } - --/* -- * Make sure other CPUs see the inode attached before the type is set. -- */ - static inline void __d_set_inode_and_type(struct dentry *dentry, - struct inode *inode, - unsigned type_flags) -@@ -279,28 +276,18 @@ static inline void __d_set_inode_and_typ - unsigned flags; - - dentry->d_inode = inode; -- smp_wmb(); - flags = READ_ONCE(dentry->d_flags); - flags &= ~(DCACHE_ENTRY_TYPE | DCACHE_FALLTHRU); - flags |= type_flags; - WRITE_ONCE(dentry->d_flags, flags); - } - --/* -- * Ideally, we want to make sure that other CPUs see the flags cleared before -- * the inode is detached, but this is really a violation of RCU principles -- * since the ordering suggests we should always set inode before flags. -- * -- * We should instead replace or discard the entire dentry - but that sucks -- * performancewise on mass deletion/rename. -- */ - static inline void __d_clear_type_and_inode(struct dentry *dentry) - { - unsigned flags = READ_ONCE(dentry->d_flags); - - flags &= ~(DCACHE_ENTRY_TYPE | DCACHE_FALLTHRU); - WRITE_ONCE(dentry->d_flags, flags); -- smp_wmb(); - dentry->d_inode = NULL; - } - -@@ -370,9 +357,11 @@ static void dentry_unlink_inode(struct d - __releases(dentry->d_inode->i_lock) - { - struct inode *inode = dentry->d_inode; -+ -+ raw_write_seqcount_begin(&dentry->d_seq); - __d_clear_type_and_inode(dentry); - hlist_del_init(&dentry->d_u.d_alias); -- dentry_rcuwalk_invalidate(dentry); -+ raw_write_seqcount_end(&dentry->d_seq); - spin_unlock(&dentry->d_lock); - spin_unlock(&inode->i_lock); - if (!inode->i_nlink) -@@ -1757,8 +1746,9 @@ static void __d_instantiate(struct dentr - spin_lock(&dentry->d_lock); - if (inode) - hlist_add_head(&dentry->d_u.d_alias, &inode->i_dentry); -+ raw_write_seqcount_begin(&dentry->d_seq); - __d_set_inode_and_type(dentry, inode, add_flags); -- dentry_rcuwalk_invalidate(dentry); -+ raw_write_seqcount_end(&dentry->d_seq); - spin_unlock(&dentry->d_lock); - fsnotify_d_instantiate(dentry, inode); - } ---- a/include/linux/dcache.h -+++ b/include/linux/dcache.h -@@ -409,9 +409,7 @@ static inline bool d_mountpoint(const st - */ - static inline unsigned __d_entry_type(const struct dentry *dentry) - { -- unsigned type = READ_ONCE(dentry->d_flags); -- smp_rmb(); -- return type & DCACHE_ENTRY_TYPE; -+ return dentry->d_flags & DCACHE_ENTRY_TYPE; - } - - static inline bool d_is_miss(const struct dentry *dentry) diff --git a/kernel/kernel/files/patches/mageia/stable-vfio-fix-ioctl-error-handling.patch b/kernel/kernel/files/patches/mageia/stable-vfio-fix-ioctl-error-handling.patch deleted file mode 100644 index 9b803d1e..00000000 --- a/kernel/kernel/files/patches/mageia/stable-vfio-fix-ioctl-error-handling.patch +++ /dev/null @@ -1,116 +0,0 @@ -From 8160c4e455820d5008a1116d2dca35f0363bb062 Mon Sep 17 00:00:00 2001 -From: "Michael S. Tsirkin" -Date: Sun, 28 Feb 2016 16:31:39 +0200 -Subject: vfio: fix ioctl error handling - -From: Michael S. Tsirkin - -commit 8160c4e455820d5008a1116d2dca35f0363bb062 upstream. - -Calling return copy_to_user(...) in an ioctl will not -do the right thing if there's a pagefault: -copy_to_user returns the number of bytes not copied -in this case. - -Fix up vfio to do - return copy_to_user(...)) ? - -EFAULT : 0; - -everywhere. - -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Alex Williamson -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/vfio/pci/vfio_pci.c | 9 ++++++--- - drivers/vfio/platform/vfio_platform_common.c | 9 ++++++--- - drivers/vfio/vfio_iommu_type1.c | 6 ++++-- - 3 files changed, 16 insertions(+), 8 deletions(-) - ---- a/drivers/vfio/pci/vfio_pci.c -+++ b/drivers/vfio/pci/vfio_pci.c -@@ -446,7 +446,8 @@ static long vfio_pci_ioctl(void *device_ - info.num_regions = VFIO_PCI_NUM_REGIONS; - info.num_irqs = VFIO_PCI_NUM_IRQS; - -- return copy_to_user((void __user *)arg, &info, minsz); -+ return copy_to_user((void __user *)arg, &info, minsz) ? -+ -EFAULT : 0; - - } else if (cmd == VFIO_DEVICE_GET_REGION_INFO) { - struct pci_dev *pdev = vdev->pdev; -@@ -520,7 +521,8 @@ static long vfio_pci_ioctl(void *device_ - return -EINVAL; - } - -- return copy_to_user((void __user *)arg, &info, minsz); -+ return copy_to_user((void __user *)arg, &info, minsz) ? -+ -EFAULT : 0; - - } else if (cmd == VFIO_DEVICE_GET_IRQ_INFO) { - struct vfio_irq_info info; -@@ -555,7 +557,8 @@ static long vfio_pci_ioctl(void *device_ - else - info.flags |= VFIO_IRQ_INFO_NORESIZE; - -- return copy_to_user((void __user *)arg, &info, minsz); -+ return copy_to_user((void __user *)arg, &info, minsz) ? -+ -EFAULT : 0; - - } else if (cmd == VFIO_DEVICE_SET_IRQS) { - struct vfio_irq_set hdr; ---- a/drivers/vfio/platform/vfio_platform_common.c -+++ b/drivers/vfio/platform/vfio_platform_common.c -@@ -219,7 +219,8 @@ static long vfio_platform_ioctl(void *de - info.num_regions = vdev->num_regions; - info.num_irqs = vdev->num_irqs; - -- return copy_to_user((void __user *)arg, &info, minsz); -+ return copy_to_user((void __user *)arg, &info, minsz) ? -+ -EFAULT : 0; - - } else if (cmd == VFIO_DEVICE_GET_REGION_INFO) { - struct vfio_region_info info; -@@ -240,7 +241,8 @@ static long vfio_platform_ioctl(void *de - info.size = vdev->regions[info.index].size; - info.flags = vdev->regions[info.index].flags; - -- return copy_to_user((void __user *)arg, &info, minsz); -+ return copy_to_user((void __user *)arg, &info, minsz) ? -+ -EFAULT : 0; - - } else if (cmd == VFIO_DEVICE_GET_IRQ_INFO) { - struct vfio_irq_info info; -@@ -259,7 +261,8 @@ static long vfio_platform_ioctl(void *de - info.flags = vdev->irqs[info.index].flags; - info.count = vdev->irqs[info.index].count; - -- return copy_to_user((void __user *)arg, &info, minsz); -+ return copy_to_user((void __user *)arg, &info, minsz) ? -+ -EFAULT : 0; - - } else if (cmd == VFIO_DEVICE_SET_IRQS) { - struct vfio_irq_set hdr; ---- a/drivers/vfio/vfio_iommu_type1.c -+++ b/drivers/vfio/vfio_iommu_type1.c -@@ -999,7 +999,8 @@ static long vfio_iommu_type1_ioctl(void - - info.iova_pgsizes = vfio_pgsize_bitmap(iommu); - -- return copy_to_user((void __user *)arg, &info, minsz); -+ return copy_to_user((void __user *)arg, &info, minsz) ? -+ -EFAULT : 0; - - } else if (cmd == VFIO_IOMMU_MAP_DMA) { - struct vfio_iommu_type1_dma_map map; -@@ -1032,7 +1033,8 @@ static long vfio_iommu_type1_ioctl(void - if (ret) - return ret; - -- return copy_to_user((void __user *)arg, &unmap, minsz); -+ return copy_to_user((void __user *)arg, &unmap, minsz) ? -+ -EFAULT : 0; - } - - return -ENOTTY; diff --git a/kernel/kernel/pspec.xml b/kernel/kernel/pspec.xml index 711aba36..f4bf2d2c 100644 --- a/kernel/kernel/pspec.xml +++ b/kernel/kernel/pspec.xml @@ -28,35 +28,11 @@ - patches/linux/patch-4.4.4.xz - + patches/linux/patch-4.4.8.xz + - patches/mageia/stable-use-d_seq-to-get-coherency-between-d_inode-and-d_flags.patch - patches/mageia/stable-drivers-sh-restore-legacy-clock-domain-on-superh-platforms.patch - patches/mageia/stable-btrfs-fix-deadlock-running-delayed-iputs-at-transaction-commit-time.patch - patches/mageia/stable-btrfs-fix-no_space-in-write-and-rm-loop.patch - patches/mageia/stable-btrfs-async-thread-fix-a-use-after-free-error-for-trace.patch - patches/mageia/stable-drm-amdgpu-mask-out-wc-from-bo-on-unsupported-arches.patch - patches/mageia/stable-block-initialize-max_dev_sectors-to-0.patch - patches/mageia/stable-pci-keystone-fix-msi-code-that-retrieves-struct-pcie_port-pointer.patch - patches/mageia/stable-parisc-fix-ptrace-syscall-number-and-return-value-modification.patch - patches/mageia/stable-mips-kvm-fix-ioctl-error-handling.patch - patches/mageia/stable-kvm-x86-update-tsc-multiplier-on-change.patch - patches/mageia/stable-fbcon-set-a-default-value-to-blink-interval.patch - patches/mageia/stable-cifs-fix-out-of-bounds-access-in-lease-parsing.patch - patches/mageia/stable-cifs-fix-smb2-interim-response-processing-for-read-requests.patch - patches/mageia/stable-fix-cifs_uniqueid_to_ino_t-function-for-s390x.patch - patches/mageia/stable-vfio-fix-ioctl-error-handling.patch - patches/mageia/stable-kvm-x86-fix-root-cause-for-missed-hardware-breakpoints.patch - patches/mageia/stable-arm-arm64-kvm-fix-ioctl-error-handling.patch - patches/mageia/stable-iommu-amd-apply-workaround-for-ats-write-permission-check.patch - patches/mageia/stable-iommu-amd-fix-boot-warning-when-device-00-00.0-is-not-iommu-covered.patch - patches/mageia/stable-iommu-vt-d-use-bus_notify_removed_device-in-hotplug-path.patch - patches/mageia/ata-Adding-Intel-Lewisburg-device-IDs-for-SATA.patch - patches/mageia/ata-ahci-don-t-mark-HotPlugCapable-Ports-as-external.patch - patches/mageia/libata-Align-ata_device-s-id-on-a-cacheline.patch - patches/mageia/libata-fix-HDIO_GET_32BIT-ioctl.patch + patches/mageia/Revert-ipmi-Start-the-timer-and-thread-on-internal-m.patch patches/mageia/x86-pci-toshiba-equium-a60-assign-busses.patch patches/mageia/x86-boot-video-80x25-if-break.patch patches/mageia/x86-default_poweroff_up_machines.patch @@ -85,6 +61,7 @@ patches/mageia/fs-aufs-4.4.patch patches/mageia/fs-aufs-4.4-modular.patch patches/mageia/fs-ovl-move-super-block-magic-number-to-magic.h.patch + patches/mageia/pipe-limit-the-per-user-amount-of-pages-allocated-in-pipes_CVE-2016-2847.patch patches/mageia/firewire-ieee1394-module-aliases.patch patches/mageia/char-agp-intel-new-Q57-id.patch patches/mageia/gpu-drm-mach64.patch @@ -134,6 +111,8 @@ patches/mageia/net-netfilter-psd.patch patches/mageia/net-netfilter-psd-mdv.patch patches/mageia/net-netfilter-psd-2.6.35-buildfix.patch + patches/mageia/net-netfilter-x_tables-check-for-size-overflow.patch + patches/mageia/net-netfilter-x_tables-deal-with-bogus-nextoffset-values.patch patches/mageia/platform-x86-add-shuttle-wmi-driver.patch patches/mageia/platform-x86-shuttle-wmi-drop-devinit-exit.patch patches/mageia/platform-x86-shuttle-wmi-4.2-buildfix.patch @@ -182,7 +161,6 @@ patches/mageia/arm-0024-ARM-bcm2835-Add-the-auxiliary-clocks-to-the-device-t.patch patches/mageia/arm-0031-ARM-bcm2835-enable-all-bcm2835-relevant-in-defconfig.patch patches/mageia/arm-0032-ARM-bcm2835-enable-auxiliary-spi-driver-in-defconfig.patch - mageia/net-netfilter-IFWLOG-remove-unused-label.patch @@ -197,7 +175,7 @@ /boot /lib/modules /etc/kernel - /etc/mkinitcpio.d + /etc/mkinitcpio.d System.Package @@ -239,12 +217,16 @@ 2016-04-27 - 4.4.4 - Release Bump - PisiLinux Community - admin@pisilinux.org + 4.4.8 + Version Bump. + security + + systemRestart + + Ertuğrul Erata + ertugrulerata@gmail.com - + 2016-03-06 4.4.4 First release @@ -254,6 +236,6 @@ Ertuğrul Erata ertugrulerata@gmail.com - + diff --git a/pisi-index.xml b/pisi-index.xml index c69d4260..8c7d9ac9 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -403,6 +403,92 @@ glibc-32bit + + + libpng + http://www.libpng.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.graphics + Portable Network Graphics library + PNG kütüphanesi + Le format de Graphique Réseau Portable (Portable Network Graphics - PNG) a été conçu pour remplacer le format GIF plus simple et vieillissant ainsi que, d'une certaine manière, le format TIFF beaucoup plus complexe. L'objectif principal du projet est de se concentrer sur deux aspects majeurs : La toile mondiale (World Wide Web - WWW) et l'édition d'image. + The Portable Network Graphics (PNG) format was designed to replace the older and simpler GIF format and, to some extent, the much more complex TIFF format. Project's main aim is to concentrate on two major uses: the World Wide Web (WWW) and image-editing. + Taşınabilir Ağ Grafikleri (PNG) formatı eski ve daha basit GIF formatının yerine geçmek ve daha karmaşık yapıdaki TIFF formatını biraz daha genişletmek için tasarlanmıştır. Projenin ana hedefi iki önemli parça üzerine konsantre olmaktır: World Wide Web (WWW) ve resim düzenleme. + mirrors://sourceforge/libpng/libpng-1.6.21.tar.xz + + zlib-devel + + + libpng-1.6.21-apng.patch.gz + libpng-multilib.patch + + multimedia/graphics/libpng/pspec.xml + + + libpng + + zlib + + + /usr/lib + /usr/share/doc + + + + libpng-devel + Development files for libpng + libpng için geliştirme dosyaları + + libpng + zlib-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libpng-32bit + 32-bit shared libraries for libpng + libpng için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + zlib-32bit + + + libpng + zlib-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 1.6.21 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.6.21 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + kernel @@ -434,32 +520,8 @@ xmlto - patches/linux/patch-4.4.4.xz - patches/mageia/stable-use-d_seq-to-get-coherency-between-d_inode-and-d_flags.patch - patches/mageia/stable-drivers-sh-restore-legacy-clock-domain-on-superh-platforms.patch - patches/mageia/stable-btrfs-fix-deadlock-running-delayed-iputs-at-transaction-commit-time.patch - patches/mageia/stable-btrfs-fix-no_space-in-write-and-rm-loop.patch - patches/mageia/stable-btrfs-async-thread-fix-a-use-after-free-error-for-trace.patch - patches/mageia/stable-drm-amdgpu-mask-out-wc-from-bo-on-unsupported-arches.patch - patches/mageia/stable-block-initialize-max_dev_sectors-to-0.patch - patches/mageia/stable-pci-keystone-fix-msi-code-that-retrieves-struct-pcie_port-pointer.patch - patches/mageia/stable-parisc-fix-ptrace-syscall-number-and-return-value-modification.patch - patches/mageia/stable-mips-kvm-fix-ioctl-error-handling.patch - patches/mageia/stable-kvm-x86-update-tsc-multiplier-on-change.patch - patches/mageia/stable-fbcon-set-a-default-value-to-blink-interval.patch - patches/mageia/stable-cifs-fix-out-of-bounds-access-in-lease-parsing.patch - patches/mageia/stable-cifs-fix-smb2-interim-response-processing-for-read-requests.patch - patches/mageia/stable-fix-cifs_uniqueid_to_ino_t-function-for-s390x.patch - patches/mageia/stable-vfio-fix-ioctl-error-handling.patch - patches/mageia/stable-kvm-x86-fix-root-cause-for-missed-hardware-breakpoints.patch - patches/mageia/stable-arm-arm64-kvm-fix-ioctl-error-handling.patch - patches/mageia/stable-iommu-amd-apply-workaround-for-ats-write-permission-check.patch - patches/mageia/stable-iommu-amd-fix-boot-warning-when-device-00-00.0-is-not-iommu-covered.patch - patches/mageia/stable-iommu-vt-d-use-bus_notify_removed_device-in-hotplug-path.patch - patches/mageia/ata-Adding-Intel-Lewisburg-device-IDs-for-SATA.patch - patches/mageia/ata-ahci-don-t-mark-HotPlugCapable-Ports-as-external.patch - patches/mageia/libata-Align-ata_device-s-id-on-a-cacheline.patch - patches/mageia/libata-fix-HDIO_GET_32BIT-ioctl.patch + patches/linux/patch-4.4.8.xz + patches/mageia/Revert-ipmi-Start-the-timer-and-thread-on-internal-m.patch patches/mageia/x86-pci-toshiba-equium-a60-assign-busses.patch patches/mageia/x86-boot-video-80x25-if-break.patch patches/mageia/x86-default_poweroff_up_machines.patch @@ -482,6 +544,7 @@ patches/mageia/fs-aufs-4.4.patch patches/mageia/fs-aufs-4.4-modular.patch patches/mageia/fs-ovl-move-super-block-magic-number-to-magic.h.patch + patches/mageia/pipe-limit-the-per-user-amount-of-pages-allocated-in-pipes_CVE-2016-2847.patch patches/mageia/firewire-ieee1394-module-aliases.patch patches/mageia/char-agp-intel-new-Q57-id.patch patches/mageia/gpu-drm-mach64.patch @@ -531,6 +594,8 @@ patches/mageia/net-netfilter-psd.patch patches/mageia/net-netfilter-psd-mdv.patch patches/mageia/net-netfilter-psd-2.6.35-buildfix.patch + patches/mageia/net-netfilter-x_tables-check-for-size-overflow.patch + patches/mageia/net-netfilter-x_tables-deal-with-bogus-nextoffset-values.patch patches/mageia/platform-x86-add-shuttle-wmi-driver.patch patches/mageia/platform-x86-shuttle-wmi-drop-devinit-exit.patch patches/mageia/platform-x86-shuttle-wmi-4.2-buildfix.patch @@ -593,7 +658,7 @@ /boot /lib/modules /etc/kernel - /etc/mkinitcpio.d + /etc/mkinitcpio.d System.Package @@ -635,11 +700,15 @@ + security 2016-04-27 - 4.4.4 - Release Bump - PisiLinux Community - admin@pisilinux.org + 4.4.8 + Version Bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + systemRestart + security @@ -654,6 +723,69 @@ + + + mkinitramfs + http://www.busybox.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + kernel.tools + A tool to create the initramfs image + initramfs image dosyası yaratmak için araç + Un outil pour créer les images initramfs + mkinitramfs contains a tool to create the initramfs image with busybox. + initramfs image dosyası yaratmak için araç + http://source.pisilinux.org/1.0/README.mkinitramfs + kernel/tools/mkinitramfs/pspec.xml + + + mkinitramfs + + disktype + busybox + device-mapper-static + lvm2-static + mdadm-static + + + /etc + /sbin + /lib/initramfs + /usr/share/doc/mkinitramfs + + + System.PackageHandler + + + mkinitramfs + init + udhcpc.script + hotplug + profile.rc + initramfs.conf + + + + + 2016-04-27 + 1.0.7 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.0.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + cpupowertools @@ -783,69 +915,6 @@ - - - mkinitramfs - http://www.busybox.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - kernel.tools - A tool to create the initramfs image - initramfs image dosyası yaratmak için araç - Un outil pour créer les images initramfs - mkinitramfs contains a tool to create the initramfs image with busybox. - initramfs image dosyası yaratmak için araç - http://source.pisilinux.org/1.0/README.mkinitramfs - kernel/tools/mkinitramfs/pspec.xml - - - mkinitramfs - - disktype - busybox - device-mapper-static - lvm2-static - mdadm-static - - - /etc - /sbin - /lib/initramfs - /usr/share/doc/mkinitramfs - - - System.PackageHandler - - - mkinitramfs - init - udhcpc.script - hotplug - profile.rc - initramfs.conf - - - - - 2016-04-27 - 1.0.7 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.0.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - module-virtualbox @@ -975,87 +1044,6 @@ - - - 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-40.patch - 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 - patch/0018-cfg80211_disconnected.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 - - - - - 2016-04-27 - 6.30.223.248 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-07 - 6.30.223.248 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - module-bbswitch @@ -1179,6 +1167,383 @@ + + + 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-40.patch + 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 + patch/0018-cfg80211_disconnected.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 + + + + + 2016-04-27 + 6.30.223.248 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-07 + 6.30.223.248 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + slang + http://www.jedsoft.org/slang/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + Artistic + app:console + programming.library + Console display library used by most text viewer + Bir çok metin gösterici yazılım tarfından kullanılan konsol görüntüleme kütüphanesi + S-Lang est une librarie de programmation multi-plateforme conçue pour permettre aux développeur de développer des logiciels robustes et portables. Elle fournit les mécanismes requis pour développer une application interactive telle que la gestion d'affichages/écrans, entrées clavier, disposition de touches et ainsi de suite. La fonctionnalité la plus attractive de cette librairie reste l'interpréteur slang qui peut être embarqué au sein même d'un programme pour le rendre extensible. + S-Lang is a multi-platform programmer's library designed to allow a developer to create robust multi-platform software. It provides facilities required by interactive applications such as display/screen management, keyboard input, keymaps, and so on. The most exciting feature of the library is the slang interpreter that may be easily embedded into a program to make it extensible. + S-lang, yazılım geliştiricilerin bütün işletim sistemlerinde çalışabilen güçlü uygulamalar geliştirmesine yardımcı olan bir uygulama kitaplığıdır. İnteraktif uygulamalar için ekran yönetimi ve klavye girişi gibi araçlar sunar. Kitaplığın en ilginç özelliği programların içine kolayca gömülebilen ve programı genişletilebilir kılan slang yorumlayıcısıdır. + ftp://ftp.ntua.gr/pub/lang/slang/slang/v2.2/slang-2.2.4.tar.bz2 + + libpng-devel + libpcre-devel + ncurses-devel + readline-devel + zlib-devel + + programming/library/slang/pspec.xml + + + slang + + libpng + libpcre + zlib + + + /etc + /usr/bin + /usr/share/slsh + /usr/lib + /usr/share/doc/slang + /usr/share/man + + + + slang-devel + Development files for slang + slang için geliştirme dosyaları + system.devel + + slang + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/slang/html + /usr/share/man/man3 + + + + + 2016-04-27 + 2.2.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-11 + 2.2.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + docbook-xml + http://www.docbook.org/xml/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + data + office.docbook + Docbook XML DTD + Docbook XML DTD + Contains Docbook DTD for XML. A widely used XML scheme for writing documentation and help + Docbook XML belirtimi (DTD) sürümlerini içerir. + https://www.oasis-open.org/docbook/xml/4.1.2/docbkx412.zip + https://www.oasis-open.org/docbook/xml/4.1/docbkx41.zip + https://www.oasis-open.org/docbook/xml/4.2/docbook-xml-4.2.zip + https://www.oasis-open.org/docbook/xml/4.3/docbook-xml-4.3.zip + https://www.oasis-open.org/docbook/xml/4.4/docbook-xml-4.4.zip + https://www.oasis-open.org/docbook/xml/4.5/docbook-xml-4.5.zip + http://www.docbook.org/xml/5.0/docbook-5.0.zip + office/docbook/docbook-xml/pspec.xml + + + docbook-xml + + sgml-common + libxml2 + + + /usr/share/doc/ + /usr/share/xml + /etc/xml/docbook + /etc/xml/catalog + + + docbook + catalog + + + + + 2016-04-27 + 5.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-20 + 5.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + docbook-xsl + http://wiki.docbook.org/topic/DocBookXslStylesheets + + PisiLinux Community + admins@pisilinux.org + + BSD + data + office.docbook + Norman Walsh's XSL stylesheets for DocBook XML + Docbook XSL biçemyaprakları + These XSL stylesheets allow you to transform any DocBook XML document to other formats such as HTML, FO and XHTML. + Docbook XSL biçemyapraklarını (stylesheets) içerir. + http://sourceforge.net/projects/docbook/files/docbook-xsl/1.79.1/docbook-xsl-1.79.1.tar.bz2 + + Makefile + + + docbook-xsl-pagesetup.patch + docbook-xsl-newmethods.patch + docbook-xsl-non-constant-expressions.patch + docbook-xsl-list-item-body.patch + + office/docbook/docbook-xsl/pspec.xml + + + docbook-xsl + + docbook-xml + + + /usr/share/doc/docbook-xsl + /usr/share/xml + + + System.Package + + + + + 2016-04-27 + 1.79.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2015-03-05 + 1.79.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + sgml-common + http://www.linuxfromscratch.org/blfs/view/svn/pst/sgml-common.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + office.docbook + Base ISO character entities and utilities for SGML + SGML ISO karakter nesneleri ve yardımcı programları + Sgml-common is a collection of entities and document type definitions (DTDs) useful for SGML processing. + sgml-common SGML uygulamaları için kullanışlı olan içerikler ve belge tip belirtimleri (DTD) topluluğudur. + http://gd.tuwien.ac.at/hci/kde/devel/docbook/SOURCES/sgml-common-0.6.3.tgz + + sgml-common-0.6.3-configure.in.patch + sgml-common-0.6.3-manpage-1.patch + + office/docbook/sgml-common/pspec.xml + + + sgml-common + + /etc/sgml + /usr/bin + /usr/share/doc/sgml-common + /usr/share/man + /usr/share/sgml + + + System.Package + + + + + 2016-04-27 + 0.6.3 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-18 + 0.6.3 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + xmlto + https://fedorahosted.org/xmlto/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + office.docbook + A frontend to an XSL toolchain + XML ve DocBook için dönüşüm aracı + The purpose of xmlto is to convert an XML file to the desired format using whatever means necessary. + xmlto uygulamasının amacı verilen bir XML dosyasını istenen bir biçime dönüştürmektir. + https://fedorahosted.org/releases/x/m/xmlto/xmlto-0.0.28.tar.gz + + libxslt-devel + util-linux + docbook-xsl + docbook-xml + + office/docbook/xmlto/pspec.xml + + + xmlto + + docbook-xsl + docbook-xml + + + /usr/bin + /usr/share/doc/xmlto + /usr/share/xmlto + /usr/share/man + + + + + 2016-04-27 + 0.0.28 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-19 + 0.0.28 + First release + Alihan Öztürk + alihan@pisilinux.org + + + os-prober @@ -1362,56 +1727,71 @@ - automake - http://www.gnu.org/software/automake/ + perl + http://www.perl.org/ PisiLinux Community admins@pisilinux.org - GPLv2+ + Artistic + GPLv2 app:console - system.devel - A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards - Makefile.am yapılandırma dosyalarından Makefile.in dosyası üreten program - Automake est un outil de génération automatique de Makefiles compatibles avec les standards de Codage GNU. Vous aurez également besoin d'installer le paquet GNU AutoConf - Automake is a tool for automatically generating Makefile.in files compliant with the GNU Coding Standards. - Makefile.am yapılandırma dosyalarından GNU kodlama standartlarına uygun Makefile.in dosyası üreten program. Bununla birlikte Autoconf paketini de yüklemelisiniz. - mirrors://gnu/automake/automake-1.15.tar.xz + system.base + Larry Wall's Practical Extraction and Reporting Language + Perl dili + Perl est un langage de programmation multi-plateforme stable. + Perl is a high-level programming language with roots in C, sed, awk and shell scripting. Perl is good at handling processes and files, and is especially good at handling text. Perl's hallmarks are practicality and efficiency. While it is used to do a lot of different things, Perl's most common applications are system administration utilities and web programming. A large proportion of the CGI scripts on the web are written in Perl. You need the perl package installed on your system so that your system can handle Perl scripts. + Perl kararlı, platform bağımsız programlama dilidir. + Perl ist eine stabile, plattformunabhängige Programmiersprache + http://www.cpan.org/src/5.0/perl-5.22.1.tar.bz2 - perl - autoconf - gnuconfig - patch + db-devel + gdbm-devel + zlib-devel - system/devel/automake/pspec.xml + + perl-5.10.0-x86_64-io-test-failure.patch + perl-5.14.1-offtest.patch + + system/base/perl/pspec.xml - automake + perl-docs + Documentation files for perl + programming.language.perl + + /usr/share/doc/html + /usr/share/doc/perl/html + /usr/share/man/ + + + + perl - perl - autoconf + db + gdbm + zlib /usr/bin - /usr/share/automake-* - /usr/share/aclocal-* - /usr/share/aclocal - /usr/share/info + /usr/lib /usr/share/doc - /usr/share/man + + Turkish.pm + 2016-04-27 - 1.15 + 5.22.1 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-13 - 1.15 + 2016-03-01 + 5.22.1 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -1420,46 +1800,153 @@ - xtrans - http://www.x.org/ + perl-Locale-gettext + http://search.cpan.org/dist/gettext + + PisiLinux Community + admins@pisilinux.org + + Artistic + library + system.base + A Perl module for accessing the GNU locale utilities + GNU yerel araçlarına erişim için Perl modülü + The gettext module permits access from Perl to the gettext() family of functions for retrieving message strings from databases constructed to internationalize software. + Bu modül, çoklu dil desteğini sağlayan gettext() ailesine Perl üzerinden erişimi sağlar. + El módulo gettext permite Perl acceder a la familia de funciones gettext() para obtener cadenas de mensajes (traducidos) desde bases de datos para la internacionalización de software. + http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-1.07.tar.gz + + perl + + system/base/perl-Locale-gettext/pspec.xml + + + perl-Locale-gettext + + perl + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2016-04-27 + 1.07 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-03 + 1.07 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + pypolkit + http://www.pisilinux.org PisiLinux Community admins@pisilinux.org MIT library - system.devel - Librairie trans de X.Org. - X.Org trans library - X.Org trans kitaplığı. - X.Org trans Bibliothek - xtrans includes a number of routines to make X implementations transport-independent. - xtrans, X gerçeklemelerini taşıma türünden bağımsız yapmak için kullanılan bazı yordamları içerir. - mirrors://xorg/individual/lib/xtrans-1.3.5.tar.bz2 + system.base + Python binding of PolicyKit + PolicyKit için Python bağlayıcısı + pypolkit is a Python binding for the PolicyKit library. + pypolkit PolicyKit için geliştirilmiş bir Python bağlayıcısıdır. + http://source.pisilinux.org/1.0/pypolkit-1.0.2.tar.gz - util-macros + glib2-devel + python-devel + polkit-devel - system/devel/xtrans/pspec.xml + system/base/pypolkit/pspec.xml - xtrans + pypolkit + + glib2 + polkit + python + - /usr/include/X11/Xtrans - /usr/share/aclocal - /usr/share/pkgconfig + /usr/lib + /usr/share/doc 2016-04-27 - 1.3.5 + 1.0.2 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 1.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libestr + http://libestr.adiscon.com + + Marcin Bojara + marcin@pisilinux.org + + LGPLv2.1 + library + system.base + Library for some string essentials + libestr - some essentials for string handling (and a bit more) + http://libestr.adiscon.com/files/download/libestr-0.1.10.tar.gz + system/base/libestr/pspec.xml + + + libestr + + /usr/lib/libestr.so* + /usr/share/doc/libestr + + + + libestr-devel + Development files for libestr + system.devel + + libestr + + + /usr/include/libestr.h + /usr/lib/pkgconfig/libestr.pc + + + + + 2016-04-27 + 0.1.10 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-08 - 1.3.5 + 0.1.10 First release Alihan Öztürk alihan@pisilinux.org @@ -1468,974 +1955,116 @@ - libseccomp - http://sourceforge.net/projects/libseccomp/ - - Aydın Demirel - aydin.demirel@pisilinux.org - - LGPLv2.1 - app:library - system.devel - Enhanced seccomp library - Gelişmiş seccomp kütüphanesi - High level interface to the Linux Kernel's seccomp filter. - Linux Kernel'in seccomp süzgecine yüksek seviyeli arayüz - https://github.com/seccomp/libseccomp/archive/v2.3.0.tar.gz - - glibc-devel - libutil-linux-devel - - system/devel/libseccomp/pspec.xml - - - libseccomp - - /usr/bin - /usr/share/man - /usr/lib - - - - libseccomp-devel - Development files for libseccomp - - libseccomp - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-04-27 - 2.3.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-19 - 2.3.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - m4 - http://www.gnu.org/software/m4/m4.html + zip + http://www.info-zip.org/Zip.html PisiLinux Community admins@pisilinux.org - GPLv3 + Info-ZIP app:console - system.devel - GNU macro processor - GNU makro işleyicisi - L'utilitaire m4 est processeur de macro permettant de lire un ou plusieurs fichiers, les traiter en fonction leurs directives macro puis écrire le résultat dans la sortie standard. - The m4 utility is a macro processor that shall read one or more text files, process them according to their included macro statements, and write the results to standard output - m4, bir ya da daha fazla metin dosyasını okuyan; içerdikleri makro kurallarına göre bu dosyaları işleyen ve sonuçlarını standart çıktıya ileten bir makro işlemcisidir. - mirrors://gnu/m4/m4-1.4.17.tar.gz - - gettext-devel - libsigsegv - - system/devel/m4/pspec.xml - - - m4 - - libsigsegv - - - /usr/bin - /usr/share/doc - /usr/share/info - /usr/share/man - - - - - 2016-04-27 - 1.4.17 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 1.4.17 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xcb-proto - http://xcb.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - data - system.devel - XCB protocol descriptions - XCB protokol tanımlamaları - XCB is a project to enable efficient language bindings to the X11 protocol. This package contains the protocol descriptions themselves. Language bindings use these protocol descriptions to generate code for marshalling the protocol. - http://xcb.freedesktop.org/dist/xcb-proto-1.11.tar.bz2 - - libxml2 - - system/devel/xcb-proto/pspec.xml - - - xcb-proto - - /usr/lib/pkgconfig - /usr/lib/python* - /usr/share/doc - /usr/share/xcb - - - - - 2016-04-27 - 1.11 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.11 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - yasm - http://www.tortall.net/projects/yasm/ - - PisiLinux Community - admins@pisilinux.org - - BSD - GPLv2 - LGPLv2 - Artistic - app:console - system.devel - Assembler that supports many syntaxes and architectures - Bir çok sentaks ve mimari destekleyen Assembler - A complete rewrite of the NASM assembler under the "new" BSD License. Yasm currently supports the x86 and AMD64 instruction sets, accepts NASM and GAS assembler syntaxes, outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, RDOFF2, COFF, Win32, and Win64 object formats and generates source debugging information in STABS, DWARF 2, and CodeView? 8 formats. - NASM Assembler programının yeni BSD lisansı ile baştan yazılmış bir Assembler. En önemli özellikleri x86 ve AMD64 komutsetlerini, NASM ve GAS sentaksını desteklemesidir. İkilik, ELF32, ELF64, 32 ve 64-bit Mach-O, RDOFF2, COFF, Win32 ve Win64 obje formatlarında çıktı üretebilir, hata ayıklamak için STABS, DWARF 2 ve CodeView? 8 formatlarını desteklemektedir. - https://github.com/yasm/yasm/archive/v1.3.0.tar.gz - system/devel/yasm/pspec.xml - - - yasm - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - yasm-devel - Development files for yasm - yasm için geliştirme dosyaları - - yasm - - - /usr/include - /usr/lib/libyasm.a - - - - - 2016-04-27 - 1.3.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-07 - 1.3.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libarchive - http://code.google.com/p/libarchive/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - system.devel - Library for reading and writing streaming archives - Birçok farklı akış arşiv formatını yaratan ve okuyan programlama kitaplığı - libarchive includes a library and command-line tools for reading and writing tar, cpio, zip, ISO, and other archive formats. - libarchive, tar, cpio, zip, ISO ve diğer arşiv biçimlerini okumak ve yazmak için bir kitaplık ve komut satırı araçları içerir. - http://www.libarchive.org/downloads/libarchive-3.1.2.tar.gz - - acl-devel - nettle-devel - attr-devel - bzip2 - libxml2-devel - openssl-devel - xz-devel - lzo-devel - zlib-devel - - system/devel/libarchive/pspec.xml - - - libarchive - - lzo - nettle - xz - acl - zlib - attr - bzip2 - libxml2 - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/libarchive - - - - libarchive-devel - Development files for libarchive - libarchive için geliştirme dosyaları - - libarchive - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2016-04-27 - 3.1.2 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-16 - 3.1.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libtool - http://www.gnu.org/software/libtool/libtool.html - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2 - library - system.devel - A shared library tool for developers - Program geliştiriciler için ortak kütüphane aracı - 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 - - gnuconfig - autoconf - automake - - system/devel/libtool/pspec.xml - - - libtool-ltdl system.base - - /usr/lib - - + Info ZIP (encryption support) + ZIP programı (şifreleme desteği ile birlikte) + Zip est un outil de compression et d'archivage/packaging. Zip est utile pour distribuer un ensemble de fichier sous forme de paquets, et pour sauvegarder de l'espace disque en compressant temporairement les fichiers et répertoires inutilisés. + Zip is a compression and file packaging/archive utility. Zip is useful for packaging a set of files for distribution, for archiving files, and for saving disk space by temporarily compressing unused files or directories. + Zip bir sıkıştırma ve dosya paketleme/arşivleme uygulamasıdır. Zip dosyaları dağıtmak, arşivlemek ve kullanılmayan dosyaları ve dizinleri geçici olarak sıkıştırarak disk boşluğundan tasarruf için kullanılabilecek kullanışlı bir uygulamadır. + mirrors://sourceforge/infozip/Zip%203.x%20%28latest%29/3.0/zip30.tar.gz + system/base/zip/pspec.xml + - libtool + zip - gnuconfig + bzip2 /usr/bin - /lib /usr/share/doc - /usr/share/info - /usr/share/man - /usr/include - /usr/share/libtool - /usr/share/aclocal - - - - libtool-ltdl-32bit - 32-bit shared libraries for libtool-ltdl - libtool için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libtool-ltdl - - - /usr/lib32 - - - - - 2016-04-27 - 2.4.6 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-06 - 2.4.6 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gnuconfig - http://savannah.gnu.org/projects/config - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2+ - data - system.devel - Base config files for autofoo - Autofoo için temel config dosyaları - fichiers GNU config.sub et config.guess mis à jour. - gnuconfig contains updated config.sub and config.guess files from GNU. - gnuconfig güncel GNU config.sub ve config.guess dosyaları içerir. - http://source.pisilinux.org/1.0/config-20141105.tar.gz - system/devel/gnuconfig/pspec.xml - - - gnuconfig - - /usr/share/gnuconfig - /usr/share/doc - - - - - 2016-04-27 - 20141105 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 20141105 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - autogen - http://www.gnu.org/software/autogen - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - system.devel - The automated text and program generation tool - Otomatik metin ve program üretme aracı - Herramienta para simplificar creación y mantenimiento de programas que contienen muchos textos repetitivos - autogen is a tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text. - autogen büyük miktarda tekrarlı metin içeren uygulamaların otomatik üretilmesini sağlayan bir araçtır. - ftp://ftp.gnu.org/gnu/autogen/autogen-5.18.7.tar.xz - - gc-devel - gmp-devel - guile-devel - libxml2-devel - which - - system/devel/autogen/pspec.xml - - - autogen - - guile - libxml2 - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/info - /usr/share/autogen - - - - autogen-devel - Development files for autogen - autogen için geliştirme dosyaları - - autogen - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/bin/autoopts-config - /usr/share/man/man1/autoopts-config.1 - - - - - 2016-04-27 - 5.18.7 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 5.18.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - glpk - http://www.gnu.org/software/glpk/glpk.html - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2 - library - system.devel - GNU Linear Programming Kit - GNU Doğrusal Programlama Kiti - Le paquet GLPK (GNU Linear Programming Kit - Kit de Programmation Linéaire) a pour objectif de résoudre le problème de programmation linéaire (LP) de grande envergure, la programmation d'entiers mixés (MIP), et autres problèmes de la sorte. Il s'agit d'un ensemble de routines écrites en C ANSI et organisées de manière à former une librairie que l'on peut appeler. - The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems. It is a set of routines written in ANSI C and organized in the form of a callable library. - mirrors://gnu/glpk/glpk-4.59.tar.gz - - gmp-devel - - system/devel/glpk/pspec.xml - - - glpk - - gmp - - - /usr/bin - /usr/lib - /usr/share/doc - - - - glpk-devel - Development files for glpk - glpk için geliştirme dosyaları - - glpk - - - /usr/include - - - - - 2016-04-27 - 4.59 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 4.59 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - klibc - http://www.zytor.com/mailman/listinfo/klibc - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - library - system.devel - A minimal libc subset for use with initramfs - Küçük bir C kütüphanesi (libc) uyarlaması - klibc ou "espace utilisateur tôt", est une librairie résultante de l'effort pour transférer autant de code d'initialisation de Linux que possible hors du noyau. - klibc, or "early userspace", is library part of an effort which tries to move as much initialization code in Linux as possible out of the kernel. - klibc, sistem başlangıcı için gerekli olan kodların mümkün olduğunca çok kısmını Linux çekirdeği dışına atma hedefiyle oluşturulmuş bir kütüphanedir. - https://www.kernel.org/pub/linux/libs/klibc/2.0/klibc-2.0.4.tar.xz - - perl - kernel-module-headers - - system/devel/klibc/pspec.xml - - - klibc - - /lib - /usr/bin - /usr/lib/klibc/bin - /usr/lib/klibc/include - /usr/lib/klibc/lib - /usr/share/aclocal - /usr/share/doc - /usr/share/man/ - - - klibc.m4 - - - - - 2016-04-27 - 2.0.4 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-07 - 2.0.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - check - http://sourceforge.net/projects/check/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.devel - A unit test framework for C - C için birim test ortamı - check is a unit testing framework for C. It features a simple interface for defining unit tests, putting little in the way of the developer. Tests are run in a separate address space, so Check can catch both assertion failures and code errors that cause segmentation faults or other signals. The output from unit tests can be used within source code editors and IDEs. - check C dili için yazılmış bir birim test ortamıdır. Birim test tanımlamak için bir arayüz sunan check, geliştiriciye test yapabilmesi için kolay bir ortam sağlar. - mirrors://sourceforge/check/0.10/check-0.10.0.tar.gz - system/devel/check/pspec.xml - - - check - - /usr/bin - /usr/lib - /usr/share/info - /usr/share/man/man1/checkmk.1 - /usr/share/doc - - - - check-devel - Development files for check - check için geliştirme dosyaları - - check - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - check-docs - Documents for check - check için geliştirme belgeleri - - /usr/share/doc/check/example - - - - - 2016-04-27 - 0.10.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 0.10.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xorg-util - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - system.devel - Utilitaires de X.Org - X.Org utilities - X.Org araçları - X.Org Werkzeuge - xorg-util contains some Xorg X11 command-line utilities, but more importantly, X11 configuration and rule files. - mirrors://xorg/individual/util/gccmakedep-1.0.3.tar.bz2 - mirrors://xorg/individual/util/imake-1.0.7.tar.bz2 - mirrors://xorg/individual/util/lndir-1.0.3.tar.bz2 - mirrors://xorg/individual/util/makedepend-1.0.5.tar.bz2 - mirrors://xorg/individual/util/xorg-cf-files-1.0.6.tar.bz2 - - xorg-proto - util-macros - - - host-defaults.patch - - system/devel/xorg-util/pspec.xml - - - xorg-util - - /usr/bin - /usr/share/X11/config /usr/share/man 2016-04-27 - 7.6 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2017-03-18 - 7.6 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libmpc - http://www.multiprecision.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - LGPLv2.1 - library - system.devel - High precision and correct rounding library - Yüksek hassasiyet ve yuvarlama kitaplığı - libmpc is a library for arithmetic of complex numbers with arbitrarily high precision and correct rounding. - libmpc aritmetik kompleks sayılarla yüksek hassasiyette ve doğru yuvarlama ile işlem yapılmasını sağlayan bir kitaplıktır. - ftp://ftp.gnu.org/gnu/mpc/mpc-1.0.3.tar.gz - - gmp-devel - mpfr-devel - - system/devel/libmpc/pspec.xml - - - libmpc - - gmp - mpfr - - - /usr/lib - /usr/share/doc/libmpc - /usr/share/info - - - - libmpc-devel - Development files for libmpc - libmpc için geliştirme dosyaları - - libmpc - - - /usr/include - - - - - 2016-04-27 - 1.0.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 1.0.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - guile - http://www.gnu.org/software/guile/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - LGPLv2+ - app:console - library - system.devel - Interpréteur et librairie GNU Scheme. - GNU Scheme interpreter and library - GNU Scheme yorumlayıcısı ve kitaplığı - Język GNU Extension language. - GUILE (GNU's Ubiquitous Intelligent Language for Extension) is a library implementation of the Scheme programming language, written in C. GUILE provides a machine-independent execution platform that can be linked in as a library during the building of extensible programs. - mirrors://gnu/guile/guile-2.0.11.tar.xz - - gc-devel - gettext-devel - gmp-devel - libunistring-devel - libffi-devel - - system/devel/guile/pspec.xml - - - guile - - gc - gmp - libffi - libtool-ltdl - libunistring - readline - - - /etc - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/info - /usr/lib/lib* - /usr/share/guile - /usr/share/emacs - /usr/share/gdb/auto-load - /usr/lib/guile/2.0 - - - - guile-devel - Development files for guile - guile için geliştirme dosyaları - Pliki nagłówkowe guile. - - guile - gc-devel - gmp-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/bin/guile-snarf - /usr/bin/guile-config - - - - - 2016-04-27 - 2.0.11 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2014-11-30 - 2.0.11 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - util-macros - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - system.devel - Macros X.Org utilisées pour compiler X.Org - X.Org X11 Autotools macros - X.Org X11 Autotools makroları - X.Org Makros zum Kompilieren von X.Org - X.Org X11 autotools macros are required for building the various packages that comprise the X Window System. - X.Org X11 Autotools makroları, X pencere sistemini oluşturan çeşitli paketleri derlemek için gereklidir. - http://xorg.freedesktop.org/releases/individual/util/util-macros-1.19.0.tar.bz2 - - doc.patch - - system/devel/util-macros/pspec.xml - - - util-macros - - /usr/share/aclocal - /usr/share/pkgconfig - /usr/share/doc - - - - - 2016-04-27 - 1.19.0 + 3.0 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-02 - 1.19.0 + 3.0 First release - Alihan Öztürk - alihan@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - libatomic_ops - https://github.com/ivmai/libatomic_ops/ + pciutils + http://atrey.karlin.mff.cuni.cz/~mj/pciutils.html - Pisi Linux Admins + PisiLinux Community admins@pisilinux.org GPLv2 - MIT - library - system.devel - Atomic memory update operations library - Atomik bellek işlemleri kütüphanesi - libatomic_ops provides implementations for atomic memory update operations on a number of architectures. This allows direct use of these in reasonably portable code. - libatomic_ops, çeşitli mimarilerde atomik bellek işlemleri yapılmasını sağlayarak taşınabilir kod yazma olanağı veren bir kütüphanedir. - https://github.com/ivmai/libatomic_ops/archive/libatomic_ops-7_4_2.tar.gz - system/devel/libatomic_ops/pspec.xml + app:console + system.base + Various utilities dealing with the PCI bus + PCI veriyolu işlevleri ile ilgili çeşitli programlar + Les utilitaires PCI sont une collection de programmes d'inspection et de manipulation de la configuration des périphériques PCI. + The PCI Utilities are a collection of programs for inspecting and manipulating configuration of PCI devices. + Pakette bulunan PCI araçları, PCI veriyolunu kullanan donanımlarınızın görüntülenmesi ve ayarlanması işlevini yürütür. + ftp://ftp.kernel.org/pub/software/utils/pciutils/pciutils-3.4.1.tar.xz + + pci.ids + + + pciutils-nogz.patch + pciutils-remove-update-pciids.patch + makefile.patch + + system/base/pciutils/pspec.xml - libatomic_ops + pciutils + + zlib + eudev + libkmod + + /usr/sbin /usr/lib - /usr/share/doc + /usr/share/man + /usr/share/misc - libatomic_ops-devel - libatomic_ops için geliştirme dosyaları - libatomic_ops için geliştirme dosyaları + pciutils-devel + Development files for pciutils + pciutils için geliştirme dosyaları + system.devel - libatomic_ops + pciutils - /usr/include /usr/lib/pkgconfig + /usr/include 2016-04-27 - 7.4.2 + 3.4.1 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-13 - 7.4.2 + 2016-03-03 + 3.4.1 First release Alihan Öztürk alihan@pisilinux.org @@ -2444,381 +2073,69 @@ - gcc - http://gcc.gnu.org + libgcrypt + http://www.gnupg.org/ - Serdar Soytetir - kaptan@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GPLv3+ - LGPLv3+ - app:console + LGPLv2.1 library - system.devel - The GNU Compiler Collection, includes C, C++, Objective-C and Fortran compilers - C/C++ ve Fortran derleyicisi - La collection de compilateurs GNU inclus des façades pour le C, C++, Objective-C, Fortran, hava et Ada ainsi que des librairies pour ces langages (libstdc++, libgcj...) - The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, as well as libraries for these languages - C, C++, Objective-C, Fortran programlama dilleri ile bu dillere ait kütüphaneleri içeren, GNU derleyici paketi - https://ftp.gnu.org/gnu/gcc/gcc-5.3.0/gcc-5.3.0.tar.bz2 + system.base + Librairie générale de cryptographie basée sur le code utilisé dans GnuPG. + General purpose crypto library + Genel amaçlı bir şifreleme kitaplığı + Libgcrypt is a general purpose crypto library based on the code used in GNU Privacy Guard. + Libgcrypt, GNU Privacy Guard kodunu temel alan genel amaçlı bir şifreleme kitaplığıdır. + https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.6.5.tar.bz2 - binutils - bison - gettext - ncurses - zlib - gnuconfig - patch - sed - texinfo - gmp-devel - mpfr-devel - libmpc-devel - ppl - zlib-devel - isl-devel - elfutils + libgpg-error-devel - - pisilinux/64.patch - pisilinux/gcc_47_based-record_gcc_options.patch - - system/devel/gcc/pspec.xml + system/base/libgcrypt/pspec.xml - libquadmath - The GNU Fortran Compiler Quadmath Runtime Library - library - system.base - - /usr/lib/libquadmath.so* - /usr/lib/libquadmath.spec* - /usr/lib32/libquadmath.so* - /usr/lib32/libquadmath.spec* - /usr/share/info/libquadmath.info - - - - libgcc - Contains a shared library of support routines used by GCC's runtime, and thus by every program on the system - library - system.base - - /etc - /usr/lib/libstdc++.so* - /usr/lib/libgcc_s.so* - /usr/lib32/libstdc++.so* - /usr/lib32/libgcc_s.so* - /usr/share/gcc-* - /usr/share/gdb - - - - libgomp - Contains GCC shared support library which is needed for OpenMP 2.5 support - library - - /usr/lib/libgomp.so* - /usr/lib/libgomp.spec* - /usr/lib32/libgomp.so* - /usr/lib32/libgomp.spec* - /usr/share/info/libgomp.info - - - - libgfortran - Contains GCC shared support library for gfortran - library + libgcrypt - libquadmath + libgpg-error - /usr/lib/libgfortran.so* - /usr/lib32/libgfortran.so* - - - - libobjc - Contains GCC shared support library for objc - library - - /usr/lib/libobjc.so* - /usr/lib32/libobjc.so* - - - - gcc-l10n - Contains available GCC localization files, includes also turkish translations - system.locale - - gcc - - - /usr/share/locale - - - - gcc - - gmp - isl - mpfr - zlib - libmpc - - - /lib - /usr/bin /usr/lib - /usr/lib32 - /usr/libexec - /usr/include /usr/share/man + /usr/share/doc + /etc/gcrypt + /usr/bin /usr/share/info - - gfilt - gSTLFilt.pl - - - - 2016-04-26 - 5.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-03-20 - 5.3.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python-setuptools - http://pypi.python.org/pypi/setuptools - - PisiLinux Community - admins@pisilinux.org - - PSF-2.2 - library - system.devel - Python setuptools - Python kurulum araçları - python-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages. - python-setuptools, Python distutils'e yapılan, özellikle başka paketlere bağımlılığı olan Python paketlerini daha kolay oluşturmaya ve dağıtmaya yarayan iyileştirmeler koleksiyonudur. - http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz - system/devel/python-setuptools/pspec.xml - - python-setuptools - - /usr/bin - /usr/lib/python* - /usr/share/doc - - - - - 2016-04-27 - 0.6.49 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 0.6.49 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - unifdef - http://www.freebsd.org/cgi/cvsweb.cgi/src/usr.bin/unifdef/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console + libgcrypt-devel + Development files for libgcrypt + libgcrypt için geliştirme dosyaları system.devel - The unifdef utility selectively processes conditional cpp(1) directives - L'utilitaire unifdef traite sélectivement les directives conditionnelles cpp(1). Il supprime d'un fichier les directives ainsi que le texte additionnel qu'elles indiquent comme à supprimer tout en laissant le reste du fichier intact. - The unifdef utility selectively processes conditional cpp(1) directives. It removes from a file both the directives and any additional text that they specify should be removed, while otherwise leaving the file alone. - http://dotat.at/prog/unifdef/unifdef-2.11.tar.gz - system/devel/unifdef/pspec.xml - - - unifdef - - /usr/bin - /usr/share/man - /usr/share/doc/unifdef - - - - - 2016-04-27 - 2.11 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 2.11 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - cmake - http://www.cmake.org - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - system.devel - Cross-platform, open-source make system - Cmake, açık kaynak kodlu ve birden fazla platformda çalışan bir 'make' sistemidir. - CMake, système make open-source et multi-plateforme. CMake est utilisé pour contrôler le processus de compilation de logiciel en utilisant une plate-forme de fichiers de configuration simple et indépendante de compilateur. CMake génère des makefiles et un environnement de travail natifs pouvant être utilisés dans l'environnement du compilateur de votre choix. - CMake, the cross-platform, open-source make system. CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used in the compiler environment of your choice. - Cmake, açık kaynak kodlu ve birden fazla platformda çalışan bir 'make' sistemidir. Yazılım derleme sürecini kontrol etmek için kullanılan CMake, derleyici bağımsız yapılandırma dosyalarının oluşturulmasını sağlar. - https://cmake.org/files/v3.4/cmake-3.4.3.tar.gz - - curl-devel - expat-devel - libarchive-devel - ncurses-devel - zlib-devel - xz-devel - - system/devel/cmake/pspec.xml - - - cmake - curl - expat - libarchive - libgcc - ncurses - zlib + libgcrypt + libgpg-error-devel - /usr/bin - /usr/share/cmake - /usr/share/aclocal/ - /usr/share/doc - /usr/share/man - - - - - 2016-04-27 - 3.4.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 3.4.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libxslt - http://xmlsoft.org/XSLT/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - system.devel - XSLT libraries and tools - XSLT kitaplığı ve araçları - Libxslt est la librairie XSLT C développée pour le projet GNOME. XSLT étant lui-même un langage XML permettant de définir une transformation de contenu XML. - Libxslt is the XSLT C library developed for the GNOME project. XSLT itself is a an XML language to define transformation for XML. - Libxslt, GNOME projesi için geliştirilen XSLT C kitaplığıdır. XSLT'nin kendisi, XML oluşumunu tanımlayan bir XML dilidir. - ftp://ftp.xmlsoft.org/libxml2/libxslt-1.1.28.tar.gz - - libxml2-devel - libgcrypt-devel - - system/devel/libxslt/pspec.xml - - - libxslt-docs - libxslt için belgelendirme dosyaları - - libxslt - - - /usr/share/doc - - - - libxslt-devel - libxslt için geliştirme dosyaları - - libxml2-devel - libxslt - - - /usr/bin/*-config /usr/include /usr/lib/pkgconfig - /usr/lib32/pkgconfig /usr/share/aclocal + /usr/lib32/pkgconfig + /usr/bin/*-config - libxslt - - libgcrypt - libxml2 - - - /usr/bin - /usr/lib - /usr/share/man - - - - libxslt-32bit - 32-bit shared libraries for libxslt - libxslt için 32-bit paylaşımlı kitaplıklar + libgcrypt-32bit + 32-bit shared libraries for libgcrypt + libgcrypt için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libxml2-32bit - libgcrypt-32bit + libgpg-error-32bit - libxslt - libxml2-32bit - libgcrypt-32bit + libgpg-error-32bit + libgcrypt /usr/lib32 @@ -2827,14 +2144,14 @@ 2016-04-27 - 1.1.28 + 1.6.5 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-08 - 1.1.28 + 1.6.5 First release Alihan Öztürk alihan@pisilinux.org @@ -2843,705 +2160,51 @@ - gc - http://www.hpl.hp.com/personal/Hans_Boehm/gc + gzip + http://www.gnu.org/software/gzip PisiLinux Community admins@pisilinux.org - BSD - GPLv2 - library - system.devel - A garbage collector for C and C++ - C ve C++ için bir çöp toplama kitaplığı - Ostrożny odśmiecacz dla C i C++ - The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new. - gc, C malloc veya C++ new yerine kullanılabilecek, Boehm-Demers-Weiser çöp toplayıcısı kitaplığıdır. - Boehm's GC jest odśmiecającym alokatorem pamięci, który został zaprojektowany z zamiarem używania jako zastępcza wtyczka dla funkcji C malloc. - http://www.hboehm.info/gc/gc_source/gc-7.4.2.tar.gz - - libatomic_ops-devel - - - noelision.patch - - system/devel/gc/pspec.xml - - - gc - - /usr/lib - /usr/share/doc - - - - gc-devel - Development files for gc - gc için geliştirme dosyaları - Pliki nagłówkowe gc - - gc - - - /usr/include/ - /usr/lib/pkgconfig - - - - - 2016-04-27 - 7.4.2 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 7.4.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - mpfr - http://www.mpfr.org - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2+ - LGPLv2+ - library - system.devel - Multiple precision floating point library - La librairie MPFR est une librairie C pour les calculs à virgules flottantes à précisions multiples à arrondi exact (également appelé arrondi correct). Elle est basée sur la librairie à précision multiple GMP. - The MPFR library is a C library for multiple-precision floating-point computations with exact rounding (also called correct rounding). It is based on the GMP multiple-precision library. - MPFR es una librería en C para computaciones de punto flotante de múltiple precisión con redondeo exacto (también llamado redondeo correcto). Está basada en la librería de múltiple precisión GMP. - http://www.mpfr.org/mpfr-current/mpfr-3.1.4.tar.xz - - gmp-devel - - system/devel/mpfr/pspec.xml - - - mpfr - - gmp - - - /usr/lib - /usr/share/info - /usr/share/doc/mpfr - - - - mpfr-devel - Development files for mpfr - mpfr için geliştirme dosyaları - - mpfr - - - /usr/include - /usr/share/doc/mpfr/examples - /usr/share/doc/mpfr/html - - - - - 2016-04-27 - 3.1.4 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 3.1.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - bison - http://www.gnu.org/software/bison/bison.html - - Serdar Soytetir - kaptan@pisilinux.org - GPLv2 + LGPLv2.1 app:console - system.devel - A yacc-compatible parser generator - Yacc uyumlu yazım ayrıştırma üreteci - Un générateur d'analyseur syntaxique compatible avec yacc. Une fois que vous maîtrisez Bison, vous pouvez l'utiliser pour développer des analyseur léxicaux pour un grand nombres de langages, de ceux qui sont utilisés dans les simples calculatrices de bureau aux complexes langages de programmation. - A yacc-compatible parser generator. Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages - Yacc uyumlu yazım ayrıştırma üreteci. Bison'da ustalık kazandığınızda, basit hesap makinalarından, karmaşık programlama dillerine kadar uzanan geniş yazım ayrıştırıcılar geliştirebilirsiniz. - mirrors://gnu/bison/bison-3.0.4.tar.xz - - m4 - gettext - patch - - system/devel/bison/pspec.xml + system.base + Standard GNU compressor + GNU dosya arşiv aracı + gzip (GNU zip) est un programme populaire de compression de donnée écrit pour le projet GNU. + gzip (GNU zip) is a popular data compression program written for the GNU project. + Gzip (GNU zip) GNU projesi için geliştirilmiş popüler bir veri sıkıştırma programıdır. + http://ftp.gnu.org/gnu/gzip/gzip-1.8.tar.xz + system/base/gzip/pspec.xml - bison - - m4 - gettext - + gzip - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/aclocal - /usr/share/info - /usr/share/bison - /usr/share/locale - - - - - 2016-04-27 - 3.0.4 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 3.0.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - autoconf - http://www.gnu.org/software/autoconf/autoconf.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - system.devel - Used to create autoconfiguration files - Used to create autoconfiguration files, Autoconf is an extensible package of m4 macros that produce shell scripts to automatically configure software source code packages. - mirrors://gnu/autoconf/autoconf-2.69.tar.xz - - texinfo - m4 - perl - - system/devel/autoconf/pspec.xml - - - autoconf - - texinfo - m4 - - - /usr/bin + /bin /usr/share/doc /usr/share/man /usr/share/info - /usr/share/autoconf - - - - - 2016-04-27 - 2.69 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 2.69 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - colorgcc - http://www.console-colors.de - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.devel - GCC output colorizer - GCC çıktısını renklendiren bir araç. - A tool that colorizes GCC output. - http://source.pisilinux.org/1.0/colorgcc-1.3.2.tar.gz - - colorgcc-1.3.2-handle-translated-output.patch - colorgcc-1.3.2-mdkconf.patch - add-i686-gnu-stuff.patch - - system/devel/colorgcc/pspec.xml - - - colorgcc - - gcc - - - /usr/bin - /usr/share/colorgcc - /etc - /usr/share/doc - - - colorgcc.sh - colorgcc.csh - - - - - 2016-04-27 - 1.3.2 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.3.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - nasm - http://nasm.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - system.devel - Groovy little assembler - Assembler derleyicisi - NASM est l'assembleur Netwide, un assembleur libre et portable pour les processeurs des séries Intel 80x86 - NASM is the Netwide Assembler, a free portable assembler for the Intel 80x86 microprocessor series. - Intel 80x86 mikroişlemci serisi için aktarılabilir Assembler derleyicisi. - http://www.nasm.us/pub/nasm/releasebuilds/2.12/nasm-2.12.tar.xz - - texinfo - - system/devel/nasm/pspec.xml - - - nasm - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2016-04-27 - 2.12 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 2.12 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - intltool - https://launchpad.net/intltool - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.devel - Utility for internationalizing various kinds of data files - Çeşitli kaynak kod dosyalarından satırları ayıklamak için kullanılan betikler - Scripts d'extraction depuis divers fichiers sources de chaînes traduisibles. - intltool automatically extracts translatable strings from oaf, glade, bonobo ui, nautilus theme, .desktop files, etc. and puts them in the po files. - Çeşitli kaynak kod dosyalarından satırları ayıklamak için kullanılan betikler. - https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz - - perl - perl-XML-Parser - - system/devel/intltool/pspec.xml - - - intltool - - perl-XML-Parser - - - /usr/bin - /usr/share/aclocal - /usr/share/intltool - /usr/share/man - /usr/share/doc - - - - - 2016-04-27 - 0.51.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 0.51.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - cloog - http://www.cloog.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2+ - app:console - library - system.devel - Chunky Loop Generator - cloog is CLooG is a free software and library to generate code for scanning Z-polyhedra. It is used by the GCC Graphite optimization framework. - http://www.bastoul.net/cloog/pages/download/cloog-0.18.4.tar.gz - - gmp-devel - ppl-devel - isl-devel - - system/devel/cloog/pspec.xml - - - cloog - - gmp - isl - - - /usr/bin - /usr/lib - /usr/share/doc/cloog/ - /usr/share/info - - - - cloog-devel - Development files for cloog - - cloog - - - /usr/include - /usr/lib/pkgconfig/cloog.pc - - - - - 2016-04-27 - 0.18.4 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 0.18.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libsigsegv - http://libsigsegv.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.devel - Une librairie pour gérer les erreurs de pagination en mode utilisateur. - A library for handling page faults in user mode - Oluşan bellek hatalarının kullanıcı kipinde işlenmesini sağlayan bir kitaplık - This is a library for handling page faults in user mode. A page fault occurs when a program tries to access to a region of memory that is currently not available. - libsigsegv, oluşan bellek hatalarının kullanıcı kipinde işlenmesini sağlayan bir kitaplıktır. - mirrors://gnu/libsigsegv/libsigsegv-2.10.tar.gz - system/devel/libsigsegv/pspec.xml - - - libsigsegv - - /usr/lib - /usr/share/doc - - - - libsigsegv-devel - Development files for libsigsegv - libsigsegv için geliştirme dosyaları - - libsigsegv - - - /usr/include - - - - - 2016-04-27 - 2.10 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 2.10 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - binutils - http://www.gnu.org/software/binutils/ - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2 - app:console - system.devel - Assembler and linker tools - Makine dili derleme ve bağlama araçları - Contient des commandes telles que as, ld, nm, objdump, ar, ranlib pour compiler du code assembleur en langage machine ainsi que pour chaîner (link) et manipuler les fichiers binaires objets. - Contains commands like as, ld, nm, objdump, ar, ranlib for compiling assembly code to the machine language, and for linking and manipulating the binary object files. - Assembly kodlarını makine diline derlemek, oluşan obje dosyalarını bağlamak ve ikili dosyalar üzerinde işlemler yapmak için kullanılan as, ld, nm, objdump, ar, ranlib gibi komutları içermektedir. - http://ftp.gnu.org/gnu/binutils/binutils-2.26.tar.bz2 - - binutils-gdb.git-e20365c.patch - - system/devel/binutils/pspec.xml - - - binutils - - zlib - - - /usr/bin - /usr/lib - /usr/include - /usr/share/info - /usr/share/man - - - - - 2016-04-26 - 2.26 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-04-03 - 2.26 - First release, fix for syslinux build - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xorg-proto - http://x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - system.devel - Entêtes de protocole de X.Org. - X.Org Protocol Headers - X.Org Protokol Başlıkları - X.Org Protokoll Header - This package includes the protocol headers needed for X11 development. - Bu paket, X11 geliştirme için gerekli protokol başlıklarını içerir. - mirrors://xorg/individual/proto/bigreqsproto-1.1.2.tar.bz2 - mirrors://xorg/individual/proto/presentproto-1.0.tar.bz2 - mirrors://xorg/individual/proto/compositeproto-0.4.2.tar.bz2 - mirrors://xorg/individual/proto/damageproto-1.2.1.tar.bz2 - mirrors://xorg/individual/proto/dmxproto-2.3.1.tar.bz2 - mirrors://xorg/individual/proto/dri2proto-2.8.tar.bz2 - mirrors://xorg/individual/proto/dri3proto-1.0.tar.bz2 - mirrors://xorg/individual/proto/fixesproto-5.0.tar.bz2 - mirrors://xorg/individual/proto/fontsproto-2.1.3.tar.bz2 - mirrors://xorg/individual/proto/glproto-1.4.17.tar.bz2 - mirrors://xorg/individual/proto/inputproto-2.3.2.tar.bz2 - mirrors://xorg/individual/proto/kbproto-1.0.7.tar.gz - mirrors://xorg/individual/proto/printproto-1.0.5.tar.bz2 - mirrors://xorg/individual/proto/randrproto-1.5.0.tar.gz - mirrors://xorg/individual/proto/recordproto-1.14.2.tar.bz2 - mirrors://xorg/individual/proto/renderproto-0.11.1.tar.bz2 - mirrors://xorg/individual/proto/resourceproto-1.2.0.tar.bz2 - mirrors://xorg/individual/proto/scrnsaverproto-1.2.2.tar.bz2 - mirrors://xorg/individual/proto/videoproto-2.3.3.tar.bz2 - mirrors://xorg/individual/proto/xcmiscproto-1.2.2.tar.bz2 - mirrors://xorg/individual/proto/xextproto-7.3.0.tar.bz2 - mirrors://xorg/individual/proto/xf86bigfontproto-1.2.0.tar.bz2 - mirrors://xorg/individual/proto/xf86dgaproto-2.1.tar.bz2 - mirrors://xorg/individual/proto/xf86driproto-2.1.1.tar.bz2 - mirrors://xorg/individual/proto/xf86vidmodeproto-2.3.1.tar.bz2 - mirrors://xorg/individual/proto/xineramaproto-1.2.1.tar.bz2 - mirrors://xorg/individual/proto/xproto-7.0.28.tar.gz - mirrors://xorg/individual/proto/xproxymanagementprotocol-1.0.3.tar.bz2 - https://github.com/bbidulock/vncproto/releases/download/vncproto-1.1/vncproto-1.1.tar.bz2 - - util-macros - libxslt - - - docdir.patch - - system/devel/xorg-proto/pspec.xml - - - xorg-proto - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc - /usr/share/man/man7/Xprint.7 2016-04-27 - 7.6 + 1.8 Release Bump PisiLinux Community admin@pisilinux.org 2016-04-27 - 7.6 - A few updates - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-08 - 7.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - make - http://www.gnu.org/software/make/make.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.devel - Standard tool to compile source trees - Geleneksel kaynak kod ağaçlarını derleme aracı - Herramienta estándar para compilación de arboles de fuentes - Outil standard de compilation de hiérarchie de sources. Make détermine ce qu'il faut faire pour construire votre programme à partir d'un fichier appelé makefile. Une fois votre programme écrit, il suffit d'éditer un makefile pour lui afin de pouvoir utiliser Make pour le compiler et l'installer. - Standard tool to compile source trees. Make gets its knowledge of how to build your program from a file called the makefile. When you write a program, you should write a makefile for it, so that it is possible to use Make to build and install the program - Geleneksel kaynak kod ağaçlarını derleme aracı. Make, programınızı nasıl derleyeceği konusundaki bilgiyi "makefile" dosyasından alır. Bir uygulama yazdığınızda bunun için "makefile" dosyasını da hazırlamalısınız ki uygulamanız derlenebilsin ve yüklenebilsin. - mirrors://gnu/make/make-4.1.tar.gz - - gettext - gnuconfig - patch - gc-devel - guile-devel - - system/devel/make/pspec.xml - - - make - - guile - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - /usr/include - - - - - 2016-04-27 - 4.1 - Release Bump - PisiLinux Community - admin@pisilinux.org + 1.8 + Versiyon bump. + Ertuğrul Erata + ertugrulerata@gmail.com 2016-02-28 - 4.1 + 1.6 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -3550,364 +2213,51 @@ - ppl - http://www.cs.unipr.it/ppl/ + grep + http://www.gnu.org/software/grep/grep.html - Serdar Soytetir - kaptan@pisilinux.org + PisiLinux Community + admins@pisilinux.org GPLv3 app:console - library - system.devel - Pharma Polyhedra library - Pharma Polyhedra kitaplığı - ppl is the Parma Polyhedra Library that provides numerical abstractions for analysis of complex systems. - ppl, kompleks sistemlerin analizi için sayısal ayrım sağlayan Pharma Polyhedra kitaplığıdır. - http://bugseng.com/external/ppl/download/ftp/releases/1.2/ppl-1.2.tar.xz + system.base + GNU regular expression matcher + Grep düzenli ifade eşleme aracı + La commande grep recherche dans un ou plusieurs fichiers les lignes correspondant à un motif défini. Par défaut grep affiche les lignes éligibles. + The grep command searches one or more input files for lines containing a match to a specified pattern. By default, grep prints the matching lines. + Grep komutu bir veya daha fazla verilen dosyada aranan parçayı bulmaya yarayan bir programdır. Ön tanımlı olarak grep eşleşen satırları çıktıya verir. + ftp://mirrors.kernel.org/gnu/grep/grep-2.23.tar.xz - gmp-devel - glpk-devel + gettext + libpcre-devel - system/devel/ppl/pspec.xml + system/base/grep/pspec.xml - ppl + grep - gmp - glpk - libgcc + libpcre - /usr/bin - /usr/lib - /usr/share/doc/COPYING - /usr/share/doc/CREDITS - /usr/share/doc/README - /usr/share/doc/NEWS - /usr/share/man - - - - ppl-docs - Documentation for ppl - ppl kitaplığı belgeleri - system.doc - - ppl - - - /usr/share/doc/ppl - - - - ppl-devel - Development files for ppl - ppl için geliştirme dosyaları - - ppl - gmp-devel - libgcc - - - /usr/bin/ppl-config - /usr/include - /usr/share/aclocal - /usr/share/man/man3 - - - - - 2016-04-27 - 1.2 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - patch - http://www.gnu.org/software/patch/patch.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.devel - Applies patch files - Yama dosyalarını uygular - Aplicación de archivos de parches - Permet d'appliquer un patch générer par la commande diff aux fichiers originels, obtenant ainsi les fichiers patchés. - Patch takes a patch file generated by diff command, and applies it to the original files, thus producing patched files. - Özgün dosyaları, diff komutu ile üretilmiş yama dosyasını uygulayarak, yeni biçimlerine çevirir. - Recibe una archivo de parche generado por el comando diff y lo aplica a los archivos originales, así produciendo archivos parcheados. - ftp://ftp.gnu.org/gnu/patch/patch-2.7.5.tar.xz - - attr-devel - - system/devel/patch/pspec.xml - - - patch - - attr - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2016-04-27 - 2.7.5 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-20 - 2.7.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - scons - http://www.scons.org - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - system.devel - An Open Source software construction tool - Python temelli, esnek, geliştirilebilir inşa aracı - Utilitaire extensible écrit en python. On peut considérer SCons comme un substitut amélioré multi-plateforme de Make intégrant des fonctionnalités similaires à celles d'autoconf/automake et un gestionnaire de cache de compilateur tel ccache. - Think of SCons as an improved, cross-platform substitute for the classic Make utility with integrated functionality similar to autoconf/automake and compiler caches such as ccache. - Python temelli, esnek, geliştirilebilir inşa aracı. SCons, klasik "make" aracına "autconf/automake" özellikleri ve "ccache" gibi derleyici önbelleği eklenmiş, gelişmiş bir araç olarak düşünülebilir. - mirrors://sourceforge/scons/scons-2.4.1.tar.gz - - python - - system/devel/scons/pspec.xml - - - scons - - python - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2016-04-27 - 2.4.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 2.4.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - dietlibc - http://www.fefe.de/dietlibc - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.devel - A libc optimized for small size - Düşük boyut için optimize edilmiş C kütüphanesi - dietlibc is a libc that is optimized for small size. It can be used to create small statically linked binaries for Linux on various architectures. - dietlibc, düşük boyutlu olması için optimize edilmiş bir C kütüphanesidir. Farklı mimarilerde statik bağlanmış ve düşük boyutlu ikili dosyalar oluşturmak için kullanılabilir. - http://pkgs.fedoraproject.org/repo/pkgs/dietlibc/dietlibc-0.33.20120825.tar.xz/016865b8c40d40a57b2ddb5862f2e338/dietlibc-0.33.20120825.tar.xz - http://pkgs.fedoraproject.org/repo/pkgs/dietlibc/dietlibc-github-c3f1cf67fcc186bb859e64a085bf98aaa6182a82.patch.gz/734e14b59b7f017ae5843ee9b9b6d34e/dietlibc-github-c3f1cf67fcc186bb859e64a085bf98aaa6182a82.patch.gz - - dietlibc-0.33-biarch.patch - - system/devel/dietlibc/pspec.xml - - - dietlibc - - /usr/bin - /usr/lib/dietlibc/include - /usr/lib/dietlibc/lib-i386 - /usr/lib/dietlibc/lib-x86_64 - /usr/share/man - /usr/share/doc - - - - - 2016-04-27 - 0.33.20120825 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 0.33.20120825 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - flex - http://flex.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - FLEX - app:console - system.devel - GNU lexical analyser generator - GNU sözcüksel analiz üreteci - Flex est un outil de génération d'analyseur (scanner). Un analyseur (également appelé tokenizer en anglais) est un programme qui repère les motifs lexicaux (ou lexème) dans du texte. - Flex is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text - Flex, metin içindeki sözcüksel kalıpları tanıyan, analiz aracı üretecidir. - mirrors://sourceforge/flex/flex-2.6.0.tar.gz - - patch - texinfo - - - flex-2.5.37-notex.patch - - system/devel/flex/pspec.xml - - - flex - - /usr/bin - /usr/lib + /bin /usr/share/doc /usr/share/man /usr/share/info - /usr/include /usr/share/locale 2016-04-27 - 2.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 2.6.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gmp - http://gmplib.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - LGPLv3+ - library - system.devel - Arbitrary precision arithmetic library - İstenilen duyarlıkta çalışabilen aritmetik işlem kitaplığı - GMP est une librairie libre pour l'arithmétique à précision arbitraire, opérant sur : les entiers signés, les nombres rationnels et les nombres à virgule flottante. Il n'y a aucune limite pratique sur la précision des calculs exceptée celle impliquée par la mémoire présente sur la machine exécutant GMP. GMP est dotée d'un large panel de fonctions, dotées d'interfaces régulières. - GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. There is no practical limit to the precision except the ones implied by the available memory in the machine GMP runs on. GMP has a rich set of functions, and the functions have a regular interface. - GMP işaretli tamsayılar, rasyonel ve ondalık sayılar üzerinde istenilen kadar duyarlı aritmetik işlemler yapan bir kitaplıktır. Yüklü olduğu makinenin hafıza sınırı dışında herhangi bir duyarlılık limiti yoktur. Zengin fonksiyonları ve düzenli bir arabirimi vardır. - GMP es una librería libre para aritmética con precisión arbitraria, operando con signed integers, números racionales, y punto flotante. Practicamente no hay límite de precisión excepto los de la memoria disponible en el equipo donde se está ejecutando GMP. GMP tiene un amplio conjunto de funciones y las funciones tienen una interfaz regular. - mirrors://gnu/gmp/gmp-6.1.0.tar.xz - system/devel/gmp/pspec.xml - - - gmp - - libgcc - - - /usr/lib - /usr/share/doc - /usr/share/info - - - - gmp-devel - Development files for gmp - gmp için geliştirme dosyaları - - gmp - - - /usr/include - /usr/lib/*.a - - - - gmp-32bit - 32-bit shared libraries for gmp - emul32 - emul32 - - libgcc - gmp - - - /usr/lib32 - - - - - 2016-04-27 - 6.1.0 + 2.23 Release Bump PisiLinux Community admin@pisilinux.org 2016-02-28 - 6.1.0 + 2.23 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -3916,403 +2266,53 @@ - chrpath - http://freshmeat.net/projects/chrpath/ + comar-api + http://www.pisilinux.org PisiLinux Community admins@pisilinux.org GPLv2 - app:console - system.devel - Change the dynamic library load path (rpath) of binaries - Dinamik kitaplık yükleme yolunu (rpath) değiştirme aracı - chrpath allows you to modify the dynamic library load path (rpath and runpath) of compiled programs and libraries. - chrpath ile derlenmiş kitaplıkların ve programların dinamik kitaplık yükleme yolunu (rpath ve runpath) değiştirebilirsiniz. - http://source.pisilinux.org/1.0/chrpath-0.16.tar.gz + library + system.base + Utility functions for Comar scripts + Çomar betikleri için yardımcı fonksiyonlar + Librairie utilitaire générique pour les opérations communes de scripts Comar. + Generic utility library for common Comar script operations. + Çomar betiklerinde sıkça yapılan ortak işlemler için yardımcı fonksiyonlar kitaplığı. + http://source.pisilinux.org/1.0/comar-api-2.4.9.tar.gz + + python + - docdir.patch + run_dir.patch + pisilinux.patch + add-stopdependencies.patch - system/devel/chrpath/pspec.xml + system/base/comar-api/pspec.xml - chrpath - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2016-04-27 - 0.16 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-05 - 0.16 - First release - Alihn Öztürk - alihan@pisilinux.org - - - - - - gobject-introspection - http://live.gnome.org/GObjectIntrospection - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2+ - GPLv2+ - library - app:console - system.devel - Introspection system for GObject-based libraries - gobject-introspection can scan C header and source files in order to generate introspection typelib files. It also provides an API to examine typelib files, useful for creating language bindings among other things. - mirrors://gnome/gobject-introspection/1.46/gobject-introspection-1.46.0.tar.xz - - libffi-devel - python-devel - glib2-devel - chrpath - - system/devel/gobject-introspection/pspec.xml - - - gobject-introspection - - libffi - glib2 - - - /usr/lib/lib*.so* - /usr/lib/girepository-1.0/*.typelib - /usr/share/locale - /usr/share/doc - - - - gobject-introspection-devel - Development files for gobject-introspection - - gobject-introspection - libffi - glib2 - libffi-devel - glib2-devel - - - /usr/include - /usr/lib/gobject-introspection - /usr/bin/g-ir-* - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/aclocal - /usr/share/gobject-introspection-1.0 - /usr/share/man - - - - - 2016-04-27 - 1.46.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.46.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - yacc - http://dinosaur.compilertools.net/#yacc - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - system.devel - Yacc: Yet Another Compiler-Compiler - Yacc: Yet Another Compiler-Compiler - Yacc fourni un outil général de description d'entrée pour un logiciel. L'utilisateur de Yacc spécifie la structure de l'entrée avec le code à invoquer lorsque de tels structures sont reconnues. Yacc transforme ce qui a été spécifié en sous-routine gérant le processus d'entrée. - Yacc provides a general tool for describing the input to a computer program. The Yacc user specifies the structures of his input, together with code to be invoked as each such structure is recognized. Yacc turns such a specification into a subroutine that handles the input process - Yacc, bir uygulamaya girdi açıklamasını yapan bir araçtır. Yacc kullanıcısı, girdinin yapısını ve bu yapının her seferinde tanındığı kodu belirtir. Yacc; bu tür bir belirlemeyi, girdi sürecini işleyen bir alt yordama çevirir. - http://ibiblio.org/pub/linux/devel/compiler-tools/yacc-1.9.1.tar.Z - - mkstemp.patch - skeleton.c.diff - yacc-1.9.1-ia64.patch - - system/devel/yacc/pspec.xml - - - yacc - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2016-04-27 - 1.9.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.9.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - isl - http://www.kotnet.org/~skimo/isl/ - - Serdar Soytetir - kaptan@pisilinux.org - - LGPLv2.1 - library - system.devel - Integer Set Library - isl is a library for manipulating sets and relations of integer points bounded by linear constraints. - http://isl.gforge.inria.fr/isl-0.16.1.tar.bz2 - - gmp-devel - - system/devel/isl/pspec.xml - - - isl - - gmp - - - /usr/lib - /usr/share/doc - - - - isl-devel - Development files for isl - isl için geliştirme dosyaları - - isl - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-04-27 - 0.16.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 0.16.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - perl-XML-Parser - http://search.cpan.org/dist/XML-Parser/ - - PisiLinux Community - admins@pisilinux.org - - Artistic - library - system.devel - A Perl extension interface to James Clark's XML parser, expat - James Clark'ın XML ayırıştırıcısına bir Perl uzantısı arayüzü - Una extensión Perl al parseador XML de James Clark, expat - This module provides an interface to James Clark's XML parser, expat. As in expat, a single instance of the parser can only parse one document. Calls to parsestring after the first for a given instance will die. - Bu modül James Clark'ın XML ayrıştırıcısı expat için bir arayüz sağlar. Expat'ta olduğu gibi ayrıştırıcıdan türetilen her nesne sadece bir dosyayı ayrıştırabilir. - Este módulo facilita una interfaz al parser XML de James Clark, expat. Como en expat, una sola instancia del parser puede analizar solamente un documento. Llamadas a parsestring después del primero de una instancia determinada morirán. - mirrors://cpan/authors/id/T/TO/TODDR/XML-Parser-2.44.tar.gz - - expat-devel - perl - - system/devel/perl-XML-Parser/pspec.xml - - - perl-XML-Parser - - expat - perl - - - /usr/share/doc - /usr/lib - /usr/share/man - - - - - 2016-04-27 - 2.44 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-06 - 2.44 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - elfutils - http://www.redhat.com/ - - PisiLinux Community - admins@pisilinux.org - - OpenSoftware - app:console - library - system.devel - Libraries/utilities to handle ELF objects - Derlenmiş objeleri işlemek için gereken aletler koleksiyonu - elfutils contains libraries and utilities to handle ELF objects and is a replacement for libelf. - elfutils derlenmiş objeleri işlemek için gereken çeşitli araçlar içerir. - https://fedorahosted.org/releases/e/l/elfutils/0.165/elfutils-0.165.tar.bz2 - - bzip2 - xz-devel - zlib-devel - - system/devel/elfutils/pspec.xml - - - elfutils - - xz - zlib - bzip2 - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/include - - - - elfutils-32bit - 32-bit shared libraries for elfutils - elfutils için 32-bit paylaşımlı kitaplıklar - emul32 - - xz-32bit - zlib-32bit - - - xz-32bit - zlib-32bit - elfutils - - - /usr/lib32 - - - - - 2016-04-27 - 0.165 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-07 - 0.165 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - cython - http://www.cython.org - - Pisi Linux Admins - admins@pisilinux.org - - Apache-2.0 - app:console - library - system.devel - C extensions for the Python - Python için C eklentileri - Cython is a language that makes writing C extensions for the Python language as easy as Python itself. - Cython, Python için C eklentileri yazmayı kolaylaştıran bir dildir. - http://cython.org/release/Cython-0.23.4.tar.gz - - python-devel - - system/devel/cython/pspec.xml - - - cython + comar-api python + pisilinux-python - /usr/bin - /usr/lib - /usr/share/doc + /usr/lib/pisilinux + /usr/lib/python2.7 2016-04-27 - 0.23.4 + 2.4.9 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-13 - 0.23.4 + 2016-03-11 + 2.4.9 First release Alihan Öztürk alihan@pisilinux.org @@ -4321,161 +2321,60 @@ - pkgconfig - http://www.freedesktop.org/software/pkgconfig/ + pisilinux-python + http://www.pisilinux.org PisiLinux Community admins@pisilinux.org GPLv2 - app:console - system.devel - Package Config system that manages compile/link flags for libraries - Kütüphaneler için derleme bayraklarını yöneten bir paket yapılandırma sistemi - Sistema de configuración de paquetes que soporta banderas de compilación/link para librerías - Paquet de configuration système qui gère les fanions (flags) de compilation et chaînage (link) pour les librairies. Il aide à insérer les options adéquates dans la ligne de commande d'appel au compilateur. - Package Config system that manages compile/link flags for libraries. It helps you insert the correct compiler options on the command line. - Kütüphaneler için derleme bayraklarını yöneten, bir paket yapılandırma sistemi. Komut satırından, doğru derleme seçenekleri sunma olanağı sağlar - Sistema de configuración de paquetes que soporta banderas de compilación/link para librerías. Facilita la inserción de las opciones correctos de compilador en línea de comando - http://pkgconfig.freedesktop.org/releases/pkg-config-0.29.1.tar.gz + library + system.base + Python modules for Pisi Linux + PiSi Linux için Python modülleri + Python modules for Pisi Linux provides functions for common task, with the aim of easing development. + PiSi Linux için Python modülleri genel işler için fonksiyonlar sunarak geliştirme işini kolaylaştırmayı amaçlamaktadır. + Módulos Python para PiSi Linux facilitan funciones para tareas comunes, para simplificar el desarrollo. + http://source.pisilinux.org/1.0/pisilinux-python-0.4.8.tar.gz - gnuconfig - glib2-devel + python-devel + libX11-devel - system/devel/pkgconfig/pspec.xml + system/base/pisilinux-python/pspec.xml - pkgconfig + pisilinux-python - glib2 + python - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/aclocal - /usr/share/pkgconfig - /usr/lib/pkgconfig - - - - - 2016-04-27 - 0.29.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 0.29.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - numactl - ftp://oss.sgi.com/www/projects/libnuma/download - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - library - app:console - system.devel - Library for tuning NUMA machines - NUMA makineleri optimize etmek için bir kitaplık - numactl consists of a numactl program to run other programs with a specific NUMA policy and a libnuma to do allocations with NUMA policy in applications. - numactl, uygulamaları farklı NUMA (Tekdüze Olmayan Bellek Erişimi) politikalarıyla çalıştırmak için gerekli bir araç ve kitaplıktır. - ftp://oss.sgi.com/www/projects/libnuma/download/numactl-2.0.11.tar.gz - system/devel/numactl/pspec.xml - - - numactl - - /usr/bin /usr/lib /usr/share/doc - /usr/share/man + /usr/share/locale - numactl-devel - Development files for numactl - numactl için geliştirme dosyaları + pisilinux-python-xorg + x11.library - numactl + python + libX11 - /usr/include - /usr/share/man/man3 + /usr/lib/python2.7/site-packages/pardus/xorg 2016-04-27 - 2.0.11 + 0.4.8 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-02 - 2.0.11 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - catbox - http://pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.devel - Python sandboxing module - Python için sandbox modülü - catbox is a Python sandboxing module commonly used by the package management system of PiSi Linux, PiSi. - https://github.com/baris/catbox/archive/catbox-1.6.1.tar.gz - - python-setuptools - python-devel - - system/devel/catbox/pspec.xml - - - catbox - - python - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2016-04-27 - 1.6.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.6.1 + 0.4.8 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -4484,157 +2383,8 @@ - bash - http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:console - system.base - The standard GNU Bourne again shell - GNU Bource again kabuğu - Bash est le Bourne Again SHell du projet GNU, une implémentation complête du POSIX IEEE et des spécifications d'interprétation de commande (shell) de l'Open Group, avec édition interactive de ligne de commande et des fonctionnalités à la csh tels que la substitution dans l'historique de commande. - Bash is the GNU Project's Bourne Again SHell, a complete implementation of the IEEE POSIX and Open Group shell specification with interactive command line editing, csh-like features such as history substitution. - Bash, IEEE POSIX ve Open Group'un interaktif komut satırı düzenleme, geçmiş komutları tamamlama gibi csh tipi özellikler gibi kabuk uygulamaları tariflerinin tam olarak uygulayan GNU Projesinin Bourne Again SHell kabuk programıdır. - mirrors://gnu/bash/bash-4.3.30.tar.gz - - ncurses-devel - - - official/bash43-031.tar.gz - official/bash43-032.tar.gz - official/bash43-033.tar.gz - official/bash43-034.tar.gz - official/bash43-035.tar.gz - official/bash43-036.tar.gz - official/bash43-037.tar.gz - official/bash43-038.tar.gz - official/bash43-039.tar.gz - fedora/bash-2.02-security.patch - fedora/bash-2.03-paths.patch - fedora/bash-2.03-profile.patch - fedora/bash-2.05a-interpreter.patch - fedora/bash-2.05b-debuginfo.patch - fedora/bash-2.05b-manso.patch - fedora/bash-2.05b-pgrp_sync.patch - fedora/bash-2.05b-readline-oom.patch - fedora/bash-2.05b-xcc.patch - fedora/bash-3.2-audit.patch - fedora/bash-3.2-ssh_source_bash.patch - fedora/bash-4.0-nobits.patch - fedora/bash-4.1-broken_pipe.patch - fedora/bash-4.1-defer-sigchld-trap.patch - fedora/bash-4.1-examples.patch - fedora/bash-4.2-coverity.patch - fedora/bash-4.2-manpage_trap.patch - fedora/bash-4.2-rc2-logout.patch - fedora/bash-4.2-size_type.patch - fedora/bash-bashbug.patch - fedora/bash-infotags.patch - fedora/bash-requires.patch - fedora/bash-setlocale.patch - fedora/bash-tty-tests.patch - - system/base/bash/pspec.xml - - - bash - - ncurses - - - /etc - /bin - /usr/bin - /usr/share/doc - /usr/share/info - /usr/share/man - /usr/share/locale - - - bashrc - command-not-found.sh - - - - - 2016-04-27 - 4.3_p39 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 4.3_p39 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libunistring - http://www.gnu.org/software/libunistring - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - LGPLv3 - library - system.base - Unicode string library - Unicode karakter dizisi kitaplığı - This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard. - Bu kitaplığı unicode standartına göre unicode ve C karakter dizilerinde değişiklik yapmak için kullanılabilecek fonksiyonlar sunar. - mirrors://gnu/libunistring/libunistring-0.9.6.tar.gz - system/base/libunistring/pspec.xml - - - libunistring - - /usr/lib - /usr/share/doc - /usr/share/info - - - - libunistring-devel - Development files for libunistring - libunistring için geliştirme dosyaları - system.devel - - libunistring - - - /usr/include - - - - - 2016-04-27 - 0.9.6 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 0.9.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - openssl - http://www.openssl.org/ + popt + http://www.rpm5.org/ PisiLinux Community admins@pisilinux.org @@ -4643,97 +2393,703 @@ app:console library system.base - Toolkit for SSL v2/v3 and TLS v1 - SSL v2/v3 ve TLS v1 için araç kiti - OpenSSL est un outil cryptographique implémentant une couche de communication sécurisée (SSL v2/v3) et une couche de transport sécurisée (TLS v1) - OpenSSL is a cryptography toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) network protocols and related cryptography standards required by them. - OpenSSL, Güvenlik Soketleri Katmanı (SSL v2/v3) ve Aktarım Katmanı Güvenliği (TLSv1) ağ protokolleri ile bu protokollerin gerektirdiği şifreleme standartlarını uygulayan bir şifreleme aracıdır. - OpenSSL ist ein Kryptographie Werkzeug, das die Netzwerkprotokolle Secure Sockets Layer (SSL v2/v3) und Transport Layer Security (TLS v1) sowie deren erforderliche zugehörige Kryptographie Standards implementiert. - ftp://ftp.openssl.org/source/openssl-1.0.2g.tar.gz - - openssl-1.0.0-beta4-ca-dir.patch - - - zlib-devel - xorg-util - perl - sed - - - openssl-1.0.0a-ldflags-norpath.patch - openssl-1.0.0-beta4-ca-dir.patch - openssl-1.0.0-beta5-enginesdir.patch - openssl-1.0.2-ipv6.patch - openssl-include.patch - openssl_fix_for_x32_2.patch - openssl-ca-certificates.patch - CVE-2014-0198.patch - openssl-1.0.2a-x32-asm.patch - - system/base/openssl/pspec.xml + Popt command line option parser + Popt komut satırında çalıştıran bir seçenek ayrıştırıcıdır. + La librairie popt existe essentiellement pour analyser des options de ligne de commande. Elle procure de nombreux avantages tels que l'absence de variables globales, la possibilité d'analyser un tableau arbitraire d'éléments de type argv, d'exécuter des filtres d'options extérieurs, la génération automaituqe des messages d'aide et d'utilisation ainsi qu'un méthode standard pour synonymes d'options. + The popt library exists essentially for parsing command line options with advantages such as there are no global variables, ability to parse an arbitrary array of argv-style elements, to exec external option filters, and automatic generation of help and usage messages, a standard method of option aliasing. + Popt, komut satırında seçenek ayrıştırma için gerekli bir kütüphanedir. Genel değişken olmaması, dağınık dizi bileşenlerini ayrıştırabilmesi, harici uygulama filtreleri kullanabilmesi, otomatik mesaj ve yardım dosyaları üretimi gibi başarılı özellikleri bulunur. + ftp://anduin.linuxfromscratch.org/BLFS/svn/p/popt-1.16.tar.gz + system/base/popt/pspec.xml - openssl + popt - zlib - ca-certificates + gettext - /etc - /usr/bin /usr/lib /usr/share/doc + /usr/share/man + /usr/share/locale + + + + popt-devel + Development files for popt + popt için geliştirme dosyaları + system.devel + + popt + + + /usr/include/popt.h + /usr/share/man/man3 + /usr/lib/pkgconfig + + + + + 2016-04-27 + 1.16 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.16 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + sysvinit + http://freshmeat.net/projects/sysvinit/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Programs which control basic system processes + sysvinit package contains a group of utilities that control the very basic functions of your system. sysvinit contains the init program, the first program started by the Linux kernel when the system boots. + http://download.savannah.gnu.org/releases/sysvinit/sysvinit-2.88dsf.tar.bz2 + + sysvinit-2.86-ctrlc.patch + sysvinit-2.78-man.patch + sysvinit-2.86-loginshell.patch + sysvinit-2.86-single.patch + sysvinit-2.88-quiet.patch + sysvinit-2.88-ipv6.patch + sysvinit-2.88-omit.patch + sysvinit-2.88-wall-maxlines.patch + + system/base/sysvinit/pspec.xml + + + sysvinit + + /bin + /sbin + /usr/bin + /usr/share/man + /usr/include System.Package - openssl-devel - Development files for openssl - openssl için geliştirme dosyaları - system.devel - - openssl - + sysvinit-tools + Tools used for process and utmp management + Süreç ve utmp yönetim araçları - /usr/include - /usr/share/man - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - openssl-32bit - 32-bit shared libraries for openssl - openssl için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - zlib-32bit - - - openssl - zlib-32bit - - - /usr/lib32 + /bin/mountpoint + /sbin/pidof + /sbin/killall5 + /sbin/sulogin + /usr/bin/wall + /usr/bin/last + /usr/bin/lastb + /usr/bin/mesg + /usr/bin/utmpdump + /usr/share/man/man1 + /usr/share/man/man8/killall5* + /usr/share/man/man8/pidof* + /usr/share/man/man8/sulogin* 2016-04-27 - 1.0.2g + 2.88 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-02 - 1.0.2g + 2016-03-13 + 2.88 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org + + + + + + diffutils + http://www.gnu.org/software/diffutils/diffutils.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Tools to make diffs and compare files + Dosyaları karşılaştırmak ve fark dosyaları oluşturmak için kullanılan araçlar + Vous pouvez utiliser la commande diff pour voir les différences entre deux fichiers en particulier, ou les différences entre deux répertoires fichiers par fichier. Diff peut afficher les différences entre fichiers ligne par ligne dans différents formats pouvant être choisis avec les options de la ligne de commande. + You can use the diff command to show differences between two files, or each corresponding file in two directories. diff outputs differences between files line by line in any of several formats, selectable by command line options. + İki dosya arasındaki ya da iki klasör içindeki dosyaları karşılaştırarak farklılıkları belirleyebileceğiniz araç. Farklılıkları satır satır olarak, komut satırı seçenekleri ile farklı formatta dosyalara yazdırabilirsiniz. + http://ftp.gnu.org/gnu/diffutils/diffutils-3.3.tar.xz + + patch + + system/base/diffutils/pspec.xml + + + diffutils + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/locale + + + + + 2016-04-27 + 3.3 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 3.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + man-pages + http://www.win.tue.nl/~aeb/linux/man/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data:doc + system.base + Une collection de pages de manuel Linux compréhensibles d'une certaine manière. + A somewhat comprehensive collection of Linux man pages + Kapsamlı Linux kılavuz dökümanları + A large collection of man pages (documentation) from the Linux Documentation Project (LDP). + https://www.kernel.org/pub/linux/docs/man-pages/man-pages-4.04.tar.xz + http://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/man-pages-posix-2003-a.tar.xz + system/base/man-pages/pspec.xml + + + man-pages + + man-db + + + /usr/share/doc + /usr/share/man + + + man1/getent.1 + man1/sprof.1 + + + + + 2016-04-27 + 4.04 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 4.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + sysfsutils + http://linux-diag.sourceforge.net/Sysfsutils.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + System Utilities Based on Sysfs + Çeşitli sistem araç ve gereçleri + Ceci est un ensemble d'utilitaires se basant sur sysfsm un nouveau système de fichier virtuel des noyaux Linux 2.5 et + exposant l'arbre des périphériques du système. + These are a set of utilites built upon sysfs, a new virtual filesystem in Linux kernel versions 2.5+ that exposes a system's device tree. + sysfsutils sysfs sanal dosya sistemi üzerine kurulu bir araç setidir. + mirrors://sourceforge/linux-diag/sysfsutils-2.1.0.tar.gz + + sysfsutils-2.0.0-class-dup.patch + sysfsutils-2.1.0-get_link.patch + + system/base/sysfsutils/pspec.xml + + + sysfsutils + + /usr/bin + /lib + /usr/lib + /usr/share/doc + /usr/share/man + + + + sysfsutils-devel + Development files for sysfsutils + sysfsutils için geliştirme dosyaları + system.devel + + sysfsutils + + + /usr/include + /usr/share/man/man3 + + + + + 2016-04-27 + 2.1.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-06 + 2.1.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + miscfiles + http://freshmeat.net/projects/miscfiles/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + system.base + Fichiers divers. + Miscellaneous files + Çeşitli dosyalar + Verschiedene Dateien + miscfiles is a collection of data files for freely available information, like airport, country, currencies, city information, and codes. It also includes the Unicode character database. + miscfiles havalanı, ülke, para birimi, şehir bilgisi ve kodları gibi bir çok ulaşılabilir bilgiyi veri dosyaları halinde tutmaktadır. + http://ftp.gnu.org/gnu/miscfiles/miscfiles-1.5.tar.gz + system/base/miscfiles/pspec.xml + + + miscfiles + + /usr/share/doc + /usr/share/rfc + /usr/share/dict + /usr/share/misc + + + + + 2016-04-27 + 1.5 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-03 + 1.5 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libssh2 + http://www.libssh2.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + system.base + A library implementing the SSH2 protocol + SSH2 protokolü için kütüphane + libssh2 is a library implementing the SSH2 protocol as defined by Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION, SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and SECSH-PUBLICKEY. + libssh2, SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION, SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS ve SECSH-PUBLICKEY gibi Internet Taslakları tarafından belirlenen SSH2 protokolü için geliştirilmiş bir kütüphanedir. + https://www.libssh2.org/download/libssh2-1.7.0.tar.gz + + openssl-devel + zlib-devel + + system/base/libssh2/pspec.xml + + + libssh2 + + openssl + zlib + + + /usr/lib + /usr/share/doc + + + + libssh2-devel + Development files for libssh2 + libssh2 için geliştirme dosyaları + system.devel + + libssh2 + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man + + + + + 2016-04-27 + 1.7.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.7.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + e2fsprogs + http://e2fsprogs.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Standard ext2/3/4 filesystem utilities + Standart ext2, ext3, ext4 dosya sistemi uygulamaları + e2frprogs fournit les outils de système de fichier à utiliser avec les systèmes de fichier de type ext2. Il prend également en charge les système de fichier de type ext3/4 avec support de la journalisation. + e2fsprogs provides the filesystem utilities for use with the ext2 filesystem. It also supports the ext3/4 filesystem with journaling support. + e2fsprogs ext2 dosya sistemi için standart dosya sistemi uygulamaları sağlar. ext3/4 dosya sistemlerinin günlüğe kaydetme özelliklerini de destekler. + mirrors://sourceforge/e2fsprogs/e2fsprogs-1.42.13.tar.gz + + libutil-linux-devel + gettext-devel + + + ntfs-3g.patch + + system/base/e2fsprogs/pspec.xml + + + e2fsprogs + + libutil-linux + + + /etc + /bin + /usr/bin + /lib + /usr/lib + /sbin + /usr/sbin + /usr/share/et + /usr/share/ss + /usr/share/locale + /usr/share/info + /usr/share/man + /usr/share/doc + + + + e2fsprogs-devel + Development files for e2fsprogs + e2fsprogs için geliştirme dosyaları + system.devel + + e2fsprogs + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-04-27 + 1.42.13 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-19 + 1.42.13 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + dbus-glib + http://dbus.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + AFL-2.1 + library + system.base + Glib bindings for D-Bus + D-Bus için GLib bağlayıcıları + dbus-glib is an add-on library to integrate the standard D-Bus library with the GLib thread abstraction and main loop. + dbus-glib, standart D-Bus kitaplığını GLib ana döngüsüyle bütünleştirmek için kullanılan bir kitaplıktır. + http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-0.104.tar.gz + + dbus-devel + glib2-devel + libpcre-devel + expat-devel + libxml2 + + system/base/dbus-glib/pspec.xml + + + dbus-glib + + dbus + glib2 + expat + libxml2 + + + /usr/bin + /usr/libexec/dbus-bash-completion-helper + /usr/lib + /usr/share/doc + /usr/share/man/man1 + /etc/bash_completion.d + /usr/share/bash-completion + /usr/libexec + + + + dbus-glib-devel + Development files for dbus-glib + dbus-glib için geliştirme dosyaları + system.devel + + dbus-glib + dbus-devel + glib2-devel + + + /usr/include/dbus-1.0 + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-04-27 + 0.104 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-10 + 0.104 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + run-parts + http://packages.qa.debian.org/d/debianutils.html + + PisiLinux Community + osman.erkan@yandex.com + + GPLv2+ + system.base + run scripts or programs in a directory + run scripts or programs in a directory + https://sources.archlinux.org/other/run-parts/debianutils_4.7.tar.xz + system/base/run-parts/pspec.xml + + + run-parts + + /usr/share/man + /usr/bin + /usr/sbin + + + + + 2016-04-27 + 4.7 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-03 + 4.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + biosdevname + http://linux.dell.com/biosdevname/ + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2 + app:gui + system.base + Biosdevname is a udev helper utility developed + Biosdevname is a udev helper utility developed by Dell and released under the GNU General Public License (GPL). It provides a consistent naming mechanism for network devices based on their physical location as suggested by the system BIOS. + http://linux.dell.com/biosdevname/biosdevname-0.7.1/biosdevname-0.7.1.tar.gz + + pciutils-devel + glibc-devel + zlib-devel + + system/base/biosdevname/pspec.xml + + + biosdevname + + pciutils + + + /sbin + /lib/udev/rules.d + /usr/sbin + /usr/share/doc + /usr/share/man + + + + + 2016-04-27 + 0.7.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-06 + 0.7.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + pcmciautils + http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Utilitaires divers concernant le bus PCMCIA. + Various utilities dealing with the PCMCIA bus + PCMCIA veriyolu işlevleri ile ilgili çeşitli araçlar + Verschiedene Werkzeuge, um mit dem PCMCIA Bus umzugehen + pcmciautils contains the initialization tools necessary to allow the PCMCIA subsystem to behave as every other hotpluggable bus system. + pcmciautils PCMCIA altyapısının tak/çıkar veriyolları gibi davranmasını sağlayan araçları içerir. + https://sources.archlinux.org/other/pcmciautils/pcmciautils-018.tar.xz + + sysfsutils-devel + + system/base/pcmciautils/pspec.xml + + + pcmciautils + + sysfsutils + + + /sbin + /lib/udev + /etc/pcmcia + /usr/share/doc + /usr/share/man + /lib/udev/rules.d + + + + + 2016-04-27 + 018 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 018 + First release + Alihan Öztürk + alihan@pisilinux.org @@ -4811,311 +3167,51 @@ - db - http://www.oracle.com/technology/products/berkeley-db/db/index.html + help2man + http://www.gnu.org/software/help2man PisiLinux Community admins@pisilinux.org - DB + GPLv2 app:console system.base - Quatrième version de Berkeley DB - Oracle Berkeley DB - Oracle Berkeley DB - Ein einbettbares Datenbank Engine, dass die Entwickler mit schnellen, zuverlässigen und lokalen Persistenz unterstützt und null Administration erfordert. - The Berkeley Database (Berkeley DB) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. The Berkeley DB includes B+tree, Extended Linear Hashing, Fixed and Variable-length record access methods, transactions, locking, logging, shared memory caching, and database recovery. The Berkeley DB supports C, C++, Java, and Perl APIs. It is used by many applications, including Python and Perl, so this should be installed on all systems. - Berkeley DB geliştiricilere yerel süreklilik sağlayan ve herhangi bir ayar gerektirmeden (zero administration) kullanılan, hızlı ve gömülebilir bir veritabanı motorudur. - http://download.oracle.com/berkeley-db/db-6.1.26.tar.gz - system/base/db/pspec.xml + GNU utility to convert program --help output to a man page + Geleneksel --help çıktılarını man sayfalarına dönüştüren bir GNU yazılımı + Help2man is a tool which generate man page from help text of programs. + Help2man programların help çıktılarını man sayfalarına dönüştüren bir araçtır. + http://ftp.gnu.org/gnu/help2man/help2man-1.47.3.tar.xz + + perl-Locale-gettext + + system/base/help2man/pspec.xml - db + help2man - libgcc + perl-Locale-gettext + mkinitcpio /usr/bin /usr/lib - /usr/sbin - - - db5 - - - - db-devel - Development files for db - - db - - - /usr/include - - - db5-devel - - - - db-docs - Documentation for db - system.doc - - db - - - /usr/share/doc - - - db5-docs - - - - - 2016-04-27 - 6.1.26 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 6.1.26 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libcap-ng - http://people.redhat.com/sgrubb/libcap-ng - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - system.base - An alternate POSIX capabilities library - Alternatif bir POSIX yetenekleri kütüphanesi - libcap-ng is a library that makes using POSIX capabilities easier. - libcap-ng POSIX yeteneklerinin yönetimini kolaylaştıran bir kütüphanedir. - http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.7.7.tar.gz - - attr-devel - python-devel - - system/base/libcap-ng/pspec.xml - - - libcap-ng - - /usr/lib - /usr/share/doc - - - - python-libcap-ng - Python bindings for libcap-ng - Python için libcap-ng bağlayıcıları - programming.language.python - - libcap-ng - - - /usr/lib/python* - - - - libcap-ng-utils - Utilities to analyse the POSIX capabilities on running processes - Çalışan süreçlerin sahip olduğu POSIX yeteneklerini incelemeye yarayan araçlar - util.admin - - libcap-ng - - - /usr/bin - /usr/share/man/man8/* - - - - libcap-ng-devel - Development files for libcap-ng - libcap-ng için geliştirme dosyaları - system.devel - - libcap-ng - - - /usr/share/aclocal - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2016-04-27 - 0.7.7 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-03 - 0.7.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - shadow - http://pkg-shadow.alioth.debian.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - system.base - Utilities to deal with user accounts - Kullanıcı hesapları yönetimi için araçlar - Le paquet des utilitaires pour le fichier de mot de passe Shadow regroupe les programmes nécessaires à convertir les fichiers de mots de passe traditionnels V7*NIX au format de mot passe shadow SVR4 ainsi que d'autres outils destinés à la gestion des fichiers des groupes et de mots de passe (qui fonctionnent aussi bien pour les mots de passe shadow que non-shadow). - The Shadow password file utilities package includes programs necessary to convert traditional V7 *NIX password files to the SVR4 shadow password format, and additional tools to maintain password and group files (that work with both shadow and non-shadow passwords). - Shadow parola dosyası yardımcı uygulamalar paketi, geleneksel V7 *nix parola dosyalarını SVR4 shadow parola biçimine dönüştüren programlar ile parola ve grup dosyalarının bakımı için ilave araçlar içerir. - http://pkg-shadow.alioth.debian.org/releases/shadow-4.2.1.tar.xz - - pam-devel - gettext-devel - acl-devel - attr-devel - - - shadow-strncpy-usage.patch - xstrdup.patch - - system/base/shadow/pspec.xml - - - shadow - Utilitaires pour gérer les comptes utilisateurs - Kullanıcı hesaplarını düzenlemek için araçlar. - - acl - attr - pam - - - /bin - /usr/bin - /sbin - /usr/sbin - /etc - /lib - /usr/share/man /usr/share/doc /usr/share/info /usr/share/locale - - - securetty - default/useradd - pam.d/login - pam.d/other - pam.d/passwd - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/shadow - pam.d/su - pam.d/system-auth - login.defs - - - - - 2016-04-27 - 4.2.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-11 - 4.2.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libee - http://www.libee.org/ - - Marcin Bojara - marcin@pisilinux.org - - LGPLv2.1 - library - system.base - An Event Expression Library inspired by CEE - Libee - An Event Expression Library inspired by CEE - http://www.libee.org/download/files/download/libee-0.4.1.tar.gz - - libestr-devel - - system/base/libee/pspec.xml - - - libee - - libestr - - - /usr/sbin - /usr/lib/libee.so* - /usr/share/doc/libee - - - - libee-devel - Development files for libestr - system.devel - - libee - - - /usr/include/libee - /usr/lib/pkgconfig/libee.pc + /usr/share/man 2016-04-27 - 0.4.1 + 1.47.3 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-08 - 0.4.1 + 1.47.3 First release Alihan Öztürk alihan@pisilinux.org @@ -5124,103 +3220,95 @@ - piksemel - http://pisilinux.org + polkit + http://www.freedesktop.org/wiki/Software/PolicyKit PisiLinux Community admins@pisilinux.org - GPLv2 + LGPLv2+ + service library - system.base - Python binding for iksemel - iksemel için python desteği - Un analyseur XML simple, rapide, petit et robuste pour Python basé sur iksemel. - A simple, fast, small and robust XML parser for Python, based on iksemel. - Python için basit, hızlı, ufak ve sağlam bir XML ayrıştırıcısı, iksemel tabanlıdır. - http://source.pisilinux.org/1.0/piksemel-1.3.1.tar.gz - - python-devel - - - symbol-visibility.patch - - system/base/piksemel/pspec.xml - - - piksemel - - python - - - /usr/lib - /usr/share/doc - - - - - 2016-04-27 - 1.3.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-11 - 1.3.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - plyvel - https://pypi.python.org/pypi/plyvel - - Alihan Öztürk - alihan@pisilinux.org - - BSD app:console system.base - Plyvel, a fast and feature-rich Python interface to LevelDB. - Plyvel, LevelDB için, hızlı ve zengin özellikli Python arabirimi. - Plyvel has a rich feature set, high performance, and a friendly Pythonic API. - Plyvel zengin özelliklere sahip bir set, yüksek performanslı, ve kullanıcı dostu bir Pythonic API. - https://pypi.python.org/packages/source/p/plyvel/plyvel-0.9.tar.gz + PolicyKit Authorization Framework + Sistem bileşenleri için erişim politikası servisi + polkit est un cadre de développement (framework) pour définir des politiques à appliquer à des composants du système ainsi que fournir à des parties du bureau la possibilité de les configurer. + polkit is a toolkit for defining and handling authorizations. It is used for allowing unprivileged processes to speak to privileged processes. + polkit, sistem genelindeki bileşenlerin ve masaüstü bileşenlerinin ayarlayabileceği şekilde ilkeler tanımlamak için araçlardan oluşur. + http://www.freedesktop.org/software/polkit/releases/polkit-0.113.tar.gz - cython - python-devel - leveldb-devel - python-setuptools + dbus-devel + pam-devel + glib2-devel + expat-devel + spidermonkey-devel + gobject-introspection-devel + intltool - system/base/plyvel/pspec.xml + + use-system-locale-in-gobject-api.diff + + system/base/polkit/pspec.xml - plyvel + polkit-devel + Development headers for polkit + polkit geliştirme başlıkları + system.devel - libgcc - python - leveldb + polkit + glib2-devel + /usr/include + /usr/lib/pkgconfig + + + + polkit + + pam + glib2 + expat + spidermonkey + + + /etc /usr/lib + /usr/libexec + /usr/bin + /usr/sbin + /usr/share/locale + /usr/share/polkit-1 + /usr/share/dbus-1 + /usr/share/gir-1.0 + /var/lib/polkit-1 + /lib/systemd + /usr/share/man /usr/share/doc + + man/pklocalauthority.8 + man/polkit.8 + man/polkitd.8 + man/pkaction.1 + man/pkcheck.1 + man/pkexec.1 + 70-desktop-policy.conf + 2016-04-27 - 0.9 + 0.113 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-02 - 0.9 + 2016-03-09 + 0.113 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -5229,92 +3317,262 @@ - libusb - http://libusb.org/ + util-linux + http://userweb.kernel.org/~kzak/util-linux-ng/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 + GPLv2 + app:console library system.base - Userspace access to USB devices - Project's main aim is to create a library for use by user level applications to access USB devices regardless of OS. - https://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.20/libusb-1.0.20.tar.bz2 + Divers utilitaires Linux utiles. + Various useful Linux utilities + Çeşitli kullanışlı Linux araçları + The util-linux package contains a large variety of low-level system utilities that are necessary for a Linux system to function. + util-linux paketi, bir Linux sisteminin işlevsel olması için gerekli olan birçok düşük seviye sistem uygulamasını içerir. + https://www.kernel.org/pub/linux/utils/util-linux/v2.27/util-linux-2.27.1.tar.xz + zlib-devel eudev-devel + python-devel + readline-devel + shadow + ncurses-devel + libcap-ng-devel - system/base/libusb/pspec.xml + + ntfs-3g.patch + upstream/util-linux-ng-2.21-login-lastlog.patch + + system/base/util-linux/pspec.xml - libusb + util-linux + libutil-linux + zlib + perl + ncurses + readline eudev + libcap-ng + /etc + /bin + /sbin /usr/bin - /usr/lib + /usr/sbin /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/misc + /usr/share/getopt + /usr/share/bash-completion/completions + /usr/share/locale + + + + uuidd + Helper daemon to guarantee uniqueness of time-based UUIDs + Zaman tabanlı UUID'lerin benzersizliğini garantileyen sistem hizmeti + service + app:console + util.misc + + libutil-linux + + + /usr/bin/uuidgen + /usr/sbin/uuidd + /usr/lib/tmpfiles.d/uuidd.conf + /usr/share/man/man1/uuidgen.1 + /usr/share/man/man8/uuidd.8 + + + uuidd.tmpfiles + + + + libutil-linux + util-linux runtime library + util-linux için kitaplıklar + library + + python + + + /lib + /usr/lib + /usr/share/man/man3/uuid* + /usr/share/man/man3/libblkid* + /usr/share/man/man8/blkid* - - libusbx - - libusbx + libblkid + libuuid - libusb-devel - Development files for libusb + libutil-linux-devel + libutil-linux header files + util-linux kitaplıkları için başlık dosyaları + header system.devel - libusb + libutil-linux + + + /usr/include/ + /usr/lib/pkgconfig/*.pc + + + libblkid-devel + libuuid-devel + + + + libutil-linux-32bit + 32-bit shared libraries for libutil-linux + util-linux için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + /usr/lib32/ + + + libblkid-32bit + libuuid-32bit + + + + + 2016-04-27 + 2.27.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 2.27.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + which + http://www.xs4all.nl/~carlo17/which/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Prints the location of specified executable in your path + Verilen komutun çalıştırma yolundaki önceliğe göre yerini gösterir + which, localise un programme dans le chemin de l'utilisateur. + which , Locates a program file in the user's path. + which, kullanıcı dizinindeki program dosyalarının yarini bulur. + which, findet eine Anwendungsdatei im Benutzerverzeichnis + mirrors://gnu/which/which-2.21.tar.gz + system/base/which/pspec.xml + + + which + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/info + + + + + 2016-04-27 + 2.21 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 2.21 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + json-c + http://oss.metaparadigm.com/json-c + + PisiLinux Community + admins@pisilinux.org + + MIT + library + system.base + A JSON implementation in C + C dilinde JSON gerçeklemesi + json-c implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. + json-c, C dilinde kolayca JSON nesneleri yaratılmasını sağlayan bir referans sayma modeli gerçekleyen bir kitaplıktır. + https://github.com/json-c/json-c/archive/json-c-0.12-20140410.tar.gz + + wno-werror.patch + + system/base/json-c/pspec.xml + + + json-c + + /usr/share/doc + /usr/share/man + /usr/lib + + + + json-c-devel + Development files for json-c + json-c için geliştirme dosyaları + system.devel + + json-c /usr/include /usr/lib/pkgconfig /usr/lib32/pkgconfig - - libusbx-devel - - - libusbx-devel - - libusb-32bit - 32-bit shared libraries for libusb + json-c-32bit + 32-bit shared libraries for json-c emul32 emul32 - - eudev-32bit - - - libusb - eudev-32bit - /usr/lib32 - - libusbx-32bit - - - libusbx-32bit - 2016-04-27 - 1.0.20 + 0.12 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-08 - 1.0.20 + 0.12 First release Alihan Öztürk alihan@pisilinux.org @@ -5323,108 +3581,8 @@ - lsb-release - http://www.linuxbase.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - LSB version query program - LSB sürüm sorgulama aracı - lsb-release prints certain LSB (Linux Standard Base) and distribution information. - lsb-release bazı dağıtıma özel tanımlayıcı bilgileri ekrana basan bir terminal aracıdır. - mirrors://sourceforge/project/lsb/lsb_release/1.4/lsb-release-1.4.tar.gz - - util-linux - - system/base/lsb-release/pspec.xml - - - lsb-release - - /usr/bin - /etc - /usr/share/man - /usr/share/doc - - - lsb-release - - - - - 2016-04-27 - 1.4 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-09 - 1.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - nss-mdns - http://0pointer.de/lennart/projects/nss-mdns/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.base - Name Service Switch module - İsim servisi değiştirme modülü - Module d'échange de service de nom pour le DNS Multicast. - Name Service Switch module for Multicast DNS. - Çoklu gönderim yapan DNS'ler için isim servisi seçme modülü. - http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-0.10.tar.gz - - nss-mdns-0.8-avahi-socket.patch - - system/base/nss-mdns/pspec.xml - - - nss-mdns - - /etc - /usr/lib - /usr/share/doc - - - mdns.allow - - - - - 2016-04-27 - 0.10 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-09 - 0.10 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - pycurl - http://pycurl.sourceforge.net/ + urlgrabber + http://urlgrabber.baseurl.org/ PisiLinux Community admins@pisilinux.org @@ -5432,41 +3590,39 @@ LGPLv2.1 library system.base - Python cURL Module - Python cURL Modülü - PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program. - PycURL, python libcurl için python arayüzüdür. PycURL, URL tarafında tanımlanan nesneleri indirmek için bir python programı tarafından kullanılabilir. - https://dl.bintray.com/pycurl/pycurl/pycurl-7.43.0.tar.gz + High level cross-protocol url-grabber library for Python + Python için yüksek seviyeli, platform bağımsız bir url-grabber kütüphanesi + urlgrabber provides a clean library interface to protocol-independant file-access for Python programs + urlgrabber Python uygulamaları için protokol bağımsız dosya erişimi sağlayan temiz bir kütüphanedir. + http://urlgrabber.baseurl.org/download/urlgrabber-3.10.1.tar.gz - curl-devel - python-devel - openssl-devel + python - system/base/pycurl/pspec.xml + system/base/urlgrabber/pspec.xml - pycurl + urlgrabber - curl python - openssl + pycurl /usr/lib + /usr/libexec /usr/share/doc 2016-04-27 - 7.43.0 + 3.10.1 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-02 - 7.43.0 + 3.10.1 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -5475,111 +3631,199 @@ - libpipeline - http://libpipeline.nongnu.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - system.base - pipeline manipulation library - pipeline yönetim kitaplığı - libpipeline is a C library for manipulating pipelines of subprocesses in a flexible and convenient way. - libpipeline, alt-süreç girdi/çıktı hatlarını (pipeline) yönetmek için geliştirilmiş bir C kitaplığıdır. - http://download.savannah.gnu.org/releases/libpipeline/libpipeline-1.4.1.tar.gz - system/base/libpipeline/pspec.xml - - - libpipeline - - /usr/lib - /usr/share/doc - - - - libpipeline-devel - Development files for libpipeline - libpipeline için geliştirme dosyaları - system.devel - - libpipeline - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man - - - - - 2016-04-27 - 1.4.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.4.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - pcmciautils - http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html + readline + http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html PisiLinux Community admins@pisilinux.org GPLv2 - app:console + library system.base - Utilitaires divers concernant le bus PCMCIA. - Various utilities dealing with the PCMCIA bus - PCMCIA veriyolu işlevleri ile ilgili çeşitli araçlar - Verschiedene Werkzeuge, um mit dem PCMCIA Bus umzugehen - pcmciautils contains the initialization tools necessary to allow the PCMCIA subsystem to behave as every other hotpluggable bus system. - pcmciautils PCMCIA altyapısının tak/çıkar veriyolları gibi davranmasını sağlayan araçları içerir. - https://sources.archlinux.org/other/pcmciautils/pcmciautils-018.tar.xz + Another cute console display library + Diğer bir şirin konsol gösterim kütüphanesi + La librairie GNU Readline fourni un ensemble de fonctions utilisables par des applications permettant aux utilisateurs d'éditer les lignes de commandes en cours de frappe. Les modes d'éditions Emacs et vi sont disponibles. La librairie Readline inclus des fonctions supplémentaires de mémorisation de la liste de commandes entrées précédemment, afin de le rappeler et éventuellement les rééditer, ainsi que l'expansion d'historiques de commandes précédentes à la mode csh. + The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. + GNU Readline kütüphanesi uygulamalara sanki kullanıcılar kendileri yazıyormuş gibi komut satırı girişlerini düzenleme imkanı veren işlev setini sunar. Readline kütüphanesi daha önce girilmiş bir komut satırları listesini düzenleme, tekrar çağırma ve belki de bu satırları tekrar düzenleme ve csh tipi geçmiş bilgisi genişletmelerindeki önceki komutları yürütme imkanı sağlayan ek işlevler sağlar. + mirrors://gnu/readline/readline-6.3.tar.gz - sysfsutils-devel + ncurses-devel - system/base/pcmciautils/pspec.xml + + readline63-001.patch + readline63-002.patch + readline63-003.patch + + system/base/readline/pspec.xml - pcmciautils + readline - sysfsutils + ncurses - /sbin - /lib/udev - /etc/pcmcia + /usr/lib /usr/share/doc /usr/share/man - /lib/udev/rules.d + /usr/share/info + + + + readline-devel + Development files for readline + readline için geliştirme dosyaları + system.devel + + readline + + + /usr/include + /usr/share/man/man3 + + + + readline-32bit + 32-bit shared libraries for readline + readline için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + ncurses-32bit + + + readline + ncurses-32bit + + + /usr/lib32 2016-04-27 - 018 + 6.3 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-09 - 018 + 2016-02-29 + 6.3 First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + unzip + ftp://ftp.info-zip.org/pub/infozip/UnZip.html + + PisiLinux Community + admins@pisilinux.org + + Info-ZIP + app:console + system.base + Unzipper for pkzip-compressed files + pkzip ile sıkıştırılmış dosyalar için açıcı + Unzip nous permet d'extraires des archives compressées aux format .zip (également appelées "fichiers zip"). + UnZip enables us to extract archives compressed in .zip format (also called "zipfiles"). + UnZip, zip formatında sıkıştırılmış dosyaları açmamızı sağlar. + mirrors://sourceforge/infozip/unzip610b.zip + + unzip-6.0-attribs-overflow.patch + unzip-6.0-exec-shield.patch + unzip-6.0-close.patch + + system/base/unzip/pspec.xml + + + unzip + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2016-04-27 + 610b + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-05 + 610b + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + snappy + http://code.google.com/p/snappy/ + Alihan Öztürk alihan@pisilinux.org + + BSD + library + system.base + A fast compressor/decompressor librar + Linux için sıkıştırma/ayıklama kütüphanesidir. + Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. + Linux için sıkıştırma/ayıklama kütüphanesidir. Yüksek hızda sıkıştırma yapmak için yazılmış bir kütüphanedir. + https://github.com/google/snappy/releases/download/1.1.3/snappy-1.1.3.tar.gz + + lzo-devel + zlib-devel + + + snappy-unittest.patch + + system/base/snappy/pspec.xml + + + snappy + + libgcc + + + /usr/lib + /usr/share/doc + /usr/share + + + + snappy-devel + snappy için geliştirme dosyaları + + snappy + + + /usr/include + + + + + 2016-04-27 + 1.1.3 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 1.1.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com @@ -5640,162 +3884,135 @@ - dbus - http://dbus.freedesktop.org/ + tcp-wrappers + http://ftp.porcupine.org/pub/security/index.html PisiLinux Community admins@pisilinux.org - GPLv2 - AFL-2.1 - service + BSD + app:console system.base - A message bus system, a simple way for applications to talk to each other - Uygulamaların birbirleriyle haberleşmesinin basit bir yöntemi - D-Bus fourni à la fois un daemon système (pour les événements els que l'"ajout d'un nouveau périphérique" ou "file d'impression changée") et un daemon propre à chaque session utilisateur (pour les besoins généraux de communication entre processus utilisateurs). De plus, le bus de message est construit en se basant sur un framework (cadre de développement) de passage de message de un-vers-un pouvant être utilisé par n'importe quelles applications pour communiquer directement (sans passer par le daemon de bus de message). Pour l'instant les applications pouvant communiquer doivent être situées sur le même ordinateur, mais l'option TCP/IP est disponible et le support de processus distant est prévu. - D-Bus supplies both a system daemon (for events such as "new hardware device added" or "printer queue changed") and a per-user-login-session daemon (for general IPC needs among user applications). Also, the message bus is built on top of a general one-to-one message passing framework, which can be used by any two apps to communicate directly (without going through the message bus daemon). Currently the communicating applications are on one computer, but TCP/IP option is available and remote support planned. - D-Bus, sistem ve kullanıcılar için olmak üzere iki tane artalan süreci (daemon) sunar. Mesaj yolu, bire bir mesaj geçiş araçları üzerine inşa edilmiştir. Bu sayede iki program birbiriyle bir mesaj yolu artalan süreci kullanmadan, direkt olarak haberleşebilir. Şu an için haberleşme araçları aynı bilgisayar üzerinde çalışabilmektedir, fakat TCP/IP ile uzaktan haberleşme de planlanmaktadır. - https://dbus.freedesktop.org/releases/dbus/dbus-1.11.0.tar.gz + TCP Wrappers + TCP Wrappers + Avec ce paquet, vous pouvez surveiller et filtrer les requêtes entrante pour les services réseaux SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK et autres. Il supporte à la fois les canaux de communication (sockets) de type 4.3BSD et TLI de type System V.4. + With this package you can monitor and filter incoming requests for the SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK, and other network services. It supports both 4.3BSD-style sockets and System V.4-style TLI. + Bu paket ile birlikte SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK ve diğer ağ servisleri için gelen istekleri izleyebilir ve süzebilirsiniz. Program 4.3BSD-tipi soketler ve System V.4-tipi TLI'ın ikisini de destekler. + http://ftp.porcupine.org/pub/security/tcp_wrappers_7.6.tar.gz - expat-devel - libX11-devel - libcap-ng-devel + sed - system/base/dbus/pspec.xml + + Makefile-Pisi.patch + tcp-wrappers-7.6-makefile.patch + tcp_wrappers-7.6-ldflags.patch + 01_all_redhat-bug11881.patch + 02_all_redhat-bug17795.patch + 03_all_wildcard.patch + 04_all_fixgethostbyname.patch + 07_all_sig.patch + 08_all_strerror.patch + 09_all_gcc-3.4.patch + 10_all_more-headers.patch + tcp-wrappers-7.6-ipv6-1.14.diff + tcp-wrappers-7.6-shared.patch + host.allow.example.patch + match-port.patch + + system/base/tcp-wrappers/pspec.xml - dbus - - expat - libcap-ng - + tcp-wrappers - /etc/dbus-1 - /usr/lib/tmpfiles.d/dbus.conf - /usr/bin + /usr/sbin /usr/lib - /usr/libexec - /usr/share/dbus-1 - /usr/share/doc + /lib + /etc /usr/share/man - /run/dbus - /var/lib/dbus - /lib/systemd/system + /usr/share/doc - - System.Package - - tmpfiles.conf + hosts.allow + hosts.deny - dbus-x11 - x11.util - - libX11 - dbus - - - /usr/bin/dbus-launch - - - - dbus-devel - Development files for dbus - dbus için geliştirme dosyaları + tcp-wrappers-devel + Development files for tcp-wrappers + tcp-wrappers için geliştirme dosyaları system.devel - dbus + tcp-wrappers /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/lib/dbus-1.0/include /usr/share/man/man3 - - dbus-32bit - 32-bit shared libraries for dbus - dbus için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - expat-32bit - - - /usr/lib32 - - 2016-04-27 - 1.11.0 + 7.6 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-04 - 1.11.0 + 2016-03-13 + 7.6 First release - Hakan Yıldız - hknuldz93@gmail.com + Alihan Öztürk + alihan@pisilinux.org - less - http://www.greenwoodsoftware.com/ + plyvel + https://pypi.python.org/pypi/plyvel - PisiLinux Community - admins@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - GPLv3 + BSD app:console system.base - Excellent lecteur de fichier texte - Excellent text file viewer - Mükemmel bir metin görüntüleyici - Ausgezeichneter Textbetrachter - The less utility is a text file browser that resembles more, but has more capabilities. Less allows you to move backwards in the file as well as forwards. Since less doesn't have to read the entire input file before it starts, less starts up more quickly than text editors (for example, vi). - http://www.greenwoodsoftware.com/less/less-481.tar.gz + Plyvel, a fast and feature-rich Python interface to LevelDB. + Plyvel, LevelDB için, hızlı ve zengin özellikli Python arabirimi. + Plyvel has a rich feature set, high performance, and a friendly Pythonic API. + Plyvel zengin özelliklere sahip bir set, yüksek performanslı, ve kullanıcı dostu bir Pythonic API. + https://pypi.python.org/packages/source/p/plyvel/plyvel-0.9.tar.gz - ncurses-devel + cython + python-devel + leveldb-devel + python-setuptools - system/base/less/pspec.xml + system/base/plyvel/pspec.xml - less + plyvel - ncurses + libgcc + python + leveldb - /etc/env.d - /usr/bin + /usr/lib /usr/share/doc - /usr/share/man - - lesspipe.sh - 70less - code2color - 2016-04-27 - 481 + 0.9 Release Bump PisiLinux Community admin@pisilinux.org - 2016-02-29 - 481 + 2016-03-02 + 0.9 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -5942,320 +4159,56 @@ - gzip - http://www.gnu.org/software/gzip + gawk + http://www.gnu.org/software/gawk/gawk.html PisiLinux Community admins@pisilinux.org GPLv2 - LGPLv2.1 app:console system.base - Standard GNU compressor - GNU dosya arşiv aracı - gzip (GNU zip) est un programme populaire de compression de donnée écrit pour le projet GNU. - gzip (GNU zip) is a popular data compression program written for the GNU project. - Gzip (GNU zip) GNU projesi için geliştirilmiş popüler bir veri sıkıştırma programıdır. - http://ftp.gnu.org/gnu/gzip/gzip-1.8.tar.xz - system/base/gzip/pspec.xml - - - gzip - - /bin - /usr/share/doc - /usr/share/man - /usr/share/info - - - - - 2016-04-27 - 1.8 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-27 - 1.8 - Versiyon bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-02-28 - 1.6 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - leveldb - https://code.google.com/p/leveldb - - Alihan Öztürk - alihan@pisilinux.org - - BSD - app:console - system.base - A fast and lightweight key/value database library - Hızlı ve hafif bir anahtar/değer veri kütüphanesi - LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. - LevelDB dize değerleri ile dize anahtarlarını eşleme sağlayan, Google'da yazılmış hızlı bir anahtar-değer depolama kütüphanesidir. - https://github.com/google/leveldb/archive/v1.18.tar.gz + GNU awk pattern-matching language + Metin işleme uygulaması olan awk'ın GNU versiyonu + L'outil awk interprète un langage de programmation spécifique permettant d'effectuer les tâches de modifications simples de données en quelques lignes de code. Il vous permet de faire des changements dans différents fichiers texte lorsqu'un certain patron apparaît ou d'extraire des données de fragments de lignes tout en laissant de côté le reste. Gawk est l'implémentation GNU d'awk. + The awk utility interprets a special-purpose programming language that makes it possible to handle simple data-reformatting jobs with just a few lines of code. It helps you to make changes in various text files wherever certain patterns appear, or extract data from parts of certain lines while discarding the rest. Gawk is the GNU implementation of awk. + awk uygulaması az bir kod ile basit veri formatı düzenleme işlerinizi yapabilmenize olanak sağlayan özel amaçlı bir programlama dilidir. Uygulama birçok farklı metin dosyası içinde aradığınız parçaları bulup değiştirmenize veya diğer satırlardan ayırarak işlemenize yardımcı olur. Gawk programı awk'ın GNU sürümüdür. + ftp://mirrors.kernel.org/gnu/gawk/gawk-4.1.3.tar.xz - gperftools-devel - snappy-devel + gettext-devel - system/base/leveldb/pspec.xml + system/base/gawk/pspec.xml - leveldb - - libgcc - snappy - gperftools - - - /usr/lib - /usr/share/doc - - - - leveldb-devel - - leveldb - - - /usr/include - - - - - 2016-04-27 - 1.18 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 1.18 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - popt - http://www.rpm5.org/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - library - system.base - Popt command line option parser - Popt komut satırında çalıştıran bir seçenek ayrıştırıcıdır. - La librairie popt existe essentiellement pour analyser des options de ligne de commande. Elle procure de nombreux avantages tels que l'absence de variables globales, la possibilité d'analyser un tableau arbitraire d'éléments de type argv, d'exécuter des filtres d'options extérieurs, la génération automaituqe des messages d'aide et d'utilisation ainsi qu'un méthode standard pour synonymes d'options. - The popt library exists essentially for parsing command line options with advantages such as there are no global variables, ability to parse an arbitrary array of argv-style elements, to exec external option filters, and automatic generation of help and usage messages, a standard method of option aliasing. - Popt, komut satırında seçenek ayrıştırma için gerekli bir kütüphanedir. Genel değişken olmaması, dağınık dizi bileşenlerini ayrıştırabilmesi, harici uygulama filtreleri kullanabilmesi, otomatik mesaj ve yardım dosyaları üretimi gibi başarılı özellikleri bulunur. - ftp://anduin.linuxfromscratch.org/BLFS/svn/p/popt-1.16.tar.gz - system/base/popt/pspec.xml - - - popt - - gettext - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/locale - - - - popt-devel - Development files for popt - popt için geliştirme dosyaları - system.devel - - popt - - - /usr/include/popt.h - /usr/share/man/man3 - /usr/lib/pkgconfig - - - - - 2016-04-27 - 1.16 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.16 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - sqlite - http://www.sqlite.org/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - system.base - An SQL Database Engine in a C Library - Bir C kütüphanesi içindeki bir SQL veritabanı motoru - SQLite est une petite librairie C implémentant un moteur de base de données SQL auto-configurée, auto-suffisante, pouvant être embarquée. Gère des bases de données de tailles allant jusqu'à 2 téraOctets. - SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Supports databases up to 2 terabytes in size. - SQLite hiçbir ayar gerektirmeyen, başka programların içine gömülebilir bir SQL veritabanı motorudur. 2 terabayta kadar büyüklükteki veritabanlarını tutabilir. - http://www.sqlite.org/2016/sqlite-autoconf-3110000.tar.gz - http://www.sqlite.org/2016/sqlite-doc-3110000.zip - - readline-devel - - system/base/sqlite/pspec.xml - - - sqlite + gawk readline + gmp + mpfr - /usr/lib - /usr/share/man /usr/bin - /usr/share/doc/sqlite/README - - - - sqlite-devel - Development files for sqlite - sqlite için geliştirme dosyaları - system.devel - - sqlite - - + /usr/libexec + /usr/lib/gawk /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sqlite-32bit - 32-bit shared libraries for sqlite - emul32 - emul32 - - sqlite - - - /usr/lib32 - - - - sqlite-doc - sqlite-doc, sqlite için doküman belgeleri - - sqlite - - - /usr/share/doc/sqlite/ - - - - - 2016-04-27 - 3.11.0.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 3.11.0.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - tar - http://www.gnu.org/software/tar/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - system.base - A GNU file archiving program - GNU dosya arşivleme uygulaması - Le programme tar fournit la possibilité de manipuler des archives de type tar. Vous pouvez l'utiliser pour créer ou extraires des archives. Ajouter des fichiers à des archives existantes, les mettre à jour ou tout simplement lister leur contenu. - The GNU tar program saves many files together in one archive and can restore individual files (or all of the files) from that archive. - GNU tar birden fazla dosyayı tek bir arşiv dosyasında birleştiren ve daha sonra bu arşiv dosyasından geri çıkartabilen bir uygulamadır. - http://mirrors.kernel.org/gnu/tar/tar-1.28.tar.xz - - tar.1 - - - acl-devel - gettext - - system/base/tar/pspec.xml - - - tar - - acl - glibc - - - /bin - /sbin + /usr/share/awk /usr/share/doc /usr/share/man - /usr/share/locale /usr/share/info + /usr/share/locale 2016-04-27 - 1.28 + 4.1.3 Release Bump PisiLinux Community admin@pisilinux.org 2016-02-28 - 1.28 + 4.1.3 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -6264,126 +4217,77 @@ - comar-api + baselayout http://www.pisilinux.org PisiLinux Community admins@pisilinux.org GPLv2 - library - system.base - Utility functions for Comar scripts - Çomar betikleri için yardımcı fonksiyonlar - Librairie utilitaire générique pour les opérations communes de scripts Comar. - Generic utility library for common Comar script operations. - Çomar betiklerinde sıkça yapılan ortak işlemler için yardımcı fonksiyonlar kitaplığı. - http://source.pisilinux.org/1.0/comar-api-2.4.9.tar.gz - - python - - - run_dir.patch - pisilinux.patch - add-stopdependencies.patch - - system/base/comar-api/pspec.xml - - - comar-api - - python - pisilinux-python - - - /usr/lib/pisilinux - /usr/lib/python2.7 - - - - - 2016-04-27 - 2.4.9 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-11 - 2.4.9 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl - http://www.perl.org/ - - PisiLinux Community - admins@pisilinux.org - - Artistic - GPLv2 app:console + library + data system.base - Larry Wall's Practical Extraction and Reporting Language - Perl dili - Perl est un langage de programmation multi-plateforme stable. - Perl is a high-level programming language with roots in C, sed, awk and shell scripting. Perl is good at handling processes and files, and is especially good at handling text. Perl's hallmarks are practicality and efficiency. While it is used to do a lot of different things, Perl's most common applications are system administration utilities and web programming. A large proportion of the CGI scripts on the web are written in Perl. You need the perl package installed on your system so that your system can handle Perl scripts. - Perl kararlı, platform bağımsız programlama dilidir. - Perl ist eine stabile, plattformunabhängige Programmiersprache - http://www.cpan.org/src/5.0/perl-5.22.1.tar.bz2 - - db-devel - gdbm-devel - zlib-devel - - - perl-5.10.0-x86_64-io-test-failure.patch - perl-5.14.1-offtest.patch - - system/base/perl/pspec.xml + Filesystem baselayout + Dosya sisteminin temel planı + Ce paquet crée la hiérarchie du système de fichier principal de Pisi Linux. + baselayout creates the Pisi Linux Linux main filesystem hierarchy. + Bu paket, Pisi Linux dosya sisteminin temelini oluşturur. + http://source.pisilinux.org/1.0/baselayout-3.10.0.tar.gz + system/base/baselayout/pspec.xml - perl-docs - Documentation files for perl - programming.language.perl - - /usr/share/doc/html - /usr/share/doc/perl/html - /usr/share/man/ - - - - perl + baselayout - db - gdbm - zlib + pypolkit - /usr/bin - /usr/lib - /usr/share/doc + /bin + /sbin + /lib* + /etc + /etc/pisilinux-release + /media + /boot + /proc + /home + /mnt + /opt + /dev + /run + /sys + /srv + /tmp + /usr + /var + /usr/lib/tmpfiles.d/baselayout.conf + + System.PackageHandler + System.Package + User.Manager + Network.Stack + - Turkish.pm + baselayout.conf + services + protocols + sysctl.conf + pisilinux-release + start-stop-daemon.8 2016-04-27 - 5.22.1 + 3.10.0 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-01 - 5.22.1 + 2016-03-06 + 3.10.0 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -6392,8 +4296,8 @@ - gperf - http://www.gnu.org/software/gperf/gperf.html + mingetty + ftp://ftp.suse.com/pub/projects/init/ PisiLinux Community admins@pisilinux.org @@ -6401,300 +4305,44 @@ GPLv2 app:console system.base - A perfect hash function generator - Mükemmel hash üreticisi - gperf is a perfect hash function generator. For a given list of strings, it produces a hash function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single string comparison only. - gperf mükemmel hash fonksiyonu üretecidir. Verilen bir katar listesi için C ve C++ kodu biçiminde bir hash fonksiyonu ve hash tablosu üretir. - GNU gperf es un generador de perfect hash. Produce una función hash y una tabla hash a base de una lista de cadenas, en forma de código C o C++ , para revisar valores dependiendo de una cadena de entrada. La función de hash es perfecta, lo que quiere decir que no hay colisiones en la tabla de hash, y para la búsqueda en la tabla hash se necesita solamente una comparación. - mirrors://gnu/gperf/gperf-3.0.4.tar.gz - system/base/gperf/pspec.xml - - - gperf - - libgcc - - - /usr/bin - /usr/share/doc - /usr/share/info - /usr/share/man - - - - - 2016-04-27 - 3.0.4 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-05 - 3.0.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - unzip - ftp://ftp.info-zip.org/pub/infozip/UnZip.html - - PisiLinux Community - admins@pisilinux.org - - Info-ZIP - app:console - system.base - Unzipper for pkzip-compressed files - pkzip ile sıkıştırılmış dosyalar için açıcı - Unzip nous permet d'extraires des archives compressées aux format .zip (également appelées "fichiers zip"). - UnZip enables us to extract archives compressed in .zip format (also called "zipfiles"). - UnZip, zip formatında sıkıştırılmış dosyaları açmamızı sağlar. - mirrors://sourceforge/infozip/unzip610b.zip - - unzip-6.0-attribs-overflow.patch - unzip-6.0-exec-shield.patch - unzip-6.0-close.patch - - system/base/unzip/pspec.xml - - - unzip - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2016-04-27 - 610b - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-05 - 610b - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libuser - https://fedorahosted.org/libuser - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.base - A user and group account administration library - Kullanıcı ve grup hesap yönetim kitaplığı - libuser implements a standardized interface for manipulating and administering user and group accounts. The library uses pluggable back-ends to interface to its data sources. - libuser kullanıcı ve grup hesaplarını yönetmek ve işlemek için standart bir arayüz sunar. Kitaplık, sağladığı arayüzün verilere erişimi için genişletilebilir arkauçlar kullanmaktadır. - https://fedorahosted.org/releases/l/i/libuser/libuser-0.62.tar.xz + A compact getty program for virtual consoles only + Sadece sanal konsollar için yekpare bir getty programı + mingetty, est getty poids plume minimaliste à utiliser exclusivement sur les consoles virtuelles. + mingetty, is a lightweight, minimalist getty for use on virtual consoles only. + mingetty yalnızca sanal konsollar için tasarlanmış basit ve yalın getty uygulamasıdır. + http://sourceforge.net/projects/mingetty/files/mingetty/1.08/mingetty-1.08.tar.gz - pam-devel - popt-devel - glib2-devel - python-devel + gettext - libuser-0.56.15-fix_blowfish.patch - libuser-0.56.9-fix-str-fmt.patch + tr.patch + mingetty-utf8.patch - system/base/libuser/pspec.xml + system/base/mingetty/pspec.xml - libuser + mingetty - pam - popt - glib2 - python + glibc - /etc - /usr/share/man - /usr/share/doc - /usr/share/locale - /usr/bin - /usr/sbin - /usr/lib - - - - libuser-devel - Development files for libuser - libuser için geliştirme dosyaları - system.devel - - libuser - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-04-27 - 0.62 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 0.62 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - bc - http://www.gnu.org/software/bc - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - Console-based calculator utility - Konsol temelli hesap makinesi - bc est un langage de calcul numérique à précision arbitraire qui peut être utilisé comme calculatrice. La syntaxe est similaire au C, avec quelques différences notables. Il supporte par exemple l'exécution interactive de commandes. - bc is an arbitrary precision numeric processing language and can be used as a calculator. Syntax is similar to C, but differs in many substantial areas. For example, it supports interactive execution of statements. - bc, herhangi bir keskinlikte sayısal işlemler yapmayı sağlayan bir programlama dilidir ve bir hesap makinesi olarak kullanılabilir. Sözdizimi C programlama diline benzer, ancak C'den birçok önemli farkları vardır. Örneğin, ifadelerin etkileşimli bir şekilde çalışmasına olanak tanır. - ftp://alpha.gnu.org/gnu/bc/bc-1.06.95.tar.bz2 - - flex - texinfo - readline-devel - - - fedora/bc-1.06.95-memleak.patch - fedora/bc-1.06-dc_ibase.patch - fedora/bc-1.06.95-matlib.patch - - system/base/bc/pspec.xml - - - bc - - readline - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/info - - - - - 2016-04-27 - 1.06.95 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-05 - 1.06.95 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - net-tools - http://sites.inka.de/lina/linux/NetTools/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - Standard Linux networking tools - Linux ağ araçları - net-tools est une collection de programmes représentant les outils réseau de base du système d'exploitation Linux. S'y trouvent arp, hostname, ifconfig, ipmaddr, iptunnel, mii-tool, nameif, netstat, plipconfig, rarp, route et slattach. - net-tools is a collection of programs that form the base set of the networking tools for the Linux operating system. It includes arp, hostname, ifconfig, ipmaddr, iptunnel, mii-tool, nameif, netstat, plipconfig, rarp, route and slattach. - Net-tools, Linux işletim sisteminde kullanılan ağ ile ilgili temel araçların bir birleşimidir. Arp, hostname, ifconfig, ipmaddr, iptunnel, mii-tool, nameif, netstat, plipconfig, rarp, route ve slattach programlarını içerir. - https://sourceforge.net/projects/net-tools/files/net-tools-1.60.tar.bz2 - - 01_all_net-tools-1.60-2.6-compilefix.patch.bz2 - 02_all_net-tools-1.60-gcc34.patch.bz2 - 03_all_net-tools-1.60-cleanup-list-handling.patch.bz2 - 04_all_net-tools-1.60-get_name.patch.bz2 - 20_all_net-tools-1.54-ipvs.patch.bz2 - 21_all_net-tools-1.57-bug22040.patch.bz2 - 22_all_net-tools-1.60-manydevs.patch.bz2 - 23_all_net-tools-1.60-miiioctl.patch.bz2 - 24_all_net-tools-1.60-virtualname.patch.bz2 - 25_all_net-tools-1.60-cycle.patch.bz2 - 26_all_net-tools-1.60-overflow.patch.bz2 - 27_all_net-tools-1.60-netstat_ulong.patch.bz2 - 50_all_net-tools-1.60-multiline-string.patch.bz2 - 51_all_net-tools-1.60-man.patch.bz2 - 52_all_net-tools-1.60-numeric-ports.patch.bz2 - 53_all_net-tools-1.60-appletalk.patch.bz2 - 54_all_net-tools-1.60-wide.patch.bz2 - 55_all_net-tools-1.60-Makefile.patch.bz2 - 56_all_net-tools-1.60-ipv6-hostname.patch.bz2 - 57_all_net-tools-1.60-ifconfig-infiniband.patch.bz2 - 60_all_net-tools-1.60-headers.patch.bz2 - net-tools-missing.patch - kernel_headers.patch - gcc-4.3.patch - large-buffer.patch - - system/base/net-tools/pspec.xml - - - net-tools - - comar - comar-api - - - /bin /sbin - /usr/bin - /usr/sbin - /usr/share/doc - /usr/share/man /usr/share/locale + /usr/share/man + /usr/share/doc 2016-04-27 - 1.60 + 1.0.8 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-09 - 1.60 + 1.0.8 First release Alihan Öztürk alihan@pisilinux.org @@ -6703,215 +4351,357 @@ - run-parts - http://packages.qa.debian.org/d/debianutils.html + attr + http://acl.bestbits.at/ - PisiLinux Community - osman.erkan@yandex.com - - GPLv2+ - system.base - run scripts or programs in a directory - run scripts or programs in a directory - https://sources.archlinux.org/other/run-parts/debianutils_4.7.tar.xz - system/base/run-parts/pspec.xml - - - run-parts - - /usr/share/man - /usr/bin - /usr/sbin - - - - - 2016-04-27 - 4.7 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-03 - 4.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - rsyslog - http://www.rsyslog.com - - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - GPLv3+ - service - system.base - Enhanced system logging and kernel message trapping daemons - Gelişmiş sistem günlükleme hizmeti - rsyslog is an enhanced multi-threaded syslogd supporting, among others, MySQL, syslog/tcp, RFC 3195, permitted sender lists, filtering on any message part, and fine grain output format control. It is quite compatible with stock sysklogd and can be used as a drop-in replacement. - rsyslog, çoklu iş parçacığı, MySQL, syslog/tcp, RFC 3195, izin verilen gönderici listesi, gelişmiş ileti filtreleme gibi özelliklere sahip gelişmiş bir sistem günlükleme hizmetidir. - http://www.rsyslog.com/files/download/rsyslog/rsyslog-8.11.0.tar.gz - - zlib-devel - json-c-devel - libestr-devel - libgcrypt-devel - liblogging-devel - - system/base/rsyslog/pspec.xml - - - rsyslog - - zlib - json-c - libestr - libgcrypt - liblogging - - - /usr/bin/rsyslogd - /usr/lib/rsyslog - /usr/share/man - /usr/share/doc - /etc/logrotate.d - /etc/conf.d - /etc/rsyslog.d - /etc/rsyslog.conf - /var - - - System.Service - - - rsyslog.logrotate - rsyslog.conf - 50-default.conf - rsyslog.sysconfig - - - - - 2016-04-27 - 8.11.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 8.11.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - zlib - http://www.gzip.org/zlib/ - - PisiLinux Community - admins@pisilinux.org - - ZLIB + LGPLv2.1 + app:console library system.base - Librairie de compression/extraction standard - Standard (de)compression library - Standart sıkıştırma/açma kütüphanesi - Zlib is a general-purpose, patent-free, lossless data compression library which is used by many different programs. - mirrors://sourceforge/libpng/zlib-1.2.8.tar.xz - - dont-call-ldconfig.patch - - system/base/zlib/pspec.xml + Utilities for managing filesystems extended attributes + Gelişkin öznitelikler araçları + attr offre des utilitaires qui servent à manipuler les attributs étendus des objects de système de fichier. + attr contains a set of tools for manipulating extended attributes on filesystem objects, in particular getfattr and setfattr. + attr dosya sistemi nesnelerinin özniteliklerini değiştirmek için gerekli bir dizi araç sunar. + http://download.savannah.gnu.org/releases-noredirect/attr/attr-2.4.47.src.tar.gz + system/base/attr/pspec.xml - minizip - Library for manipulating files from a zip archive - zip arşivlerindeki dosyaları yönetmek için kitaplık - util.archive - minizip - - zlib - + attr - /usr/lib/libminizip* - - - - minizip-devel - Development files for minizip - minizip için geliştirme dosyaları - util.archive - minizip - - minizip - zlib-devel - - - /usr/include/minizip - /usr/lib/pkgconfig/minizip.pc - - - - zlib - - /lib/libz.so* - /usr/lib/libz.so* + /bin + /lib + /usr/share/locale /usr/share/doc /usr/share/man - zlib-devel - Development files for zlib - zlib için geliştirme dosyaları + attr-devel + Development files for attr + attr için geliştirme dosyaları system.devel - zlib + attr - /usr/lib/pkgconfig/zlib.pc - /usr/lib32/pkgconfig - /usr/include/z*.h + /usr/include /usr/share/man/man3 - /usr/share/doc/zlib/algorithm.txt - /usr/share/doc/zlib/example.c - zlib-32bit - 32-bit shared libraries for zlib - zlib için 32-bit paylaşımlı kitaplıklar + attr-32bit + 32-bit shared libraries for attr emul32 emul32 - zlib + attr - /usr/lib32/libz.so* + /lib32 2016-04-27 - 1.2.8 + 2.4.47 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-01 + 2.4.47 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + texinfo + http://www.gnu.org/software/texinfo/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + system.base + programme et utilitaires GNU info. + The GNU info program and utilities + GNU info (bilgi) programı ve araçları + GNU Info Prgramm und Werkzeuge + Texinfo is a documentation system that can produce both online information and printed output from a single source file. The GNU Project uses the Texinfo file format for most of its documentation. + mirrors://gnu/texinfo/texinfo-6.1.tar.gz + + ncurses + + system/base/texinfo/pspec.xml + + + texinfo + + ncurses + + + /usr/bin + /usr/lib/texinfo + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/texinfo + /usr/share/texmf/tex/texinfo + /usr/share/locale + /usr/share/texmf/ + + + System.PackageHandler + + + + + 2016-04-27 + 6.1 Release Bump PisiLinux Community admin@pisilinux.org 2016-02-28 - 1.2.8 + 6.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libcap-ng + http://people.redhat.com/sgrubb/libcap-ng + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + system.base + An alternate POSIX capabilities library + Alternatif bir POSIX yetenekleri kütüphanesi + libcap-ng is a library that makes using POSIX capabilities easier. + libcap-ng POSIX yeteneklerinin yönetimini kolaylaştıran bir kütüphanedir. + http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.7.7.tar.gz + + attr-devel + python-devel + + system/base/libcap-ng/pspec.xml + + + libcap-ng + + /usr/lib + /usr/share/doc + + + + python-libcap-ng + Python bindings for libcap-ng + Python için libcap-ng bağlayıcıları + programming.language.python + + libcap-ng + + + /usr/lib/python* + + + + libcap-ng-utils + Utilities to analyse the POSIX capabilities on running processes + Çalışan süreçlerin sahip olduğu POSIX yeteneklerini incelemeye yarayan araçlar + util.admin + + libcap-ng + + + /usr/bin + /usr/share/man/man8/* + + + + libcap-ng-devel + Development files for libcap-ng + libcap-ng için geliştirme dosyaları + system.devel + + libcap-ng + + + /usr/share/aclocal + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-04-27 + 0.7.7 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-03 + 0.7.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + glib2 + http://www.gtk.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + system.base + La librairie GLib2 de routines C. + A library of handy utility functions + C programlama dili için glib kütüphanesi + glib2 is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. + glib2, GTK+ ve GNOME gibi projelerin temelini oluşturan düşük seviyeli çekirdek kütüphanedir. C için veri yapıları, taşınabilirlik katmanları ve çeşitli çalışma zamanı işlevleri için arabirimler sunar. + mirrors://gnome/glib/2.46/glib-2.46.2.tar.xz + + libpcre-devel + zlib-devel + libffi-devel + + + revert-warn-glib-compile-schemas.patch + + system/base/glib2/pspec.xml + + + glib2 + + libpcre + zlib + libffi + + + /etc/profile.d + /usr/bin + /usr/lib + /usr/share/bash-completion/completions/ + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/systemtap + /usr/share/glib-2.0/schemas + /usr/share/gettext + + + System.PackageHandler + + + glib2.sh + glib2.csh + + + + glib2-devel + Development files for glib2 + glib2 için geliştirme dosyaları + system.devel + + glib2 + libpcre-devel + + + /usr/bin/gtester + /usr/bin/gtester-report + /usr/bin/gobject-query + /usr/bin/glib-genmarshal + /usr/bin/glib-gettextize + /usr/bin/glib-mkenums + /usr/include + /usr/lib/glib-2.0/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/glib-2.0/schemas/gschema.dtd + /usr/share/glib-2.0/gettext + /usr/share/glib-2.0/gdb + /usr/share/gdb/auto-load/libglib-2.0.so.*-gdb.py* + /usr/share/gdb/auto-load/libgobject-2.0.so.*-gdb.py* + /usr/share/man/man3 + /usr/share/man/man1/glib-genmarshal.1 + /usr/share/man/man1/glib-gettextize.1 + /usr/share/man/man1/glib-mkenums.1 + /usr/share/man/man1/gobject-query.1 + /usr/share/man/man1/gtester-report.1 + /usr/share/man/man1/gtester.1 + + + + glib2-32bit + 32-bit shared libraries for glib2 + glib2 için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + libpcre-32bit + zlib-32bit + libffi-32bit + dbus-32bit + + + glib2 + libpcre-32bit + zlib-32bit + libffi-32bit + dbus-32bit + + + /usr/bin/32 + /usr/lib32 + + + System.PackageHandler + + + + glib2-docs + Documentation files for glib2 + Extensive documentation for developers wanting to use the GLib Library + + /usr/share/gtk-doc + + + + + 2016-04-27 + 2.46.2 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-10 + 2.46.2 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -7020,6 +4810,626 @@ + + + tar + http://www.gnu.org/software/tar/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:console + system.base + A GNU file archiving program + GNU dosya arşivleme uygulaması + Le programme tar fournit la possibilité de manipuler des archives de type tar. Vous pouvez l'utiliser pour créer ou extraires des archives. Ajouter des fichiers à des archives existantes, les mettre à jour ou tout simplement lister leur contenu. + The GNU tar program saves many files together in one archive and can restore individual files (or all of the files) from that archive. + GNU tar birden fazla dosyayı tek bir arşiv dosyasında birleştiren ve daha sonra bu arşiv dosyasından geri çıkartabilen bir uygulamadır. + http://mirrors.kernel.org/gnu/tar/tar-1.28.tar.xz + + tar.1 + + + acl-devel + gettext + + system/base/tar/pspec.xml + + + tar + + acl + glibc + + + /bin + /sbin + /usr/share/doc + /usr/share/man + /usr/share/locale + /usr/share/info + + + + + 2016-04-27 + 1.28 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 1.28 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + spidermonkey + http://www.mozilla.org/js/spidermonkey/ + + PisiLinux Community + admins@pisilinux.org + + NPL-1.1 + library + system.base + Stand-alone JavaScript C Library + Javascript C Kitaplığı + Spidermonkey est l'Implémentation C de Javascript par Mozilla. + Spidermonkey is Mozilla's C implementation of JavaScript. + Mozilla'nın Javascript'in C implementasyonu. + Spidermonkey es la implementación de JavaScript con C de Mozilla. + http://ftp.mozilla.org/pub/mozilla.org/js/mozjs17.0.0.tar.gz + + zlib-devel + nspr-devel + readline-devel + libffi-devel + + system/base/spidermonkey/pspec.xml + + + spidermonkey + + nspr + zlib + libgcc + readline + + + /usr/bin + /usr/lib + /usr/share/doc + + + + spidermonkey-devel + Development files for spidermonkey + spidermonkey için geliştirme dosyaları + system.devel + + spidermonkey + nspr-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/bin/js17-config + + + + + 2016-04-27 + 17.0.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-06 + 17.0.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libpcre + http://www.pcre.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + system.base + Perl-compatible regular expression library + Perl-uyumlu sıradan ifade kütüphanesi + La librairie PCRE (Expressions Régulières Compatible avec Perl) est un ensemble de fonctions implémentant la recherche de motifs de texte à l'aide d'expressions régulières utilisant la même syntaxe et la même sémantique que Perl5. + The PCRE (Perl Compatible Regular Expressions) library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. + PCRE kütüphanesi, Perl 5 programlama dili sözdizimi ve semantiği ile kalıp eşleştirme (pattern matching) görevini yürüten fonksiyonları barındırır. + http://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.bz2 + + readline-devel + + system/base/libpcre/pspec.xml + + + libpcre + + libgcc + readline + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + libpcre-devel + Development files for libpcre + libpcre için geliştirme dosyaları + system.devel + + libpcre + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libpcre/html + /usr/bin/pcre-config + /usr/share/man/man1/pcre-config.1* + /usr/share/doc/libpcre/pcre-config.txt + + + + libpcre-32bit + 32-bit shared libraries for libpcre + libpcre için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + readline-32bit + + + libgcc + libpcre + + + /usr/lib32 + + + + + 2016-04-27 + 8.38 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-25 + 8.38 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + groff + http://www.gnu.org/software/groff/groff.html + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + BSD + MIT + app:console + system.base + S'occupe de la mise en forme de texte utilisé pour les pages de manuel + A document formatting system + Belge biçimlendirme sistemi + Text Formatierer für man pages + groff is a document formatting system. Groff takes standard text and formatting commands as input and produces formatted output. + groff bir belge biçimlendirme sistemidir. Groff standart metni ve biçimlendirme komutlarını alır ve biçimlendirilmiş çıktı oluşturur. + http://ftp.gnu.org/gnu/groff/groff-1.22.3.tar.gz + + texinfo + + + groff-1.19.2-man-unicode-dashes.patch + groff-1.22.3-parallel-mom.patch + + system/base/groff/pspec.xml + + + groff + + texinfo + libgcc + + + /etc + /usr/bin + /usr/lib + /usr/share/groff + + + + groff-doc + system.doc + + groff + + + /usr/share/doc + /usr/share/man + /usr/share/info + + + + + 2016-04-27 + 1.22.3 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.22.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ncompress + http://ncompress.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + public-domain + app:console + system.base + Un autre outil de décompression de données pour compatibilité + Another uncompressor for compatibility + Bir başka sıkışmış dosya açma programı + Ein weiterer Nichtkompressor zu Kompatibilitätszwecken + The ncompress package contains the compress and uncompress file compression and decompression utilities, which are compatible with the original UNIX compress utility (.Z file extensions). These utilities can't handle gzipped (.gz file extensions) files, but gzip can handle compressed files. + mirrors://sourceforge/ncompress/ncompress-4.2.4.4.tar.gz + + ncompress-4.2.4-make.patch + ncompress-4.2.4-lfs2.patch + ncompress-2GB.patch + ncompress-4.2.4-endians.patch + + system/base/ncompress/pspec.xml + + + ncompress + + /usr/bin + /usr/share/man + + + + + 2016-04-27 + 4.2.4.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 4.2.4.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pycurl + http://pycurl.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + system.base + Python cURL Module + Python cURL Modülü + PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program. + PycURL, python libcurl için python arayüzüdür. PycURL, URL tarafında tanımlanan nesneleri indirmek için bir python programı tarafından kullanılabilir. + https://dl.bintray.com/pycurl/pycurl/pycurl-7.43.0.tar.gz + + curl-devel + python-devel + openssl-devel + + system/base/pycurl/pspec.xml + + + pycurl + + curl + python + openssl + + + /usr/lib + /usr/share/doc + + + + + 2016-04-27 + 7.43.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 7.43.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + usbutils + http://linux-usb.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + system.base + Linux USB utilities + USB listeleme araçları + Usbutils fournit des utilitaires d'énumération usb. + usbutils provides utilities for inspecting devices connected to a USB bus. + usbutils, USB aygıt veritabanı ile sistemdeki USB aygıtları listelemeye yarayan lsusb aracını içerir. + https://www.kernel.org/pub/linux/utils/usb/usbutils/usbutils-008.tar.xz + + usb.ids + + + libusb-devel + eudev-devel + + system/base/usbutils/pspec.xml + + + usbutils + + libusb + eudev + + + /usr/bin + /usr/sbin + /usr/share/man + /usr/share/doc + /usr/share/misc + /usr/share/pkgconfig + + + + + 2016-04-27 + 008 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-11 + 008 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + shadow + http://pkg-shadow.alioth.debian.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + system.base + Utilities to deal with user accounts + Kullanıcı hesapları yönetimi için araçlar + Le paquet des utilitaires pour le fichier de mot de passe Shadow regroupe les programmes nécessaires à convertir les fichiers de mots de passe traditionnels V7*NIX au format de mot passe shadow SVR4 ainsi que d'autres outils destinés à la gestion des fichiers des groupes et de mots de passe (qui fonctionnent aussi bien pour les mots de passe shadow que non-shadow). + The Shadow password file utilities package includes programs necessary to convert traditional V7 *NIX password files to the SVR4 shadow password format, and additional tools to maintain password and group files (that work with both shadow and non-shadow passwords). + Shadow parola dosyası yardımcı uygulamalar paketi, geleneksel V7 *nix parola dosyalarını SVR4 shadow parola biçimine dönüştüren programlar ile parola ve grup dosyalarının bakımı için ilave araçlar içerir. + http://pkg-shadow.alioth.debian.org/releases/shadow-4.2.1.tar.xz + + pam-devel + gettext-devel + acl-devel + attr-devel + + + shadow-strncpy-usage.patch + xstrdup.patch + + system/base/shadow/pspec.xml + + + shadow + Utilitaires pour gérer les comptes utilisateurs + Kullanıcı hesaplarını düzenlemek için araçlar. + + acl + attr + pam + + + /bin + /usr/bin + /sbin + /usr/sbin + /etc + /lib + /usr/share/man + /usr/share/doc + /usr/share/info + /usr/share/locale + + + securetty + default/useradd + pam.d/login + pam.d/other + pam.d/passwd + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/shadow + pam.d/su + pam.d/system-auth + login.defs + + + + + 2016-04-27 + 4.2.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-11 + 4.2.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kbd + http://freshmeat.net/projects/kbd/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Keyboard and console utilities + Klavye ve konsol araçları + Le paquet kbd contient les fichiers de configuration de touches ainsi que divers utilitaires pour claviers compatible avec le noyau 1.1.54 et suivants. + The kbd package contains keytable files and keyboard utilities compatible with kernel version 1.1.54 and later. + Kbd paketi, çekirdek sürüm 1.1.54 ve sonraki sürümlerle uyumlu anahtar tablo dosyaları ve klavye yardımcı uygulamaları içerir. + https://www.kernel.org/pub/linux/utils/kbd/kbd-2.0.3.tar.xz + http://source.pisilinux.org/1.0/kbd-latarcyrheb-16-fixed.tar.bz2 + http://source.pisilinux.org/1.0/kbd-latsun-fonts.tar.bz2 + http://source.pisilinux.org/1.0/ro_maps.tar.bz2 + + gettext + gzip + pam-devel + check-devel + + + mandriva/kbd-1.15-mandriva.patch + mandriva/kbd-1.15-tilde_twosuperior_french_kbd.patch + mandriva/kbd-1.12-data_thai.patch + mandriva/kbd-1.15-remove-unneeded-calls.patch + archlinux/fix-euro2.patch + pisilinux/unicode_start-default-font.patch + pisilinux/tr-keypad-comma.patch + pisilinux/tr-no-meta_space.patch + pisilinux/trq-capslock-fix.patch + pisilinux/currency.patch + pisilinux/trf-keymap-fixes.patch + pisilinux/trf-capslock-fix.patch + + system/base/kbd/pspec.xml + + + kbd + + pam + + + /bin + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/kbd/keymaps + /usr/share/kbd/locale + /usr/share/kbd/unimaps + /usr/share/kbd/consolefonts + /usr/share/kbd/consoletrans + + + pisilinux/lat5u-12.psf.gz + pisilinux/lat5u-14.psf.gz + pisilinux/lat5u-16.psf.gz + mandriva/mac-fr-ext_new.kmap.gz + + + + + 2016-04-27 + 2.0.3 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 2.0.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + vixie-cron @@ -7096,82 +5506,58 @@ - libcap - http://www.kernel.org/pub/linux/libs/security/linux-privs/ + leveldb + https://code.google.com/p/leveldb - PisiLinux Community - admins@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - GPLv2 BSD - library + app:console system.base - capacités POSIX 1003.1e. - POSIX 1003.1e capabilities library - POSIX 1003.1e desteği - libcap is a library for getting and setting POSIX.1e (formerly POSIX 6) draft 15 capabilities. - https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-2.25.tar.xz + A fast and lightweight key/value database library + Hızlı ve hafif bir anahtar/değer veri kütüphanesi + LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. + LevelDB dize değerleri ile dize anahtarlarını eşleme sağlayan, Google'da yazılmış hızlı bir anahtar-değer depolama kütüphanesidir. + https://github.com/google/leveldb/archive/v1.18.tar.gz - attr-devel - pam-devel + gperftools-devel + snappy-devel - system/base/libcap/pspec.xml + system/base/leveldb/pspec.xml - libcap + leveldb - pam - attr + libgcc + snappy + gperftools - /sbin - /lib /usr/lib - /usr/share/man /usr/share/doc - /etc - libcap-devel - Development files for libcap - libcap için geliştirme dosyaları - system.devel + leveldb-devel - libcap + leveldb /usr/include - /usr/share/man/man3 - - - - libcap-32bit - 32-bit shared libraries for libcap - libcap için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - attr-32bit - - - attr-32bit - - - /usr/lib32 2016-04-27 - 2.25 + 1.18 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-02 - 2.25 + 1.18 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -7180,86 +5566,624 @@ - gperftools - http://code.google.com/p/gperftools/ + ca-certificates + http://packages.qa.debian.org/c/ca-certificates.html PisiLinux Community admins@pisilinux.org - BSD - library - app:console + GPLv2 + MPL-1.1 + app:web system.base - Google Performance Tools - Google Performans Araçları - Perf Tools is a collection of a high-performance multi-threaded malloc() implementation, plus some pretty nifty performance analysis tools. - gperftools yüksek performanslı ve yararlı performans analizi araçları içerir. - https://github.com/gperftools/gperftools/releases/download/gperftools-2.4/gperftools-2.4.tar.gz - - libunwind-devel - - system/base/gperftools/pspec.xml + Common CA certificates + Common CA certificates + http://ftp.debian.org/debian/pool/main/c/ca-certificates/ca-certificates_20160104.tar.xz + system/base/ca-certificates/pspec.xml - gperftools + ca-certificates - libunwind - libgcc + run-parts + /etc + /usr/share/man + /usr/sbin + /usr/share/ca-certificates + + + System.Package + + + + + 2016-04-27 + 20160104 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-03 + 20160104 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python + http://www.python.org/ + + PisiLinux Community + admins@pisilinux.org + + PSF-2.2 + app:console + system.base + An interpreted, interactive, object-orientated programming language + Nesneye yönelik bir programlama dili + Python est un langage de programmation dynamique orienté objet pouvant être utilisé pour différents types de développements logiciels. Il offre une intégration renforcée aussi bien avec les autres langages qu'avec des outils. Il est livré avec des librairies standards couvrant un large périmètre et peut être appris en quelques jours. + Python is a dynamic object-oriented programming language that can be used for many kinds of software development. It offers strong support for integration with other languages and tools, comes with extensive standard libraries, and can be learned in a few days. + Python, yazılım geliştirmenin birçok aşamasında kullanılabilen, dinamik nesne tabanlı bir programlama dilidir. Diğer programlama dilleriyle bütünleşme için sağlam bir destek sunar, kapsamlı standart kütüphanelerle sunulur ve birkaç günde öğrenilebilir. + http://www.python.org/ftp/python/2.7.11/Python-2.7.11.tar.xz + + bzip2 + gdbm-devel + zlib-devel + expat-devel + libffi-devel + sqlite-devel + ncurses-devel + openssl-devel + readline-devel + + + pisilinux_platform.patch + add-pisilinux-to-search-path.patch + default-utf8.patch + disable-egginfo.patch + trfix_emaillib.patch + + system/base/python/pspec.xml + + + python + + noDelta + + + gdbm + zlib + bzip2 + expat + libffi + sqlite + ncurses + openssl + readline + + + /etc /usr/bin + /usr/include/python2.7/pyconfig.h /usr/lib - /usr/share/doc/gperftools/COPYING + /usr/share/doc /usr/share/man + + System.PackageHandler + + + pythonstart + 04python + - gperftools-devel - Development headers for gperftools - gperftools için geliştirme başlıkları - gperftools-devel provides development headers for gperftools. - gperftools için geliştirme başlıklarını içerir. - library + python-devel + Development files for python + python için geliştirme dosyaları + system.devel - gperftools + python /usr/include /usr/lib/pkgconfig - - gperftools-docs - Documentation files for gperftools - gperftools için belgelendirme dosyaları - gperftools-docs provides documentation files for gperftools. - gperftools için belgelendirme dosyalarını içerir. - data:doc - system.doc - - gperftools - - - /usr/share/doc/gperftools - - 2016-04-27 - 2.4 + 2.7.11 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-02 - 2.4 + 2.7.11 First release Ertuğrul Erata ertugrulerata@gmail.com + + + python-psutil + https://github.com/giampaolo/psutil + + PisiLinux Community + admins@pisilinux.org + + BSD + library + system.base + A cross-platform process utilities module for Python + Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü + python-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat. + python-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır. + https://github.com/giampaolo/psutil/archive/release-4.0.0.tar.gz + + python-devel + + system/base/python-psutil/pspec.xml + + + python-psutil + + python + + + /usr/lib + /usr/share/doc + + + + + 2016-04-27 + 4.0.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 4.0.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gdbm + http://www.gnu.org/software/gdbm/gdbm.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.base + Standard GNU database libraries included for compatibility with Perl + Perl uyumlu standart GNU veritabanı kütüphaneleri + GNU dbm est un ensemble de routines de base de données utilisant extensivement les dictionnaires (hashing). Il fonctionne de manière similaire aux routines dbm UNIX standards. + GNU dbm is a set of database routines that use extensible hashing. It works similar to the standard UNIX dbm routines. + GNU dbm genişletilebilir hash yapabilen veritabanı işlevleri sağlar. Standart UNIX dbm uygulamaları ile aynı şekilde çalışır. + mirrors://gnu/gdbm/gdbm-1.11.tar.gz + + gdbm-1.10-zeroheaders.patch + + system/base/gdbm/pspec.xml + + + gdbm + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/man + /usr/share/info + + + + gdbm-devel + Development files for gdbm + gdbm için geliştirme dosyaları + system.devel + + gdbm + + + /usr/include + + + + + 2016-04-27 + 1.11 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 1.11 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + cpio + http://www.gnu.org/software/cpio/cpio.html + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + system.base + A file archival tool which can also read and write tar files + Tar ve cpio dosyaları içine yazıp okuyabilen bir dosya arşivleme uygulaması + GNU cpio permet de copier des fichiers du système dans une archive cpio ou tar et vice-versa. L'archive peut être un simple fichier sur le disque, une cassette magnétique, ou un tuyau unix (pipe). GNU cpio gère les formats d'archive suivant : binaire, ASCII ancien, ASCII nouveau, crc, binaire HPUX, ASCII ancien HPUX, tar ancien et tar POSIX.1. + GNU cpio copies files into or out of a cpio or tar archive. The archive can be another file on the disk, a magnetic tape, or a pipe. GNU cpio supports the following archive formats: binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar. + GNU cpio dosyaları cpio veya tar arşivlerine kopyalamaya veya bu arşivlerden çıkarmak için tasarlanmıştır. Arşiv diskteki başka bir dosya, manyetik bir teyp veya bir boru sistemi olabilir. GNU cpio şu arşiv formatlarını destekler: ikili, eski ASCII, yeni ASCII, crc, HPUX ikili, HPUX eski ASCII, eski tar ve POSIX.1 tar. + mirrors://gnu/cpio/cpio-2.12.tar.bz2 + + cpio-2.9-exitCode.patch + CVE-2010-0624-rpatelib-overflow.patch + + system/base/cpio/pspec.xml + + + cpio + + /bin + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/locale + + + + + 2016-04-27 + 2.12 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-01 + 2.12 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + expat + http://expat.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + system.base + librairies d'analyse XML + XML parsing libraries + XML ayrıştırıcı kütüphaneleri + XML Parser Bibliotheken + This is expat, the C library for parsing XML, written by James Clark. Expat is a stream oriented XML parser. This means that you register handlers with the parser prior to starting the parse. These handlers are called when the parser discovers the associated structures in the document being parsed. A start tag is an example of the kind of structures for which you may register handlers. + mirrors://sourceforge/expat/expat-2.1.0.tar.gz + + gnuconfig + glibc-devel + + system/base/expat/pspec.xml + + + expat + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + expat-devel + Development files for expat + expat için geliştirme dosyaları + system.devel + + expat + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/expat/html + + + + expat-32bit + 32-bit shared libraries for expat + expat için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + expat + + + /usr/lib32 + + + + + 2016-04-27 + 2.1.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-06 + 2.1.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + net-tools + http://sites.inka.de/lina/linux/NetTools/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Standard Linux networking tools + Linux ağ araçları + net-tools est une collection de programmes représentant les outils réseau de base du système d'exploitation Linux. S'y trouvent arp, hostname, ifconfig, ipmaddr, iptunnel, mii-tool, nameif, netstat, plipconfig, rarp, route et slattach. + net-tools is a collection of programs that form the base set of the networking tools for the Linux operating system. It includes arp, hostname, ifconfig, ipmaddr, iptunnel, mii-tool, nameif, netstat, plipconfig, rarp, route and slattach. + Net-tools, Linux işletim sisteminde kullanılan ağ ile ilgili temel araçların bir birleşimidir. Arp, hostname, ifconfig, ipmaddr, iptunnel, mii-tool, nameif, netstat, plipconfig, rarp, route ve slattach programlarını içerir. + https://sourceforge.net/projects/net-tools/files/net-tools-1.60.tar.bz2 + + 01_all_net-tools-1.60-2.6-compilefix.patch.bz2 + 02_all_net-tools-1.60-gcc34.patch.bz2 + 03_all_net-tools-1.60-cleanup-list-handling.patch.bz2 + 04_all_net-tools-1.60-get_name.patch.bz2 + 20_all_net-tools-1.54-ipvs.patch.bz2 + 21_all_net-tools-1.57-bug22040.patch.bz2 + 22_all_net-tools-1.60-manydevs.patch.bz2 + 23_all_net-tools-1.60-miiioctl.patch.bz2 + 24_all_net-tools-1.60-virtualname.patch.bz2 + 25_all_net-tools-1.60-cycle.patch.bz2 + 26_all_net-tools-1.60-overflow.patch.bz2 + 27_all_net-tools-1.60-netstat_ulong.patch.bz2 + 50_all_net-tools-1.60-multiline-string.patch.bz2 + 51_all_net-tools-1.60-man.patch.bz2 + 52_all_net-tools-1.60-numeric-ports.patch.bz2 + 53_all_net-tools-1.60-appletalk.patch.bz2 + 54_all_net-tools-1.60-wide.patch.bz2 + 55_all_net-tools-1.60-Makefile.patch.bz2 + 56_all_net-tools-1.60-ipv6-hostname.patch.bz2 + 57_all_net-tools-1.60-ifconfig-infiniband.patch.bz2 + 60_all_net-tools-1.60-headers.patch.bz2 + net-tools-missing.patch + kernel_headers.patch + gcc-4.3.patch + large-buffer.patch + + system/base/net-tools/pspec.xml + + + net-tools + + comar + comar-api + + + /bin + /sbin + /usr/bin + /usr/sbin + /usr/share/doc + /usr/share/man + /usr/share/locale + + + + + 2016-04-27 + 1.60 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 1.60 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libunwind + http://www.nongnu.org/libunwind/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + system.base + Call chain tracer of a program + Yazılım çağrıları geri izleme aracı + libunwind is a portable and efficient C programming interface (API) to determine the call chain of a program. + libunwind bir yazılımın çağrı sıralamasını takip etmek için kullanılan, hızlı çalışan ve taşınabilir bir C programlama arabirimidir. + http://download.savannah.gnu.org/releases/libunwind/libunwind-1.1.tar.gz + + xz-devel + + system/base/libunwind/pspec.xml + + + libunwind + + xz + + + /usr/lib + /usr/share/doc/libunwind + /usr/share/man + /usr/share/man/man3 + + + + libunwind-devel + Development files for libunwind + libunwind için geliştirme dosyaları + + libunwind + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-04-27 + 1.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 1.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libusb + http://libusb.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + system.base + Userspace access to USB devices + Project's main aim is to create a library for use by user level applications to access USB devices regardless of OS. + https://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.20/libusb-1.0.20.tar.bz2 + + eudev-devel + + system/base/libusb/pspec.xml + + + libusb + + eudev + + + /usr/bin + /usr/lib + /usr/share/doc + + + libusbx + + + libusbx + + + + libusb-devel + Development files for libusb + system.devel + + libusb + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + libusbx-devel + + + libusbx-devel + + + + libusb-32bit + 32-bit shared libraries for libusb + emul32 + emul32 + + eudev-32bit + + + libusb + eudev-32bit + + + /usr/lib32 + + + libusbx-32bit + + + libusbx-32bit + + + + + 2016-04-27 + 1.0.20 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.0.20 + First release + Alihan Öztürk + alihan@pisilinux.org + + + liblogging @@ -7316,8 +6240,59 @@ - which - http://www.xs4all.nl/~carlo17/which/ + python-pyliblzma + http://pypi.python.org/pypi/pyliblzma + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + system.base + Python bindings for lzma + Python için lzma bağlayıcıları + pyliblzma provides a python interface for the liblzma library to read/write data that has been compressed/decompressed with lzma utils. + pyliblzma, lzma araçlarıyla sıkıştırılmış verileri açmak ve lzma kitaplığı kullanarak veri sıkıştırmak için python programlama arayüzü sunan bir pakettir. + http://pypi.python.org/packages/source/p/pyliblzma/pyliblzma-0.5.3.tar.bz2 + + xz-devel + python-setuptools + python-devel + + system/base/python-pyliblzma/pspec.xml + + + python-pyliblzma + + xz + python + + + /usr/lib/python2* + /usr/share/doc + + + + + 2016-04-27 + 0.5.3 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 0.5.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gperf + http://www.gnu.org/software/gperf/gperf.html PisiLinux Community admins@pisilinux.org @@ -7325,17 +6300,293 @@ GPLv2 app:console system.base - Prints the location of specified executable in your path - Verilen komutun çalıştırma yolundaki önceliğe göre yerini gösterir - which, localise un programme dans le chemin de l'utilisateur. - which , Locates a program file in the user's path. - which, kullanıcı dizinindeki program dosyalarının yarini bulur. - which, findet eine Anwendungsdatei im Benutzerverzeichnis - mirrors://gnu/which/which-2.21.tar.gz - system/base/which/pspec.xml + A perfect hash function generator + Mükemmel hash üreticisi + gperf is a perfect hash function generator. For a given list of strings, it produces a hash function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single string comparison only. + gperf mükemmel hash fonksiyonu üretecidir. Verilen bir katar listesi için C ve C++ kodu biçiminde bir hash fonksiyonu ve hash tablosu üretir. + GNU gperf es un generador de perfect hash. Produce una función hash y una tabla hash a base de una lista de cadenas, en forma de código C o C++ , para revisar valores dependiendo de una cadena de entrada. La función de hash es perfecta, lo que quiere decir que no hay colisiones en la tabla de hash, y para la búsqueda en la tabla hash se necesita solamente una comparación. + mirrors://gnu/gperf/gperf-3.0.4.tar.gz + system/base/gperf/pspec.xml - which + gperf + + libgcc + + + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/man + + + + + 2016-04-27 + 3.0.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-05 + 3.0.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + psmisc + http://psmisc.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + A set of tools that use the proc filesystem + proc dosya sistemi kullanan bir araç takımı + PSmisc est une collection de petits utilitaires utilisant le système de fichier /proc, et assiste l'administrateur système dans ses tâches habituelles. + PSmisc is a collection of small utilities using /proc file system, and providing the system administrator with some help in common tasks. + PSmisc, /proc dosya sistemini kullanan küçük araçlar yardımıyla sistem yöneticisine bazı genel görevlerde yardımcı olmayı amaçlar. + PSmisc ist eine Sammlung von kleinen Anwendungen, die das /proc Dateisystem verwenden und dem System Administrator Hilfe für gängige Aufgaben bieten. + mirrors://sourceforge/psmisc/psmisc-22.21.tar.gz + + ncurses-devel + gettext + + + psmisc-fuser.patch + + system/base/psmisc/pspec.xml + + + psmisc + + ncurses + + + /bin + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/locale + + + + + 2016-04-27 + 22.21 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 22.21 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libunistring + http://www.gnu.org/software/libunistring + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + system.base + Unicode string library + Unicode karakter dizisi kitaplığı + This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard. + Bu kitaplığı unicode standartına göre unicode ve C karakter dizilerinde değişiklik yapmak için kullanılabilecek fonksiyonlar sunar. + mirrors://gnu/libunistring/libunistring-0.9.6.tar.gz + system/base/libunistring/pspec.xml + + + libunistring + + /usr/lib + /usr/share/doc + /usr/share/info + + + + libunistring-devel + Development files for libunistring + libunistring için geliştirme dosyaları + system.devel + + libunistring + + + /usr/include + + + + + 2016-04-27 + 0.9.6 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 0.9.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + nss-mdns + http://0pointer.de/lennart/projects/nss-mdns/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.base + Name Service Switch module + İsim servisi değiştirme modülü + Module d'échange de service de nom pour le DNS Multicast. + Name Service Switch module for Multicast DNS. + Çoklu gönderim yapan DNS'ler için isim servisi seçme modülü. + http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-0.10.tar.gz + + nss-mdns-0.8-avahi-socket.patch + + system/base/nss-mdns/pspec.xml + + + nss-mdns + + /etc + /usr/lib + /usr/share/doc + + + mdns.allow + + + + + 2016-04-27 + 0.10 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 0.10 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + sed + http://sed.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + GNU Stream Editor + GNU stream düzenleyici + Sed est un éditeur de flux. Un éditeur de flux est utilisé pour réaliser des opérations basiques de modification de texte sur un flux d'entrée (un fichier ou un tuyau unix). + Sed is a stream editor. A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline). + Sed bir dosyadan veya standart girdiden (klavyeden) bilgi okur ve standart çıktıya (ekrana) okuduğu bilgileri kullanıcının belirlediği düzene sokarak yazar. + mirrors://gnu/sed/sed-4.2.2.tar.gz + + gettext-devel + + system/base/sed/pspec.xml + + + sed + + acl + + + /bin + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/locale + + + + + 2016-04-27 + 4.2.2 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 4.2.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + bc + http://www.gnu.org/software/bc + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Console-based calculator utility + Konsol temelli hesap makinesi + bc est un langage de calcul numérique à précision arbitraire qui peut être utilisé comme calculatrice. La syntaxe est similaire au C, avec quelques différences notables. Il supporte par exemple l'exécution interactive de commandes. + bc is an arbitrary precision numeric processing language and can be used as a calculator. Syntax is similar to C, but differs in many substantial areas. For example, it supports interactive execution of statements. + bc, herhangi bir keskinlikte sayısal işlemler yapmayı sağlayan bir programlama dilidir ve bir hesap makinesi olarak kullanılabilir. Sözdizimi C programlama diline benzer, ancak C'den birçok önemli farkları vardır. Örneğin, ifadelerin etkileşimli bir şekilde çalışmasına olanak tanır. + ftp://alpha.gnu.org/gnu/bc/bc-1.06.95.tar.bz2 + + flex + texinfo + readline-devel + + + fedora/bc-1.06.95-memleak.patch + fedora/bc-1.06-dc_ibase.patch + fedora/bc-1.06.95-matlib.patch + + system/base/bc/pspec.xml + + + bc + + readline + /usr/bin /usr/share/doc @@ -7346,66 +6597,176 @@ 2016-04-27 - 2.21 + 1.06.95 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-02 - 2.21 + 2016-03-05 + 1.06.95 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - libestr - http://libestr.adiscon.com + bash + http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html - Marcin Bojara - marcin@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - LGPLv2.1 - library + GPLv2 + app:console system.base - Library for some string essentials - libestr - some essentials for string handling (and a bit more) - http://libestr.adiscon.com/files/download/libestr-0.1.10.tar.gz - system/base/libestr/pspec.xml + The standard GNU Bourne again shell + GNU Bource again kabuğu + Bash est le Bourne Again SHell du projet GNU, une implémentation complête du POSIX IEEE et des spécifications d'interprétation de commande (shell) de l'Open Group, avec édition interactive de ligne de commande et des fonctionnalités à la csh tels que la substitution dans l'historique de commande. + Bash is the GNU Project's Bourne Again SHell, a complete implementation of the IEEE POSIX and Open Group shell specification with interactive command line editing, csh-like features such as history substitution. + Bash, IEEE POSIX ve Open Group'un interaktif komut satırı düzenleme, geçmiş komutları tamamlama gibi csh tipi özellikler gibi kabuk uygulamaları tariflerinin tam olarak uygulayan GNU Projesinin Bourne Again SHell kabuk programıdır. + mirrors://gnu/bash/bash-4.3.30.tar.gz + + ncurses-devel + + + official/bash43-031.tar.gz + official/bash43-032.tar.gz + official/bash43-033.tar.gz + official/bash43-034.tar.gz + official/bash43-035.tar.gz + official/bash43-036.tar.gz + official/bash43-037.tar.gz + official/bash43-038.tar.gz + official/bash43-039.tar.gz + fedora/bash-2.02-security.patch + fedora/bash-2.03-paths.patch + fedora/bash-2.03-profile.patch + fedora/bash-2.05a-interpreter.patch + fedora/bash-2.05b-debuginfo.patch + fedora/bash-2.05b-manso.patch + fedora/bash-2.05b-pgrp_sync.patch + fedora/bash-2.05b-readline-oom.patch + fedora/bash-2.05b-xcc.patch + fedora/bash-3.2-audit.patch + fedora/bash-3.2-ssh_source_bash.patch + fedora/bash-4.0-nobits.patch + fedora/bash-4.1-broken_pipe.patch + fedora/bash-4.1-defer-sigchld-trap.patch + fedora/bash-4.1-examples.patch + fedora/bash-4.2-coverity.patch + fedora/bash-4.2-manpage_trap.patch + fedora/bash-4.2-rc2-logout.patch + fedora/bash-4.2-size_type.patch + fedora/bash-bashbug.patch + fedora/bash-infotags.patch + fedora/bash-requires.patch + fedora/bash-setlocale.patch + fedora/bash-tty-tests.patch + + system/base/bash/pspec.xml - libestr - - /usr/lib/libestr.so* - /usr/share/doc/libestr - - - - libestr-devel - Development files for libestr - system.devel + bash - libestr + ncurses - /usr/include/libestr.h - /usr/lib/pkgconfig/libestr.pc + /etc + /bin + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/locale + + bashrc + command-not-found.sh + 2016-04-27 - 0.1.10 + 4.3_p39 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-08 - 0.1.10 + 2016-02-28 + 4.3_p39 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + cracklib + http://www.sourceforge.net/projects/cracklib + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.base + Librairie de vérification de mot de passe. + Password Checking Library + Parola Kontrol Kütüphanesi + Bibliothek, um Passwörter zu prüfen + CrackLib tests passwords to determine whether they match certain security-oriented characteristics, with the purpose of stopping users from choosing passwords that are easy to guess. + CrackLib, kullanıcıların kolay tahmin edilebilir parolalar seçmelerini engellemek amacıyla parolaların güvenlik odaklı bazı özelliklere sahip olup olmadıklarını denetler. + https://github.com/cracklib/cracklib/releases/download/cracklib-2.9.6/cracklib-2.9.6.tar.gz + + zlib-devel + python-devel + miscfiles + + system/base/cracklib/pspec.xml + + + cracklib + + zlib + python + + + /lib + /usr/lib + /usr/sbin + /usr/share/locale + /usr/share/doc + /usr/share/cracklib + + + + cracklib-devel + Development files for cracklib + cracklib için geliştirme dosyaları + system.devel + + cracklib + + + /usr/include + + + + + 2016-04-27 + 2.9.6 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-03 + 2.9.6 First release Alihan Öztürk alihan@pisilinux.org @@ -7414,66 +6775,104 @@ - comar - http://www.pisilinux.org + less + http://www.greenwoodsoftware.com/ PisiLinux Community admins@pisilinux.org - GPLv2 - service + GPLv3 + app:console system.base - Manages system configuration - Sistem yapılandırmasını yönetir - Les programmes Pisi Linux sont mis sous forme de paquets à l'aide de petits scripts. Ces derniers les configure afin qu'ils s'intègrent entre eux et avec le système. Çomar est l'outil qui gère et exécute ces scripts. - Pisi Linux programs are packaged with small scripts which configures them to entegrate with system and each other. Çomar is the tool which manages and executes these scripts. - Pisi Linux yazılımları, birbirleri ve sistemle otomatik olarak uyum sağlayabilmek için yanlarında ufak programcıklar ile paketlenmektedir. Bu programcıkların yönetimi ve işletilmesi Çomar aracı tarafından yapılmaktadır. - Pisi Linux Programme werden mit einem kleinen Skript paketiert, welches sie konfiguriert, um die Integrität mit dem System und anderen Programmen sicherzustellen. Comar ist das Werkzeug, das diese Skripte verwaltet und ausführt. - http://source.pisilinux.org/1.0/comar-3.0.3.tar.bz2 + Excellent lecteur de fichier texte + Excellent text file viewer + Mükemmel bir metin görüntüleyici + Ausgezeichneter Textbetrachter + The less utility is a text file browser that resembles more, but has more capabilities. Less allows you to move backwards in the file as well as forwards. Since less doesn't have to read the entire input file before it starts, less starts up more quickly than text editors (for example, vi). + http://www.greenwoodsoftware.com/less/less-481.tar.gz - dbus-devel - python-devel - cmake + ncurses-devel - - run_dir.patch - fix-flags.patch - update-system-manager-model.patch - - system/base/comar/pspec.xml + system/base/less/pspec.xml - comar + less - dbus - python - polkit - dbus-python + ncurses + /etc/env.d /usr/bin - /usr/sbin - /etc - /usr/share/dbus-1/system-services - /usr/share/polkit-1/actions - /usr/share/doc/ - /var/db + /usr/share/doc + /usr/share/man - - System.Package - + + lesspipe.sh + 70less + code2color + 2016-04-27 - 3.0.3 + 481 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-11 - 3.0.3 + 2016-02-29 + 481 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + lsb-release + http://www.linuxbase.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + LSB version query program + LSB sürüm sorgulama aracı + lsb-release prints certain LSB (Linux Standard Base) and distribution information. + lsb-release bazı dağıtıma özel tanımlayıcı bilgileri ekrana basan bir terminal aracıdır. + mirrors://sourceforge/project/lsb/lsb_release/1.4/lsb-release-1.4.tar.gz + + util-linux + + system/base/lsb-release/pspec.xml + + + lsb-release + + /usr/bin + /etc + /usr/share/man + /usr/share/doc + + + lsb-release + + + + + 2016-04-27 + 1.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 1.4 First release Alihan Öztürk alihan@pisilinux.org @@ -7563,8 +6962,86 @@ - lzo - http://www.oberhumer.com/opensource/lzo/ + db + http://www.oracle.com/technology/products/berkeley-db/db/index.html + + PisiLinux Community + admins@pisilinux.org + + DB + app:console + system.base + Quatrième version de Berkeley DB + Oracle Berkeley DB + Oracle Berkeley DB + Ein einbettbares Datenbank Engine, dass die Entwickler mit schnellen, zuverlässigen und lokalen Persistenz unterstützt und null Administration erfordert. + The Berkeley Database (Berkeley DB) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. The Berkeley DB includes B+tree, Extended Linear Hashing, Fixed and Variable-length record access methods, transactions, locking, logging, shared memory caching, and database recovery. The Berkeley DB supports C, C++, Java, and Perl APIs. It is used by many applications, including Python and Perl, so this should be installed on all systems. + Berkeley DB geliştiricilere yerel süreklilik sağlayan ve herhangi bir ayar gerektirmeden (zero administration) kullanılan, hızlı ve gömülebilir bir veritabanı motorudur. + http://download.oracle.com/berkeley-db/db-6.1.26.tar.gz + system/base/db/pspec.xml + + + db + + libgcc + + + /usr/bin + /usr/lib + /usr/sbin + + + db5 + + + + db-devel + Development files for db + + db + + + /usr/include + + + db5-devel + + + + db-docs + Documentation for db + system.doc + + db + + + /usr/share/doc + + + db5-docs + + + + + 2016-04-27 + 6.1.26 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 6.1.26 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + fuse + http://fuse.sourceforge.net PisiLinux Community admins@pisilinux.org @@ -7572,126 +7049,131 @@ GPLv2 library system.base - An extremely fast compression and decompression library - Çok hızlı bir sıkıştırma/açma kütüphanesi - lzo is a library with very high compression and decompression speeds and very small memory usage. Provides low compression ratios but very high speeds. - lzo hızlı bir sıkıştırma/açma kütüphanesidir. Düşük sıkıştırma oranları verir fakat hem sıkıştırma hem açma işleminde bellek kullanımı çok düşüktür ve işlem hızı yüksektir. - http://www.oberhumer.com/opensource/lzo/download/lzo-2.09.tar.gz - system/base/lzo/pspec.xml + Interface implémentée dans l'environnement utilisateur (userpace) pour les systèmes de fichier. + An interface for filesystems implemented in userspace + Kullanıcı düzeyinde dosya sistemi oluştumaya yarayan kitaplık + Una interfaz para sistemas de archivos implementados en el espacio de usuario + fuse is a backend allowing regular users to (un)mount filesystems for their own use. + FUSE, kullanıcıların kendileri için dosya sistemleri oluşturmasına, bağlamasına ve bağı koparmasına imkân veren bir arkauç kitaplıktır. + https://github.com/libfuse/libfuse/releases/download/fuse_2_9_5/fuse-2.9.5.tar.gz + + gettext-devel + + + skip_umount_test.patch + + system/base/fuse/pspec.xml - lzo - - /usr/lib - /usr/share/doc - - - - lzo-devel - Development files for lzo - lzo için geliştirme dosyaları + fuse - lzo + glibc - - /usr/include - - - - lzo-32bit - 32-bit shared libraries for lzo - emul32 - emul32 - - /usr/lib32 - - - - - 2016-04-27 - 2.09 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-09 - 2.09 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - attr - http://acl.bestbits.at/ - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - app:console - library - system.base - Utilities for managing filesystems extended attributes - Gelişkin öznitelikler araçları - attr offre des utilitaires qui servent à manipuler les attributs étendus des objects de système de fichier. - attr contains a set of tools for manipulating extended attributes on filesystem objects, in particular getfattr and setfattr. - attr dosya sistemi nesnelerinin özniteliklerini değiştirmek için gerekli bir dizi araç sunar. - http://download.savannah.gnu.org/releases-noredirect/attr/attr-2.4.47.src.tar.gz - system/base/attr/pspec.xml - - - attr /bin + /sbin + /usr/bin /lib - /usr/share/locale /usr/share/doc /usr/share/man - attr-devel - Development files for attr - attr için geliştirme dosyaları + fuse-devel + Development files for fuse + fuse için geliştirme dosyaları system.devel - attr + fuse /usr/include - /usr/share/man/man3 - - - - attr-32bit - 32-bit shared libraries for attr - emul32 - emul32 - - attr - - - /lib32 + /usr/lib/pkgconfig 2016-04-27 - 2.4.47 + 2.9.5 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-01 - 2.4.47 + 2015-08-18 + 2.9.5 First release - Serdar Soytetir - kaptan@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + coreutils + http://www.gnu.org/software/coreutils/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv3+ + app:console + system.base + A set of basic GNU tools commonly used in shell scripts + Standart dosya, metin ve kabuk uygulamaları + Utilitaires standards GNU pour fichiers (chmod, cp, dd, dir, ls...), utilitaires texte (sort, tr, head, wc...) et utilitaires d'interpréteur de commande (shell) (whoami, who...) + GNU dosya uygulamaları (chmod, cp, dd, dir, ls...), sh uygulamaları (whoami, who,...) ve metin uygulamalarının (sort, tr, head, wc..) birlikteliğinden oluşmaktadır. + http://ftp.gnu.org/gnu/coreutils/coreutils-8.25.tar.xz + + acl-devel + attr-devel + perl + shadow + gettext-devel + ncurses-devel + gmp-devel + libcap-devel + texinfo + + + remove_am_silent_rules.patch + + system/base/coreutils/pspec.xml + + + coreutils + + acl + attr + gmp + libcap + + + /bin + /etc + /usr/bin + /usr/libexec + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/locale + + + + + 2016-04-27 + 8.25 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 8.25 + First release + Ertuğrul Erata + ertugrulerata@gmail.com @@ -7785,6 +7267,596 @@ + + + libcap + http://www.kernel.org/pub/linux/libs/security/linux-privs/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + library + system.base + capacités POSIX 1003.1e. + POSIX 1003.1e capabilities library + POSIX 1003.1e desteği + libcap is a library for getting and setting POSIX.1e (formerly POSIX 6) draft 15 capabilities. + https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-2.25.tar.xz + + attr-devel + pam-devel + + system/base/libcap/pspec.xml + + + libcap + + pam + attr + + + /sbin + /lib + /usr/lib + /usr/share/man + /usr/share/doc + /etc + + + + libcap-devel + Development files for libcap + libcap için geliştirme dosyaları + system.devel + + libcap + + + /usr/include + /usr/share/man/man3 + + + + libcap-32bit + 32-bit shared libraries for libcap + libcap için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + attr-32bit + + + attr-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 2.25 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 2.25 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + timezone + ftp://elsie.nci.nih.gov/pub/ + + PisiLinux Community + admins@pisilinux.org + + BSD + public-domain + app:console + data + system.base + Timezone data files and tools + Zamandilimi veri dosyaları ve araçları + timezone includes timezone data files and tools to use them. Package contents are synchronized with glibc tree. + timezone zamandilimi veri dosyaları ve bu dosyaları kullanmak için gerekli araçları içerir. Paket içeriği glibc gelişim ağacından oluşturulmaktadır. + http://www.iana.org/time-zones/repository/releases/tzdata2016a.tar.gz + + perl + gawk + + + timezone-data-2016a-makefile.patch + + system/base/timezone/pspec.xml + + + timezone + + /usr/share/zoneinfo + + + + + 2016-04-27 + 2016a + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 2016a + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ncurses + http://www.gnu.org/software/ncurses/ncurses.html + + PisiLinux Community + admins@pisilinux.org + + MIT + library + system.base + Console display library + Konsol görsel kütüphanesi + NCurses est une librairie de fonction gérant l'affichage des applications pour terminaux en mode caractères. La libraries NCurses défini de nombreuses fonctionalités telles le mouvement de la souris et du curseur, la disposition du clavier et l'affichage en couleur. + The NCurses is a library of functions that manage an application's display on character-cell terminals. The NCurses library defines many functions such as moving mouse and cursor, keyboard mapping and dispaying in color. + NCurses, bir uygulamanın karakter tabanlı uçbirimlerde görüntüleri üzerinde çalışabilmeyi sağlayan işlevler kütüphanesidir. Uygulama programları için imleci hareket ettirmek, pencereler oluşturmak, renkler üretmek, fare ile oynamak v.b. işlevler sağlamaktadır. + mirrors://gnu/ncurses/ncurses-6.0.tar.gz + + gnuconfig + + system/base/ncurses/pspec.xml + + + ncurses + + /etc + /lib + /usr/bin + /usr/lib + /usr/share/terminfo + /usr/share/tabset + /usr/share/man + /usr/share/doc + + + + ncurses-devel + Development files for ncurses + ncurses için geliştirme dosyaları + system.devel + + ncurses + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/static + /usr/lib32/static + /usr/share/man/man3 + /usr/share/pkgconfig + + + + ncurses-32bit + 32-bit shared libraries for ncurses + emul32 + _emul32 + + ncurses + + + /usr/lib32 + /usr/lib32/pkgconfig + + + + + 2016-04-27 + 6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 6.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + time + ftp://prep.ai.mit.edu/pub/gnu/time + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + A GNU utility for monitoring a program's use of system resources + Bir programın sistem kaynak kullanımını izleyen GNU aracı + time utility runs another program, collects information about the resources used by that program while it is running, and displays the results. + time başka bir programı çalıştırarak o programın sistem kaynaklarını nasıl kullandığını izler ve topladığı bilgileri ekrana basar. + ftp://prep.ai.mit.edu/pub/gnu/time/time-1.7.tar.gz + + time-1.7-destdir.patch + + system/base/time/pspec.xml + + + time + + /usr/bin/ + /usr/share/info + + + + + 2016-04-27 + 1.7 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + file + http://www.darwinsys.com/file/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + system.base + Program to identify a file's format by scanning binary data for patterns + Dosya tipini belirlemek için kullanılan bir uygulamadır + Programme servant à identifiant le format d'un fichier en analysant les données binaires en cherchant des patrons connus. + Program to identify a file's format by scanning binary data for patterns. + İkili veri taraması kullanarak (dosya uzantısına bakmadan) dosya biçimini tanımlamaya yarayan bir uygulamadır. + ftp://ftp.astron.com/pub/file/file-5.25.tar.gz + + zlib-devel + python-devel + + system/base/file/pspec.xml + + + file + + zlib + python + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/misc + /usr/include + + + + + 2016-04-27 + 5.25 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 5.25 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + mudur + http://www.pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Pisi Linux boot and initialization system + Pisi Linux açılış sistemi + Gère le montage de systèmes de fichier, le chargement de pilotes de périphérique, le démarrage des services système et d'autres tâches pendant les séquences de démarrage et d'arrêt de Pisi Linux. + mudur handles mounting of the filesystems, loading of the device drivers, starting of the system services, and other jobs during the Pisi Linux boot and shutdown sequences. + Pisi Linux açılış ve kapanışı sırasında, dosya sistemlerinin bağlanması, donanım sürücülerinin yüklenmesi, servislerin başlatılması gibi işleri yürütür. + http://source.pisilinux.org/1.0/mudur-4.4.0.tar.xz + + set_file_mode.patch + no_err-no_msg.patch + recreate_dir_if_new_uid_or_gid.patch + boot_option.patch + mount_cgroupfs.patch + + system/base/mudur/pspec.xml + + + mudur + + kbd + bash + dbus + kmod + eudev + comar + procps + python + rsyslog + sysvinit + coreutils + e2fsprogs + net-tools + baselayout + util-linux + wireless-tools + pisilinux-python + + + /etc/conf.d + /etc/mudur/services + /etc/init.d + /sbin + /bin + /usr/share/locale + + + System.PackageHandler + System.Service + System.Package + System.Settings + Disk.Manager + + + + + 2016-04-27 + 4.4.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-11 + 4.4.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + nspr + http://www.mozilla.org/projects/nspr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.base + Netscape Portable Runtime + Netscape Taşınabilir Çalışma Zamanı + Netscape Portable Runtime (NSPR -- Exécutable Portable Netscape) fourni une API neutre au sens de la plate-forme pour les fonctions de niveau système ou de type libc. Cette API est utilisée au sein du client Mozilla ainsi que de nombreuses solutions logicielles de Netscape/AOL/iPlanet. + Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc like functions. The API is used in the Mozilla client, many of Netscape/AOL/iPlanet's and other software offerings. + Netscape Taşınabilir çalışma Zamanı (NSPR) sistem seviyesindeki libc ve benzeri fonksiyonlar için platform bağımsız bir programlama arayüzü sunar. Bu arayüz, Mozilla istemcilerinde, Netscape/AOL/iPlanet'in diğer yazılımlarında kullanılmaktadır. + Netscape Portable Runtime (NSPR) provee un API independiente de la plataforma a nivel de sistema y funciones como libc. El API está usado en el cliente Mozilla, y muchos otros software de Netscape/AOL/iPlanet. + https://ftp.mozilla.org/pub/nspr/releases/v4.12/src/nspr-4.12.tar.gz + + nspr.pc.in + generate-pc-config.sh + + system/base/nspr/pspec.xml + + + nspr + + /usr/lib + + + + nspr-devel + Development files for nspr + nspr için geliştirme dosyaları + system.devel + + nspr + + + /usr/include + /usr/lib/pkgconfig + /usr/bin + + + + + 2016-04-27 + 4.12 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-06 + 4.12 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libuser + https://fedorahosted.org/libuser + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.base + A user and group account administration library + Kullanıcı ve grup hesap yönetim kitaplığı + libuser implements a standardized interface for manipulating and administering user and group accounts. The library uses pluggable back-ends to interface to its data sources. + libuser kullanıcı ve grup hesaplarını yönetmek ve işlemek için standart bir arayüz sunar. Kitaplık, sağladığı arayüzün verilere erişimi için genişletilebilir arkauçlar kullanmaktadır. + https://fedorahosted.org/releases/l/i/libuser/libuser-0.62.tar.xz + + pam-devel + popt-devel + glib2-devel + python-devel + + + libuser-0.56.15-fix_blowfish.patch + libuser-0.56.9-fix-str-fmt.patch + + system/base/libuser/pspec.xml + + + libuser + + pam + popt + glib2 + python + + + /etc + /usr/share/man + /usr/share/doc + /usr/share/locale + /usr/bin + /usr/sbin + /usr/lib + + + + libuser-devel + Development files for libuser + libuser için geliştirme dosyaları + system.devel + + libuser + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-04-27 + 0.62 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 0.62 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + procps + http://gitorious.org/procps + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.base + Standard informational utilities and process-handling tools + Geleneksel bilgilendirme yardımcı programları ve süreç işleme araçları + procps est un paquet regroupant une multitude de petits utilitaires utiles donnant des informations concernant les process en utilisant le système de fichier /proc. Le paquet inclus les programmes ps, top, vmstat, w, kill, free, slabtop et skill. + procps is the package that has a bunch of small useful utilities that give information about processes using the /proc filesystem. The package includes the programs ps, top, vmstat, w, kill, free, slabtop, and skill. + Procps /proc dosya sistemini kullanarak çalışan süreçler hakkında bilgi vermeye yarayan bazı kullanışlı uygulamaları içeren bir pakettir. Paket ps, top, vmstat, w, kill, free, slabtop ve skill gibi uygulamaları içerir. + http://downloads.sourceforge.net/project/procps-ng/Production/procps-ng-3.3.11.tar.xz + + ncurses-devel + + system/base/procps/pspec.xml + + + procps + + ncurses + + + /bin + /sbin + /lib + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/locale + /usr/include + + + + + 2016-04-27 + 3.3.11 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-09 + 3.3.11 + First release + Alihan Öztürk + alihan@pisilinux.org + + + mailcap @@ -7938,140 +8010,64 @@ - glib2 - http://www.gtk.org/ + wireless-tools + http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html PisiLinux Community admins@pisilinux.org - LGPLv2.1 - library + GPLv2 + app:console system.base - La librairie GLib2 de routines C. - A library of handy utility functions - C programlama dili için glib kütüphanesi - glib2 is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. - glib2, GTK+ ve GNOME gibi projelerin temelini oluşturan düşük seviyeli çekirdek kütüphanedir. C için veri yapıları, taşınabilirlik katmanları ve çeşitli çalışma zamanı işlevleri için arabirimler sunar. - mirrors://gnome/glib/2.46/glib-2.46.2.tar.xz - - libpcre-devel - zlib-devel - libffi-devel - + A collection of tools to configure wireless lan cards + Kablosuz ağ kartlarını yapılandırmak için kullanılan bir araç seti + Les outils sans fil (Wireless Tools ou WT) est un ensemble d'outils permettant de manipuler les extensions sans fil, c'est une interface de programmation d'application (API) générique permettant à un pilote d'exposer à l'espace utilisateur la configuration ainsi que des statistiques spécifiques aux LANs sans fil communs. Ils utilisent une interface textuelle assez rugueuse, mais ont pour objectif de couvrir la totalité de l'extension sans fil. + The Wireless Tools (WT) is a set of tools allowing to manipulate the Wireless Extensions, a generic application programming interface allowing a driver to expose to the user space configuration and statistics specific to common Wireless LANs. They use a textual interface and are rather crude, but aim to support the full Wireless Extension. + Wireless Extensions, sürücülerin bilinen kablosuz ağların ayarlarını yapmak ve istatistiklerini görüntülemek amacıyla kullandığı bir yazılım programlama arayüzüdür. Wireless Tools ise Wireless Extensions ayarlarını modifiye etmek için kullanılan araçları içeren bir pakettir. Grafik arayüzü bulunmaz, biraz da kabadır; ancak Wireless Extension'u tam olarak desteklemeyi hedefler. + http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.30.pre9.tar.gz - revert-warn-glib-compile-schemas.patch + no-ldconfig.patch + wireless_tools.27-wireless-man-upd.patch + wireless-tools-29-makefile.patch - system/base/glib2/pspec.xml + system/base/wireless-tools/pspec.xml - glib2 + wireless-tools - libpcre - zlib - libffi + comar - /etc/profile.d - /usr/bin + /sbin /usr/lib - /usr/share/bash-completion/completions/ - /usr/share/locale /usr/share/man /usr/share/doc - /usr/share/glib-2.0 - /usr/share/systemtap - /usr/share/glib-2.0/schemas - /usr/share/gettext - - System.PackageHandler - - - glib2.sh - glib2.csh - - glib2-devel - Development files for glib2 - glib2 için geliştirme dosyaları + wireless-tools-devel + Development files for wireless-tools + wireless-tools için geliştirme dosyaları system.devel - glib2 - libpcre-devel + wireless-tools - /usr/bin/gtester - /usr/bin/gtester-report - /usr/bin/gobject-query - /usr/bin/glib-genmarshal - /usr/bin/glib-gettextize - /usr/bin/glib-mkenums /usr/include - /usr/lib/glib-2.0/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/glib-2.0/schemas/gschema.dtd - /usr/share/glib-2.0/gettext - /usr/share/glib-2.0/gdb - /usr/share/gdb/auto-load/libglib-2.0.so.*-gdb.py* - /usr/share/gdb/auto-load/libgobject-2.0.so.*-gdb.py* /usr/share/man/man3 - /usr/share/man/man1/glib-genmarshal.1 - /usr/share/man/man1/glib-gettextize.1 - /usr/share/man/man1/glib-mkenums.1 - /usr/share/man/man1/gobject-query.1 - /usr/share/man/man1/gtester-report.1 - /usr/share/man/man1/gtester.1 - - - - glib2-32bit - 32-bit shared libraries for glib2 - glib2 için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - libpcre-32bit - zlib-32bit - libffi-32bit - dbus-32bit - - - glib2 - libpcre-32bit - zlib-32bit - libffi-32bit - dbus-32bit - - - /usr/bin/32 - /usr/lib32 - - - System.PackageHandler - - - - glib2-docs - Documentation files for glib2 - Extensive documentation for developers wanting to use the GLib Library - - /usr/share/gtk-doc 2016-04-27 - 2.46.2 + 30 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-10 - 2.46.2 + 2016-03-04 + 30 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -8080,8 +8076,67 @@ - procps - http://gitorious.org/procps + libee + http://www.libee.org/ + + Marcin Bojara + marcin@pisilinux.org + + LGPLv2.1 + library + system.base + An Event Expression Library inspired by CEE + Libee - An Event Expression Library inspired by CEE + http://www.libee.org/download/files/download/libee-0.4.1.tar.gz + + libestr-devel + + system/base/libee/pspec.xml + + + libee + + libestr + + + /usr/sbin + /usr/lib/libee.so* + /usr/share/doc/libee + + + + libee-devel + Development files for libestr + system.devel + + libee + + + /usr/include/libee + /usr/lib/pkgconfig/libee.pc + + + + + 2016-04-27 + 0.4.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 0.4.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + busybox + http://www.busybox.net PisiLinux Community admins@pisilinux.org @@ -8089,943 +8144,101 @@ GPLv2 app:console system.base - Standard informational utilities and process-handling tools - Geleneksel bilgilendirme yardımcı programları ve süreç işleme araçları - procps est un paquet regroupant une multitude de petits utilitaires utiles donnant des informations concernant les process en utilisant le système de fichier /proc. Le paquet inclus les programmes ps, top, vmstat, w, kill, free, slabtop et skill. - procps is the package that has a bunch of small useful utilities that give information about processes using the /proc filesystem. The package includes the programs ps, top, vmstat, w, kill, free, slabtop, and skill. - Procps /proc dosya sistemini kullanarak çalışan süreçler hakkında bilgi vermeye yarayan bazı kullanışlı uygulamaları içeren bir pakettir. Paket ps, top, vmstat, w, kill, free, slabtop ve skill gibi uygulamaları içerir. - http://downloads.sourceforge.net/project/procps-ng/Production/procps-ng-3.3.11.tar.xz - - ncurses-devel - - system/base/procps/pspec.xml + Statically linked binary providing simplified versions of system commands + Statik bağlanmış sistem komutları bütünü + busybox is a single binary which includes versions of a large number of system commands, including a shell. + busybox, kabuk da dahil olmak üzere çeşitli sistem komutlarını içeren tek bir çalıştırılabilir dosyadır. + http://busybox.net/downloads/busybox-1.24.1.tar.bz2 + + config + + system/base/busybox/pspec.xml - procps - - ncurses - + busybox /bin - /sbin - /lib - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/locale - /usr/include 2016-04-27 - 3.3.11 + 1.24.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-07 + 1.24.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + lzo + http://www.oberhumer.com/opensource/lzo/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.base + An extremely fast compression and decompression library + Çok hızlı bir sıkıştırma/açma kütüphanesi + lzo is a library with very high compression and decompression speeds and very small memory usage. Provides low compression ratios but very high speeds. + lzo hızlı bir sıkıştırma/açma kütüphanesidir. Düşük sıkıştırma oranları verir fakat hem sıkıştırma hem açma işleminde bellek kullanımı çok düşüktür ve işlem hızı yüksektir. + http://www.oberhumer.com/opensource/lzo/download/lzo-2.09.tar.gz + system/base/lzo/pspec.xml + + + lzo + + /usr/lib + /usr/share/doc + + + + lzo-devel + Development files for lzo + lzo için geliştirme dosyaları + + lzo + + + /usr/include + + + + lzo-32bit + 32-bit shared libraries for lzo + emul32 + emul32 + + /usr/lib32 + + + + + 2016-04-27 + 2.09 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-09 - 3.3.11 + 2.09 First release Alihan Öztürk alihan@pisilinux.org - - - man-pages - http://www.win.tue.nl/~aeb/linux/man/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data:doc - system.base - Une collection de pages de manuel Linux compréhensibles d'une certaine manière. - A somewhat comprehensive collection of Linux man pages - Kapsamlı Linux kılavuz dökümanları - A large collection of man pages (documentation) from the Linux Documentation Project (LDP). - https://www.kernel.org/pub/linux/docs/man-pages/man-pages-4.04.tar.xz - http://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/man-pages-posix-2003-a.tar.xz - system/base/man-pages/pspec.xml - - - man-pages - - man-db - - - /usr/share/doc - /usr/share/man - - - man1/getent.1 - man1/sprof.1 - - - - - 2016-04-27 - 4.04 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-09 - 4.04 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - groff - http://www.gnu.org/software/groff/groff.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - BSD - MIT - app:console - system.base - S'occupe de la mise en forme de texte utilisé pour les pages de manuel - A document formatting system - Belge biçimlendirme sistemi - Text Formatierer für man pages - groff is a document formatting system. Groff takes standard text and formatting commands as input and produces formatted output. - groff bir belge biçimlendirme sistemidir. Groff standart metni ve biçimlendirme komutlarını alır ve biçimlendirilmiş çıktı oluşturur. - http://ftp.gnu.org/gnu/groff/groff-1.22.3.tar.gz - - texinfo - - - groff-1.19.2-man-unicode-dashes.patch - groff-1.22.3-parallel-mom.patch - - system/base/groff/pspec.xml - - - groff - - texinfo - libgcc - - - /etc - /usr/bin - /usr/lib - /usr/share/groff - - - - groff-doc - system.doc - - groff - - - /usr/share/doc - /usr/share/man - /usr/share/info - - - - - 2016-04-27 - 1.22.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.22.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - e2fsprogs - http://e2fsprogs.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - Standard ext2/3/4 filesystem utilities - Standart ext2, ext3, ext4 dosya sistemi uygulamaları - e2frprogs fournit les outils de système de fichier à utiliser avec les systèmes de fichier de type ext2. Il prend également en charge les système de fichier de type ext3/4 avec support de la journalisation. - e2fsprogs provides the filesystem utilities for use with the ext2 filesystem. It also supports the ext3/4 filesystem with journaling support. - e2fsprogs ext2 dosya sistemi için standart dosya sistemi uygulamaları sağlar. ext3/4 dosya sistemlerinin günlüğe kaydetme özelliklerini de destekler. - mirrors://sourceforge/e2fsprogs/e2fsprogs-1.42.13.tar.gz - - libutil-linux-devel - gettext-devel - - - ntfs-3g.patch - - system/base/e2fsprogs/pspec.xml - - - e2fsprogs - - libutil-linux - - - /etc - /bin - /usr/bin - /lib - /usr/lib - /sbin - /usr/sbin - /usr/share/et - /usr/share/ss - /usr/share/locale - /usr/share/info - /usr/share/man - /usr/share/doc - - - - e2fsprogs-devel - Development files for e2fsprogs - e2fsprogs için geliştirme dosyaları - system.devel - - e2fsprogs - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2016-04-27 - 1.42.13 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-19 - 1.42.13 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - v86d - http://dev.gentoo.org/~spock/projects/uvesafb/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - system.base - Userspace helper for uvesafb - uvesafb için kullanıcı uzayı yardımcısı - Program pomocniczy uvesafb uruchamiający kod x86 w emulowanym środowisku - v86d is a userspace helper that runs x86 code in an emulated environment. It is used by the kernel framebuffer driver uvesafb. - v86d, öykünmüş bir ortamda x86 kodu çalıştıran yardımcı bir kullanıcı uzayı yardımcısıdır. Çekirdekteki uvesafb framebuffer sürücüsü tarafından kullanılır. - v86d to działający w przestrzeni użytkownika program pomocniczy uruchamiający kod x86. Jest wykorzystywany przez sterownik jądra Linuksa uvesafb. - http://source.pisilinux.org/1.0/v86d-0.1.10.tar.bz2 - system/base/v86d/pspec.xml - - - v86d - - /sbin - /usr/share/doc - - - - - 2016-04-27 - 0.1.10 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-05 - 0.1.10 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libgpg-error - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - library - system.base - Contient les fonctions de gestion d'erreur utilisées par le logiciel GnuPG. - Library for error values used by GnuPG components - GnuPG bileşenlerinin kullandığı hata değerleri için kitaplık - libgpg-error is a library that defines common error values for all GnuPG components. - libgpg-error, tüm GnuPG bileşenleri için ortak olan hata değerlerini tanımlayan bir kitaplıktır. - ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.21.tar.bz2 - system/base/libgpg-error/pspec.xml - - - libgpg-error - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - /usr/share/locale - - - - libgpg-error-devel - Development files for libgpg-error - libgpg-error için geliştirme dosyaları - system.devel - - libgpg-error - - - /usr/bin/gpg-error-config - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - libgpg-error-32bit - 32-bit shared libraries for libgpg-error - libgpg-error için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libgpg-error - - - /usr/lib32 - - - - - 2016-04-27 - 1.21 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.21 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - sysfsutils - http://linux-diag.sourceforge.net/Sysfsutils.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - System Utilities Based on Sysfs - Çeşitli sistem araç ve gereçleri - Ceci est un ensemble d'utilitaires se basant sur sysfsm un nouveau système de fichier virtuel des noyaux Linux 2.5 et + exposant l'arbre des périphériques du système. - These are a set of utilites built upon sysfs, a new virtual filesystem in Linux kernel versions 2.5+ that exposes a system's device tree. - sysfsutils sysfs sanal dosya sistemi üzerine kurulu bir araç setidir. - mirrors://sourceforge/linux-diag/sysfsutils-2.1.0.tar.gz - - sysfsutils-2.0.0-class-dup.patch - sysfsutils-2.1.0-get_link.patch - - system/base/sysfsutils/pspec.xml - - - sysfsutils - - /usr/bin - /lib - /usr/lib - /usr/share/doc - /usr/share/man - - - - sysfsutils-devel - Development files for sysfsutils - sysfsutils için geliştirme dosyaları - system.devel - - sysfsutils - - - /usr/include - /usr/share/man/man3 - - - - - 2016-04-27 - 2.1.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-06 - 2.1.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - json-c - http://oss.metaparadigm.com/json-c - - PisiLinux Community - admins@pisilinux.org - - MIT - library - system.base - A JSON implementation in C - C dilinde JSON gerçeklemesi - json-c implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. - json-c, C dilinde kolayca JSON nesneleri yaratılmasını sağlayan bir referans sayma modeli gerçekleyen bir kitaplıktır. - https://github.com/json-c/json-c/archive/json-c-0.12-20140410.tar.gz - - wno-werror.patch - - system/base/json-c/pspec.xml - - - json-c - - /usr/share/doc - /usr/share/man - /usr/lib - - - - json-c-devel - Development files for json-c - json-c için geliştirme dosyaları - system.devel - - json-c - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - json-c-32bit - 32-bit shared libraries for json-c - emul32 - emul32 - - /usr/lib32 - - - - - 2016-04-27 - 0.12 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 0.12 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - readline - http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.base - Another cute console display library - Diğer bir şirin konsol gösterim kütüphanesi - La librairie GNU Readline fourni un ensemble de fonctions utilisables par des applications permettant aux utilisateurs d'éditer les lignes de commandes en cours de frappe. Les modes d'éditions Emacs et vi sont disponibles. La librairie Readline inclus des fonctions supplémentaires de mémorisation de la liste de commandes entrées précédemment, afin de le rappeler et éventuellement les rééditer, ainsi que l'expansion d'historiques de commandes précédentes à la mode csh. - The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. - GNU Readline kütüphanesi uygulamalara sanki kullanıcılar kendileri yazıyormuş gibi komut satırı girişlerini düzenleme imkanı veren işlev setini sunar. Readline kütüphanesi daha önce girilmiş bir komut satırları listesini düzenleme, tekrar çağırma ve belki de bu satırları tekrar düzenleme ve csh tipi geçmiş bilgisi genişletmelerindeki önceki komutları yürütme imkanı sağlayan ek işlevler sağlar. - mirrors://gnu/readline/readline-6.3.tar.gz - - ncurses-devel - - - readline63-001.patch - readline63-002.patch - readline63-003.patch - - system/base/readline/pspec.xml - - - readline - - ncurses - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/info - - - - readline-devel - Development files for readline - readline için geliştirme dosyaları - system.devel - - readline - - - /usr/include - /usr/share/man/man3 - - - - readline-32bit - 32-bit shared libraries for readline - readline için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - ncurses-32bit - - - readline - ncurses-32bit - - - /usr/lib32 - - - - - 2016-04-27 - 6.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-29 - 6.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - fuse - http://fuse.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.base - Interface implémentée dans l'environnement utilisateur (userpace) pour les systèmes de fichier. - An interface for filesystems implemented in userspace - Kullanıcı düzeyinde dosya sistemi oluştumaya yarayan kitaplık - Una interfaz para sistemas de archivos implementados en el espacio de usuario - fuse is a backend allowing regular users to (un)mount filesystems for their own use. - FUSE, kullanıcıların kendileri için dosya sistemleri oluşturmasına, bağlamasına ve bağı koparmasına imkân veren bir arkauç kitaplıktır. - https://github.com/libfuse/libfuse/releases/download/fuse_2_9_5/fuse-2.9.5.tar.gz - - gettext-devel - - - skip_umount_test.patch - - system/base/fuse/pspec.xml - - - fuse - - glibc - - - /bin - /sbin - /usr/bin - /lib - /usr/share/doc - /usr/share/man - - - - fuse-devel - Development files for fuse - fuse için geliştirme dosyaları - system.devel - - fuse - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-04-27 - 2.9.5 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-18 - 2.9.5 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - nspr - http://www.mozilla.org/projects/nspr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.base - Netscape Portable Runtime - Netscape Taşınabilir Çalışma Zamanı - Netscape Portable Runtime (NSPR -- Exécutable Portable Netscape) fourni une API neutre au sens de la plate-forme pour les fonctions de niveau système ou de type libc. Cette API est utilisée au sein du client Mozilla ainsi que de nombreuses solutions logicielles de Netscape/AOL/iPlanet. - Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc like functions. The API is used in the Mozilla client, many of Netscape/AOL/iPlanet's and other software offerings. - Netscape Taşınabilir çalışma Zamanı (NSPR) sistem seviyesindeki libc ve benzeri fonksiyonlar için platform bağımsız bir programlama arayüzü sunar. Bu arayüz, Mozilla istemcilerinde, Netscape/AOL/iPlanet'in diğer yazılımlarında kullanılmaktadır. - Netscape Portable Runtime (NSPR) provee un API independiente de la plataforma a nivel de sistema y funciones como libc. El API está usado en el cliente Mozilla, y muchos otros software de Netscape/AOL/iPlanet. - https://ftp.mozilla.org/pub/nspr/releases/v4.12/src/nspr-4.12.tar.gz - - nspr.pc.in - generate-pc-config.sh - - system/base/nspr/pspec.xml - - - nspr - - /usr/lib - - - - nspr-devel - Development files for nspr - nspr için geliştirme dosyaları - system.devel - - nspr - - - /usr/include - /usr/lib/pkgconfig - /usr/bin - - - - - 2016-04-27 - 4.12 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-06 - 4.12 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - usbutils - http://linux-usb.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - system.base - Linux USB utilities - USB listeleme araçları - Usbutils fournit des utilitaires d'énumération usb. - usbutils provides utilities for inspecting devices connected to a USB bus. - usbutils, USB aygıt veritabanı ile sistemdeki USB aygıtları listelemeye yarayan lsusb aracını içerir. - https://www.kernel.org/pub/linux/utils/usb/usbutils/usbutils-008.tar.xz - - usb.ids - - - libusb-devel - eudev-devel - - system/base/usbutils/pspec.xml - - - usbutils - - libusb - eudev - - - /usr/bin - /usr/sbin - /usr/share/man - /usr/share/doc - /usr/share/misc - /usr/share/pkgconfig - - - - - 2016-04-27 - 008 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-11 - 008 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libpcre - http://www.pcre.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - system.base - Perl-compatible regular expression library - Perl-uyumlu sıradan ifade kütüphanesi - La librairie PCRE (Expressions Régulières Compatible avec Perl) est un ensemble de fonctions implémentant la recherche de motifs de texte à l'aide d'expressions régulières utilisant la même syntaxe et la même sémantique que Perl5. - The PCRE (Perl Compatible Regular Expressions) library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. - PCRE kütüphanesi, Perl 5 programlama dili sözdizimi ve semantiği ile kalıp eşleştirme (pattern matching) görevini yürüten fonksiyonları barındırır. - http://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.bz2 - - readline-devel - - system/base/libpcre/pspec.xml - - - libpcre - - libgcc - readline - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - libpcre-devel - Development files for libpcre - libpcre için geliştirme dosyaları - system.devel - - libpcre - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/libpcre/html - /usr/bin/pcre-config - /usr/share/man/man1/pcre-config.1* - /usr/share/doc/libpcre/pcre-config.txt - - - - libpcre-32bit - 32-bit shared libraries for libpcre - libpcre için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - readline-32bit - - - libgcc - libpcre - - - /usr/lib32 - - - - - 2016-04-27 - 8.38 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-25 - 8.38 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - expat - http://expat.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - system.base - librairies d'analyse XML - XML parsing libraries - XML ayrıştırıcı kütüphaneleri - XML Parser Bibliotheken - This is expat, the C library for parsing XML, written by James Clark. Expat is a stream oriented XML parser. This means that you register handlers with the parser prior to starting the parse. These handlers are called when the parser discovers the associated structures in the document being parsed. A start tag is an example of the kind of structures for which you may register handlers. - mirrors://sourceforge/expat/expat-2.1.0.tar.gz - - gnuconfig - glibc-devel - - system/base/expat/pspec.xml - - - expat - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - expat-devel - Development files for expat - expat için geliştirme dosyaları - system.devel - - expat - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/expat/html - - - - expat-32bit - 32-bit shared libraries for expat - expat için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - expat - - - /usr/lib32 - - - - - 2016-04-27 - 2.1.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-06 - 2.1.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - libusb-compat @@ -9107,45 +8320,100 @@ - zip - http://www.info-zip.org/Zip.html + dhcpcd + http://roy.marples.name/dhcpcd PisiLinux Community admins@pisilinux.org - Info-ZIP + GPLv2 app:console system.base - Info ZIP (encryption support) - ZIP programı (şifreleme desteği ile birlikte) - Zip est un outil de compression et d'archivage/packaging. Zip est utile pour distribuer un ensemble de fichier sous forme de paquets, et pour sauvegarder de l'espace disque en compressant temporairement les fichiers et répertoires inutilisés. - Zip is a compression and file packaging/archive utility. Zip is useful for packaging a set of files for distribution, for archiving files, and for saving disk space by temporarily compressing unused files or directories. - Zip bir sıkıştırma ve dosya paketleme/arşivleme uygulamasıdır. Zip dosyaları dağıtmak, arşivlemek ve kullanılmayan dosyaları ve dizinleri geçici olarak sıkıştırarak disk boşluğundan tasarruf için kullanılabilecek kullanışlı bir uygulamadır. - mirrors://sourceforge/infozip/Zip%203.x%20%28latest%29/3.0/zip30.tar.gz - system/base/zip/pspec.xml + A dhcp client only + DHCP protokolü için istemci + Un client daemon DHCP conforme aux RFC2131 et RFC1541. dhcpcd obtient une adresse IP ainsi que d'autres informations depuis le serveur DHCP correspondant, configure l'interface réseau automatiquement et essaie de renouveler le bail selont les RFC2131 et EFC1541 en fonction des options de la ligne de commande. + An RFC2131 and RFC1541 compliant DHCP client daemon. dhcpcd gets an IP address and other information from a corresponding DHCP server, configures the network interface automatically, and tries to renew the lease time according to RFC2131 or RFC1541 depending on the command line option. + RFC2131 ve RFC1541 uyumlu bir DHCP istemci servisi.dhcpcd ilgili bir DHCP sunucusundan bir IP adresi ve gerekli diğer bilgileri alır, ağ arayüzünü otomatik olarak yapılandırır ve RFC2131 veya RFC1541 komut satırı özelliğine bağlı olarak kiralama zamanını yenilemeyi dener. + http://ftp.osuosl.org/pub/blfs/conglomeration/dhcpcd/dhcpcd-6.10.1.tar.xz + system/base/dhcpcd/pspec.xml - zip - - bzip2 - + dhcpcd - /usr/bin + /etc + /lib/dhcpcd + /usr/lib/dhcpcd/dev/udev.so + /sbin /usr/share/doc /usr/share/man + /usr/share/dhcpcd + /var/lib/dhcpcd 2016-04-27 - 3.0 + 6.10.1 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-02 - 3.0 + 2016-03-08 + 6.10.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + findutils + http://www.gnu.org/software/findutils/findutils.html + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:console + system.base + GNU utilities to find files + Dosya bulmak için kullanılan GNU uygulamaları + Les utilitaires de recherche GNU sont les utilitaire de recherche de répertoire basique du système d'exploitation GNU. Ces programmes sont typiquement associés à d'autres programmes pour leur fournir une capacité de recherche de fichier et de répertoire puissante et modulaire à d'autres commandes. + The GNU Find Utilities are the basic directory searching utilities of the GNU operating system. These programs are typically used in conjunction with other programs to provide modular and powerful directory search and file locating capabilities to other commands. + GNU Find Utilities GNU işletim sisteminin temel dizin arama uygulamalarıdır. Bu uygulamalar diğer komutlara başka programlar ile birlikte çalışarak modüler ve güçlü dizin ve dosya arama yetenekleri sunar. + http://ftp.gnu.org/pub/gnu/findutils/findutils-4.6.0.tar.gz + + gettext-devel + texinfo + + system/base/findutils/pspec.xml + + + findutils + + /usr/bin + /usr/lib/find + /usr/libexec + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/locale + /var + + + + + 2016-04-27 + 4.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 4.6.0 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -9154,76 +8422,301 @@ - dbus-glib - http://dbus.freedesktop.org/ + gperftools + http://code.google.com/p/gperftools/ PisiLinux Community admins@pisilinux.org - GPLv2 - AFL-2.1 + BSD library + app:console system.base - Glib bindings for D-Bus - D-Bus için GLib bağlayıcıları - dbus-glib is an add-on library to integrate the standard D-Bus library with the GLib thread abstraction and main loop. - dbus-glib, standart D-Bus kitaplığını GLib ana döngüsüyle bütünleştirmek için kullanılan bir kitaplıktır. - http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-0.104.tar.gz + Google Performance Tools + Google Performans Araçları + Perf Tools is a collection of a high-performance multi-threaded malloc() implementation, plus some pretty nifty performance analysis tools. + gperftools yüksek performanslı ve yararlı performans analizi araçları içerir. + https://github.com/gperftools/gperftools/releases/download/gperftools-2.4/gperftools-2.4.tar.gz - dbus-devel - glib2-devel - libpcre-devel - expat-devel - libxml2 + libunwind-devel - system/base/dbus-glib/pspec.xml + system/base/gperftools/pspec.xml - dbus-glib + gperftools - dbus - glib2 - expat - libxml2 + libunwind + libgcc /usr/bin - /usr/libexec/dbus-bash-completion-helper /usr/lib - /usr/share/doc - /usr/share/man/man1 - /etc/bash_completion.d - /usr/share/bash-completion - /usr/libexec + /usr/share/doc/gperftools/COPYING + /usr/share/man - dbus-glib-devel - Development files for dbus-glib - dbus-glib için geliştirme dosyaları - system.devel + gperftools-devel + Development headers for gperftools + gperftools için geliştirme başlıkları + gperftools-devel provides development headers for gperftools. + gperftools için geliştirme başlıklarını içerir. + library - dbus-glib - dbus-devel - glib2-devel + gperftools - /usr/include/dbus-1.0 + /usr/include /usr/lib/pkgconfig - /usr/share/man/man3 + + + + gperftools-docs + Documentation files for gperftools + gperftools için belgelendirme dosyaları + gperftools-docs provides documentation files for gperftools. + gperftools için belgelendirme dosyalarını içerir. + data:doc + system.doc + + gperftools + + + /usr/share/doc/gperftools 2016-04-27 - 0.104 + 2.4 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-10 - 0.104 + 2016-03-02 + 2.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + openssl + http://www.openssl.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + library + system.base + Toolkit for SSL v2/v3 and TLS v1 + SSL v2/v3 ve TLS v1 için araç kiti + OpenSSL est un outil cryptographique implémentant une couche de communication sécurisée (SSL v2/v3) et une couche de transport sécurisée (TLS v1) + OpenSSL is a cryptography toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) network protocols and related cryptography standards required by them. + OpenSSL, Güvenlik Soketleri Katmanı (SSL v2/v3) ve Aktarım Katmanı Güvenliği (TLSv1) ağ protokolleri ile bu protokollerin gerektirdiği şifreleme standartlarını uygulayan bir şifreleme aracıdır. + OpenSSL ist ein Kryptographie Werkzeug, das die Netzwerkprotokolle Secure Sockets Layer (SSL v2/v3) und Transport Layer Security (TLS v1) sowie deren erforderliche zugehörige Kryptographie Standards implementiert. + ftp://ftp.openssl.org/source/openssl-1.0.2g.tar.gz + + openssl-1.0.0-beta4-ca-dir.patch + + + zlib-devel + xorg-util + perl + sed + + + openssl-1.0.0a-ldflags-norpath.patch + openssl-1.0.0-beta4-ca-dir.patch + openssl-1.0.0-beta5-enginesdir.patch + openssl-1.0.2-ipv6.patch + openssl-include.patch + openssl_fix_for_x32_2.patch + openssl-ca-certificates.patch + CVE-2014-0198.patch + openssl-1.0.2a-x32-asm.patch + + system/base/openssl/pspec.xml + + + openssl + + zlib + ca-certificates + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + + + System.Package + + + + openssl-devel + Development files for openssl + openssl için geliştirme dosyaları + system.devel + + openssl + + + /usr/include + /usr/share/man + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + openssl-32bit + 32-bit shared libraries for openssl + openssl için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + zlib-32bit + + + openssl + zlib-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 1.0.2g + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 1.0.2g + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + kmod + http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + system.base + Linux kernel module management utilities + Linux kernel modülleri yönetim araçları + Linux kernel module management utilities + Linux kernel modülleri yönetim araçları + https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-22.tar.xz + + chrpath + xz-devel + zlib-devel + kernel-module-headers + + + kmod-15-dynamic-kmod.patch + + system/base/kmod/pspec.xml + + + kmod + + xz + zlib + glibc + libkmod + + + /usr/bin + /bin + /sbin + /usr/share/man + /usr/share/doc + /etc + /usr/share/bash-completion/completions/kmod + + + Boot.Modules + System.PackageHandler + + + blacklist/blacklist.conf + blacklist/blacklist-firewire.conf + blacklist/blacklist-framebuffer.conf + blacklist/blacklist-watchdog.conf + modprobe.conf + depmod.conf + depmod-search.conf + + + + libkmod-devel + system.devel + + libkmod + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libkmod + kmod libraries + + xz + zlib + + + /usr/lib + + + + libkmod-32bit + 32bit libraries of libkmod + emul32 + emul32 + + xz-32bit + zlib-32bit + + + xz-32bit + zlib-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 22 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-05 + 22 First release Alihan Öztürk alihan@pisilinux.org @@ -9332,47 +8825,750 @@ - wireless-tools - http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html + libidn + http://www.gnu.org/software/libidn + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv3 + app:console + library + system.base + Internationalized Domain Names (IDN) implementation + Uluslararası Alan Adları (IDN) destek kütüphanesi + GNU Libidn est une implémentation de Stringprep, Punycode et des spécifications IDNA définies par le groupe de travail Internationalized Domain Names (IDN) de l'IETF servant pour les noms de domaines internationalisés. La librairie C est disponible sous la Licence Publique Générale Lesser. + GNU Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names. The C library is available under the GNU Lesser General Public License. + GNU Libidn, IETF Uluslararasılaştırılmış Domain Adları (IDN) çalışma grubu tarafından tanımlanmış Stringgrep, Punycode ve IDNA tariflerinin bir uygulamasıdır, uluslararası domain adlarının kullanımına olanak sağlar. C kütüphanesi GNU Lesser General Public License altında sağlanabilir. + http://ftp.gnu.org/gnu/libidn/libidn-1.32.tar.gz + system/base/libidn/pspec.xml + + + libidn + + /usr/bin + /usr/lib/libidn* + /usr/share/emacs + /usr/share/locale + /usr/share/man/man1 + /usr/share/info + /usr/share/doc + + + + libidn-devel + Development files for libidn + libidn için geliştirme dosyaları + system.devel + + libidn + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man/man3 + + + + libidn-32bit + 32-bit shared libraries for libidn + libidn için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libidn + + + /usr/lib32/libidn* + + + + + 2016-04-27 + 1.32 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.32 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + zlib + http://www.gzip.org/zlib/ + + PisiLinux Community + admins@pisilinux.org + + ZLIB + library + system.base + Librairie de compression/extraction standard + Standard (de)compression library + Standart sıkıştırma/açma kütüphanesi + Zlib is a general-purpose, patent-free, lossless data compression library which is used by many different programs. + mirrors://sourceforge/libpng/zlib-1.2.8.tar.xz + + dont-call-ldconfig.patch + + system/base/zlib/pspec.xml + + + minizip + Library for manipulating files from a zip archive + zip arşivlerindeki dosyaları yönetmek için kitaplık + util.archive + minizip + + zlib + + + /usr/lib/libminizip* + + + + minizip-devel + Development files for minizip + minizip için geliştirme dosyaları + util.archive + minizip + + minizip + zlib-devel + + + /usr/include/minizip + /usr/lib/pkgconfig/minizip.pc + + + + zlib + + /lib/libz.so* + /usr/lib/libz.so* + /usr/share/doc + /usr/share/man + + + + zlib-devel + Development files for zlib + zlib için geliştirme dosyaları + system.devel + + zlib + + + /usr/lib/pkgconfig/zlib.pc + /usr/lib32/pkgconfig + /usr/include/z*.h + /usr/share/man/man3 + /usr/share/doc/zlib/algorithm.txt + /usr/share/doc/zlib/example.c + + + + zlib-32bit + 32-bit shared libraries for zlib + zlib için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + zlib + + + /usr/lib32/libz.so* + + + + + 2016-04-27 + 1.2.8 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 1.2.8 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + comar + http://www.pisilinux.org PisiLinux Community admins@pisilinux.org GPLv2 - app:console + service system.base - A collection of tools to configure wireless lan cards - Kablosuz ağ kartlarını yapılandırmak için kullanılan bir araç seti - Les outils sans fil (Wireless Tools ou WT) est un ensemble d'outils permettant de manipuler les extensions sans fil, c'est une interface de programmation d'application (API) générique permettant à un pilote d'exposer à l'espace utilisateur la configuration ainsi que des statistiques spécifiques aux LANs sans fil communs. Ils utilisent une interface textuelle assez rugueuse, mais ont pour objectif de couvrir la totalité de l'extension sans fil. - The Wireless Tools (WT) is a set of tools allowing to manipulate the Wireless Extensions, a generic application programming interface allowing a driver to expose to the user space configuration and statistics specific to common Wireless LANs. They use a textual interface and are rather crude, but aim to support the full Wireless Extension. - Wireless Extensions, sürücülerin bilinen kablosuz ağların ayarlarını yapmak ve istatistiklerini görüntülemek amacıyla kullandığı bir yazılım programlama arayüzüdür. Wireless Tools ise Wireless Extensions ayarlarını modifiye etmek için kullanılan araçları içeren bir pakettir. Grafik arayüzü bulunmaz, biraz da kabadır; ancak Wireless Extension'u tam olarak desteklemeyi hedefler. - http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.30.pre9.tar.gz + Manages system configuration + Sistem yapılandırmasını yönetir + Les programmes Pisi Linux sont mis sous forme de paquets à l'aide de petits scripts. Ces derniers les configure afin qu'ils s'intègrent entre eux et avec le système. Çomar est l'outil qui gère et exécute ces scripts. + Pisi Linux programs are packaged with small scripts which configures them to entegrate with system and each other. Çomar is the tool which manages and executes these scripts. + Pisi Linux yazılımları, birbirleri ve sistemle otomatik olarak uyum sağlayabilmek için yanlarında ufak programcıklar ile paketlenmektedir. Bu programcıkların yönetimi ve işletilmesi Çomar aracı tarafından yapılmaktadır. + Pisi Linux Programme werden mit einem kleinen Skript paketiert, welches sie konfiguriert, um die Integrität mit dem System und anderen Programmen sicherzustellen. Comar ist das Werkzeug, das diese Skripte verwaltet und ausführt. + http://source.pisilinux.org/1.0/comar-3.0.3.tar.bz2 + + dbus-devel + python-devel + cmake + - no-ldconfig.patch - wireless_tools.27-wireless-man-upd.patch - wireless-tools-29-makefile.patch + run_dir.patch + fix-flags.patch + update-system-manager-model.patch - system/base/wireless-tools/pspec.xml + system/base/comar/pspec.xml - wireless-tools + comar - comar + dbus + python + polkit + dbus-python - /sbin - /usr/lib + /usr/bin + /usr/sbin + /etc + /usr/share/dbus-1/system-services + /usr/share/polkit-1/actions + /usr/share/doc/ + /var/db + + + System.Package + + + + + 2016-04-27 + 3.0.3 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-11 + 3.0.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + rsyslog + http://www.rsyslog.com + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + service + system.base + Enhanced system logging and kernel message trapping daemons + Gelişmiş sistem günlükleme hizmeti + rsyslog is an enhanced multi-threaded syslogd supporting, among others, MySQL, syslog/tcp, RFC 3195, permitted sender lists, filtering on any message part, and fine grain output format control. It is quite compatible with stock sysklogd and can be used as a drop-in replacement. + rsyslog, çoklu iş parçacığı, MySQL, syslog/tcp, RFC 3195, izin verilen gönderici listesi, gelişmiş ileti filtreleme gibi özelliklere sahip gelişmiş bir sistem günlükleme hizmetidir. + http://www.rsyslog.com/files/download/rsyslog/rsyslog-8.11.0.tar.gz + + zlib-devel + json-c-devel + libestr-devel + libgcrypt-devel + liblogging-devel + + system/base/rsyslog/pspec.xml + + + rsyslog + + zlib + json-c + libestr + libgcrypt + liblogging + + + /usr/bin/rsyslogd + /usr/lib/rsyslog /usr/share/man /usr/share/doc + /etc/logrotate.d + /etc/conf.d + /etc/rsyslog.d + /etc/rsyslog.conf + /var + + + System.Service + + + rsyslog.logrotate + rsyslog.conf + 50-default.conf + rsyslog.sysconfig + + + + + 2016-04-27 + 8.11.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 8.11.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + v86d + http://dev.gentoo.org/~spock/projects/uvesafb/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + system.base + Userspace helper for uvesafb + uvesafb için kullanıcı uzayı yardımcısı + Program pomocniczy uvesafb uruchamiający kod x86 w emulowanym środowisku + v86d is a userspace helper that runs x86 code in an emulated environment. It is used by the kernel framebuffer driver uvesafb. + v86d, öykünmüş bir ortamda x86 kodu çalıştıran yardımcı bir kullanıcı uzayı yardımcısıdır. Çekirdekteki uvesafb framebuffer sürücüsü tarafından kullanılır. + v86d to działający w przestrzeni użytkownika program pomocniczy uruchamiający kod x86. Jest wykorzystywany przez sterownik jądra Linuksa uvesafb. + http://source.pisilinux.org/1.0/v86d-0.1.10.tar.bz2 + system/base/v86d/pspec.xml + + + v86d + + /sbin + /usr/share/doc + + + + + 2016-04-27 + 0.1.10 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-05 + 0.1.10 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libpipeline + http://libpipeline.nongnu.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + system.base + pipeline manipulation library + pipeline yönetim kitaplığı + libpipeline is a C library for manipulating pipelines of subprocesses in a flexible and convenient way. + libpipeline, alt-süreç girdi/çıktı hatlarını (pipeline) yönetmek için geliştirilmiş bir C kitaplığıdır. + http://download.savannah.gnu.org/releases/libpipeline/libpipeline-1.4.1.tar.gz + system/base/libpipeline/pspec.xml + + + libpipeline + + /usr/lib + /usr/share/doc - wireless-tools-devel - Development files for wireless-tools - wireless-tools için geliştirme dosyaları + libpipeline-devel + Development files for libpipeline + libpipeline için geliştirme dosyaları system.devel - wireless-tools + libpipeline + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man + + + + + 2016-04-27 + 1.4.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.4.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + piksemel + http://pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.base + Python binding for iksemel + iksemel için python desteği + Un analyseur XML simple, rapide, petit et robuste pour Python basé sur iksemel. + A simple, fast, small and robust XML parser for Python, based on iksemel. + Python için basit, hızlı, ufak ve sağlam bir XML ayrıştırıcısı, iksemel tabanlıdır. + http://source.pisilinux.org/1.0/piksemel-1.3.1.tar.gz + + python-devel + + + symbol-visibility.patch + + system/base/piksemel/pspec.xml + + + piksemel + + python + + + /usr/lib + /usr/share/doc + + + + + 2016-04-27 + 1.3.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-11 + 1.3.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + eudev + https://www.gentoo.org/proj/en/eudev/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + console + system.base + eudev is a fork of system-udev + eudev sistemd-udev uygulamasının çatalı + eudev is a fork of system-udev with the goal of obtaining better compatibility with existing software such as OpenRC and Upstart, older kernels, various toolchains and anything else required by users and various distributions. + eudev sistem-udev uygulamasının OpenRC, Upstart gibi başlangıç sistemleri ile uyumu için hazırlanmış çatalı + https://github.com/gentoo/eudev/archive/v3.1.5.tar.gz + + config.cache + + + glibc-devel + libkmod-devel + libpcre-devel + gperf + + system/base/eudev/pspec.xml + + + eudev + + libkmod + + + /bin + /sbin + /usr/bin + /usr/sbin + /lib/udev + /lib + /usr/lib + /etc + /usr/lib/tmpfiles.d/udev.conf + /run/udev + /lib/systemd + /etc/udev/rules.d + /lib/udev/rules.d + /usr/share/doc + /usr/share/man + + + udev + libudev + libgudev1 + + + udev + libudev + libgudev1 + + + System.Package + + + tmpfiles.conf + 60-persistent-storage.rules + 70-yali.rules + + + + eudev-devel + Development files for eudev + system.devel + + eudev + + + /usr/include/ + /usr/lib/pkgconfig + /usr/share/pkgconfig + + + udev-devel + libudev-devel + libgudev1-devel + + + + eudev-32bit + 32-bit shared libraries for eudev + emul32 + emul32 + + libkmod-32bit + + + /lib32 + /usr/lib32 + + + libudev-32bit + libgudev1-32bit + + + libudev-32bit + libgudev1-32bit + + + + + 2016-04-27 + 3.1.5 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-05 + 3.1.5 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + sqlite + http://www.sqlite.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + system.base + An SQL Database Engine in a C Library + Bir C kütüphanesi içindeki bir SQL veritabanı motoru + SQLite est une petite librairie C implémentant un moteur de base de données SQL auto-configurée, auto-suffisante, pouvant être embarquée. Gère des bases de données de tailles allant jusqu'à 2 téraOctets. + SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Supports databases up to 2 terabytes in size. + SQLite hiçbir ayar gerektirmeyen, başka programların içine gömülebilir bir SQL veritabanı motorudur. 2 terabayta kadar büyüklükteki veritabanlarını tutabilir. + http://www.sqlite.org/2016/sqlite-autoconf-3110000.tar.gz + http://www.sqlite.org/2016/sqlite-doc-3110000.zip + + readline-devel + + system/base/sqlite/pspec.xml + + + sqlite + + readline + + + /usr/lib + /usr/share/man + /usr/bin + /usr/share/doc/sqlite/README + + + + sqlite-devel + Development files for sqlite + sqlite için geliştirme dosyaları + system.devel + + sqlite + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sqlite-32bit + 32-bit shared libraries for sqlite + emul32 + emul32 + + sqlite + + + /usr/lib32 + + + + sqlite-doc + sqlite-doc, sqlite için doküman belgeleri + + sqlite + + + /usr/share/doc/sqlite/ + + + + + 2016-04-27 + 3.11.0.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 3.11.0.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pam + http://www.kernel.org/pub/linux/libs/pam/ + + PisiLinux Community + admins@pisilinux.org + + PAM + library + system.base + Modules d'Authentification en Greffon (Pluggable Authentication Modules) + Pluggable Authentication Modules + PAM - Eklenebilir Yetkilendirme Modülleri + PAM (Pluggable Authentication Modules) is a system security tool that allows system administrators to set authentication policy without having to recompile programs that handle authentication. + http://www.linux-pam.org/library/Linux-PAM-1.2.1.tar.bz2 + + dlopen.sh + dlopen-test.sh + + + perl + gettext + cracklib-devel + libxslt-devel + docbook-xsl + + system/base/pam/pspec.xml + + + pam + + cracklib + + + /etc + /lib + /var/run/console + /usr/lib + /sbin + /usr/sbin + /usr/share/doc + /usr/share/man + /usr/share/locale + + + System.Package + + + 90-nproc.conf + + + + pam-devel + Development files for pam + pam için geliştirme dosyaları + system.devel + + pam /usr/include @@ -9382,224 +9578,20 @@ 2016-04-27 - 30 + 1.2.1 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-04 - 30 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - pciutils - http://atrey.karlin.mff.cuni.cz/~mj/pciutils.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - Various utilities dealing with the PCI bus - PCI veriyolu işlevleri ile ilgili çeşitli programlar - Les utilitaires PCI sont une collection de programmes d'inspection et de manipulation de la configuration des périphériques PCI. - The PCI Utilities are a collection of programs for inspecting and manipulating configuration of PCI devices. - Pakette bulunan PCI araçları, PCI veriyolunu kullanan donanımlarınızın görüntülenmesi ve ayarlanması işlevini yürütür. - ftp://ftp.kernel.org/pub/software/utils/pciutils/pciutils-3.4.1.tar.xz - - pci.ids - - - pciutils-nogz.patch - pciutils-remove-update-pciids.patch - makefile.patch - - system/base/pciutils/pspec.xml - - - pciutils - - zlib - eudev - libkmod - - - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/misc - - - - pciutils-devel - Development files for pciutils - pciutils için geliştirme dosyaları - system.devel - - pciutils - - - /usr/lib/pkgconfig - /usr/include - - - - - 2016-04-27 - 3.4.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-03 - 3.4.1 + 2016-03-05 + 1.2.1 First release Alihan Öztürk alihan@pisilinux.org - - - mudur - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - Pisi Linux boot and initialization system - Pisi Linux açılış sistemi - Gère le montage de systèmes de fichier, le chargement de pilotes de périphérique, le démarrage des services système et d'autres tâches pendant les séquences de démarrage et d'arrêt de Pisi Linux. - mudur handles mounting of the filesystems, loading of the device drivers, starting of the system services, and other jobs during the Pisi Linux boot and shutdown sequences. - Pisi Linux açılış ve kapanışı sırasında, dosya sistemlerinin bağlanması, donanım sürücülerinin yüklenmesi, servislerin başlatılması gibi işleri yürütür. - http://source.pisilinux.org/1.0/mudur-4.4.0.tar.xz - - set_file_mode.patch - no_err-no_msg.patch - recreate_dir_if_new_uid_or_gid.patch - boot_option.patch - mount_cgroupfs.patch - - system/base/mudur/pspec.xml - - - mudur - - kbd - bash - dbus - kmod - eudev - comar - procps - python - rsyslog - sysvinit - coreutils - e2fsprogs - net-tools - baselayout - util-linux - wireless-tools - pisilinux-python - - - /etc/conf.d - /etc/mudur/services - /etc/init.d - /sbin - /bin - /usr/share/locale - - - System.PackageHandler - System.Service - System.Package - System.Settings - Disk.Manager - - - - - 2016-04-27 - 4.4.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-11 - 4.4.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - findutils - http://www.gnu.org/software/findutils/findutils.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - system.base - GNU utilities to find files - Dosya bulmak için kullanılan GNU uygulamaları - Les utilitaires de recherche GNU sont les utilitaire de recherche de répertoire basique du système d'exploitation GNU. Ces programmes sont typiquement associés à d'autres programmes pour leur fournir une capacité de recherche de fichier et de répertoire puissante et modulaire à d'autres commandes. - The GNU Find Utilities are the basic directory searching utilities of the GNU operating system. These programs are typically used in conjunction with other programs to provide modular and powerful directory search and file locating capabilities to other commands. - GNU Find Utilities GNU işletim sisteminin temel dizin arama uygulamalarıdır. Bu uygulamalar diğer komutlara başka programlar ile birlikte çalışarak modüler ve güçlü dizin ve dosya arama yetenekleri sunar. - http://ftp.gnu.org/pub/gnu/findutils/findutils-4.6.0.tar.gz - - gettext-devel - texinfo - - system/base/findutils/pspec.xml - - - findutils - - /usr/bin - /usr/lib/find - /usr/libexec - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - /var - - - - - 2016-04-27 - 4.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 4.6.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - curl @@ -9685,144 +9677,73 @@ - libssh2 - http://www.libssh2.org/ + xz + http://tukaani.org/xz/ PisiLinux Community admins@pisilinux.org - BSD + LGPLv2+ + GPLv2+ + GPLv3 + app:console library system.base - A library implementing the SSH2 protocol - SSH2 protokolü için kütüphane - libssh2 is a library implementing the SSH2 protocol as defined by Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION, SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and SECSH-PUBLICKEY. - libssh2, SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION, SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS ve SECSH-PUBLICKEY gibi Internet Taslakları tarafından belirlenen SSH2 protokolü için geliştirilmiş bir kütüphanedir. - https://www.libssh2.org/download/libssh2-1.7.0.tar.gz - - openssl-devel - zlib-devel - - system/base/libssh2/pspec.xml + XZ compression utilities + XZ sıkıştırma araçları + XZ Utils provide a general purpose data compression library and command line tools. The .xz format supports multiple compression algorithms, which are called "filters" in context of XZ Utils. The primary filter is currently LZMA2. + xz, genel amaçlı bir veri sıkıştırma kütüphanesi ve konut satırı araçları içerir. xz dosya biçimi filtre adı verilen sıkıştırma algoritmalarını destekler, öntanımlı filtre ise LZMA2 algoritmasıdır. + http://tukaani.org/xz/xz-5.2.2.tar.xz + system/base/xz/pspec.xml - libssh2 - - openssl - zlib - + xz + /usr/bin /usr/lib + /usr/share/man /usr/share/doc + /usr/share/locale - libssh2-devel - Development files for libssh2 - libssh2 için geliştirme dosyaları + xz-devel + Development files for XZ + XZ için geliştirme dosyaları system.devel - libssh2 + xz /usr/include /usr/lib/pkgconfig - /usr/share/man - - - - - 2016-04-27 - 1.7.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.7.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ncurses - http://www.gnu.org/software/ncurses/ncurses.html - - PisiLinux Community - admins@pisilinux.org - - MIT - library - system.base - Console display library - Konsol görsel kütüphanesi - NCurses est une librairie de fonction gérant l'affichage des applications pour terminaux en mode caractères. La libraries NCurses défini de nombreuses fonctionalités telles le mouvement de la souris et du curseur, la disposition du clavier et l'affichage en couleur. - The NCurses is a library of functions that manage an application's display on character-cell terminals. The NCurses library defines many functions such as moving mouse and cursor, keyboard mapping and dispaying in color. - NCurses, bir uygulamanın karakter tabanlı uçbirimlerde görüntüleri üzerinde çalışabilmeyi sağlayan işlevler kütüphanesidir. Uygulama programları için imleci hareket ettirmek, pencereler oluşturmak, renkler üretmek, fare ile oynamak v.b. işlevler sağlamaktadır. - mirrors://gnu/ncurses/ncurses-6.0.tar.gz - - gnuconfig - - system/base/ncurses/pspec.xml - - - ncurses - - /etc - /lib - /usr/bin - /usr/lib - /usr/share/terminfo - /usr/share/tabset - /usr/share/man - /usr/share/doc - - - - ncurses-devel - Development files for ncurses - ncurses için geliştirme dosyaları - system.devel - - ncurses - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/static - /usr/lib32/static - /usr/share/man/man3 - /usr/share/pkgconfig - - - - ncurses-32bit - 32-bit shared libraries for ncurses - emul32 - _emul32 - - ncurses - - - /usr/lib32 /usr/lib32/pkgconfig + + xz-32bit + 32bit shared libraries for xz + XZ için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + xz + + + /usr/lib32 + + 2016-04-27 - 6.0 + 5.2.2 Release Bump PisiLinux Community admin@pisilinux.org 2016-02-28 - 6.0 + 5.2.2 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -9831,523 +9752,70 @@ - pypolkit - http://www.pisilinux.org + man-db + http://www.nongnu.org/man-db/ PisiLinux Community admins@pisilinux.org - MIT - library + GPLv2+ + GPLv3+ + app:console + data:doc system.base - Python binding of PolicyKit - PolicyKit için Python bağlayıcısı - pypolkit is a Python binding for the PolicyKit library. - pypolkit PolicyKit için geliştirilmiş bir Python bağlayıcısıdır. - http://source.pisilinux.org/1.0/pypolkit-1.0.2.tar.gz + Application to read Linux man pages + Kapsamlı Linux kılavuzları + Man package consists of programs which is used to read most of the documentation available in linux system. For example, you can write "man nameoftheprogram" into the konsole or "man:nameoftheprogram" into the konqueror to get a detailed usage information for many programs. + man-db paketi Linux ile ilgili yazılmış dökümanların büyük çoğunluğunu okunması için gerekli programları sunar. Örneğin, konsola "man programadı" ya da konquerora "man:programadı" yazarak birçok program hakkında detaylı kullanım bilgisi alabilirsiniz. + http://download.savannah.gnu.org/releases/man-db/man-db-2.7.5.tar.xz - glib2-devel - python-devel - polkit-devel + less + gzip + groff + gdbm-devel + zlib-devel + gettext-devel + libpipeline-devel - system/base/pypolkit/pspec.xml + system/base/man-db/pspec.xml - pypolkit + man-db - glib2 - polkit - python + gdbm + zlib + libpipeline + /etc /usr/lib + /usr/bin + /usr/sbin + /usr/libexec + /usr/share/locale /usr/share/doc + /usr/share/man + /var/cache + + mandb.conf + mandb.cron.daily + 2016-04-27 - 1.0.2 + 2.7.5 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-09 - 1.0.2 + 2.7.5 First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - texinfo - http://www.gnu.org/software/texinfo/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - system.base - programme et utilitaires GNU info. - The GNU info program and utilities - GNU info (bilgi) programı ve araçları - GNU Info Prgramm und Werkzeuge - Texinfo is a documentation system that can produce both online information and printed output from a single source file. The GNU Project uses the Texinfo file format for most of its documentation. - mirrors://gnu/texinfo/texinfo-6.1.tar.gz - - ncurses - - system/base/texinfo/pspec.xml - - - texinfo - - ncurses - - - /usr/bin - /usr/lib/texinfo - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/texinfo - /usr/share/texmf/tex/texinfo - /usr/share/locale - /usr/share/texmf/ - - - System.PackageHandler - - - - - 2016-04-27 - 6.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 6.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gawk - http://www.gnu.org/software/gawk/gawk.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - GNU awk pattern-matching language - Metin işleme uygulaması olan awk'ın GNU versiyonu - L'outil awk interprète un langage de programmation spécifique permettant d'effectuer les tâches de modifications simples de données en quelques lignes de code. Il vous permet de faire des changements dans différents fichiers texte lorsqu'un certain patron apparaît ou d'extraire des données de fragments de lignes tout en laissant de côté le reste. Gawk est l'implémentation GNU d'awk. - The awk utility interprets a special-purpose programming language that makes it possible to handle simple data-reformatting jobs with just a few lines of code. It helps you to make changes in various text files wherever certain patterns appear, or extract data from parts of certain lines while discarding the rest. Gawk is the GNU implementation of awk. - awk uygulaması az bir kod ile basit veri formatı düzenleme işlerinizi yapabilmenize olanak sağlayan özel amaçlı bir programlama dilidir. Uygulama birçok farklı metin dosyası içinde aradığınız parçaları bulup değiştirmenize veya diğer satırlardan ayırarak işlemenize yardımcı olur. Gawk programı awk'ın GNU sürümüdür. - ftp://mirrors.kernel.org/gnu/gawk/gawk-4.1.3.tar.xz - - gettext-devel - - system/base/gawk/pspec.xml - - - gawk - - readline - gmp - mpfr - - - /usr/bin - /usr/libexec - /usr/lib/gawk - /usr/include - /usr/share/awk - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - - - - - 2016-04-27 - 4.1.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 4.1.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - cpio - http://www.gnu.org/software/cpio/cpio.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - system.base - A file archival tool which can also read and write tar files - Tar ve cpio dosyaları içine yazıp okuyabilen bir dosya arşivleme uygulaması - GNU cpio permet de copier des fichiers du système dans une archive cpio ou tar et vice-versa. L'archive peut être un simple fichier sur le disque, une cassette magnétique, ou un tuyau unix (pipe). GNU cpio gère les formats d'archive suivant : binaire, ASCII ancien, ASCII nouveau, crc, binaire HPUX, ASCII ancien HPUX, tar ancien et tar POSIX.1. - GNU cpio copies files into or out of a cpio or tar archive. The archive can be another file on the disk, a magnetic tape, or a pipe. GNU cpio supports the following archive formats: binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar. - GNU cpio dosyaları cpio veya tar arşivlerine kopyalamaya veya bu arşivlerden çıkarmak için tasarlanmıştır. Arşiv diskteki başka bir dosya, manyetik bir teyp veya bir boru sistemi olabilir. GNU cpio şu arşiv formatlarını destekler: ikili, eski ASCII, yeni ASCII, crc, HPUX ikili, HPUX eski ASCII, eski tar ve POSIX.1 tar. - mirrors://gnu/cpio/cpio-2.12.tar.bz2 - - cpio-2.9-exitCode.patch - CVE-2010-0624-rpatelib-overflow.patch - - system/base/cpio/pspec.xml - - - cpio - - /bin - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - - - - - 2016-04-27 - 2.12 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-01 - 2.12 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python - http://www.python.org/ - - PisiLinux Community - admins@pisilinux.org - - PSF-2.2 - app:console - system.base - An interpreted, interactive, object-orientated programming language - Nesneye yönelik bir programlama dili - Python est un langage de programmation dynamique orienté objet pouvant être utilisé pour différents types de développements logiciels. Il offre une intégration renforcée aussi bien avec les autres langages qu'avec des outils. Il est livré avec des librairies standards couvrant un large périmètre et peut être appris en quelques jours. - Python is a dynamic object-oriented programming language that can be used for many kinds of software development. It offers strong support for integration with other languages and tools, comes with extensive standard libraries, and can be learned in a few days. - Python, yazılım geliştirmenin birçok aşamasında kullanılabilen, dinamik nesne tabanlı bir programlama dilidir. Diğer programlama dilleriyle bütünleşme için sağlam bir destek sunar, kapsamlı standart kütüphanelerle sunulur ve birkaç günde öğrenilebilir. - http://www.python.org/ftp/python/2.7.11/Python-2.7.11.tar.xz - - bzip2 - gdbm-devel - zlib-devel - expat-devel - libffi-devel - sqlite-devel - ncurses-devel - openssl-devel - readline-devel - - - pisilinux_platform.patch - add-pisilinux-to-search-path.patch - default-utf8.patch - disable-egginfo.patch - trfix_emaillib.patch - - system/base/python/pspec.xml - - - python - - noDelta - - - gdbm - zlib - bzip2 - expat - libffi - sqlite - ncurses - openssl - readline - - - /etc - /usr/bin - /usr/include/python2.7/pyconfig.h - /usr/lib - /usr/share/doc - /usr/share/man - - - System.PackageHandler - - - pythonstart - 04python - - - - python-devel - Development files for python - python için geliştirme dosyaları - system.devel - - python - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-04-27 - 2.7.11 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 2.7.11 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - file - http://www.darwinsys.com/file/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - system.base - Program to identify a file's format by scanning binary data for patterns - Dosya tipini belirlemek için kullanılan bir uygulamadır - Programme servant à identifiant le format d'un fichier en analysant les données binaires en cherchant des patrons connus. - Program to identify a file's format by scanning binary data for patterns. - İkili veri taraması kullanarak (dosya uzantısına bakmadan) dosya biçimini tanımlamaya yarayan bir uygulamadır. - ftp://ftp.astron.com/pub/file/file-5.25.tar.gz - - zlib-devel - python-devel - - system/base/file/pspec.xml - - - file - - zlib - python - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/misc - /usr/include - - - - - 2016-04-27 - 5.25 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 5.25 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - util-linux - http://userweb.kernel.org/~kzak/util-linux-ng/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - system.base - Divers utilitaires Linux utiles. - Various useful Linux utilities - Çeşitli kullanışlı Linux araçları - The util-linux package contains a large variety of low-level system utilities that are necessary for a Linux system to function. - util-linux paketi, bir Linux sisteminin işlevsel olması için gerekli olan birçok düşük seviye sistem uygulamasını içerir. - https://www.kernel.org/pub/linux/utils/util-linux/v2.27/util-linux-2.27.1.tar.xz - - zlib-devel - eudev-devel - python-devel - readline-devel - shadow - ncurses-devel - libcap-ng-devel - - - ntfs-3g.patch - upstream/util-linux-ng-2.21-login-lastlog.patch - - system/base/util-linux/pspec.xml - - - util-linux - - libutil-linux - zlib - perl - ncurses - readline - eudev - libcap-ng - - - /etc - /bin - /sbin - /usr/bin - /usr/sbin - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/misc - /usr/share/getopt - /usr/share/bash-completion/completions - /usr/share/locale - - - - uuidd - Helper daemon to guarantee uniqueness of time-based UUIDs - Zaman tabanlı UUID'lerin benzersizliğini garantileyen sistem hizmeti - service - app:console - util.misc - - libutil-linux - - - /usr/bin/uuidgen - /usr/sbin/uuidd - /usr/lib/tmpfiles.d/uuidd.conf - /usr/share/man/man1/uuidgen.1 - /usr/share/man/man8/uuidd.8 - - - uuidd.tmpfiles - - - - libutil-linux - util-linux runtime library - util-linux için kitaplıklar - library - - python - - - /lib - /usr/lib - /usr/share/man/man3/uuid* - /usr/share/man/man3/libblkid* - /usr/share/man/man8/blkid* - - - libblkid - libuuid - - - - libutil-linux-devel - libutil-linux header files - util-linux kitaplıkları için başlık dosyaları - header - system.devel - - libutil-linux - - - /usr/include/ - /usr/lib/pkgconfig/*.pc - - - libblkid-devel - libuuid-devel - - - - libutil-linux-32bit - 32-bit shared libraries for libutil-linux - util-linux için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - /usr/lib32/ - - - libblkid-32bit - libuuid-32bit - - - - - 2016-04-27 - 2.27.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 2.27.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com + Alihan Öztürk + alihan@pisilinux.org @@ -12152,217 +11620,167 @@ - polkit - http://www.freedesktop.org/wiki/Software/PolicyKit + dbus + http://dbus.freedesktop.org/ PisiLinux Community admins@pisilinux.org - LGPLv2+ + GPLv2 + AFL-2.1 service - library - app:console system.base - PolicyKit Authorization Framework - Sistem bileşenleri için erişim politikası servisi - polkit est un cadre de développement (framework) pour définir des politiques à appliquer à des composants du système ainsi que fournir à des parties du bureau la possibilité de les configurer. - polkit is a toolkit for defining and handling authorizations. It is used for allowing unprivileged processes to speak to privileged processes. - polkit, sistem genelindeki bileşenlerin ve masaüstü bileşenlerinin ayarlayabileceği şekilde ilkeler tanımlamak için araçlardan oluşur. - http://www.freedesktop.org/software/polkit/releases/polkit-0.113.tar.gz + A message bus system, a simple way for applications to talk to each other + Uygulamaların birbirleriyle haberleşmesinin basit bir yöntemi + D-Bus fourni à la fois un daemon système (pour les événements els que l'"ajout d'un nouveau périphérique" ou "file d'impression changée") et un daemon propre à chaque session utilisateur (pour les besoins généraux de communication entre processus utilisateurs). De plus, le bus de message est construit en se basant sur un framework (cadre de développement) de passage de message de un-vers-un pouvant être utilisé par n'importe quelles applications pour communiquer directement (sans passer par le daemon de bus de message). Pour l'instant les applications pouvant communiquer doivent être situées sur le même ordinateur, mais l'option TCP/IP est disponible et le support de processus distant est prévu. + D-Bus supplies both a system daemon (for events such as "new hardware device added" or "printer queue changed") and a per-user-login-session daemon (for general IPC needs among user applications). Also, the message bus is built on top of a general one-to-one message passing framework, which can be used by any two apps to communicate directly (without going through the message bus daemon). Currently the communicating applications are on one computer, but TCP/IP option is available and remote support planned. + D-Bus, sistem ve kullanıcılar için olmak üzere iki tane artalan süreci (daemon) sunar. Mesaj yolu, bire bir mesaj geçiş araçları üzerine inşa edilmiştir. Bu sayede iki program birbiriyle bir mesaj yolu artalan süreci kullanmadan, direkt olarak haberleşebilir. Şu an için haberleşme araçları aynı bilgisayar üzerinde çalışabilmektedir, fakat TCP/IP ile uzaktan haberleşme de planlanmaktadır. + https://dbus.freedesktop.org/releases/dbus/dbus-1.11.0.tar.gz - dbus-devel - pam-devel - glib2-devel expat-devel - spidermonkey-devel - gobject-introspection-devel - intltool + libX11-devel + libcap-ng-devel - - use-system-locale-in-gobject-api.diff - - system/base/polkit/pspec.xml + system/base/dbus/pspec.xml - polkit-devel - Development headers for polkit - polkit geliştirme başlıkları + dbus + + expat + libcap-ng + + + /etc/dbus-1 + /usr/lib/tmpfiles.d/dbus.conf + /usr/bin + /usr/lib + /usr/libexec + /usr/share/dbus-1 + /usr/share/doc + /usr/share/man + /run/dbus + /var/lib/dbus + /lib/systemd/system + + + System.Package + + + tmpfiles.conf + + + + dbus-x11 + x11.util + + libX11 + dbus + + + /usr/bin/dbus-launch + + + + dbus-devel + Development files for dbus + dbus için geliştirme dosyaları system.devel - polkit - glib2-devel + dbus /usr/include /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/lib/dbus-1.0/include + /usr/share/man/man3 - polkit - - pam - glib2 - expat - spidermonkey - - - /etc - /usr/lib - /usr/libexec - /usr/bin - /usr/sbin - /usr/share/locale - /usr/share/polkit-1 - /usr/share/dbus-1 - /usr/share/gir-1.0 - /var/lib/polkit-1 - /lib/systemd - /usr/share/man - /usr/share/doc - - - man/pklocalauthority.8 - man/polkit.8 - man/polkitd.8 - man/pkaction.1 - man/pkcheck.1 - man/pkexec.1 - 70-desktop-policy.conf - - - - - 2016-04-27 - 0.113 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-09 - 0.113 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python-pyliblzma - http://pypi.python.org/pypi/pyliblzma - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - library - system.base - Python bindings for lzma - Python için lzma bağlayıcıları - pyliblzma provides a python interface for the liblzma library to read/write data that has been compressed/decompressed with lzma utils. - pyliblzma, lzma araçlarıyla sıkıştırılmış verileri açmak ve lzma kitaplığı kullanarak veri sıkıştırmak için python programlama arayüzü sunan bir pakettir. - http://pypi.python.org/packages/source/p/pyliblzma/pyliblzma-0.5.3.tar.bz2 + dbus-32bit + 32-bit shared libraries for dbus + dbus için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 - xz-devel - python-setuptools - python-devel + expat-32bit - system/base/python-pyliblzma/pspec.xml - - - python-pyliblzma - - xz - python - - /usr/lib/python2* - /usr/share/doc + /usr/lib32 2016-04-27 - 0.5.3 + 1.11.0 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-02 - 0.5.3 + 2016-03-04 + 1.11.0 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Hakan Yıldız + hknuldz93@gmail.com - libgcrypt + libgpg-error http://www.gnupg.org/ PisiLinux Community admins@pisilinux.org + GPLv2 LGPLv2.1 library system.base - Librairie générale de cryptographie basée sur le code utilisé dans GnuPG. - General purpose crypto library - Genel amaçlı bir şifreleme kitaplığı - Libgcrypt is a general purpose crypto library based on the code used in GNU Privacy Guard. - Libgcrypt, GNU Privacy Guard kodunu temel alan genel amaçlı bir şifreleme kitaplığıdır. - https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.6.5.tar.bz2 - - libgpg-error-devel - - system/base/libgcrypt/pspec.xml + Contient les fonctions de gestion d'erreur utilisées par le logiciel GnuPG. + Library for error values used by GnuPG components + GnuPG bileşenlerinin kullandığı hata değerleri için kitaplık + libgpg-error is a library that defines common error values for all GnuPG components. + libgpg-error, tüm GnuPG bileşenleri için ortak olan hata değerlerini tanımlayan bir kitaplıktır. + ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.21.tar.bz2 + system/base/libgpg-error/pspec.xml - libgcrypt - - libgpg-error - + libgpg-error - /usr/lib - /usr/share/man - /usr/share/doc - /etc/gcrypt /usr/bin - /usr/share/info + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/locale - libgcrypt-devel - Development files for libgcrypt - libgcrypt için geliştirme dosyaları + libgpg-error-devel + Development files for libgpg-error + libgpg-error için geliştirme dosyaları system.devel - libgcrypt - libgpg-error-devel + libgpg-error + /usr/bin/gpg-error-config /usr/include /usr/lib/pkgconfig - /usr/share/aclocal /usr/lib32/pkgconfig - /usr/bin/*-config + /usr/share/aclocal - libgcrypt-32bit - 32-bit shared libraries for libgcrypt - libgcrypt için 32-bit paylaşımlı kitaplıklar + libgpg-error-32bit + 32-bit shared libraries for libgpg-error + libgpg-error için 32-bit paylaşımlı kitaplıklar emul32 emul32 - - libgpg-error-32bit - - libgpg-error-32bit - libgcrypt + libgpg-error /usr/lib32 @@ -12371,14 +11789,14 @@ 2016-04-27 - 1.6.5 + 1.21 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-08 - 1.6.5 + 1.21 First release Alihan Öztürk alihan@pisilinux.org @@ -12387,124 +11805,38 @@ - cracklib - http://www.sourceforge.net/projects/cracklib + patch + http://www.gnu.org/software/patch/patch.html PisiLinux Community admins@pisilinux.org GPLv2 - library - system.base - Librairie de vérification de mot de passe. - Password Checking Library - Parola Kontrol Kütüphanesi - Bibliothek, um Passwörter zu prüfen - CrackLib tests passwords to determine whether they match certain security-oriented characteristics, with the purpose of stopping users from choosing passwords that are easy to guess. - CrackLib, kullanıcıların kolay tahmin edilebilir parolalar seçmelerini engellemek amacıyla parolaların güvenlik odaklı bazı özelliklere sahip olup olmadıklarını denetler. - https://github.com/cracklib/cracklib/releases/download/cracklib-2.9.6/cracklib-2.9.6.tar.gz - - zlib-devel - python-devel - miscfiles - - system/base/cracklib/pspec.xml - - - cracklib - - zlib - python - - - /lib - /usr/lib - /usr/sbin - /usr/share/locale - /usr/share/doc - /usr/share/cracklib - - - - cracklib-devel - Development files for cracklib - cracklib için geliştirme dosyaları + app:console system.devel - - cracklib - - - /usr/include - - - - - 2016-04-27 - 2.9.6 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-03 - 2.9.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - man-db - http://www.nongnu.org/man-db/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - GPLv3+ - app:console - data:doc - system.base - Application to read Linux man pages - Kapsamlı Linux kılavuzları - Man package consists of programs which is used to read most of the documentation available in linux system. For example, you can write "man nameoftheprogram" into the konsole or "man:nameoftheprogram" into the konqueror to get a detailed usage information for many programs. - man-db paketi Linux ile ilgili yazılmış dökümanların büyük çoğunluğunu okunması için gerekli programları sunar. Örneğin, konsola "man programadı" ya da konquerora "man:programadı" yazarak birçok program hakkında detaylı kullanım bilgisi alabilirsiniz. - http://download.savannah.gnu.org/releases/man-db/man-db-2.7.5.tar.xz + Applies patch files + Yama dosyalarını uygular + Aplicación de archivos de parches + Permet d'appliquer un patch générer par la commande diff aux fichiers originels, obtenant ainsi les fichiers patchés. + Patch takes a patch file generated by diff command, and applies it to the original files, thus producing patched files. + Özgün dosyaları, diff komutu ile üretilmiş yama dosyasını uygulayarak, yeni biçimlerine çevirir. + Recibe una archivo de parche generado por el comando diff y lo aplica a los archivos originales, así produciendo archivos parcheados. + ftp://ftp.gnu.org/gnu/patch/patch-2.7.5.tar.xz - less - gzip - groff - gdbm-devel - zlib-devel - gettext-devel - libpipeline-devel + attr-devel - system/base/man-db/pspec.xml + system/devel/patch/pspec.xml - man-db + patch - gdbm - zlib - libpipeline + attr - /etc - /usr/lib /usr/bin - /usr/sbin - /usr/libexec - /usr/share/locale /usr/share/doc /usr/share/man - /var/cache - - mandb.conf - mandb.cron.daily - @@ -12515,62 +11847,9 @@ admin@pisilinux.org - 2016-03-09 + 2016-03-20 2.7.5 First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - sed - http://sed.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - GNU Stream Editor - GNU stream düzenleyici - Sed est un éditeur de flux. Un éditeur de flux est utilisé pour réaliser des opérations basiques de modification de texte sur un flux d'entrée (un fichier ou un tuyau unix). - Sed is a stream editor. A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline). - Sed bir dosyadan veya standart girdiden (klavyeden) bilgi okur ve standart çıktıya (ekrana) okuduğu bilgileri kullanıcının belirlediği düzene sokarak yazar. - mirrors://gnu/sed/sed-4.2.2.tar.gz - - gettext-devel - - system/base/sed/pspec.xml - - - sed - - acl - - - /bin - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - - - - - 2016-04-27 - 4.2.2 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 4.2.2 - First release Ertuğrul Erata ertugrulerata@gmail.com @@ -12578,217 +11857,53 @@ - psmisc - http://psmisc.sourceforge.net/ + flex + http://flex.sourceforge.net/ PisiLinux Community admins@pisilinux.org - GPLv2 + FLEX app:console - system.base - A set of tools that use the proc filesystem - proc dosya sistemi kullanan bir araç takımı - PSmisc est une collection de petits utilitaires utilisant le système de fichier /proc, et assiste l'administrateur système dans ses tâches habituelles. - PSmisc is a collection of small utilities using /proc file system, and providing the system administrator with some help in common tasks. - PSmisc, /proc dosya sistemini kullanan küçük araçlar yardımıyla sistem yöneticisine bazı genel görevlerde yardımcı olmayı amaçlar. - PSmisc ist eine Sammlung von kleinen Anwendungen, die das /proc Dateisystem verwenden und dem System Administrator Hilfe für gängige Aufgaben bieten. - mirrors://sourceforge/psmisc/psmisc-22.21.tar.gz + system.devel + GNU lexical analyser generator + GNU sözcüksel analiz üreteci + Flex est un outil de génération d'analyseur (scanner). Un analyseur (également appelé tokenizer en anglais) est un programme qui repère les motifs lexicaux (ou lexème) dans du texte. + Flex is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text + Flex, metin içindeki sözcüksel kalıpları tanıyan, analiz aracı üretecidir. + mirrors://sourceforge/flex/flex-2.6.0.tar.gz - ncurses-devel - gettext + patch + texinfo - psmisc-fuser.patch + flex-2.5.37-notex.patch - system/base/psmisc/pspec.xml + system/devel/flex/pspec.xml - psmisc - - ncurses - + flex - /bin /usr/bin - /usr/share/man + /usr/lib /usr/share/doc + /usr/share/man + /usr/share/info + /usr/include /usr/share/locale 2016-04-27 - 22.21 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-09 - 22.21 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ncompress - http://ncompress.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - public-domain - app:console - system.base - Un autre outil de décompression de données pour compatibilité - Another uncompressor for compatibility - Bir başka sıkışmış dosya açma programı - Ein weiterer Nichtkompressor zu Kompatibilitätszwecken - The ncompress package contains the compress and uncompress file compression and decompression utilities, which are compatible with the original UNIX compress utility (.Z file extensions). These utilities can't handle gzipped (.gz file extensions) files, but gzip can handle compressed files. - mirrors://sourceforge/ncompress/ncompress-4.2.4.4.tar.gz - - ncompress-4.2.4-make.patch - ncompress-4.2.4-lfs2.patch - ncompress-2GB.patch - ncompress-4.2.4-endians.patch - - system/base/ncompress/pspec.xml - - - ncompress - - /usr/bin - /usr/share/man - - - - - 2016-04-27 - 4.2.4.4 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-09 - 4.2.4.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - timezone - ftp://elsie.nci.nih.gov/pub/ - - PisiLinux Community - admins@pisilinux.org - - BSD - public-domain - app:console - data - system.base - Timezone data files and tools - Zamandilimi veri dosyaları ve araçları - timezone includes timezone data files and tools to use them. Package contents are synchronized with glibc tree. - timezone zamandilimi veri dosyaları ve bu dosyaları kullanmak için gerekli araçları içerir. Paket içeriği glibc gelişim ağacından oluşturulmaktadır. - http://www.iana.org/time-zones/repository/releases/tzdata2016a.tar.gz - - perl - gawk - - - timezone-data-2016a-makefile.patch - - system/base/timezone/pspec.xml - - - timezone - - /usr/share/zoneinfo - - - - - 2016-04-27 - 2016a + 2.6.0 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-13 - 2016a - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - snappy - http://code.google.com/p/snappy/ - - Alihan Öztürk - alihan@pisilinux.org - - BSD - library - system.base - A fast compressor/decompressor librar - Linux için sıkıştırma/ayıklama kütüphanesidir. - Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. - Linux için sıkıştırma/ayıklama kütüphanesidir. Yüksek hızda sıkıştırma yapmak için yazılmış bir kütüphanedir. - https://github.com/google/snappy/releases/download/1.1.3/snappy-1.1.3.tar.gz - - lzo-devel - zlib-devel - - - snappy-unittest.patch - - system/base/snappy/pspec.xml - - - snappy - - libgcc - - - /usr/lib - /usr/share/doc - /usr/share - - - - snappy-devel - snappy için geliştirme dosyaları - - snappy - - - /usr/include - - - - - 2016-04-27 - 1.1.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 1.1.3 + 2.6.0 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -12797,748 +11912,104 @@ - gdbm - http://www.gnu.org/software/gdbm/gdbm.html + numactl + ftp://oss.sgi.com/www/projects/libnuma/download PisiLinux Community admins@pisilinux.org GPLv2 + LGPLv2 library - system.base - Standard GNU database libraries included for compatibility with Perl - Perl uyumlu standart GNU veritabanı kütüphaneleri - GNU dbm est un ensemble de routines de base de données utilisant extensivement les dictionnaires (hashing). Il fonctionne de manière similaire aux routines dbm UNIX standards. - GNU dbm is a set of database routines that use extensible hashing. It works similar to the standard UNIX dbm routines. - GNU dbm genişletilebilir hash yapabilen veritabanı işlevleri sağlar. Standart UNIX dbm uygulamaları ile aynı şekilde çalışır. - mirrors://gnu/gdbm/gdbm-1.11.tar.gz - - gdbm-1.10-zeroheaders.patch - - system/base/gdbm/pspec.xml + app:console + system.devel + Library for tuning NUMA machines + NUMA makineleri optimize etmek için bir kitaplık + numactl consists of a numactl program to run other programs with a specific NUMA policy and a libnuma to do allocations with NUMA policy in applications. + numactl, uygulamaları farklı NUMA (Tekdüze Olmayan Bellek Erişimi) politikalarıyla çalıştırmak için gerekli bir araç ve kitaplıktır. + ftp://oss.sgi.com/www/projects/libnuma/download/numactl-2.0.11.tar.gz + system/devel/numactl/pspec.xml - gdbm + numactl /usr/bin /usr/lib /usr/share/doc - /usr/share/locale /usr/share/man - /usr/share/info - gdbm-devel - Development files for gdbm - gdbm için geliştirme dosyaları - system.devel + numactl-devel + Development files for numactl + numactl için geliştirme dosyaları - gdbm + numactl /usr/include - - - - - 2016-04-27 - 1.11 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 1.11 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - help2man - http://www.gnu.org/software/help2man - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - GNU utility to convert program --help output to a man page - Geleneksel --help çıktılarını man sayfalarına dönüştüren bir GNU yazılımı - Help2man is a tool which generate man page from help text of programs. - Help2man programların help çıktılarını man sayfalarına dönüştüren bir araçtır. - http://ftp.gnu.org/gnu/help2man/help2man-1.47.3.tar.xz - - perl-Locale-gettext - - system/base/help2man/pspec.xml - - - help2man - - perl-Locale-gettext - mkinitcpio - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/locale - /usr/share/man - - - - - 2016-04-27 - 1.47.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.47.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - eudev - https://www.gentoo.org/proj/en/eudev/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - console - system.base - eudev is a fork of system-udev - eudev sistemd-udev uygulamasının çatalı - eudev is a fork of system-udev with the goal of obtaining better compatibility with existing software such as OpenRC and Upstart, older kernels, various toolchains and anything else required by users and various distributions. - eudev sistem-udev uygulamasının OpenRC, Upstart gibi başlangıç sistemleri ile uyumu için hazırlanmış çatalı - https://github.com/gentoo/eudev/archive/v3.1.5.tar.gz - - config.cache - - - glibc-devel - libkmod-devel - libpcre-devel - gperf - - system/base/eudev/pspec.xml - - - eudev - - libkmod - - - /bin - /sbin - /usr/bin - /usr/sbin - /lib/udev - /lib - /usr/lib - /etc - /usr/lib/tmpfiles.d/udev.conf - /run/udev - /lib/systemd - /etc/udev/rules.d - /lib/udev/rules.d - /usr/share/doc - /usr/share/man - - - udev - libudev - libgudev1 - - - udev - libudev - libgudev1 - - - System.Package - - - tmpfiles.conf - 60-persistent-storage.rules - 70-yali.rules - - - - eudev-devel - Development files for eudev - system.devel - - eudev - - - /usr/include/ - /usr/lib/pkgconfig - /usr/share/pkgconfig - - - udev-devel - libudev-devel - libgudev1-devel - - - - eudev-32bit - 32-bit shared libraries for eudev - emul32 - emul32 - - libkmod-32bit - - - /lib32 - /usr/lib32 - - - libudev-32bit - libgudev1-32bit - - - libudev-32bit - libgudev1-32bit - - - - - 2016-04-27 - 3.1.5 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-05 - 3.1.5 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - grep - http://www.gnu.org/software/grep/grep.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - system.base - GNU regular expression matcher - Grep düzenli ifade eşleme aracı - La commande grep recherche dans un ou plusieurs fichiers les lignes correspondant à un motif défini. Par défaut grep affiche les lignes éligibles. - The grep command searches one or more input files for lines containing a match to a specified pattern. By default, grep prints the matching lines. - Grep komutu bir veya daha fazla verilen dosyada aranan parçayı bulmaya yarayan bir programdır. Ön tanımlı olarak grep eşleşen satırları çıktıya verir. - ftp://mirrors.kernel.org/gnu/grep/grep-2.23.tar.xz - - gettext - libpcre-devel - - system/base/grep/pspec.xml - - - grep - - libpcre - - - /bin - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - - - - - 2016-04-27 - 2.23 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 2.23 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libidn - http://www.gnu.org/software/libidn - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv3 - app:console - library - system.base - Internationalized Domain Names (IDN) implementation - Uluslararası Alan Adları (IDN) destek kütüphanesi - GNU Libidn est une implémentation de Stringprep, Punycode et des spécifications IDNA définies par le groupe de travail Internationalized Domain Names (IDN) de l'IETF servant pour les noms de domaines internationalisés. La librairie C est disponible sous la Licence Publique Générale Lesser. - GNU Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names. The C library is available under the GNU Lesser General Public License. - GNU Libidn, IETF Uluslararasılaştırılmış Domain Adları (IDN) çalışma grubu tarafından tanımlanmış Stringgrep, Punycode ve IDNA tariflerinin bir uygulamasıdır, uluslararası domain adlarının kullanımına olanak sağlar. C kütüphanesi GNU Lesser General Public License altında sağlanabilir. - http://ftp.gnu.org/gnu/libidn/libidn-1.32.tar.gz - system/base/libidn/pspec.xml - - - libidn - - /usr/bin - /usr/lib/libidn* - /usr/share/emacs - /usr/share/locale - /usr/share/man/man1 - /usr/share/info - /usr/share/doc - - - - libidn-devel - Development files for libidn - libidn için geliştirme dosyaları - system.devel - - libidn - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig /usr/share/man/man3 - - libidn-32bit - 32-bit shared libraries for libidn - libidn için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libidn - - - /usr/lib32/libidn* - - 2016-04-27 - 1.32 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.32 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - time - ftp://prep.ai.mit.edu/pub/gnu/time - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - A GNU utility for monitoring a program's use of system resources - Bir programın sistem kaynak kullanımını izleyen GNU aracı - time utility runs another program, collects information about the resources used by that program while it is running, and displays the results. - time başka bir programı çalıştırarak o programın sistem kaynaklarını nasıl kullandığını izler ve topladığı bilgileri ekrana basar. - ftp://prep.ai.mit.edu/pub/gnu/time/time-1.7.tar.gz - - time-1.7-destdir.patch - - system/base/time/pspec.xml - - - time - - /usr/bin/ - /usr/share/info - - - - - 2016-04-27 - 1.7 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - urlgrabber - http://urlgrabber.baseurl.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - system.base - High level cross-protocol url-grabber library for Python - Python için yüksek seviyeli, platform bağımsız bir url-grabber kütüphanesi - urlgrabber provides a clean library interface to protocol-independant file-access for Python programs - urlgrabber Python uygulamaları için protokol bağımsız dosya erişimi sağlayan temiz bir kütüphanedir. - http://urlgrabber.baseurl.org/download/urlgrabber-3.10.1.tar.gz - - python - - system/base/urlgrabber/pspec.xml - - - urlgrabber - - python - pycurl - - - /usr/lib - /usr/libexec - /usr/share/doc - - - - - 2016-04-27 - 3.10.1 + 2.0.11 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-02 - 3.10.1 + 2.0.11 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Alihan Öztürk + alihan@pisilinux.org - perl-Locale-gettext - http://search.cpan.org/dist/gettext - - PisiLinux Community - admins@pisilinux.org - - Artistic - library - system.base - A Perl module for accessing the GNU locale utilities - GNU yerel araçlarına erişim için Perl modülü - The gettext module permits access from Perl to the gettext() family of functions for retrieving message strings from databases constructed to internationalize software. - Bu modül, çoklu dil desteğini sağlayan gettext() ailesine Perl üzerinden erişimi sağlar. - El módulo gettext permite Perl acceder a la familia de funciones gettext() para obtener cadenas de mensajes (traducidos) desde bases de datos para la internacionalización de software. - http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-1.07.tar.gz - - perl - - system/base/perl-Locale-gettext/pspec.xml - - - perl-Locale-gettext - - perl - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2016-04-27 - 1.07 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-03 - 1.07 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libunwind - http://www.nongnu.org/libunwind/ + xtrans + http://www.x.org/ PisiLinux Community admins@pisilinux.org MIT library - system.base - Call chain tracer of a program - Yazılım çağrıları geri izleme aracı - libunwind is a portable and efficient C programming interface (API) to determine the call chain of a program. - libunwind bir yazılımın çağrı sıralamasını takip etmek için kullanılan, hızlı çalışan ve taşınabilir bir C programlama arabirimidir. - http://download.savannah.gnu.org/releases/libunwind/libunwind-1.1.tar.gz - - xz-devel - - system/base/libunwind/pspec.xml - - - libunwind - - xz - - - /usr/lib - /usr/share/doc/libunwind - /usr/share/man - /usr/share/man/man3 - - - - libunwind-devel - Development files for libunwind - libunwind için geliştirme dosyaları - - libunwind - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-04-27 - 1.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 1.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xz - http://tukaani.org/xz/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2+ - GPLv3 - app:console - library - system.base - XZ compression utilities - XZ sıkıştırma araçları - XZ Utils provide a general purpose data compression library and command line tools. The .xz format supports multiple compression algorithms, which are called "filters" in context of XZ Utils. The primary filter is currently LZMA2. - xz, genel amaçlı bir veri sıkıştırma kütüphanesi ve konut satırı araçları içerir. xz dosya biçimi filtre adı verilen sıkıştırma algoritmalarını destekler, öntanımlı filtre ise LZMA2 algoritmasıdır. - http://tukaani.org/xz/xz-5.2.2.tar.xz - system/base/xz/pspec.xml - - - xz - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/locale - - - - xz-devel - Development files for XZ - XZ için geliştirme dosyaları system.devel - - xz - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xz-32bit - 32bit shared libraries for xz - XZ için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - xz - - - /usr/lib32 - - - - - 2016-04-27 - 5.2.2 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 5.2.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python-psutil - https://github.com/giampaolo/psutil - - PisiLinux Community - admins@pisilinux.org - - BSD - library - system.base - A cross-platform process utilities module for Python - Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü - python-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat. - python-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır. - https://github.com/giampaolo/psutil/archive/release-4.0.0.tar.gz + Librairie trans de X.Org. + X.Org trans library + X.Org trans kitaplığı. + X.Org trans Bibliothek + xtrans includes a number of routines to make X implementations transport-independent. + xtrans, X gerçeklemelerini taşıma türünden bağımsız yapmak için kullanılan bazı yordamları içerir. + mirrors://xorg/individual/lib/xtrans-1.3.5.tar.bz2 - python-devel + util-macros - system/base/python-psutil/pspec.xml + system/devel/xtrans/pspec.xml - python-psutil - - python - + xtrans - /usr/lib - /usr/share/doc + /usr/include/X11/Xtrans + /usr/share/aclocal + /usr/share/pkgconfig 2016-04-27 - 4.0.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 4.0.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - dhcpcd - http://roy.marples.name/dhcpcd - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - A dhcp client only - DHCP protokolü için istemci - Un client daemon DHCP conforme aux RFC2131 et RFC1541. dhcpcd obtient une adresse IP ainsi que d'autres informations depuis le serveur DHCP correspondant, configure l'interface réseau automatiquement et essaie de renouveler le bail selont les RFC2131 et EFC1541 en fonction des options de la ligne de commande. - An RFC2131 and RFC1541 compliant DHCP client daemon. dhcpcd gets an IP address and other information from a corresponding DHCP server, configures the network interface automatically, and tries to renew the lease time according to RFC2131 or RFC1541 depending on the command line option. - RFC2131 ve RFC1541 uyumlu bir DHCP istemci servisi.dhcpcd ilgili bir DHCP sunucusundan bir IP adresi ve gerekli diğer bilgileri alır, ağ arayüzünü otomatik olarak yapılandırır ve RFC2131 veya RFC1541 komut satırı özelliğine bağlı olarak kiralama zamanını yenilemeyi dener. - http://ftp.osuosl.org/pub/blfs/conglomeration/dhcpcd/dhcpcd-6.10.1.tar.xz - system/base/dhcpcd/pspec.xml - - - dhcpcd - - /etc - /lib/dhcpcd - /usr/lib/dhcpcd/dev/udev.so - /sbin - /usr/share/doc - /usr/share/man - /usr/share/dhcpcd - /var/lib/dhcpcd - - - - - 2016-04-27 - 6.10.1 + 1.3.5 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-08 - 6.10.1 + 1.3.5 First release Alihan Öztürk alihan@pisilinux.org @@ -13547,202 +12018,51 @@ - baselayout - http://www.pisilinux.org + intltool + https://launchpad.net/intltool PisiLinux Community admins@pisilinux.org GPLv2 app:console - library - data - system.base - Filesystem baselayout - Dosya sisteminin temel planı - Ce paquet crée la hiérarchie du système de fichier principal de Pisi Linux. - baselayout creates the Pisi Linux Linux main filesystem hierarchy. - Bu paket, Pisi Linux dosya sisteminin temelini oluşturur. - http://source.pisilinux.org/1.0/baselayout-3.10.0.tar.gz - system/base/baselayout/pspec.xml + system.devel + Utility for internationalizing various kinds of data files + Çeşitli kaynak kod dosyalarından satırları ayıklamak için kullanılan betikler + Scripts d'extraction depuis divers fichiers sources de chaînes traduisibles. + intltool automatically extracts translatable strings from oaf, glade, bonobo ui, nautilus theme, .desktop files, etc. and puts them in the po files. + Çeşitli kaynak kod dosyalarından satırları ayıklamak için kullanılan betikler. + https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz + + perl + perl-XML-Parser + + system/devel/intltool/pspec.xml - baselayout + intltool - pypolkit + perl-XML-Parser - /bin - /sbin - /lib* - /etc - /etc/pisilinux-release - /media - /boot - /proc - /home - /mnt - /opt - /dev - /run - /sys - /srv - /tmp - /usr - /var - /usr/lib/tmpfiles.d/baselayout.conf - - - System.PackageHandler - System.Package - User.Manager - Network.Stack - - - baselayout.conf - services - protocols - sysctl.conf - pisilinux-release - start-stop-daemon.8 - - - - - 2016-04-27 - 3.10.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-06 - 3.10.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - sysvinit - http://freshmeat.net/projects/sysvinit/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - Programs which control basic system processes - sysvinit package contains a group of utilities that control the very basic functions of your system. sysvinit contains the init program, the first program started by the Linux kernel when the system boots. - http://download.savannah.gnu.org/releases/sysvinit/sysvinit-2.88dsf.tar.bz2 - - sysvinit-2.86-ctrlc.patch - sysvinit-2.78-man.patch - sysvinit-2.86-loginshell.patch - sysvinit-2.86-single.patch - sysvinit-2.88-quiet.patch - sysvinit-2.88-ipv6.patch - sysvinit-2.88-omit.patch - sysvinit-2.88-wall-maxlines.patch - - system/base/sysvinit/pspec.xml - - - sysvinit - - /bin - /sbin /usr/bin + /usr/share/aclocal + /usr/share/intltool /usr/share/man - /usr/include - - - System.Package - - - - sysvinit-tools - Tools used for process and utmp management - Süreç ve utmp yönetim araçları - - /bin/mountpoint - /sbin/pidof - /sbin/killall5 - /sbin/sulogin - /usr/bin/wall - /usr/bin/last - /usr/bin/lastb - /usr/bin/mesg - /usr/bin/utmpdump - /usr/share/man/man1 - /usr/share/man/man8/killall5* - /usr/share/man/man8/pidof* - /usr/share/man/man8/sulogin* + /usr/share/doc 2016-04-27 - 2.88 + 0.51.0 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-13 - 2.88 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - diffutils - http://www.gnu.org/software/diffutils/diffutils.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - Tools to make diffs and compare files - Dosyaları karşılaştırmak ve fark dosyaları oluşturmak için kullanılan araçlar - Vous pouvez utiliser la commande diff pour voir les différences entre deux fichiers en particulier, ou les différences entre deux répertoires fichiers par fichier. Diff peut afficher les différences entre fichiers ligne par ligne dans différents formats pouvant être choisis avec les options de la ligne de commande. - You can use the diff command to show differences between two files, or each corresponding file in two directories. diff outputs differences between files line by line in any of several formats, selectable by command line options. - İki dosya arasındaki ya da iki klasör içindeki dosyaları karşılaştırarak farklılıkları belirleyebileceğiniz araç. Farklılıkları satır satır olarak, komut satırı seçenekleri ile farklı formatta dosyalara yazdırabilirsiniz. - http://ftp.gnu.org/gnu/diffutils/diffutils-3.3.tar.xz - - patch - - system/base/diffutils/pspec.xml - - - diffutils - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - - - - - 2016-04-27 - 3.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-28 - 3.3 + 0.51.0 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -13751,97 +12071,977 @@ - kmod - http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary + cmake + http://www.cmake.org + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + system.devel + Cross-platform, open-source make system + Cmake, açık kaynak kodlu ve birden fazla platformda çalışan bir 'make' sistemidir. + CMake, système make open-source et multi-plateforme. CMake est utilisé pour contrôler le processus de compilation de logiciel en utilisant une plate-forme de fichiers de configuration simple et indépendante de compilateur. CMake génère des makefiles et un environnement de travail natifs pouvant être utilisés dans l'environnement du compilateur de votre choix. + CMake, the cross-platform, open-source make system. CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used in the compiler environment of your choice. + Cmake, açık kaynak kodlu ve birden fazla platformda çalışan bir 'make' sistemidir. Yazılım derleme sürecini kontrol etmek için kullanılan CMake, derleyici bağımsız yapılandırma dosyalarının oluşturulmasını sağlar. + https://cmake.org/files/v3.4/cmake-3.4.3.tar.gz + + curl-devel + expat-devel + libarchive-devel + ncurses-devel + zlib-devel + xz-devel + + system/devel/cmake/pspec.xml + + + cmake + + curl + expat + libarchive + libgcc + ncurses + zlib + + + /usr/bin + /usr/share/cmake + /usr/share/aclocal/ + /usr/share/doc + /usr/share/man + + + + + 2016-04-27 + 3.4.3 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 3.4.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pkgconfig + http://www.freedesktop.org/software/pkgconfig/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.devel + Package Config system that manages compile/link flags for libraries + Kütüphaneler için derleme bayraklarını yöneten bir paket yapılandırma sistemi + Sistema de configuración de paquetes que soporta banderas de compilación/link para librerías + Paquet de configuration système qui gère les fanions (flags) de compilation et chaînage (link) pour les librairies. Il aide à insérer les options adéquates dans la ligne de commande d'appel au compilateur. + Package Config system that manages compile/link flags for libraries. It helps you insert the correct compiler options on the command line. + Kütüphaneler için derleme bayraklarını yöneten, bir paket yapılandırma sistemi. Komut satırından, doğru derleme seçenekleri sunma olanağı sağlar + Sistema de configuración de paquetes que soporta banderas de compilación/link para librerías. Facilita la inserción de las opciones correctos de compilador en línea de comando + http://pkgconfig.freedesktop.org/releases/pkg-config-0.29.1.tar.gz + + gnuconfig + glib2-devel + + system/devel/pkgconfig/pspec.xml + + + pkgconfig + + glib2 + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/aclocal + /usr/share/pkgconfig + /usr/lib/pkgconfig + + + + + 2016-04-27 + 0.29.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 0.29.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libsigsegv + http://libsigsegv.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.devel + Une librairie pour gérer les erreurs de pagination en mode utilisateur. + A library for handling page faults in user mode + Oluşan bellek hatalarının kullanıcı kipinde işlenmesini sağlayan bir kitaplık + This is a library for handling page faults in user mode. A page fault occurs when a program tries to access to a region of memory that is currently not available. + libsigsegv, oluşan bellek hatalarının kullanıcı kipinde işlenmesini sağlayan bir kitaplıktır. + mirrors://gnu/libsigsegv/libsigsegv-2.10.tar.gz + system/devel/libsigsegv/pspec.xml + + + libsigsegv + + /usr/lib + /usr/share/doc + + + + libsigsegv-devel + Development files for libsigsegv + libsigsegv için geliştirme dosyaları + + libsigsegv + + + /usr/include + + + + + 2016-04-27 + 2.10 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 2.10 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + cython + http://www.cython.org + + Pisi Linux Admins + admins@pisilinux.org + + Apache-2.0 + app:console + library + system.devel + C extensions for the Python + Python için C eklentileri + Cython is a language that makes writing C extensions for the Python language as easy as Python itself. + Cython, Python için C eklentileri yazmayı kolaylaştıran bir dildir. + http://cython.org/release/Cython-0.23.4.tar.gz + + python-devel + + system/devel/cython/pspec.xml + + + cython + + python + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2016-04-27 + 0.23.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 0.23.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gcc + http://gcc.gnu.org + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv3+ + LGPLv3+ + app:console + library + system.devel + The GNU Compiler Collection, includes C, C++, Objective-C and Fortran compilers + C/C++ ve Fortran derleyicisi + La collection de compilateurs GNU inclus des façades pour le C, C++, Objective-C, Fortran, hava et Ada ainsi que des librairies pour ces langages (libstdc++, libgcj...) + The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, as well as libraries for these languages + C, C++, Objective-C, Fortran programlama dilleri ile bu dillere ait kütüphaneleri içeren, GNU derleyici paketi + https://ftp.gnu.org/gnu/gcc/gcc-5.3.0/gcc-5.3.0.tar.bz2 + + binutils + bison + gettext + ncurses + zlib + gnuconfig + patch + sed + texinfo + gmp-devel + mpfr-devel + libmpc-devel + ppl + zlib-devel + isl-devel + elfutils + + + pisilinux/64.patch + pisilinux/gcc_47_based-record_gcc_options.patch + + system/devel/gcc/pspec.xml + + + libquadmath + The GNU Fortran Compiler Quadmath Runtime Library + library + system.base + + /usr/lib/libquadmath.so* + /usr/lib/libquadmath.spec* + /usr/lib32/libquadmath.so* + /usr/lib32/libquadmath.spec* + /usr/share/info/libquadmath.info + + + + libgcc + Contains a shared library of support routines used by GCC's runtime, and thus by every program on the system + library + system.base + + /etc + /usr/lib/libstdc++.so* + /usr/lib/libgcc_s.so* + /usr/lib32/libstdc++.so* + /usr/lib32/libgcc_s.so* + /usr/share/gcc-* + /usr/share/gdb + + + + libgomp + Contains GCC shared support library which is needed for OpenMP 2.5 support + library + + /usr/lib/libgomp.so* + /usr/lib/libgomp.spec* + /usr/lib32/libgomp.so* + /usr/lib32/libgomp.spec* + /usr/share/info/libgomp.info + + + + libgfortran + Contains GCC shared support library for gfortran + library + + libquadmath + + + /usr/lib/libgfortran.so* + /usr/lib32/libgfortran.so* + + + + libobjc + Contains GCC shared support library for objc + library + + /usr/lib/libobjc.so* + /usr/lib32/libobjc.so* + + + + gcc-l10n + Contains available GCC localization files, includes also turkish translations + system.locale + + gcc + + + /usr/share/locale + + + + gcc + + gmp + isl + mpfr + zlib + libmpc + + + /lib + /usr/bin + /usr/lib + /usr/lib32 + /usr/libexec + /usr/include + /usr/share/man + /usr/share/info + + + gfilt + gSTLFilt.pl + + + + + 2016-04-26 + 5.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-03-20 + 5.3.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + perl-XML-Parser + http://search.cpan.org/dist/XML-Parser/ + + PisiLinux Community + admins@pisilinux.org + + Artistic + library + system.devel + A Perl extension interface to James Clark's XML parser, expat + James Clark'ın XML ayırıştırıcısına bir Perl uzantısı arayüzü + Una extensión Perl al parseador XML de James Clark, expat + This module provides an interface to James Clark's XML parser, expat. As in expat, a single instance of the parser can only parse one document. Calls to parsestring after the first for a given instance will die. + Bu modül James Clark'ın XML ayrıştırıcısı expat için bir arayüz sağlar. Expat'ta olduğu gibi ayrıştırıcıdan türetilen her nesne sadece bir dosyayı ayrıştırabilir. + Este módulo facilita una interfaz al parser XML de James Clark, expat. Como en expat, una sola instancia del parser puede analizar solamente un documento. Llamadas a parsestring después del primero de una instancia determinada morirán. + mirrors://cpan/authors/id/T/TO/TODDR/XML-Parser-2.44.tar.gz + + expat-devel + perl + + system/devel/perl-XML-Parser/pspec.xml + + + perl-XML-Parser + + expat + perl + + + /usr/share/doc + /usr/lib + /usr/share/man + + + + + 2016-04-27 + 2.44 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-06 + 2.44 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python-setuptools + http://pypi.python.org/pypi/setuptools + + PisiLinux Community + admins@pisilinux.org + + PSF-2.2 + library + system.devel + Python setuptools + Python kurulum araçları + python-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages. + python-setuptools, Python distutils'e yapılan, özellikle başka paketlere bağımlılığı olan Python paketlerini daha kolay oluşturmaya ve dağıtmaya yarayan iyileştirmeler koleksiyonudur. + http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz + system/devel/python-setuptools/pspec.xml + + + python-setuptools + + /usr/bin + /usr/lib/python* + /usr/share/doc + + + + + 2016-04-27 + 0.6.49 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 0.6.49 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gobject-introspection + http://live.gnome.org/GObjectIntrospection + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2+ + GPLv2+ + library + app:console + system.devel + Introspection system for GObject-based libraries + gobject-introspection can scan C header and source files in order to generate introspection typelib files. It also provides an API to examine typelib files, useful for creating language bindings among other things. + mirrors://gnome/gobject-introspection/1.46/gobject-introspection-1.46.0.tar.xz + + libffi-devel + python-devel + glib2-devel + chrpath + + system/devel/gobject-introspection/pspec.xml + + + gobject-introspection + + libffi + glib2 + + + /usr/lib/lib*.so* + /usr/lib/girepository-1.0/*.typelib + /usr/share/locale + /usr/share/doc + + + + gobject-introspection-devel + Development files for gobject-introspection + + gobject-introspection + libffi + glib2 + libffi-devel + glib2-devel + + + /usr/include + /usr/lib/gobject-introspection + /usr/bin/g-ir-* + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/aclocal + /usr/share/gobject-introspection-1.0 + /usr/share/man + + + + + 2016-04-27 + 1.46.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.46.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + glpk + http://www.gnu.org/software/glpk/glpk.html + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2 + library + system.devel + GNU Linear Programming Kit + GNU Doğrusal Programlama Kiti + Le paquet GLPK (GNU Linear Programming Kit - Kit de Programmation Linéaire) a pour objectif de résoudre le problème de programmation linéaire (LP) de grande envergure, la programmation d'entiers mixés (MIP), et autres problèmes de la sorte. Il s'agit d'un ensemble de routines écrites en C ANSI et organisées de manière à former une librairie que l'on peut appeler. + The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems. It is a set of routines written in ANSI C and organized in the form of a callable library. + mirrors://gnu/glpk/glpk-4.59.tar.gz + + gmp-devel + + system/devel/glpk/pspec.xml + + + glpk + + gmp + + + /usr/bin + /usr/lib + /usr/share/doc + + + + glpk-devel + Development files for glpk + glpk için geliştirme dosyaları + + glpk + + + /usr/include + + + + + 2016-04-27 + 4.59 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 4.59 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + binutils + http://www.gnu.org/software/binutils/ + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2 + app:console + system.devel + Assembler and linker tools + Makine dili derleme ve bağlama araçları + Contient des commandes telles que as, ld, nm, objdump, ar, ranlib pour compiler du code assembleur en langage machine ainsi que pour chaîner (link) et manipuler les fichiers binaires objets. + Contains commands like as, ld, nm, objdump, ar, ranlib for compiling assembly code to the machine language, and for linking and manipulating the binary object files. + Assembly kodlarını makine diline derlemek, oluşan obje dosyalarını bağlamak ve ikili dosyalar üzerinde işlemler yapmak için kullanılan as, ld, nm, objdump, ar, ranlib gibi komutları içermektedir. + http://ftp.gnu.org/gnu/binutils/binutils-2.26.tar.bz2 + + binutils-gdb.git-e20365c.patch + + system/devel/binutils/pspec.xml + + + binutils + + zlib + + + /usr/bin + /usr/lib + /usr/include + /usr/share/info + /usr/share/man + + + + + 2016-04-26 + 2.26 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-04-03 + 2.26 + First release, fix for syslinux build + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + guile + http://www.gnu.org/software/guile/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + LGPLv2+ + app:console + library + system.devel + Interpréteur et librairie GNU Scheme. + GNU Scheme interpreter and library + GNU Scheme yorumlayıcısı ve kitaplığı + Język GNU Extension language. + GUILE (GNU's Ubiquitous Intelligent Language for Extension) is a library implementation of the Scheme programming language, written in C. GUILE provides a machine-independent execution platform that can be linked in as a library during the building of extensible programs. + mirrors://gnu/guile/guile-2.0.11.tar.xz + + gc-devel + gettext-devel + gmp-devel + libunistring-devel + libffi-devel + + system/devel/guile/pspec.xml + + + guile + + gc + gmp + libffi + libtool-ltdl + libunistring + readline + + + /etc + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/info + /usr/lib/lib* + /usr/share/guile + /usr/share/emacs + /usr/share/gdb/auto-load + /usr/lib/guile/2.0 + + + + guile-devel + Development files for guile + guile için geliştirme dosyaları + Pliki nagłówkowe guile. + + guile + gc-devel + gmp-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/bin/guile-snarf + /usr/bin/guile-config + + + + + 2016-04-27 + 2.0.11 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2014-11-30 + 2.0.11 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + automake + http://www.gnu.org/software/automake/ PisiLinux Community admins@pisilinux.org GPLv2+ app:console - system.base - Linux kernel module management utilities - Linux kernel modülleri yönetim araçları - Linux kernel module management utilities - Linux kernel modülleri yönetim araçları - https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-22.tar.xz + system.devel + A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards + Makefile.am yapılandırma dosyalarından Makefile.in dosyası üreten program + Automake est un outil de génération automatique de Makefiles compatibles avec les standards de Codage GNU. Vous aurez également besoin d'installer le paquet GNU AutoConf + Automake is a tool for automatically generating Makefile.in files compliant with the GNU Coding Standards. + Makefile.am yapılandırma dosyalarından GNU kodlama standartlarına uygun Makefile.in dosyası üreten program. Bununla birlikte Autoconf paketini de yüklemelisiniz. + mirrors://gnu/automake/automake-1.15.tar.xz - chrpath - xz-devel - zlib-devel - kernel-module-headers + perl + autoconf + gnuconfig + patch - - kmod-15-dynamic-kmod.patch - - system/base/kmod/pspec.xml + system/devel/automake/pspec.xml - kmod + automake - xz - zlib - glibc - libkmod + perl + autoconf /usr/bin - /bin - /sbin - /usr/share/man + /usr/share/automake-* + /usr/share/aclocal-* + /usr/share/aclocal + /usr/share/info + /usr/share/doc + /usr/share/man + + + + + 2016-04-27 + 1.15 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.15 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libatomic_ops + https://github.com/ivmai/libatomic_ops/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + MIT + library + system.devel + Atomic memory update operations library + Atomik bellek işlemleri kütüphanesi + libatomic_ops provides implementations for atomic memory update operations on a number of architectures. This allows direct use of these in reasonably portable code. + libatomic_ops, çeşitli mimarilerde atomik bellek işlemleri yapılmasını sağlayarak taşınabilir kod yazma olanağı veren bir kütüphanedir. + https://github.com/ivmai/libatomic_ops/archive/libatomic_ops-7_4_2.tar.gz + system/devel/libatomic_ops/pspec.xml + + + libatomic_ops + + /usr/lib /usr/share/doc - /etc - /usr/share/bash-completion/completions/kmod - - Boot.Modules - System.PackageHandler - - - blacklist/blacklist.conf - blacklist/blacklist-firewire.conf - blacklist/blacklist-framebuffer.conf - blacklist/blacklist-watchdog.conf - modprobe.conf - depmod.conf - depmod-search.conf - - libkmod-devel - system.devel + libatomic_ops-devel + libatomic_ops için geliştirme dosyaları + libatomic_ops için geliştirme dosyaları - libkmod + libatomic_ops + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-04-27 + 7.4.2 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 7.4.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libseccomp + http://sourceforge.net/projects/libseccomp/ + + Aydın Demirel + aydin.demirel@pisilinux.org + + LGPLv2.1 + app:library + system.devel + Enhanced seccomp library + Gelişmiş seccomp kütüphanesi + High level interface to the Linux Kernel's seccomp filter. + Linux Kernel'in seccomp süzgecine yüksek seviyeli arayüz + https://github.com/seccomp/libseccomp/archive/v2.3.0.tar.gz + + glibc-devel + libutil-linux-devel + + system/devel/libseccomp/pspec.xml + + + libseccomp + + /usr/bin + /usr/share/man + /usr/lib + + + + libseccomp-devel + Development files for libseccomp + + libseccomp /usr/include /usr/lib/pkgconfig - /usr/lib32/pkgconfig + + + 2016-04-27 + 2.3.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-19 + 2.3.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libtool + http://www.gnu.org/software/libtool/libtool.html + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2 + library + system.devel + A shared library tool for developers + Program geliştiriciler için ortak kütüphane aracı + 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 + + gnuconfig + autoconf + automake + + system/devel/libtool/pspec.xml + - libkmod - kmod libraries - - xz - zlib - + libtool-ltdl + system.base /usr/lib - libkmod-32bit - 32bit libraries of libkmod + libtool + + gnuconfig + + + /usr/bin + /lib + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/include + /usr/share/libtool + /usr/share/aclocal + + + + libtool-ltdl-32bit + 32-bit shared libraries for libtool-ltdl + libtool için 32-bit paylaşımlı kitaplıklar emul32 emul32 - - xz-32bit - zlib-32bit - - xz-32bit - zlib-32bit + libtool-ltdl /usr/lib32 @@ -13850,65 +13050,14 @@ 2016-04-27 - 22 + 2.4.6 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-05 - 22 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - biosdevname - http://linux.dell.com/biosdevname/ - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2 - app:gui - system.base - Biosdevname is a udev helper utility developed - Biosdevname is a udev helper utility developed by Dell and released under the GNU General Public License (GPL). It provides a consistent naming mechanism for network devices based on their physical location as suggested by the system BIOS. - http://linux.dell.com/biosdevname/biosdevname-0.7.1/biosdevname-0.7.1.tar.gz - - pciutils-devel - glibc-devel - zlib-devel - - system/base/biosdevname/pspec.xml - - - biosdevname - - pciutils - - - /sbin - /lib/udev/rules.d - /usr/sbin - /usr/share/doc - /usr/share/man - - - - - 2016-04-27 - 0.7.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-06 - 0.7.1 + 2016-02-06 + 2.4.6 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -13917,127 +13066,137 @@ - miscfiles - http://freshmeat.net/projects/miscfiles/ + autoconf + http://www.gnu.org/software/autoconf/autoconf.html PisiLinux Community admins@pisilinux.org - GPLv2 - data - system.base - Fichiers divers. - Miscellaneous files - Çeşitli dosyalar - Verschiedene Dateien - miscfiles is a collection of data files for freely available information, like airport, country, currencies, city information, and codes. It also includes the Unicode character database. - miscfiles havalanı, ülke, para birimi, şehir bilgisi ve kodları gibi bir çok ulaşılabilir bilgiyi veri dosyaları halinde tutmaktadır. - http://ftp.gnu.org/gnu/miscfiles/miscfiles-1.5.tar.gz - system/base/miscfiles/pspec.xml - - - miscfiles - - /usr/share/doc - /usr/share/rfc - /usr/share/dict - /usr/share/misc - - - - - 2016-04-27 - 1.5 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-03 - 1.5 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - tcp-wrappers - http://ftp.porcupine.org/pub/security/index.html - - PisiLinux Community - admins@pisilinux.org - - BSD + GPLv3 app:console - system.base - TCP Wrappers - TCP Wrappers - Avec ce paquet, vous pouvez surveiller et filtrer les requêtes entrante pour les services réseaux SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK et autres. Il supporte à la fois les canaux de communication (sockets) de type 4.3BSD et TLI de type System V.4. - With this package you can monitor and filter incoming requests for the SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK, and other network services. It supports both 4.3BSD-style sockets and System V.4-style TLI. - Bu paket ile birlikte SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK ve diğer ağ servisleri için gelen istekleri izleyebilir ve süzebilirsiniz. Program 4.3BSD-tipi soketler ve System V.4-tipi TLI'ın ikisini de destekler. - http://ftp.porcupine.org/pub/security/tcp_wrappers_7.6.tar.gz + system.devel + Used to create autoconfiguration files + Used to create autoconfiguration files, Autoconf is an extensible package of m4 macros that produce shell scripts to automatically configure software source code packages. + mirrors://gnu/autoconf/autoconf-2.69.tar.xz - sed + texinfo + m4 + perl - - Makefile-Pisi.patch - tcp-wrappers-7.6-makefile.patch - tcp_wrappers-7.6-ldflags.patch - 01_all_redhat-bug11881.patch - 02_all_redhat-bug17795.patch - 03_all_wildcard.patch - 04_all_fixgethostbyname.patch - 07_all_sig.patch - 08_all_strerror.patch - 09_all_gcc-3.4.patch - 10_all_more-headers.patch - tcp-wrappers-7.6-ipv6-1.14.diff - tcp-wrappers-7.6-shared.patch - host.allow.example.patch - match-port.patch - - system/base/tcp-wrappers/pspec.xml + system/devel/autoconf/pspec.xml - tcp-wrappers - - /usr/sbin - /usr/lib - /lib - /etc - /usr/share/man - /usr/share/doc - - - hosts.allow - hosts.deny - - - - tcp-wrappers-devel - Development files for tcp-wrappers - tcp-wrappers için geliştirme dosyaları - system.devel + autoconf - tcp-wrappers + texinfo + m4 - /usr/include - /usr/share/man/man3 + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/autoconf 2016-04-27 - 7.6 + 2.69 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-13 + 2.69 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + xorg-proto + http://x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + system.devel + Entêtes de protocole de X.Org. + X.Org Protocol Headers + X.Org Protokol Başlıkları + X.Org Protokoll Header + This package includes the protocol headers needed for X11 development. + Bu paket, X11 geliştirme için gerekli protokol başlıklarını içerir. + mirrors://xorg/individual/proto/bigreqsproto-1.1.2.tar.bz2 + mirrors://xorg/individual/proto/presentproto-1.0.tar.bz2 + mirrors://xorg/individual/proto/compositeproto-0.4.2.tar.bz2 + mirrors://xorg/individual/proto/damageproto-1.2.1.tar.bz2 + mirrors://xorg/individual/proto/dmxproto-2.3.1.tar.bz2 + mirrors://xorg/individual/proto/dri2proto-2.8.tar.bz2 + mirrors://xorg/individual/proto/dri3proto-1.0.tar.bz2 + mirrors://xorg/individual/proto/fixesproto-5.0.tar.bz2 + mirrors://xorg/individual/proto/fontsproto-2.1.3.tar.bz2 + mirrors://xorg/individual/proto/glproto-1.4.17.tar.bz2 + mirrors://xorg/individual/proto/inputproto-2.3.2.tar.bz2 + mirrors://xorg/individual/proto/kbproto-1.0.7.tar.gz + mirrors://xorg/individual/proto/printproto-1.0.5.tar.bz2 + mirrors://xorg/individual/proto/randrproto-1.5.0.tar.gz + mirrors://xorg/individual/proto/recordproto-1.14.2.tar.bz2 + mirrors://xorg/individual/proto/renderproto-0.11.1.tar.bz2 + mirrors://xorg/individual/proto/resourceproto-1.2.0.tar.bz2 + mirrors://xorg/individual/proto/scrnsaverproto-1.2.2.tar.bz2 + mirrors://xorg/individual/proto/videoproto-2.3.3.tar.bz2 + mirrors://xorg/individual/proto/xcmiscproto-1.2.2.tar.bz2 + mirrors://xorg/individual/proto/xextproto-7.3.0.tar.bz2 + mirrors://xorg/individual/proto/xf86bigfontproto-1.2.0.tar.bz2 + mirrors://xorg/individual/proto/xf86dgaproto-2.1.tar.bz2 + mirrors://xorg/individual/proto/xf86driproto-2.1.1.tar.bz2 + mirrors://xorg/individual/proto/xf86vidmodeproto-2.3.1.tar.bz2 + mirrors://xorg/individual/proto/xineramaproto-1.2.1.tar.bz2 + mirrors://xorg/individual/proto/xproto-7.0.28.tar.gz + mirrors://xorg/individual/proto/xproxymanagementprotocol-1.0.3.tar.bz2 + https://github.com/bbidulock/vncproto/releases/download/vncproto-1.1/vncproto-1.1.tar.bz2 + + util-macros + libxslt + + + docdir.patch + + system/devel/xorg-proto/pspec.xml + + + xorg-proto + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc + /usr/share/man/man7/Xprint.7 + + + + + 2016-04-27 + 7.6 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-27 + 7.6 + A few updates + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-08 7.6 First release Alihan Öztürk @@ -14047,178 +13206,60 @@ - pisilinux-python - http://www.pisilinux.org + libmpc + http://www.multiprecision.org/ - PisiLinux Community - admins@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org - GPLv2 + LGPLv2.1 library - system.base - Python modules for Pisi Linux - PiSi Linux için Python modülleri - Python modules for Pisi Linux provides functions for common task, with the aim of easing development. - PiSi Linux için Python modülleri genel işler için fonksiyonlar sunarak geliştirme işini kolaylaştırmayı amaçlamaktadır. - Módulos Python para PiSi Linux facilitan funciones para tareas comunes, para simplificar el desarrollo. - http://source.pisilinux.org/1.0/pisilinux-python-0.4.8.tar.gz + system.devel + High precision and correct rounding library + Yüksek hassasiyet ve yuvarlama kitaplığı + libmpc is a library for arithmetic of complex numbers with arbitrarily high precision and correct rounding. + libmpc aritmetik kompleks sayılarla yüksek hassasiyette ve doğru yuvarlama ile işlem yapılmasını sağlayan bir kitaplıktır. + ftp://ftp.gnu.org/gnu/mpc/mpc-1.0.3.tar.gz - python-devel - libX11-devel - - system/base/pisilinux-python/pspec.xml - - - pisilinux-python - - python - - - /usr/lib - /usr/share/doc - /usr/share/locale - - - - pisilinux-python-xorg - x11.library - - python - libX11 - - - /usr/lib/python2.7/site-packages/pardus/xorg - - - - - 2016-04-27 - 0.4.8 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-02 - 0.4.8 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ca-certificates - http://packages.qa.debian.org/c/ca-certificates.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - MPL-1.1 - app:web - system.base - Common CA certificates - Common CA certificates - http://ftp.debian.org/debian/pool/main/c/ca-certificates/ca-certificates_20160104.tar.xz - system/base/ca-certificates/pspec.xml - - - ca-certificates - - run-parts - - - /etc - /usr/share/man - /usr/sbin - /usr/share/ca-certificates - - - System.Package - - - - - 2016-04-27 - 20160104 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-03 - 20160104 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - coreutils - http://www.gnu.org/software/coreutils/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv3+ - app:console - system.base - A set of basic GNU tools commonly used in shell scripts - Standart dosya, metin ve kabuk uygulamaları - Utilitaires standards GNU pour fichiers (chmod, cp, dd, dir, ls...), utilitaires texte (sort, tr, head, wc...) et utilitaires d'interpréteur de commande (shell) (whoami, who...) - GNU dosya uygulamaları (chmod, cp, dd, dir, ls...), sh uygulamaları (whoami, who,...) ve metin uygulamalarının (sort, tr, head, wc..) birlikteliğinden oluşmaktadır. - http://ftp.gnu.org/gnu/coreutils/coreutils-8.25.tar.xz - - acl-devel - attr-devel - perl - shadow - gettext-devel - ncurses-devel gmp-devel - libcap-devel - texinfo + mpfr-devel - - remove_am_silent_rules.patch - - system/base/coreutils/pspec.xml + system/devel/libmpc/pspec.xml - coreutils + libmpc - acl - attr gmp - libcap + mpfr - /bin - /etc - /usr/bin - /usr/libexec /usr/lib - /usr/share/doc - /usr/share/man + /usr/share/doc/libmpc /usr/share/info - /usr/share/locale + + + + libmpc-devel + Development files for libmpc + libmpc için geliştirme dosyaları + + libmpc + + + /usr/include 2016-04-27 - 8.25 + 1.0.3 Release Bump PisiLinux Community admin@pisilinux.org 2016-02-28 - 8.25 + 1.0.3 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -14227,207 +13268,76 @@ - spidermonkey - http://www.mozilla.org/js/spidermonkey/ + libarchive + http://code.google.com/p/libarchive/ PisiLinux Community admins@pisilinux.org - NPL-1.1 + BSD library - system.base - Stand-alone JavaScript C Library - Javascript C Kitaplığı - Spidermonkey est l'Implémentation C de Javascript par Mozilla. - Spidermonkey is Mozilla's C implementation of JavaScript. - Mozilla'nın Javascript'in C implementasyonu. - Spidermonkey es la implementación de JavaScript con C de Mozilla. - http://ftp.mozilla.org/pub/mozilla.org/js/mozjs17.0.0.tar.gz + system.devel + Library for reading and writing streaming archives + Birçok farklı akış arşiv formatını yaratan ve okuyan programlama kitaplığı + libarchive includes a library and command-line tools for reading and writing tar, cpio, zip, ISO, and other archive formats. + libarchive, tar, cpio, zip, ISO ve diğer arşiv biçimlerini okumak ve yazmak için bir kitaplık ve komut satırı araçları içerir. + http://www.libarchive.org/downloads/libarchive-3.1.2.tar.gz + acl-devel + nettle-devel + attr-devel + bzip2 + libxml2-devel + openssl-devel + xz-devel + lzo-devel zlib-devel - nspr-devel - readline-devel - libffi-devel - system/base/spidermonkey/pspec.xml + system/devel/libarchive/pspec.xml - spidermonkey + libarchive - nspr + lzo + nettle + xz + acl zlib - libgcc - readline + attr + bzip2 + libxml2 /usr/bin /usr/lib - /usr/share/doc + /usr/share/man + /usr/share/doc/libarchive - spidermonkey-devel - Development files for spidermonkey - spidermonkey için geliştirme dosyaları - system.devel + libarchive-devel + Development files for libarchive + libarchive için geliştirme dosyaları - spidermonkey - nspr-devel + libarchive /usr/include /usr/lib/pkgconfig - /usr/bin/js17-config - - - - - 2016-04-27 - 17.0.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-06 - 17.0.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - mingetty - ftp://ftp.suse.com/pub/projects/init/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.base - A compact getty program for virtual consoles only - Sadece sanal konsollar için yekpare bir getty programı - mingetty, est getty poids plume minimaliste à utiliser exclusivement sur les consoles virtuelles. - mingetty, is a lightweight, minimalist getty for use on virtual consoles only. - mingetty yalnızca sanal konsollar için tasarlanmış basit ve yalın getty uygulamasıdır. - http://sourceforge.net/projects/mingetty/files/mingetty/1.08/mingetty-1.08.tar.gz - - gettext - - - tr.patch - mingetty-utf8.patch - - system/base/mingetty/pspec.xml - - - mingetty - - glibc - - - /sbin - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2016-04-27 - 1.0.8 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-09 - 1.0.8 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - pam - http://www.kernel.org/pub/linux/libs/pam/ - - PisiLinux Community - admins@pisilinux.org - - PAM - library - system.base - Modules d'Authentification en Greffon (Pluggable Authentication Modules) - Pluggable Authentication Modules - PAM - Eklenebilir Yetkilendirme Modülleri - PAM (Pluggable Authentication Modules) is a system security tool that allows system administrators to set authentication policy without having to recompile programs that handle authentication. - http://www.linux-pam.org/library/Linux-PAM-1.2.1.tar.bz2 - - dlopen.sh - dlopen-test.sh - - - perl - gettext - cracklib-devel - libxslt-devel - docbook-xsl - - system/base/pam/pspec.xml - - - pam - - cracklib - - - /etc - /lib - /var/run/console - /usr/lib - /sbin - /usr/sbin - /usr/share/doc - /usr/share/man - /usr/share/locale - - - System.Package - - - 90-nproc.conf - - - - pam-devel - Development files for pam - pam için geliştirme dosyaları - system.devel - - pam - - - /usr/include /usr/share/man/man3 2016-04-27 - 1.2.1 + 3.1.2 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-05 - 1.2.1 + 2016-04-16 + 3.1.2 First release Alihan Öztürk alihan@pisilinux.org @@ -14436,42 +13346,675 @@ - busybox - http://www.busybox.net + libxslt + http://xmlsoft.org/XSLT/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + system.devel + XSLT libraries and tools + XSLT kitaplığı ve araçları + Libxslt est la librairie XSLT C développée pour le projet GNOME. XSLT étant lui-même un langage XML permettant de définir une transformation de contenu XML. + Libxslt is the XSLT C library developed for the GNOME project. XSLT itself is a an XML language to define transformation for XML. + Libxslt, GNOME projesi için geliştirilen XSLT C kitaplığıdır. XSLT'nin kendisi, XML oluşumunu tanımlayan bir XML dilidir. + ftp://ftp.xmlsoft.org/libxml2/libxslt-1.1.28.tar.gz + + libxml2-devel + libgcrypt-devel + + system/devel/libxslt/pspec.xml + + + libxslt-docs + libxslt için belgelendirme dosyaları + + libxslt + + + /usr/share/doc + + + + libxslt-devel + libxslt için geliştirme dosyaları + + libxml2-devel + libxslt + + + /usr/bin/*-config + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + libxslt + + libgcrypt + libxml2 + + + /usr/bin + /usr/lib + /usr/share/man + + + + libxslt-32bit + 32-bit shared libraries for libxslt + libxslt için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxml2-32bit + libgcrypt-32bit + + + libxslt + libxml2-32bit + libgcrypt-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 1.1.28 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.1.28 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gmp + http://gmplib.org/ + + Serdar Soytetir + kaptan@pisilinux.org + + LGPLv3+ + library + system.devel + Arbitrary precision arithmetic library + İstenilen duyarlıkta çalışabilen aritmetik işlem kitaplığı + GMP est une librairie libre pour l'arithmétique à précision arbitraire, opérant sur : les entiers signés, les nombres rationnels et les nombres à virgule flottante. Il n'y a aucune limite pratique sur la précision des calculs exceptée celle impliquée par la mémoire présente sur la machine exécutant GMP. GMP est dotée d'un large panel de fonctions, dotées d'interfaces régulières. + GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. There is no practical limit to the precision except the ones implied by the available memory in the machine GMP runs on. GMP has a rich set of functions, and the functions have a regular interface. + GMP işaretli tamsayılar, rasyonel ve ondalık sayılar üzerinde istenilen kadar duyarlı aritmetik işlemler yapan bir kitaplıktır. Yüklü olduğu makinenin hafıza sınırı dışında herhangi bir duyarlılık limiti yoktur. Zengin fonksiyonları ve düzenli bir arabirimi vardır. + GMP es una librería libre para aritmética con precisión arbitraria, operando con signed integers, números racionales, y punto flotante. Practicamente no hay límite de precisión excepto los de la memoria disponible en el equipo donde se está ejecutando GMP. GMP tiene un amplio conjunto de funciones y las funciones tienen una interfaz regular. + mirrors://gnu/gmp/gmp-6.1.0.tar.xz + system/devel/gmp/pspec.xml + + + gmp + + libgcc + + + /usr/lib + /usr/share/doc + /usr/share/info + + + + gmp-devel + Development files for gmp + gmp için geliştirme dosyaları + + gmp + + + /usr/include + /usr/lib/*.a + + + + gmp-32bit + 32-bit shared libraries for gmp + emul32 + emul32 + + libgcc + gmp + + + /usr/lib32 + + + + + 2016-04-27 + 6.1.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 6.1.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + dietlibc + http://www.fefe.de/dietlibc + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.devel + A libc optimized for small size + Düşük boyut için optimize edilmiş C kütüphanesi + dietlibc is a libc that is optimized for small size. It can be used to create small statically linked binaries for Linux on various architectures. + dietlibc, düşük boyutlu olması için optimize edilmiş bir C kütüphanesidir. Farklı mimarilerde statik bağlanmış ve düşük boyutlu ikili dosyalar oluşturmak için kullanılabilir. + http://pkgs.fedoraproject.org/repo/pkgs/dietlibc/dietlibc-0.33.20120825.tar.xz/016865b8c40d40a57b2ddb5862f2e338/dietlibc-0.33.20120825.tar.xz + http://pkgs.fedoraproject.org/repo/pkgs/dietlibc/dietlibc-github-c3f1cf67fcc186bb859e64a085bf98aaa6182a82.patch.gz/734e14b59b7f017ae5843ee9b9b6d34e/dietlibc-github-c3f1cf67fcc186bb859e64a085bf98aaa6182a82.patch.gz + + dietlibc-0.33-biarch.patch + + system/devel/dietlibc/pspec.xml + + + dietlibc + + /usr/bin + /usr/lib/dietlibc/include + /usr/lib/dietlibc/lib-i386 + /usr/lib/dietlibc/lib-x86_64 + /usr/share/man + /usr/share/doc + + + + + 2016-04-27 + 0.33.20120825 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 0.33.20120825 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + util-macros + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + system.devel + Macros X.Org utilisées pour compiler X.Org + X.Org X11 Autotools macros + X.Org X11 Autotools makroları + X.Org Makros zum Kompilieren von X.Org + X.Org X11 autotools macros are required for building the various packages that comprise the X Window System. + X.Org X11 Autotools makroları, X pencere sistemini oluşturan çeşitli paketleri derlemek için gereklidir. + http://xorg.freedesktop.org/releases/individual/util/util-macros-1.19.0.tar.bz2 + + doc.patch + + system/devel/util-macros/pspec.xml + + + util-macros + + /usr/share/aclocal + /usr/share/pkgconfig + /usr/share/doc + + + + + 2016-04-27 + 1.19.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-02 + 1.19.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + check + http://sourceforge.net/projects/check/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.devel + A unit test framework for C + C için birim test ortamı + check is a unit testing framework for C. It features a simple interface for defining unit tests, putting little in the way of the developer. Tests are run in a separate address space, so Check can catch both assertion failures and code errors that cause segmentation faults or other signals. The output from unit tests can be used within source code editors and IDEs. + check C dili için yazılmış bir birim test ortamıdır. Birim test tanımlamak için bir arayüz sunan check, geliştiriciye test yapabilmesi için kolay bir ortam sağlar. + mirrors://sourceforge/check/0.10/check-0.10.0.tar.gz + system/devel/check/pspec.xml + + + check + + /usr/bin + /usr/lib + /usr/share/info + /usr/share/man/man1/checkmk.1 + /usr/share/doc + + + + check-devel + Development files for check + check için geliştirme dosyaları + + check + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + check-docs + Documents for check + check için geliştirme belgeleri + + /usr/share/doc/check/example + + + + + 2016-04-27 + 0.10.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 0.10.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + elfutils + http://www.redhat.com/ + + PisiLinux Community + admins@pisilinux.org + + OpenSoftware + app:console + library + system.devel + Libraries/utilities to handle ELF objects + Derlenmiş objeleri işlemek için gereken aletler koleksiyonu + elfutils contains libraries and utilities to handle ELF objects and is a replacement for libelf. + elfutils derlenmiş objeleri işlemek için gereken çeşitli araçlar içerir. + https://fedorahosted.org/releases/e/l/elfutils/0.165/elfutils-0.165.tar.bz2 + + bzip2 + xz-devel + zlib-devel + + system/devel/elfutils/pspec.xml + + + elfutils + + xz + zlib + bzip2 + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/include + + + + elfutils-32bit + 32-bit shared libraries for elfutils + elfutils için 32-bit paylaşımlı kitaplıklar + emul32 + + xz-32bit + zlib-32bit + + + xz-32bit + zlib-32bit + elfutils + + + /usr/lib32 + + + + + 2016-04-27 + 0.165 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-07 + 0.165 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + xorg-util + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + system.devel + Utilitaires de X.Org + X.Org utilities + X.Org araçları + X.Org Werkzeuge + xorg-util contains some Xorg X11 command-line utilities, but more importantly, X11 configuration and rule files. + mirrors://xorg/individual/util/gccmakedep-1.0.3.tar.bz2 + mirrors://xorg/individual/util/imake-1.0.7.tar.bz2 + mirrors://xorg/individual/util/lndir-1.0.3.tar.bz2 + mirrors://xorg/individual/util/makedepend-1.0.5.tar.bz2 + mirrors://xorg/individual/util/xorg-cf-files-1.0.6.tar.bz2 + + xorg-proto + util-macros + + + host-defaults.patch + + system/devel/xorg-util/pspec.xml + + + xorg-util + + /usr/bin + /usr/share/X11/config + /usr/share/man + + + + + 2016-04-27 + 7.6 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2017-03-18 + 7.6 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + xcb-proto + http://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + data + system.devel + XCB protocol descriptions + XCB protokol tanımlamaları + XCB is a project to enable efficient language bindings to the X11 protocol. This package contains the protocol descriptions themselves. Language bindings use these protocol descriptions to generate code for marshalling the protocol. + http://xcb.freedesktop.org/dist/xcb-proto-1.11.tar.bz2 + + libxml2 + + system/devel/xcb-proto/pspec.xml + + + xcb-proto + + /usr/lib/pkgconfig + /usr/lib/python* + /usr/share/doc + /usr/share/xcb + + + + + 2016-04-27 + 1.11 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.11 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gc + http://www.hpl.hp.com/personal/Hans_Boehm/gc + + PisiLinux Community + admins@pisilinux.org + + BSD + GPLv2 + library + system.devel + A garbage collector for C and C++ + C ve C++ için bir çöp toplama kitaplığı + Ostrożny odśmiecacz dla C i C++ + The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new. + gc, C malloc veya C++ new yerine kullanılabilecek, Boehm-Demers-Weiser çöp toplayıcısı kitaplığıdır. + Boehm's GC jest odśmiecającym alokatorem pamięci, który został zaprojektowany z zamiarem używania jako zastępcza wtyczka dla funkcji C malloc. + http://www.hboehm.info/gc/gc_source/gc-7.4.2.tar.gz + + libatomic_ops-devel + + + noelision.patch + + system/devel/gc/pspec.xml + + + gc + + /usr/lib + /usr/share/doc + + + + gc-devel + Development files for gc + gc için geliştirme dosyaları + Pliki nagłówkowe gc + + gc + + + /usr/include/ + /usr/lib/pkgconfig + + + + + 2016-04-27 + 7.4.2 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 7.4.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + chrpath + http://freshmeat.net/projects/chrpath/ PisiLinux Community admins@pisilinux.org GPLv2 app:console - system.base - Statically linked binary providing simplified versions of system commands - Statik bağlanmış sistem komutları bütünü - busybox is a single binary which includes versions of a large number of system commands, including a shell. - busybox, kabuk da dahil olmak üzere çeşitli sistem komutlarını içeren tek bir çalıştırılabilir dosyadır. - http://busybox.net/downloads/busybox-1.24.1.tar.bz2 - - config - - system/base/busybox/pspec.xml + system.devel + Change the dynamic library load path (rpath) of binaries + Dinamik kitaplık yükleme yolunu (rpath) değiştirme aracı + chrpath allows you to modify the dynamic library load path (rpath and runpath) of compiled programs and libraries. + chrpath ile derlenmiş kitaplıkların ve programların dinamik kitaplık yükleme yolunu (rpath ve runpath) değiştirebilirsiniz. + http://source.pisilinux.org/1.0/chrpath-0.16.tar.gz + + docdir.patch + + system/devel/chrpath/pspec.xml - busybox + chrpath - /bin + /usr/bin + /usr/share/doc + /usr/share/man 2016-04-27 - 1.24.1 + 0.16 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-05 + 0.16 + First release + Alihn Öztürk + alihan@pisilinux.org + + + + + + yasm + http://www.tortall.net/projects/yasm/ + + PisiLinux Community + admins@pisilinux.org + + BSD + GPLv2 + LGPLv2 + Artistic + app:console + system.devel + Assembler that supports many syntaxes and architectures + Bir çok sentaks ve mimari destekleyen Assembler + A complete rewrite of the NASM assembler under the "new" BSD License. Yasm currently supports the x86 and AMD64 instruction sets, accepts NASM and GAS assembler syntaxes, outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, RDOFF2, COFF, Win32, and Win64 object formats and generates source debugging information in STABS, DWARF 2, and CodeView? 8 formats. + NASM Assembler programının yeni BSD lisansı ile baştan yazılmış bir Assembler. En önemli özellikleri x86 ve AMD64 komutsetlerini, NASM ve GAS sentaksını desteklemesidir. İkilik, ELF32, ELF64, 32 ve 64-bit Mach-O, RDOFF2, COFF, Win32 ve Win64 obje formatlarında çıktı üretebilir, hata ayıklamak için STABS, DWARF 2 ve CodeView? 8 formatlarını desteklemektedir. + https://github.com/yasm/yasm/archive/v1.3.0.tar.gz + system/devel/yasm/pspec.xml + + + yasm + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + yasm-devel + Development files for yasm + yasm için geliştirme dosyaları + + yasm + + + /usr/include + /usr/lib/libyasm.a + + + + + 2016-04-27 + 1.3.0 Release Bump PisiLinux Community admin@pisilinux.org 2016-03-07 - 1.24.1 + 1.3.0 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -14480,80 +14023,61 @@ - kbd - http://freshmeat.net/projects/kbd/ + cloog + http://www.cloog.org/ - PisiLinux Community - admins@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org - GPLv2 + GPLv2+ app:console - system.base - Keyboard and console utilities - Klavye ve konsol araçları - Le paquet kbd contient les fichiers de configuration de touches ainsi que divers utilitaires pour claviers compatible avec le noyau 1.1.54 et suivants. - The kbd package contains keytable files and keyboard utilities compatible with kernel version 1.1.54 and later. - Kbd paketi, çekirdek sürüm 1.1.54 ve sonraki sürümlerle uyumlu anahtar tablo dosyaları ve klavye yardımcı uygulamaları içerir. - https://www.kernel.org/pub/linux/utils/kbd/kbd-2.0.3.tar.xz - http://source.pisilinux.org/1.0/kbd-latarcyrheb-16-fixed.tar.bz2 - http://source.pisilinux.org/1.0/kbd-latsun-fonts.tar.bz2 - http://source.pisilinux.org/1.0/ro_maps.tar.bz2 + library + system.devel + Chunky Loop Generator + cloog is CLooG is a free software and library to generate code for scanning Z-polyhedra. It is used by the GCC Graphite optimization framework. + http://www.bastoul.net/cloog/pages/download/cloog-0.18.4.tar.gz - gettext - gzip - pam-devel - check-devel + gmp-devel + ppl-devel + isl-devel - - mandriva/kbd-1.15-mandriva.patch - mandriva/kbd-1.15-tilde_twosuperior_french_kbd.patch - mandriva/kbd-1.12-data_thai.patch - mandriva/kbd-1.15-remove-unneeded-calls.patch - archlinux/fix-euro2.patch - pisilinux/unicode_start-default-font.patch - pisilinux/tr-keypad-comma.patch - pisilinux/tr-no-meta_space.patch - pisilinux/trq-capslock-fix.patch - pisilinux/currency.patch - pisilinux/trf-keymap-fixes.patch - pisilinux/trf-capslock-fix.patch - - system/base/kbd/pspec.xml + system/devel/cloog/pspec.xml - kbd + cloog - pam + gmp + isl - /bin /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/kbd/keymaps - /usr/share/kbd/locale - /usr/share/kbd/unimaps - /usr/share/kbd/consolefonts - /usr/share/kbd/consoletrans + /usr/lib + /usr/share/doc/cloog/ + /usr/share/info + + + + cloog-devel + Development files for cloog + + cloog + + + /usr/include + /usr/lib/pkgconfig/cloog.pc - - pisilinux/lat5u-12.psf.gz - pisilinux/lat5u-14.psf.gz - pisilinux/lat5u-16.psf.gz - mandriva/mac-fr-ext_new.kmap.gz - 2016-04-27 - 2.0.3 + 0.18.4 Release Bump PisiLinux Community admin@pisilinux.org - 2016-03-08 - 2.0.3 + 2016-03-13 + 0.18.4 First release Alihan Öztürk alihan@pisilinux.org @@ -14562,76 +14086,842 @@ - slang - http://www.jedsoft.org/slang/ + unifdef + http://www.freebsd.org/cgi/cvsweb.cgi/src/usr.bin/unifdef/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + system.devel + The unifdef utility selectively processes conditional cpp(1) directives + L'utilitaire unifdef traite sélectivement les directives conditionnelles cpp(1). Il supprime d'un fichier les directives ainsi que le texte additionnel qu'elles indiquent comme à supprimer tout en laissant le reste du fichier intact. + The unifdef utility selectively processes conditional cpp(1) directives. It removes from a file both the directives and any additional text that they specify should be removed, while otherwise leaving the file alone. + http://dotat.at/prog/unifdef/unifdef-2.11.tar.gz + system/devel/unifdef/pspec.xml + + + unifdef + + /usr/bin + /usr/share/man + /usr/share/doc/unifdef + + + + + 2016-04-27 + 2.11 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 2.11 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + scons + http://www.scons.org + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + system.devel + An Open Source software construction tool + Python temelli, esnek, geliştirilebilir inşa aracı + Utilitaire extensible écrit en python. On peut considérer SCons comme un substitut amélioré multi-plateforme de Make intégrant des fonctionnalités similaires à celles d'autoconf/automake et un gestionnaire de cache de compilateur tel ccache. + Think of SCons as an improved, cross-platform substitute for the classic Make utility with integrated functionality similar to autoconf/automake and compiler caches such as ccache. + Python temelli, esnek, geliştirilebilir inşa aracı. SCons, klasik "make" aracına "autconf/automake" özellikleri ve "ccache" gibi derleyici önbelleği eklenmiş, gelişmiş bir araç olarak düşünülebilir. + mirrors://sourceforge/scons/scons-2.4.1.tar.gz + + python + + system/devel/scons/pspec.xml + + + scons + + python + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2016-04-27 + 2.4.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 2.4.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + catbox + http://pisilinux.org PisiLinux Community admins@pisilinux.org GPLv2 - Artistic - app:console - programming.library - Console display library used by most text viewer - Bir çok metin gösterici yazılım tarfından kullanılan konsol görüntüleme kütüphanesi - S-Lang est une librarie de programmation multi-plateforme conçue pour permettre aux développeur de développer des logiciels robustes et portables. Elle fournit les mécanismes requis pour développer une application interactive telle que la gestion d'affichages/écrans, entrées clavier, disposition de touches et ainsi de suite. La fonctionnalité la plus attractive de cette librairie reste l'interpréteur slang qui peut être embarqué au sein même d'un programme pour le rendre extensible. - S-Lang is a multi-platform programmer's library designed to allow a developer to create robust multi-platform software. It provides facilities required by interactive applications such as display/screen management, keyboard input, keymaps, and so on. The most exciting feature of the library is the slang interpreter that may be easily embedded into a program to make it extensible. - S-lang, yazılım geliştiricilerin bütün işletim sistemlerinde çalışabilen güçlü uygulamalar geliştirmesine yardımcı olan bir uygulama kitaplığıdır. İnteraktif uygulamalar için ekran yönetimi ve klavye girişi gibi araçlar sunar. Kitaplığın en ilginç özelliği programların içine kolayca gömülebilen ve programı genişletilebilir kılan slang yorumlayıcısıdır. - ftp://ftp.ntua.gr/pub/lang/slang/slang/v2.2/slang-2.2.4.tar.bz2 + library + system.devel + Python sandboxing module + Python için sandbox modülü + catbox is a Python sandboxing module commonly used by the package management system of PiSi Linux, PiSi. + https://github.com/baris/catbox/archive/catbox-1.6.1.tar.gz - libpng-devel - libpcre-devel - ncurses-devel - readline-devel - zlib-devel + python-setuptools + python-devel - programming/library/slang/pspec.xml + system/devel/catbox/pspec.xml - slang + catbox - libpng - libpcre - zlib + python - /etc /usr/bin - /usr/share/slsh /usr/lib - /usr/share/doc/slang + /usr/share/doc + + + + + 2016-04-27 + 1.6.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.6.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + mpfr + http://www.mpfr.org + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2+ + LGPLv2+ + library + system.devel + Multiple precision floating point library + La librairie MPFR est une librairie C pour les calculs à virgules flottantes à précisions multiples à arrondi exact (également appelé arrondi correct). Elle est basée sur la librairie à précision multiple GMP. + The MPFR library is a C library for multiple-precision floating-point computations with exact rounding (also called correct rounding). It is based on the GMP multiple-precision library. + MPFR es una librería en C para computaciones de punto flotante de múltiple precisión con redondeo exacto (también llamado redondeo correcto). Está basada en la librería de múltiple precisión GMP. + http://www.mpfr.org/mpfr-current/mpfr-3.1.4.tar.xz + + gmp-devel + + system/devel/mpfr/pspec.xml + + + mpfr + + gmp + + + /usr/lib + /usr/share/info + /usr/share/doc/mpfr + + + + mpfr-devel + Development files for mpfr + mpfr için geliştirme dosyaları + + mpfr + + + /usr/include + /usr/share/doc/mpfr/examples + /usr/share/doc/mpfr/html + + + + + 2016-04-27 + 3.1.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 3.1.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + bison + http://www.gnu.org/software/bison/bison.html + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2 + app:console + system.devel + A yacc-compatible parser generator + Yacc uyumlu yazım ayrıştırma üreteci + Un générateur d'analyseur syntaxique compatible avec yacc. Une fois que vous maîtrisez Bison, vous pouvez l'utiliser pour développer des analyseur léxicaux pour un grand nombres de langages, de ceux qui sont utilisés dans les simples calculatrices de bureau aux complexes langages de programmation. + A yacc-compatible parser generator. Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages + Yacc uyumlu yazım ayrıştırma üreteci. Bison'da ustalık kazandığınızda, basit hesap makinalarından, karmaşık programlama dillerine kadar uzanan geniş yazım ayrıştırıcılar geliştirebilirsiniz. + mirrors://gnu/bison/bison-3.0.4.tar.xz + + m4 + gettext + patch + + system/devel/bison/pspec.xml + + + bison + + m4 + gettext + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/aclocal + /usr/share/info + /usr/share/bison + /usr/share/locale + + + + + 2016-04-27 + 3.0.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 3.0.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + autogen + http://www.gnu.org/software/autogen + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + system.devel + The automated text and program generation tool + Otomatik metin ve program üretme aracı + Herramienta para simplificar creación y mantenimiento de programas que contienen muchos textos repetitivos + autogen is a tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text. + autogen büyük miktarda tekrarlı metin içeren uygulamaların otomatik üretilmesini sağlayan bir araçtır. + ftp://ftp.gnu.org/gnu/autogen/autogen-5.18.7.tar.xz + + gc-devel + gmp-devel + guile-devel + libxml2-devel + which + + system/devel/autogen/pspec.xml + + + autogen + + guile + libxml2 + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/info + /usr/share/autogen + + + + autogen-devel + Development files for autogen + autogen için geliştirme dosyaları + + autogen + + + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/bin/autoopts-config + /usr/share/man/man1/autoopts-config.1 + + + + + 2016-04-27 + 5.18.7 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 5.18.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + yacc + http://dinosaur.compilertools.net/#yacc + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + system.devel + Yacc: Yet Another Compiler-Compiler + Yacc: Yet Another Compiler-Compiler + Yacc fourni un outil général de description d'entrée pour un logiciel. L'utilisateur de Yacc spécifie la structure de l'entrée avec le code à invoquer lorsque de tels structures sont reconnues. Yacc transforme ce qui a été spécifié en sous-routine gérant le processus d'entrée. + Yacc provides a general tool for describing the input to a computer program. The Yacc user specifies the structures of his input, together with code to be invoked as each such structure is recognized. Yacc turns such a specification into a subroutine that handles the input process + Yacc, bir uygulamaya girdi açıklamasını yapan bir araçtır. Yacc kullanıcısı, girdinin yapısını ve bu yapının her seferinde tanındığı kodu belirtir. Yacc; bu tür bir belirlemeyi, girdi sürecini işleyen bir alt yordama çevirir. + http://ibiblio.org/pub/linux/devel/compiler-tools/yacc-1.9.1.tar.Z + + mkstemp.patch + skeleton.c.diff + yacc-1.9.1-ia64.patch + + system/devel/yacc/pspec.xml + + + yacc + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2016-04-27 + 1.9.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.9.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + isl + http://www.kotnet.org/~skimo/isl/ + + Serdar Soytetir + kaptan@pisilinux.org + + LGPLv2.1 + library + system.devel + Integer Set Library + isl is a library for manipulating sets and relations of integer points bounded by linear constraints. + http://isl.gforge.inria.fr/isl-0.16.1.tar.bz2 + + gmp-devel + + system/devel/isl/pspec.xml + + + isl + + gmp + + + /usr/lib + /usr/share/doc + + + + isl-devel + Development files for isl + isl için geliştirme dosyaları + + isl + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-04-27 + 0.16.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 0.16.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + colorgcc + http://www.console-colors.de + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.devel + GCC output colorizer + GCC çıktısını renklendiren bir araç. + A tool that colorizes GCC output. + http://source.pisilinux.org/1.0/colorgcc-1.3.2.tar.gz + + colorgcc-1.3.2-handle-translated-output.patch + colorgcc-1.3.2-mdkconf.patch + add-i686-gnu-stuff.patch + + system/devel/colorgcc/pspec.xml + + + colorgcc + + gcc + + + /usr/bin + /usr/share/colorgcc + /etc + /usr/share/doc + + + colorgcc.sh + colorgcc.csh + + + + + 2016-04-27 + 1.3.2 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 1.3.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + m4 + http://www.gnu.org/software/m4/m4.html + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + system.devel + GNU macro processor + GNU makro işleyicisi + L'utilitaire m4 est processeur de macro permettant de lire un ou plusieurs fichiers, les traiter en fonction leurs directives macro puis écrire le résultat dans la sortie standard. + The m4 utility is a macro processor that shall read one or more text files, process them according to their included macro statements, and write the results to standard output + m4, bir ya da daha fazla metin dosyasını okuyan; içerdikleri makro kurallarına göre bu dosyaları işleyen ve sonuçlarını standart çıktıya ileten bir makro işlemcisidir. + mirrors://gnu/m4/m4-1.4.17.tar.gz + + gettext-devel + libsigsegv + + system/devel/m4/pspec.xml + + + m4 + + libsigsegv + + + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/man + + + + + 2016-04-27 + 1.4.17 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 1.4.17 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + ppl + http://www.cs.unipr.it/ppl/ + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv3 + app:console + library + system.devel + Pharma Polyhedra library + Pharma Polyhedra kitaplığı + ppl is the Parma Polyhedra Library that provides numerical abstractions for analysis of complex systems. + ppl, kompleks sistemlerin analizi için sayısal ayrım sağlayan Pharma Polyhedra kitaplığıdır. + http://bugseng.com/external/ppl/download/ftp/releases/1.2/ppl-1.2.tar.xz + + gmp-devel + glpk-devel + + system/devel/ppl/pspec.xml + + + ppl + + gmp + glpk + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc/COPYING + /usr/share/doc/CREDITS + /usr/share/doc/README + /usr/share/doc/NEWS /usr/share/man - slang-devel - Development files for slang - slang için geliştirme dosyaları - system.devel + ppl-docs + Documentation for ppl + ppl kitaplığı belgeleri + system.doc - slang + ppl + /usr/share/doc/ppl + + + + ppl-devel + Development files for ppl + ppl için geliştirme dosyaları + + ppl + gmp-devel + libgcc + + + /usr/bin/ppl-config /usr/include - /usr/lib/pkgconfig - /usr/share/doc/slang/html + /usr/share/aclocal /usr/share/man/man3 2016-04-27 - 2.2.4 + 1.2 Release Bump PisiLinux Community admin@pisilinux.org - 2014-05-11 - 2.2.4 + 2016-03-13 + 1.2 First release - Marcin Bojara - marcin@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org + + + + + + make + http://www.gnu.org/software/make/make.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.devel + Standard tool to compile source trees + Geleneksel kaynak kod ağaçlarını derleme aracı + Herramienta estándar para compilación de arboles de fuentes + Outil standard de compilation de hiérarchie de sources. Make détermine ce qu'il faut faire pour construire votre programme à partir d'un fichier appelé makefile. Une fois votre programme écrit, il suffit d'éditer un makefile pour lui afin de pouvoir utiliser Make pour le compiler et l'installer. + Standard tool to compile source trees. Make gets its knowledge of how to build your program from a file called the makefile. When you write a program, you should write a makefile for it, so that it is possible to use Make to build and install the program + Geleneksel kaynak kod ağaçlarını derleme aracı. Make, programınızı nasıl derleyeceği konusundaki bilgiyi "makefile" dosyasından alır. Bir uygulama yazdığınızda bunun için "makefile" dosyasını da hazırlamalısınız ki uygulamanız derlenebilsin ve yüklenebilsin. + mirrors://gnu/make/make-4.1.tar.gz + + gettext + gnuconfig + patch + gc-devel + guile-devel + + system/devel/make/pspec.xml + + + make + + guile + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/locale + /usr/include + + + + + 2016-04-27 + 4.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-28 + 4.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + nasm + http://nasm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + system.devel + Groovy little assembler + Assembler derleyicisi + NASM est l'assembleur Netwide, un assembleur libre et portable pour les processeurs des séries Intel 80x86 + NASM is the Netwide Assembler, a free portable assembler for the Intel 80x86 microprocessor series. + Intel 80x86 mikroişlemci serisi için aktarılabilir Assembler derleyicisi. + http://www.nasm.us/pub/nasm/releasebuilds/2.12/nasm-2.12.tar.xz + + texinfo + + system/devel/nasm/pspec.xml + + + nasm + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2016-04-27 + 2.12 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 2.12 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gnuconfig + http://savannah.gnu.org/projects/config + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2+ + data + system.devel + Base config files for autofoo + Autofoo için temel config dosyaları + fichiers GNU config.sub et config.guess mis à jour. + gnuconfig contains updated config.sub and config.guess files from GNU. + gnuconfig güncel GNU config.sub ve config.guess dosyaları içerir. + http://source.pisilinux.org/1.0/config-20141105.tar.gz + system/devel/gnuconfig/pspec.xml + + + gnuconfig + + /usr/share/gnuconfig + /usr/share/doc + + + + + 2016-04-27 + 20141105 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 20141105 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + klibc + http://www.zytor.com/mailman/listinfo/klibc + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + library + system.devel + A minimal libc subset for use with initramfs + Küçük bir C kütüphanesi (libc) uyarlaması + klibc ou "espace utilisateur tôt", est une librairie résultante de l'effort pour transférer autant de code d'initialisation de Linux que possible hors du noyau. + klibc, or "early userspace", is library part of an effort which tries to move as much initialization code in Linux as possible out of the kernel. + klibc, sistem başlangıcı için gerekli olan kodların mümkün olduğunca çok kısmını Linux çekirdeği dışına atma hedefiyle oluşturulmuş bir kütüphanedir. + https://www.kernel.org/pub/linux/libs/klibc/2.0/klibc-2.0.4.tar.xz + + perl + kernel-module-headers + + system/devel/klibc/pspec.xml + + + klibc + + /lib + /usr/bin + /usr/lib/klibc/bin + /usr/lib/klibc/include + /usr/lib/klibc/lib + /usr/share/aclocal + /usr/share/doc + /usr/share/man/ + + + klibc.m4 + + + + + 2016-04-27 + 2.0.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-07 + 2.0.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com @@ -14701,6 +14991,72 @@ + + + mdadm + http://www.kernel.org/pub/linux/utils/raid/mdadm + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Utility to control Linux MD devices (software RAID arrays) + MD aygıtlarını (Yazılımsal RAID) denetleme aracı + mdadm is used to create, manage, and monitor Linux MD (software RAID) devices. + mdadm Linux MD (yazılımsal RAID) aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. + https://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-3.4.tar.xz + hardware/disk/mdadm/pspec.xml + + + mdadm + + /sbin/mdadm + /sbin/mdmon + /lib/udev/rules.d + /usr/lib/tmpfiles.d + /usr/share/man + /usr/share/doc + /etc + + + System.Service + + + mdadm.tmpfiles.conf + scripts/raid-check + mdadm.confd + mdadm.rules + + + + mdadm-static + Statik linklemiş Raid denetleme aracı + mdadm Linux MD (yazılımsal RAID) aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. + system.base + + /sbin/mdadm.static + /sbin/mdassemble.static + + + + + 2016-04-27 + 3.4 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-13 + 3.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + disktype @@ -15002,158 +15358,6 @@ - - - mdadm - http://www.kernel.org/pub/linux/utils/raid/mdadm - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Utility to control Linux MD devices (software RAID arrays) - MD aygıtlarını (Yazılımsal RAID) denetleme aracı - mdadm is used to create, manage, and monitor Linux MD (software RAID) devices. - mdadm Linux MD (yazılımsal RAID) aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. - https://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-3.4.tar.xz - hardware/disk/mdadm/pspec.xml - - - mdadm - - /sbin/mdadm - /sbin/mdmon - /lib/udev/rules.d - /usr/lib/tmpfiles.d - /usr/share/man - /usr/share/doc - /etc - - - System.Service - - - mdadm.tmpfiles.conf - scripts/raid-check - mdadm.confd - mdadm.rules - - - - mdadm-static - Statik linklemiş Raid denetleme aracı - mdadm Linux MD (yazılımsal RAID) aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. - system.base - - /sbin/mdadm.static - /sbin/mdassemble.static - - - - - 2016-04-27 - 3.4 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 3.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libpng - http://www.libpng.org/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.graphics - Portable Network Graphics library - PNG kütüphanesi - Le format de Graphique Réseau Portable (Portable Network Graphics - PNG) a été conçu pour remplacer le format GIF plus simple et vieillissant ainsi que, d'une certaine manière, le format TIFF beaucoup plus complexe. L'objectif principal du projet est de se concentrer sur deux aspects majeurs : La toile mondiale (World Wide Web - WWW) et l'édition d'image. - The Portable Network Graphics (PNG) format was designed to replace the older and simpler GIF format and, to some extent, the much more complex TIFF format. Project's main aim is to concentrate on two major uses: the World Wide Web (WWW) and image-editing. - Taşınabilir Ağ Grafikleri (PNG) formatı eski ve daha basit GIF formatının yerine geçmek ve daha karmaşık yapıdaki TIFF formatını biraz daha genişletmek için tasarlanmıştır. Projenin ana hedefi iki önemli parça üzerine konsantre olmaktır: World Wide Web (WWW) ve resim düzenleme. - mirrors://sourceforge/libpng/libpng-1.6.21.tar.xz - - zlib-devel - - - libpng-1.6.21-apng.patch.gz - libpng-multilib.patch - - multimedia/graphics/libpng/pspec.xml - - - libpng - - zlib - - - /usr/lib - /usr/share/doc - - - - libpng-devel - Development files for libpng - libpng için geliştirme dosyaları - - libpng - zlib-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libpng-32bit - 32-bit shared libraries for libpng - libpng için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - zlib-32bit - - - libpng - zlib-32bit - - - /usr/lib32 - - - - - 2016-04-27 - 1.6.21 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-13 - 1.6.21 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - freetype @@ -15244,227 +15448,6 @@ - - - docbook-xsl - http://wiki.docbook.org/topic/DocBookXslStylesheets - - PisiLinux Community - admins@pisilinux.org - - BSD - data - office.docbook - Norman Walsh's XSL stylesheets for DocBook XML - Docbook XSL biçemyaprakları - These XSL stylesheets allow you to transform any DocBook XML document to other formats such as HTML, FO and XHTML. - Docbook XSL biçemyapraklarını (stylesheets) içerir. - http://sourceforge.net/projects/docbook/files/docbook-xsl/1.79.1/docbook-xsl-1.79.1.tar.bz2 - - Makefile - - - docbook-xsl-pagesetup.patch - docbook-xsl-newmethods.patch - docbook-xsl-non-constant-expressions.patch - docbook-xsl-list-item-body.patch - - office/docbook/docbook-xsl/pspec.xml - - - docbook-xsl - - docbook-xml - - - /usr/share/doc/docbook-xsl - /usr/share/xml - - - System.Package - - - - - 2016-04-27 - 1.79.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2015-03-05 - 1.79.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - docbook-xml - http://www.docbook.org/xml/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - data - office.docbook - Docbook XML DTD - Docbook XML DTD - Contains Docbook DTD for XML. A widely used XML scheme for writing documentation and help - Docbook XML belirtimi (DTD) sürümlerini içerir. - https://www.oasis-open.org/docbook/xml/4.1.2/docbkx412.zip - https://www.oasis-open.org/docbook/xml/4.1/docbkx41.zip - https://www.oasis-open.org/docbook/xml/4.2/docbook-xml-4.2.zip - https://www.oasis-open.org/docbook/xml/4.3/docbook-xml-4.3.zip - https://www.oasis-open.org/docbook/xml/4.4/docbook-xml-4.4.zip - https://www.oasis-open.org/docbook/xml/4.5/docbook-xml-4.5.zip - http://www.docbook.org/xml/5.0/docbook-5.0.zip - office/docbook/docbook-xml/pspec.xml - - - docbook-xml - - sgml-common - libxml2 - - - /usr/share/doc/ - /usr/share/xml - /etc/xml/docbook - /etc/xml/catalog - - - docbook - catalog - - - - - 2016-04-27 - 5.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-20 - 5.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - xmlto - https://fedorahosted.org/xmlto/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - office.docbook - A frontend to an XSL toolchain - XML ve DocBook için dönüşüm aracı - The purpose of xmlto is to convert an XML file to the desired format using whatever means necessary. - xmlto uygulamasının amacı verilen bir XML dosyasını istenen bir biçime dönüştürmektir. - https://fedorahosted.org/releases/x/m/xmlto/xmlto-0.0.28.tar.gz - - libxslt-devel - util-linux - docbook-xsl - docbook-xml - - office/docbook/xmlto/pspec.xml - - - xmlto - - docbook-xsl - docbook-xml - - - /usr/bin - /usr/share/doc/xmlto - /usr/share/xmlto - /usr/share/man - - - - - 2016-04-27 - 0.0.28 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-19 - 0.0.28 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - sgml-common - http://www.linuxfromscratch.org/blfs/view/svn/pst/sgml-common.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - office.docbook - Base ISO character entities and utilities for SGML - SGML ISO karakter nesneleri ve yardımcı programları - Sgml-common is a collection of entities and document type definitions (DTDs) useful for SGML processing. - sgml-common SGML uygulamaları için kullanışlı olan içerikler ve belge tip belirtimleri (DTD) topluluğudur. - http://gd.tuwien.ac.at/hci/kde/devel/docbook/SOURCES/sgml-common-0.6.3.tgz - - sgml-common-0.6.3-configure.in.patch - sgml-common-0.6.3-manpage-1.patch - - office/docbook/sgml-common/pspec.xml - - - sgml-common - - /etc/sgml - /usr/bin - /usr/share/doc/sgml-common - /usr/share/man - /usr/share/sgml - - - System.Package - - - - - 2016-04-27 - 0.6.3 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-18 - 0.6.3 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - system FIXME diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 43c4f7dc..fcea76db 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -11f7965b4c0e48e8a888c4174228518341866008 \ No newline at end of file +563e1420ed6d751126341076008ef9dda4a78b5b \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 6dc788e2..c3086bb9 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 debc3475..1db1fd0f 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -8e0dbc0411a894763c38f38b3aeda489b3a215d4 \ No newline at end of file +ed562c0211cd53d631aec9e877d2d8adf9367c00 \ No newline at end of file